am f0c435c6: (-s ours) am 805b5add: Import revised translations. DO NOT MERGE
* commit 'f0c435c6c8485b6a60e79803ba4ba1b2e5a975bb':
Import revised translations. DO NOT MERGE
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e559325..bf7346c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -4,8 +4,6 @@
<original-package android:name="com.android.settings" />
- <uses-permission android:name="com.google.android.gm.permission.WRITE_GMAIL" />
- <uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-permission android:name="android.permission.DEVICE_POWER" />
@@ -138,7 +136,6 @@
android:theme="@android:style/Theme.Holo.NoActionBar"
android:windowBackground="@drawable/setups_bg_default"
android:clearTaskOnLaunch="true"
- android:screenOrientation="landscape"
android:exported="true" />
<activity-alias android:name=".wifi.AdvancedSettings"
diff --git a/res/layout-xlarge-land/date_time_settings_setupwizard.xml b/res/layout-xlarge-land/date_time_settings_setupwizard.xml
new file mode 100644
index 0000000..ee425eb
--- /dev/null
+++ b/res/layout-xlarge-land/date_time_settings_setupwizard.xml
@@ -0,0 +1,168 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+<RelativeLayout
+ android:id="@+id/layout_root"
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:paddingTop="154dip"
+ android:paddingLeft="128dip"
+ android:paddingRight="128dip"
+ android:paddingBottom="96dip">
+
+ <!-- Title: Set date & time-->
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:minHeight="48dip"
+ android:layout_alignParentLeft="true"
+ android:layout_marginLeft="16dip"
+ android:layout_alignParentTop="true"
+ android:textSize="32dip"
+ android:textColor="#FF99cc00"
+ android:text="@string/date_and_time_settings_title_setup_wizard"
+ android:gravity="bottom" />
+
+ <!-- Divider -->
+ <View
+ android:id="@+id/top_divider"
+ android:layout_width="match_parent"
+ android:layout_height="3dip"
+ android:layout_below="@id/title"
+ android:layout_marginTop="6dip"
+ android:layout_marginBottom="17dip"
+ android:background="@color/divider_color" />
+
+ <RelativeLayout
+ android:id="@+id/timezone_auto_time"
+ android:layout_width="716dip"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:layout_below="@id/top_divider">
+ <!-- timezone -->
+ <Button
+ android:id="@+id/time_zone_button"
+ style="?android:attr/dropDownSpinnerStyle"
+ android:layout_width="304dip"
+ android:layout_height="48dip"
+ android:layout_alignParentLeft="true"
+ android:layout_alignBottom="@+id/date_time_auto"
+ android:gravity="left|center_vertical"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textSize="20dip" />
+
+ <LinearLayout
+ android:id="@+id/date_time_auto"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:layout_toRightOf="@id/time_zone_button"
+ android:layout_marginLeft="32dip"
+ android:layout_alignParentRight="true">
+
+ <Switch
+ android:id="@+id/date_time_auto_button"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?android:attr/listPreferredItemHeight"
+ android:layout_marginLeft="16dip"
+ android:text="@string/date_time_auto"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textSize="20dip" />
+
+ <!-- Divider -->
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1px"
+ android:background="@color/divider_color" />
+ </LinearLayout>
+ </RelativeLayout>
+
+ <LinearLayout
+ android:layout_width="624dip"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:layout_below="@+id/timezone_auto_time"
+ android:layout_marginTop="48dip"
+ android:orientation="horizontal">
+
+ <LinearLayout
+ android:layout_width="312dip"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+ <TextView
+ android:id="@+id/date_picker_title"
+ android:layout_width="match_parent"
+ android:layout_height="48dip"
+ android:text="@string/date_picker_title"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textSize="20dip"
+ android:clickable="false"
+ android:longClickable="false"
+ android:gravity="center" />
+ <DatePicker
+ android:id="@+id/date_picker"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/date_picker_title" />
+ </LinearLayout>
+
+ <!-- divider -->
+ <View
+ android:id="@+id/center_divider"
+ android:layout_width="1dip"
+ android:layout_height="match_parent"
+ android:background="@color/divider_color" />
+
+ <LinearLayout
+ android:layout_width="312dip"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+ <TextView
+ android:id="@+id/time_picker_title"
+ android:layout_width="match_parent"
+ android:layout_height="48dip"
+ android:text="@string/time_picker_title"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textSize="20dip"
+ android:gravity="center" />
+
+ <TimePicker
+ android:id="@+id/time_picker"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/time_picker_title" />
+ </LinearLayout>
+ </LinearLayout>
+
+ <View
+ android:id="@+id/bottom_divider"
+ android:layout_width="match_parent"
+ android:layout_height="3dip"
+ android:layout_alignLeft="@id/timezone_auto_time"
+ android:layout_above="@+id/next_button"
+ android:layout_marginBottom="16dip"
+ android:background="@color/divider_color" />
+
+ <Button
+ android:id="@+id/next_button"
+ style="@style/setup_wizard_button"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentRight="true"
+ android:text="@string/next_label" />
+</RelativeLayout>
diff --git a/res/layout-xlarge-land/wifi_settings_for_setup_wizard_xl.xml b/res/layout-xlarge-land/wifi_settings_for_setup_wizard_xl.xml
new file mode 100644
index 0000000..78f182d
--- /dev/null
+++ b/res/layout-xlarge-land/wifi_settings_for_setup_wizard_xl.xml
@@ -0,0 +1,177 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+
+<RelativeLayout
+ android:id="@+id/layout_root"
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:paddingTop="60dip"
+ android:paddingLeft="128dip"
+ android:paddingRight="128dip"
+ android:paddingBottom="0dip" >
+
+ <FrameLayout
+ android:id="@+id/top_padding_layout"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true">
+ <!-- Set to gone when software keyboard appears -->
+ <View
+ android:id="@+id/top_padding"
+ android:layout_width="match_parent"
+ android:layout_height="94dip" />
+ </FrameLayout>
+
+ <TextView
+ android:id="@+id/wifi_setup_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:minHeight="48dip"
+ android:layout_alignParentLeft="true"
+ android:layout_centerVertical="true"
+ android:layout_marginLeft="16dip"
+ android:layout_below="@id/top_padding_layout"
+ android:textSize="32dip"
+ android:textColor="#ff99cc00"
+ android:text="@string/wifi_setup_title"
+ android:gravity="bottom"/>
+
+ <!-- Divider -->
+ <RelativeLayout
+ android:id="@+id/top_divider"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/wifi_setup_title">
+ <ProgressBar
+ android:id="@+id/scanning_progress_bar"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ style="?android:attr/progressBarStyleHorizontal" />
+ </RelativeLayout>
+
+ <RelativeLayout
+ android:id="@+id/content"
+ android:layout_width="716dip"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/top_divider"
+ android:layout_centerHorizontal="true"
+ android:layout_marginTop="10dip"
+ android:layout_marginBottom="0dip">
+
+ <FrameLayout
+ android:id="@+id/wifi_setup"
+ android:layout_width="match_parent"
+ android:layout_height="360dip">
+ <fragment
+ class="com.android.settings.wifi.WifiSettings"
+ android:id="@+id/wifi_setup_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+ </FrameLayout>
+ <FrameLayout
+ android:id="@+id/wifi_config_ui"
+ android:layout_width="wrap_content"
+ android:minWidth="406dip"
+ android:layout_height="wrap_content"
+ android:minHeight="160dip"
+ android:layout_alignParentLeft="true"
+ android:visibility="gone" />
+ <View
+ android:id="@+id/wifi_config_padding"
+ android:layout_width="match_parent"
+ android:layout_height="360dip"
+ android:visibility="gone" />
+ <LinearLayout
+ android:id="@+id/connecting_status_layout"
+ android:layout_width="match_parent"
+ android:layout_height="360dip"
+ android:visibility="gone">
+ <TextView
+ android:id="@+id/connecting_status"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:lineSpacingExtra="10dip"
+ android:inputType="textMultiLine"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textSize="20sp"
+ android:clickable="false"
+ android:longClickable="false" />
+ </LinearLayout>
+
+ </RelativeLayout>
+
+ <!-- Divider -->
+ <View
+ android:id="@+id/bottom_divider"
+ android:layout_width="match_parent"
+ android:layout_height="3dip"
+ android:layout_marginBottom="16dip"
+ android:layout_below="@id/content"
+ android:layout_alignLeft="@id/content"
+ android:background="@color/divider_color" /> <!-- TODO: fix this -->
+
+ <RelativeLayout
+ android:id="@+id/bottom_buttons"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/bottom_divider"
+ android:layout_alignLeft="@id/bottom_divider"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentBottom="true">
+
+ <Button
+ android:id="@+id/wifi_setup_add_network"
+ style="@style/setup_wizard_button"
+ android:layout_alignParentLeft="true"
+ android:text="@string/wifi_setup_add_network"
+ android:enabled="false" />
+
+ <LinearLayout
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:orientation="horizontal">
+
+ <!-- This misleading name is for keeping consistency between non-XL
+ layouts -->
+ <Button android:id="@+id/wifi_setup_cancel"
+ style="@style/setup_wizard_button"
+ android:text="@string/wifi_setup_back"
+ android:visibility="gone" />
+
+ <Button android:id="@+id/wifi_setup_connect"
+ style="@style/setup_wizard_button"
+ android:layout_marginLeft="16dip"
+ android:text="@string/wifi_setup_connect"
+ android:enabled="false"
+ android:visibility="gone" />
+
+ <Button android:id="@+id/wifi_setup_refresh_list"
+ style="@style/setup_wizard_button"
+ android:layout_marginLeft="16dip"
+ android:text="@string/wifi_setup_refresh_list"
+ android:enabled="false" />
+
+ <Button android:id="@+id/wifi_setup_skip_or_next"
+ style="@style/setup_wizard_button"
+ android:layout_marginLeft="16dip"
+ android:text="@string/wifi_setup_skip"
+ android:enabled="false" />
+ </LinearLayout>
+ </RelativeLayout>
+</RelativeLayout>
diff --git a/res/layout-xlarge/date_time_settings_setupwizard.xml b/res/layout-xlarge/date_time_settings_setupwizard.xml
index ee425eb..479e3fd 100644
--- a/res/layout-xlarge/date_time_settings_setupwizard.xml
+++ b/res/layout-xlarge/date_time_settings_setupwizard.xml
@@ -20,8 +20,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="154dip"
- android:paddingLeft="128dip"
- android:paddingRight="128dip"
+ android:paddingLeft="24dip"
+ android:paddingRight="24dip"
android:paddingBottom="96dip">
<!-- Title: Set date & time-->
diff --git a/res/layout-xlarge/wifi_settings_for_setup_wizard_xl.xml b/res/layout-xlarge/wifi_settings_for_setup_wizard_xl.xml
index 2a7da0e..dd76e70 100644
--- a/res/layout-xlarge/wifi_settings_for_setup_wizard_xl.xml
+++ b/res/layout-xlarge/wifi_settings_for_setup_wizard_xl.xml
@@ -21,8 +21,8 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="60dip"
- android:paddingLeft="128dip"
- android:paddingRight="128dip"
+ android:paddingLeft="24dip"
+ android:paddingRight="24dip"
android:paddingBottom="0dip" >
<FrameLayout
@@ -106,11 +106,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lineSpacingExtra="10dip"
- android:inputType="textMultiLine"
android:textAppearance="?android:attr/textAppearanceMedium"
- android:textSize="20sp"
- android:clickable="false"
- android:longClickable="false" />
+ android:textSize="20sp" />
</LinearLayout>
</RelativeLayout>
@@ -139,8 +136,7 @@
style="@style/setup_wizard_button"
android:layout_alignParentLeft="true"
android:text="@string/wifi_setup_add_network"
- android:enabled="false"
- android:visibility="gone" />
+ android:enabled="false" />
<LinearLayout
android:layout_width="wrap_content"
diff --git a/res/values-ar/arrays.xml b/res/values-ar/arrays.xml
index 1a96002..7f5244d 100644
--- a/res/values-ar/arrays.xml
+++ b/res/values-ar/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"يتم عرض بعض الرسوم المتحركة للنافذة"</item>
<item msgid="488968798204105119">"يتم عرض جميع الرسوم المتحركة للنافذة"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 ثانية"</item>
- <item msgid="8881760709354815449">"30 ثانية"</item>
- <item msgid="7589406073232279088">"دقيقة واحدة"</item>
- <item msgid="7001195990902244174">"2 دقائق"</item>
- <item msgid="7489864775127957179">"5 دقائق"</item>
- <item msgid="2314124409517439288">"10 دقائق"</item>
- <item msgid="6864027152847611413">"30 دقيقة"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"فورًا"</item>
- <item msgid="6736512735606834431">"5 ثوانٍ"</item>
- <item msgid="8044619388267891375">"15 ثانية"</item>
- <item msgid="1822002388249545488">"30 ثانية"</item>
- <item msgid="8538071621211916519">"دقيقة واحدة"</item>
- <item msgid="5663439580228932882">"دقيقتان"</item>
- <item msgid="49888496216106852">"5 دقائق"</item>
- <item msgid="9002737361305019353">"10 دقائق"</item>
- <item msgid="4322676235684793329">"30 دقيقة"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"بطيء للغاية"</item>
<item msgid="2361722960903353554">"بطيء"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"ممتازة"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"عند إيقاف الشاشة"</item>
+ <item msgid="3804733751095821976">"عند إيقاف الشاشة"</item>
<item msgid="1549288661423279207">"عدم تنفيذ ذلك مطلقًا أثناء التوصيل"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"مطلقًا"</item>
+ <item msgid="1986753720941888596">"مطلقًا"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"تلقائي"</item>
diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml
index f34f4af..821c96e 100644
--- a/res/values-ar/strings.xml
+++ b/res/values-ar/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"بحث"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"طلب اقتران البلوتوث"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"طلب اقتران"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"تحديد للاقتران مع <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"إظهار الملفات المستلمة"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"إظهار قائمة بالملفات المستلمة عبر بلوتوث"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"منتقي جهاز البلوتوث"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"طلب إذن بلوتوث"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"هناك تطبيق يطلب الإذن لتشغيل البلوتوث. هل تريد إجراء ذلك؟"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"هناك تطبيق على الجهاز اللوحي يطلب الإذن لتشغيل البلوتوث وجعل الجهاز اللوحي قابلاً للاكتشاف بواسطة الأجهزة الأخرى لمدة <xliff:g id="TIMEOUT">%1$d</xliff:g> ثانية. هل تريد تنفيذ ذلك؟"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"يطلب أحد تطبيقات هاتفك إذنًا لتشغيل البلوتوث وجعل هاتفك قابل للاكتشاف بواسطة أجهزة بلوتوث أخرى لمدة <xliff:g id="TIMEOUT">%1$d</xliff:g> ثانية. هل تريد إجراء ذلك؟"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"جارٍ تشغيل البلوتوث..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"اتصال تلقائي"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"إعدادات التاريخ والوقت"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 م"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"بدء <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"الحساب:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"إعدادات الخادم الوكيل"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"إعدادات الخادم الوكيل"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"تعيين خادم HTTP الوكيل وقوائم الاستبعاد"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"محو"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"المنفذ"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"جارٍ تعطيل الاتصالات اللاسلكية..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"جارٍ تمكين الاتصالات اللاسلكية..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"اللاسلكي والشبكات"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"اللاسلكي والشبكات"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"إعدادات اللاسلكي والشبكة"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"إدارة Wi-Fi والبلوتوث ووضع الطائرة وشبكات الجوال والشبكات الظاهرية الخاصة (VPN)"</string>
<string name="roaming" msgid="3596055926335478572">"تجوال البيانات"</string>
<string name="roaming_enable" msgid="3737380951525303961">"اتصال بخدمات البيانات عند التجوال"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"تحديد المشغل"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"تحديد مشغل شبكة"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"التاريخ والوقت"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"تعيين التاريخ والوقت"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"تعيين التاريخ والوقت والمنطقة الزمنية والتنسيقات"</string>
<string name="date_time_auto" msgid="7076906458515908345">"التاريخ والوقت التلقائي"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"استخدام الوقت المقدم للشبكة"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"تصنيف بحسب المنطقة الزمنية"</string>
<string name="date_picker_title" msgid="1338210036394128512">"التاريخ"</string>
<string name="time_picker_title" msgid="483460752287255019">"الوقت"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"المهلة"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"تأمين الشاشة <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> بعد إغلاقها تلقائيًا"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"تأمين الجهاز بعد المهلة"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"إظهار معلومات المالك في شاشة التأمين"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"معلومات المالك"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"تعيين موقعي، إلغاء تأمين الشاشة، تأمين بطاقة SIM، تأمين تخزين الاعتماد"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"تعيين موقعي، إلغاء تأمين الشاشة، تأمين تخزين الاعتماد"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"كلمات المرور"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"تشفير الجهاز"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"تشفير البيانات على الجهاز"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"تشفير البيانات على الجهاز"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"يتطلب تعيين رقم تعريف شخصي أو كلمة مرور لإلغاء تأمين الجهاز."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"يتطلب تعيين رقم تعريف شخصي أو كلمة مرور لإلغاء تأمين الجهاز."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"مشفّر"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"يمكنك تشفير حساباتك وإعداداتك والتطبيقات التي تم تنزيلها وبياناتها والوسائط وملفات أخرى. بعد تشفير هاتفك، لا يمكنك إلغاء تشفيره إلا عن طريق تنفيذ عملية إعادة الضبط بحسب بيانات المصنع، مما يؤدي إلى مسح جميع البيانات في هاتفك."\n\n"يستغرق التشفير ما يصل إلى ساعة. يجب عليك البدء ببطارية تم شحنها والحفاظ على توصيل هاتفك بمصدر للطاقة، وذلك لحين انتهاء التشفير. إذا قاطعت عملية التشفير أثناء إجرائها، فستفقد بعض أو جميع بياناتك."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"يمكنك تشفير حساباتك وإعداداتك والتطبيقات التي تم تنزيلها وبياناتها والوسائط وملفات أخرى. بعد تشفير هاتفك، لا يمكنك إلغاء تشفيره إلا عن طريق تنفيذ عملية إعادة الضبط بحسب بيانات المصنع، مما يؤدي إلى مسح جميع البيانات في هاتفك."\n\n"يستغرق التشفير ما يصل إلى ساعة. يجب عليك البدء ببطارية تم شحنها والحفاظ على توصيل هاتفك بمصدر للطاقة، وذلك لحين انتهاء التشفير. إذا قاطعت عملية التشفير أثناء إجرائها، فستفقد بعض أو جميع بياناتك."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"تشفير الجهاز اللوحي"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"تشفير الهاتف"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"تأكيد التشفير"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"هل تريد تشفير بيانات المستخدم؟ لا يمكن التراجع عن هذه العملية وربما يتم فقد بعض البيانات في حالة مقاطعة هذه العملية. قد يستغرق التشفير ما يصل إلى ساعة."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"هل تريد تشفير بيانات المستخدم؟ لا يمكن التراجع عن هذه العملية وربما يتم فقد بعض البيانات في حالة مقاطعة هذه العملية. قد يستغرق التشفير ما يصل إلى ساعة."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"التشفير"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"أعد المحاولة خلال ^1 ثانية."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"تهيئة تأمين الشاشة"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"تهيئة تأمين الشاشة"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"أمان إلغاء تأمين الشاشة"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"إعداد تأمين الشاشة"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"تغيير تأمين الشاشة"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"تغيير أو تعطيل النقش أو رقم التعريف الشخصي أو أمان كلمة المرور"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"اختيار طريقة لتأمين الشاشة"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"إيقاف"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"عدم تأمين الشاشة مطلقًا"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"إلغاء الحماية"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"لا يتطلب نقشًا أو رقم تعريف شخصي أو كلمة مرور لإلغاء تأمين الشاشة"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"عدم عرض تأمين الشاشة"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"لا شيء"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"تعطيل أمان إلغاء تأمين الشاشة"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"نقش"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"طلب نقش لإلغاء تأمين الشاشة"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"رسم نقش لإلغاء تأمين الشاشة"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"رقم التعريف الشخصي"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"طلب رقم تعريف شخصي رقمي لإلغاء تأمين الشاشة"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"أدخل رقم تعريف شخصي رقمي لإلغاء تأمين الشاشة"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"كلمة المرور"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"طلب كلمة مرور لإلغاء تأمين الشاشة"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"إدخال كلمة مرور لإلغاء تأمين الشاشة"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"معطل بواسطة مشرف جهاز التحكم عن بعد"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"إيقاف"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"إلغاء الحماية"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"محمي باستخدام نقش"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"محمي برقم التعريف الشخصي"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"محمي باستخدام كلمة مرور"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"إيقاف تأمين الشاشة"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"إزالة نقش إلغاء التأمين"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"إزالة رقم التعريف الشخصي لإلغاء التأمين"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"لا يسمح مشرف الجهاز باستخدام كلمة مرور مؤخرة"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"موافق"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"إلغاء"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"إلغاء"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"التالي"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"إدارة الجهاز"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"مشرفوا الجهاز"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"عرض مشرفي الأجهزة أو إلغاء تنشيطهم"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"إعدادات البلوتوث"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"إدارة الاتصالات، تعيين اسم الجهاز وقابلية الاكتشاف"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"طلب اقتران البلوتوث"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"أدخل رقم التعريف الشخصي للاقتران مع \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (جرّب 0000 أو 1234). ربما تحتاج إلى إدخال رقم التعريف الشخصي نفسه على جهاز البلوتوث."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"أدخل مفتاح المرور للاقتران مع \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"للاقتران مع \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"، أكّد أنه يعرض مفتاح المرور: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"يريد الاقتران."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"أدخل \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" في \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" لاقتران متبوع بعرض أو إدخال."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"اقتران"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"عدم الاقتران"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"جهاز البلوتوث"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"الخيارات…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"الاتصال بـ…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"الوسائط"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"سماعة بدون استخدام اليدين"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"الجهاز اللوحي"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"نقل"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"جهاز الإرسال"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"ربط"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"سيتم إلغاء توصيل <xliff:g id="DEVICE_NAME">%1$s</xliff:g> من صوت الوسائط."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"سيتم إلغاء توصيل <xliff:g id="DEVICE_NAME">%1$s</xliff:g> من صوت السماعة بدون استخدام اليدين."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"سيتم إلغاء توصيل <xliff:g id="DEVICE_NAME">%1$s</xliff:g> من جهاز الإرسال."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"سيتم إلغاء توصيل <xliff:g id="DEVICE_NAME">%1$s</xliff:g> من الربط"</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"خيارات <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"الاستخدام لإعدادات الهاتف الصوتية"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"استخدامه لنقل الملفات"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"استخدام للإدخال"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"الاستخدام للدخول على الإنترنت"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"إعدادات الإرساء"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"استخدام الإرساء للإعدادات الصوتية"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"كهاتف بسماعة خارجية"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"يتعذر البحث عن شبكات"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"رسالة تنبيه بالشبكات"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"تنبيهي عند توفر شبكة مفتوحة"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"سياسة سكون Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"تحديد وقت التبديل من Wi-Fi إلى بيانات الجوال"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"هناك مشكلة في إعداد سياسة السكون."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"إضافة شبكة Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"شبكات Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"فحص"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"تعديل الشبكة"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"إعداد الشبكة"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"أدخل الطرف من نقطة الدخول"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"إعداد WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"تهيئة طريقة طرف WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"أدخل الطرف <xliff:g id="WPS_PIN">%1$s</xliff:g> على نقطة الدخول"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"إعداد WPS قيد التقدم ويمكن أن يستغرق إكماله ثواني متعددة."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"أخفق بدء WPS، الرجاء إعادة المحاولة."</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID للشبكة"</string>
<string name="wifi_security" msgid="6603611185592956936">"الأمان"</string>
<string name="wifi_signal" msgid="5514120261628065287">"قوة الإشارة"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"حذف"</string>
<string name="wifi_save" msgid="3331121567988522826">"حفظ"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"إلغاء"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"تم اكتشاف جلسة WPS أخرى، الرجاء إعادة المحاولة بعد بضع دقائق."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"متقدم"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"سياسة سكون Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"تحديد وقت التبديل من Wi-Fi إلى بيانات الجوال"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"هناك مشكلة في إعداد سياسة السكون."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"نطاق تردد Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"حدد نطاق التردد للعملية"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"هناك مشكلة في إعداد نطاق التردد."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"نقطة اتصال Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> المحمولة"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"الصوت"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"شاشة العرض"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"عرض"</string>
<string name="sound_settings" msgid="5007659014828162881">"إعدادات الصوت"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"وضع صامت"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"جعل جميع الأصوات صامتة باستثناء الوسائط والمنبّات"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"تبديل الاتجاه تلقائيًا عند تدوير الهاتف"</string>
<string name="brightness" msgid="2354961343555249270">"السطوع"</string>
<string name="brightness_summary" msgid="838917350127550703">"ضبط سطوع الشاشة"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"المهلة"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"يتم إغلاق الشاشة تلقائيًا بعد <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"مهلة الشاشة"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"سطوع تلقائي"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"إعدادات تأمين بطاقة SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"إعداد تأمين بطاقة SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"غير متاح"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"الحالة"</string>
<string name="device_status" msgid="607405385799807324">"الحالة"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"حالة البطارية والشبكة ومعلومات أخرى"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI ورقم الهاتف والإشارة، وغيرها."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"رقم الهاتف أو الإشارة أو غير ذلك."</string>
<string name="storage_settings" msgid="4211799979832404953">"التخزين"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"إعدادات وحدة التخزين"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"إلغاء تركيب وحدة تخزين USB، وعرض سعة التخزين المتاحة"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"إلغاء تحميل بطاقة SD، عرض سعة التخزين المتاحة"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN (رقم دليل الجوال)"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"رقم هاتفي"</string>
+ <string name="status_number" msgid="5123197324870153205">"رقم هاتفي"</string>
<string name="status_min_number" msgid="3519504522179420597">"دقيقة"</string>
<string name="status_prl_version" msgid="8499039751817386529">"إصدار PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"وحدة التخزين الداخلية"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"وحدة تخزين USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"بطاقة SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"متاح"</string>
- <string name="memory_size" msgid="5458889090691922288">"المجموع"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"جارٍ الحساب..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"التطبيقات"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"الوسائط"</string>
+ <string name="memory_available" msgid="418542433817289474">"المساحة المتاحة"</string>
+ <string name="memory_size" msgid="6629067715017232195">"المساحة الإجمالية"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"ستخدام التطبيقات"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"استخدام الوسائط"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"إلغاء تركيب وحدة التخزين المشتركة"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"إلغاء تحميل بطاقة SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"إلغاء تركيب وحدة تخزين USB الداخلية"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"سيؤدي ذلك إلى محو كل البيانات من "<b>"وحدة التخزين الداخلية للجهاز اللوحي"</b>"، بما في ذلك:"\n\n<li>"حسابك على Google"</li>\n<li>"إعدادات وبيانات النظام والتطبيق"</li>\n<li>"التطبيقات التي تم تنزيلها"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"سيؤدي ذلك إلى محو كل البيانات من "<b>"وحدة التخزين الداخلية للهاتف"</b>"، بما في ذلك:"\n\n<li>"حسابك على Google"</li>\n<li>"إعدادات وبيانات النظام والتطبيق"</li>\n<li>"التطبيقات التي تم تنزيلها"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"تم تسجيل دخولك حاليًا في الحسابات التالية:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"الموسيقى"</li>\n<li>"الصور"</li>\n<li>"بيانات المستخدم الأخرى"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"لمسح الموسيقى والصور وبيانات المستخدم الأخرى أيضًا، يلزم محو "<b>"وحدة تخزين USB"</b>"."</string>
- <!-- syntax error in translation for master_clear_desc_erase_external_storage (7339100478676372901) org.xmlpull.v1.XmlPullParserException: expected: /string read: b (position:END_TAG </b>@1:177 in java.io.StringReader@3ebfc8e0) -->
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"لمسح الموسيقى والصور وبيانات المستخدم الأخرى أيضًا، يلزم محو "<b>"بطاقة SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"محو وحدة تخزين USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"محو بطاقة SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"محو كل البيانات على وحدة تخزين USB الداخلية، مثل الموسيقى والصور."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"استخدام نظام GPS المساعد"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"استخدام الخادم لمساعدة GPS (إلغاء التحديد لتقليل استخدام الشبكة)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"استخدام الخادم لمساعدة GPS (ألغِ التحديد لتحسين أداء GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"استخدام الموقع لبحث Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"استخدام الموقع لبحث Google وخدمات Google الأخرى"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"الموقع مستخدم لتحسين نتائج بحث Google وخدمات Google الأخرى"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"استخدام الموقع لبحث Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"استخدام الموقع لبحث Google وخدمات Google الأخرى"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"الموقع مستخدم لتحسين نتائج بحث Google وخدمات Google الأخرى"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"حول الجهاز اللوحي"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"حول الهاتف"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"عرض المعلومات القانونية والحالة وإصدار البرنامج"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"تم تعيين كلمة المرور"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"تم تعيين رقم التعريف الشخصي"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"تم تعيين النقش"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"تأمين الشاشة"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"إلغاء تأمين الشاشة"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"تغيير نقش إلغاء التأمين"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"تغيير رقم التعريف الشخصي لإلغاء التأمين"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"تأكيد النقش المحفوظ"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"التالي"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"تأمين الجهاز اللوحي"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"تأمين الهاتف"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"يمكنك حماية الجهاز اللوحي من الاستخدام غير المصرح به من خلال إنشاء نقش شخصي لإلغاء تأمين الشاشة. استخدم إصبعك لتوصيل النقاط بأي ترتيب في الشاشة التالية. يجب توصيل أربع نقاط على الأقل. "\n\n"هل أنت جاهز للبدء؟ المس \"التالي\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"يمكنك حماية هاتفك من الاستخدام غير المصرح به من خلال إنشاء نقش شخصي لإلغاء تأمين الشاشة. "\n<font height="17">\n</font><b>"1"</b>" في الشاشة التالية، يمكنك مشاهدة رسم مثال لنقش ما. "\n<font height="17">\n</font><b>"2"</b>" عندما تكون جاهزًا، ارسم نقش إلغاء التأمين الشخصي الخاص بك. جرّب نقوشًا مختلفة، ولكن مع توصيل أربع نقاط على الأقل. "\n<font height="17">\n</font><b>"3"</b>" أعد رسم نقشك للتأكيد. "\n<font height="17">\n</font><b>"هل أنت جاهز للبدء؟ المس \"التالي\""</b>". "\n<font height="3">\n</font>"لترك هاتفك غير محمي، المس \"إلغاء\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"إدارة التطبيقات"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"إدارة التطبيقات المثبتة وإزالتها"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"المجموع"</string>
<string name="application_size_label" msgid="5055196275624686382">"التطبيق"</string>
<string name="data_size_label" msgid="8679376373625710107">"البيانات"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"وحدة تخزين USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"بطاقة SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"إزالة"</string>
<string name="disable_text" msgid="6544054052049395202">"تعطيل"</string>
<string name="enable_text" msgid="9217362512327828987">"تمكين"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"هل تريد إيقاف خدمة النظام؟"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"هل أنت متأكد من أنك تريد إيقاف خدمة النظام هذه؟ إذا كنت متأكدًا، فربما تتوقف بعض ميزات الجهاز اللوحي عن العمل بشكل صحيح حتى توقف تشغيلها، ثم تشغلها مرة أخرى."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"هل أنت متأكد من أنك تريد إيقاف خدمة النظام هذه؟ إذا كنت متأكدًا، فربما تتوقف بعض ميزات الهاتف عن العمل بشكل صحيح حتى توقف تشغيلها، ثم تشغلها مرة أخرى."</string>
- <string name="language_settings" msgid="5292716747264442359">"اللغة والإدخال"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"اللغة والإدخال"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"اللغة المحلية والنص"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"إعدادات اللغة ولوحة المفاتيح"</string>
<string name="language_settings_category" msgid="2288258489940617043">"إعدادات اللغة"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"إعدادات لوحة المفاتيح"</string>
<string name="phone_language" msgid="1165758957501090679">"تحديد لغة"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"الاختصارات"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"إدخال نصي"</string>
<string name="input_method" msgid="5434026103176856164">"طريقة الإرسال"</string>
- <string name="current_input_method" msgid="2146807723398303917">"طريقة الإدخال الحالية"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"محدد طريقة الإدخال"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"تلقائي"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"عرض دومًا"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"إخفاء دومًا"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"تهيئة طرق الإدخال"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"الإعدادات"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"طرق الإدخال النشطة"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"استخدام لغة النظام"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"إعدادات <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"تحديد طرق الإدخال النشطة"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"إدارة طرق الإدخال"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"إعدادات لوحة المفاتيح على الشاشة"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"لوحة المفاتيح المضمنة"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"إعدادات لوحة المفاتيح الفعلية المضمنة"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"وقت تشغيل Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"وقت تشغيل Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"تفاصيل السجل"</string>
- <string name="details_title" msgid="3792801565213935385">"تفاصيل الاستخدام"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"تفاصيل استخدام البطارية"</string>
<string name="details_subtitle" msgid="32593908269911734">"استخدام التفاصيل"</string>
<string name="controls_subtitle" msgid="390468421138288702">"ضبط استخدام الطاقة"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"الحزم المضمنة"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"أخفق تفاوض الخادم. ربما لا يتوافق الخادم مع خيار الترميز. هل تريد التحقق من إعداد الترميز؟"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"إضافة شبكة ظاهرية خاصة (VPN)"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"إضافة شبكة ظاهرية خاصة (VPN)"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"تفاصيل الشبكة الظاهرية الخاصة (VPN)"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"إضافة الشبكة الظاهرية الخاصة (VPN) <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"تفاصيل <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"الشبكات الظاهرية الخاصة (VPN)"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"إعداد الشبكات الظاهرية الخاصة (VPN) وإدارتها"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(لم يتم التغيير)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(لم يتم التعيين)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"تخزين بيانات الاعتماد"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"تخزين بيانات الاعتماد"</string>
<string name="credentials_access" msgid="4843187230913860492">"استخدام بيانات الاعتماد الآمنة"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"السماح للتطبيقات بالوصول إلى الشهادات الآمنة وبيانات الاعتماد الأخرى"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"تثبيت من وحدة تخزين USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"التثبيت من بطاقة SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"تثبيت الشهادات من وحدة تخزين USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"تثبيت الشهادات من بطاقة SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"تعيين كلمة المرور"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"تعيين كلمة مرور لتخزين بيانات الاعتماد أو تغييرها"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"محو بيانات الاعتماد"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"إزالة جميع المحتويات وإعادة تعيين كلمة المرور"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"إدخال كلمة المرور"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"أدخل كلمة المرور تخزين بيانات الاعتماد."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"تعيين كلمة المرور لتخزين بيانات الاعتماد. يجب أن تكون 8 أحرف على الأقل."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"إدخال كلمة مرور تخزين بيانات الاعتماد."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"تثبيت من وحدة تخزين USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"التثبيت من بطاقة SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"تثبيت الشهادات المشفرة من وحدة تخزين USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"تثبيت الشهادات المشفّرة من بطاقة SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"تعيين كلمة المرور"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"تعيين كلمة مرور تخزين بيانات الاعتماد أو تغييرها"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"مسح التخزين"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"مسح جميع المحتويات من تخزين بيانات الاعتماد وإعادة تعيين كلمة المرور"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"هل تريد بالتأكيد حذف جميع بيانات الاعتماد وإعادة تعيين كلمة مرور تخزين بيانات الاعتماد؟"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"كلمة المرور الحالية:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"كلمة المرور الجديدة:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"تأكيد كلمة المرور الجديدة:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"ستتم إزالة كل المحتويات، وإعادة تعيين كلمة المرور. هل تريد بالتأكيد إجراء ذلك؟"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"تعيين كلمة مرور لتخزين بيانات الاعتماد (8 أحرف على الأقل)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"الرجاء إدخال كلمة المرور الصحيحة."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"الرجاء إدخال كلمة المرور الصحيحة. بقيت لديك محاولة واحدة لإدخال كلمة المرور الصحيحة قبل مسح تخزين بيانات الاعتماد."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"الرجاء إدخال كلمة المرور الصحيحة. بقي لديك <xliff:g id="NUMBER">%1$d</xliff:g> من المحاولات لإدخال كلمة المرور الصحيحة قبل مسح تخزين بيانات الاعتماد."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"كلمتا المرور غير متطابقتين."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"يجب إدخال كلمة مرور وتأكيدها."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"الرجاء إدخال كلمة المرور."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"يجب أن تحتوي كلمة المرور على 8 أحرف على الأقل."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"كلمة مرور غير صحيحة."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"كلمة مرور غير صحيحة. بقي لديك محاولة واحدة أخرى قبل مسح تخزين بيانات الاعتماد."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"كلمة مرور غير صحيحة. بقي لديك <xliff:g id="NUMBER">%1$d</xliff:g> من المحاولات قبل مسح تخزين بيانات الاعتماد."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"تم مسح تخزين بيانات الاعتماد."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"تم مسح تخزين بيانات الاعتماد."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"تم تمكين تخزين بيانات الاعتماد."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"تم تعطيل تخزين بيانات الاعتماد."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"نغمة الطوارئ"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"تعيين السلوك عند إجراء اتصال بالطوارئ"</string>
<string name="privacy_settings" msgid="9206631214140954954">"الخصوصية"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"المكالمات الواردة"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"التنبيهات"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"الملاحظات"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"إعداد Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"الاتصال بشبكة Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"جارٍ الاتصال بشبكة Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"تم الاتصال بشبكة Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>."</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"إضافة شبكة"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"إعداد WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"غير متصل"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"إضافة شبكة"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"تحديث القائمة"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"حفظ"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"إلغاء"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"جارٍ فحص الشبكات..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"المس شبكة للاتصال بها."</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"اتصال بالشبكة الحالية"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"الاتصال بشبكة غير مؤمنة"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"أدخل مكوّنات الشبكة"</string>
@@ -1364,9 +1370,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"جارٍ الاتصال..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"متابعة إلى الخطوة التالية"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"شبكة EAP غير معتمدة."</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"لا يمكنك تهيئة اتصال Wi-Fi لشبكة EAP أثناء الإعداد. بعد الإعداد، يمكنك فعل ذلك من خلال الإعدادات ضمن "<b>"اللاسلكي والشبكات"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"يمكن أن يستغرق الاتصال عدة دقائق..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"المس "<b>"التالي"</b>" للاستمرار في الإعداد."\n\n"المس "<b>"رجوع"</b>" للاتصال بشبكة Wi-Fi مختلفة."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"لا يمكنك تهيئة اتصال Wi-Fi لشبكة EAP أثناء الإعداد. بعد الإعداد، يمكنك فعل ذلك من خلال الإعدادات ضمن اللاسلكي والشبكات."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"إعدادات المزامنة"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"تواجه المزامنة حاليًا بعض المشاكل. وسوف تكون متاحة خلال وقت قصير."</string>
<string name="add_account_label" msgid="7811707265834013767">"إضافة حساب"</string>
@@ -1382,32 +1386,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"المزامنة متوقفة"</string>
<string name="sync_error" msgid="5060969083117872149">"خطأ في المزامنة"</string>
<string name="settings_backup" msgid="2274732978260797031">"الاحتفاظ بنسخة احتياطية من الإعدادات"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"الاحتفاظ بنسخة احتياطية من إعداداتي"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"مزامنة الآن"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"إلغاء المزامنة"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"المس للمزامنة الآن<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"تقويم"</string>
<string name="sync_contacts" msgid="9174914394377828043">"جهات الاتصال"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"مرحبًا بك في مزامنة Google!"</font>" "\n"وهي الطريقة التي تتبعها Google لمزامنة البيانات للسماح بالدخول إلى جهات الاتصال والمواعيد والمزيد من أي مكان تتواجد فيه."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"إعدادات مزامنة التطبيق"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"البيانات والمزامنة"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"تغيير كلمة المرور"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"إعدادات الحساب"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"إزالة الحساب"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"إضافة حساب"</string>
- <string name="finish_button_label" msgid="481587707657751116">"إنهاء"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"إزالة الحساب"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"هل تريد حقًا إزالة هذه الحساب؟ ستؤدي إزالته إلى حذف جميع ما به من رسائل وجهات اتصال وغير ذلك من البيانات من الجهاز اللوحي. "\n"هل تريد المتابعة؟"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"هل تريد حقًا إزالة هذا الحساب؟ ستؤدي إزالته إلى حذف جميع ما به من رسائل وجهات اتصال وغير ذلك من البيانات من الهاتف. "\n"هل تريد المتابعة؟"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"هذا الحساب مطلوب لبعض التطبيقات. ولا يمكنك إزالته إلا بعد إعادة تعيين الجهاز اللوحي إلى القيم الافتراضية للمصنع (وهذا يؤدي إلى حذف جميع بياناتك الشخصية). يمكنك إجراء ذلك في تطبيق \"الإعدادات\"، ضمن \"الخصوصية\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"هذا الحساب مطلوب لبعض التطبيقات. ولا يمكنك إزالته إلا بعد إعادة تعيين الهاتف إلى القيم الافتراضية للمصنع (وهذا يؤدي إلى حذف جميع بياناتك الشخصية). يمكنك إجراء ذلك من خلال تطبيق \"الإعدادات\"، ضمن \"الخصوصية\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"اشتراكات يعرضها الناشر"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"مزامنة <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"لا يمكن المزامنة يدويًا"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"مزامنة هذا العنصر معطّلة في الوقت الحالي. لتغيير تفضيلاتك، شغّل بشكل مؤقت بيانات الخلفية والمزامنة التلقائية."</string>
- <string name="enter_password" msgid="3268224850821675915">"أدخل كلمة مرور لتشفير التخزين."</string>
- <string name="try_again" msgid="5904121494468643129">"عذرًا، أعد المحاولة."</string>
- <string name="service_busy" msgid="225227519012409130">"الخدمة مشغولة، أعد المحاولة"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-bg/arrays.xml b/res/values-bg/arrays.xml
index dba039e..6743420 100644
--- a/res/values-bg/arrays.xml
+++ b/res/values-bg/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Показват се някои анимации на прозорци"</item>
<item msgid="488968798204105119">"Показват се всички анимации на прозорци"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 секунди"</item>
- <item msgid="8881760709354815449">"30 секунди"</item>
- <item msgid="7589406073232279088">"1 минута"</item>
- <item msgid="7001195990902244174">"2 минути"</item>
- <item msgid="7489864775127957179">"5 минути"</item>
- <item msgid="2314124409517439288">"10 минути"</item>
- <item msgid="6864027152847611413">"30 минути"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"незабавно"</item>
- <item msgid="6736512735606834431">"5 секунди"</item>
- <item msgid="8044619388267891375">"15 секунди"</item>
- <item msgid="1822002388249545488">"30 секунди"</item>
- <item msgid="8538071621211916519">"1 минута"</item>
- <item msgid="5663439580228932882">"2 минути"</item>
- <item msgid="49888496216106852">"5 минути"</item>
- <item msgid="9002737361305019353">"10 минути"</item>
- <item msgid="4322676235684793329">"30 минути"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Много бавна"</item>
<item msgid="2361722960903353554">"Бавна"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Отлично"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Когато екрана се изключи"</item>
+ <item msgid="3804733751095821976">"Когато екрана се изключи"</item>
<item msgid="1549288661423279207">"Никога при включено захранване"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Никога"</item>
+ <item msgid="1986753720941888596">"Никога"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Автоматично"</item>
diff --git a/res/values-bg/strings.xml b/res/values-bg/strings.xml
index 6220bf9..9a265d8 100644
--- a/res/values-bg/strings.xml
+++ b/res/values-bg/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Сканира се"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Заявка за сдвояване чрез Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Заявка за сдвояване"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Избор за сдвояване с/ъс<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Показване на получени файлове"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Списък с файловете, получени през Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Избиране на Bluetooth устройство"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Заявка за разрешение на Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Приложение иска разрешение да включи Bluetooth. Искате ли да направите това?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Приложение иска разрешение да включи Bluetooth и да направи таблета ви откриваем от други устройства за <xliff:g id="TIMEOUT">%1$d</xliff:g> секунди. Искате ли да направите това?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Приложение от телефона ви иска разрешение да включи Bluetooth и да го направи откриваем от други Bluetooth устройства за <xliff:g id="TIMEOUT">%1$d</xliff:g> секунди. Искате ли да направите това?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Bluetooth се включва..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Автоматично свързване"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Настройки за дата и час"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Стартиране на <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Профил:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Настройки за прокси сървър"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Настройки за прокси сървър"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Задаване на общия HTTP прокси сървър и списъците за изключване"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Изчистване"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Порт"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Безжичните връзки се деактивират..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Безжичните връзки се активират..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Кабелни и безжични мрежи"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Кабелни и безжични мрежи"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Настройки за кабелна и безжична мрежа"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Управлява Wi-Fi, Bluetooth, самолетен режим, мобилни и VPN мрежи"</string>
<string name="roaming" msgid="3596055926335478572">"Роуминг на данни"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Свързване с услуги за данни при роуминг"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Избор на оператора"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Избиране на мрежов оператор"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Дата и час"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Задаване на дата и час"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Задаване на дата, час, часова зона и формати"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Автоматична дата и час"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Използване на часа, предоставен от мрежата"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Сортиране по часова зона"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Дата"</string>
<string name="time_picker_title" msgid="483460752287255019">"Час"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Време за изчакване"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Заключване на екрана <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> след автоматичното му изключване"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Заключване на устройството след времето за изчакване"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"С информацията за собственика на заключения екран"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Инф. за собственика"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Задаване на Моето местоположение, отключване на екран, заключване на SIM картата и на хранилището за идентификационни данни"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Задаване на Моето местоположение, отключване на екран и заключване на хранилището за идентификационни данни"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Пароли"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Шифроване на устройството"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Шифроване на данните в устройството"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Шифроване на данните в устройството"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Изисква да зададете PIN за отключване или парола за устройството"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Изисква да зададете PIN за отключване или парола за устройството"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Шифровано"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Можете да шифровате своите профили, настройки, изтеглени приложения и данните им, мултимедийни и други файлове. След като направите това за телефона си, не можете да го разшифровате освен чрез възстановяване на фабричните настройки, което ще изтрие всичките данни в него."\n\n"Шифроването отнема до един час. Трябва да започнете със заредена батерия и телефонът ви да е включен към захранването, докато процесът завърши. Ако го прекъснете, ще загубите някои или всичките си данни."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Можете да шифровате своите профили, настройки, изтеглени приложения и данните им, мултимедийни и други файлове. След като направите това за телефона си, не можете да го разшифровате освен чрез възстановяване на фабричните настройки, което ще изтрие всичките данни в него."\n\n"Шифроването отнема до един час. Трябва да започнете със заредена батерия и телефонът ви да е включен към захранването, докато процесът завърши. Ако го прекъснете, ще загубите някои или всичките си данни."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Шифроване на таблета"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Шифроване на телефона"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Потвърждаване на шифроването"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Да се шифроват ли потребителските данни? Тази операция не е обратима и не може да се прекъсва без загуба на информация! Шифроването може да отнеме до един час."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Да се шифроват ли потребителските данни? Тази операция не е обратима и не може да се прекъсва без загуба на информация! Шифроването може да отнеме до един час."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Шифроване"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Опитайте отново след ^1 секунди."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Конф. на закл. на екр."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Конф. на закл. на екр."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Защита за отключване на екрана"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Настройва заключването на екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Промяна на заключването на екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Промяна или деактивиране на защита с фигура, PIN или парола"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Изберете начин за заключване на екрана"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Изключване"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Без заключване на екрана"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Незащитено"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Откл. на екрана без парола, фигура или PIN"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Без показване на заключения екран"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Няма"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Деактивира защитата за отключване на екрана"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Фигура"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Изисква се фигура за отключване на екрана"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Начертайте фигура, за да отключите екрана"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Изисква се цифров PIN за отключване на екрана"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Въведете цифров PIN код, за да отключите екрана"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Парола"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Изисква се парола за отключване на екрана"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Въведете парола, за да отключите екрана"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Деактивирано от отдалечен администратор на устройството"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Изкл."</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Незащитено"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Защитено с фигура"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Защитено с PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Защитено с парола"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Изключване на заключването на екрана"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Премахване на фигура за отключване"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Премахване на PIN кода за отключване"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Администраторът на устройството не разрешава използването на скорошна парола"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Отказ"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Отказ"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Напред"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Администриране на устройство"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Администратори на устройството"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Преглед или деактивиране на администраторите на устройството"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Настройки за Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Управление на връзки, задаване на име и откриваемост на устройство"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Заявка за сдвояване чрез Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Въведете PIN за сдвояване с/ъс „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“. (Опитайте с 0000 или 1234.) Може да се наложи да въведете същия PIN код на устройството с Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Въведете код за достъп за сдвояване с/ъс „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"За сдвояване с „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“, потвърдете че се показва ключа за достъп: <xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" иска да се сдвои."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Въведете „<xliff:g id="PASSKEY">%2$s</xliff:g>“ на „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ за сдвояване, последвано от „Return“ или „Enter“."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Сдвояване"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Без сдвояване"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth устройство"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Опции…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Свързване с/ъс..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Медия"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"„Свободни ръце“"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Таблет"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Прехвърляне"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Устройство за въвеждане"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Тетъринг"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Връзката между <xliff:g id="DEVICE_NAME">%1$s</xliff:g> и мултимедийното аудио ще бъде прекъсната."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Връзката между <xliff:g id="DEVICE_NAME">%1$s</xliff:g> и аудиото от „свободни ръце“ ще бъде прекъсната."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Връзката между <xliff:g id="DEVICE_NAME">%1$s</xliff:g> и устройството за въвеждане ще бъде прекъсната."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Връзката между <xliff:g id="DEVICE_NAME">%1$s</xliff:g> и тетъринга ще бъде прекъсната."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Опции за <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Използване на телефон за аудио"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Използване на за пренос на файлове"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Да се използва за въвеждане"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Използване за достъп до интернет"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Настройки за докинг станция"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Използване на докинг аудиостанция"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Като високоговорител"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Не може да се сканира за мрежи."</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Известие за мрежа"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Известие при налична отворена мрежа"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Правила на Wi-Fi за спящ режим"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Посочване на времето за превключване от Wi-Fi към мобилни данни"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Възникна проблем при задаването на правилата за спящ режим."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Добавете Wi-Fi мрежа"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi мрежи"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Сканиране"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Промяна на мрежа"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Мрежова настройка"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Въведете PIN код от точката за достъп"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Настройка на WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Начин за конфигурация с WPS PIN"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Въведете PIN кода <xliff:g id="WPS_PIN">%1$s</xliff:g> на точката за достъп"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS вече е в ход и приключването може да отнеме няколко секунди"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Стартирането на WPS не бе успешно. Моля, опитайте отново"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID на мрежа"</string>
<string name="wifi_security" msgid="6603611185592956936">"Сигурност"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Сила на сигнала"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Забравяне"</string>
<string name="wifi_save" msgid="3331121567988522826">"Запазване"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Отказ"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Открита е друга сесия с WPS. Моля, опитайте отново след няколко минути"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Разширени"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Правила на Wi-Fi за спящ режим"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Посочване на времето за превключване от Wi-Fi към мобилни данни"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Възникна проблем при задаването на правилата за спящ режим."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Честотен спектър за Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Посочете обхвата от честота на работа"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Възникна проблем при задаването на честотния спектър."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> преносима гореща точка за Wi-Fi"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Звук"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Екран"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Дисплей"</string>
<string name="sound_settings" msgid="5007659014828162881">"Настройки за звук"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Тих режим"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Заглушаване на всички звуци, освен от медийни файлове и будилници"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Автоматично превключване на ориентацията при завъртане на телефона"</string>
<string name="brightness" msgid="2354961343555249270">"Яркост"</string>
<string name="brightness_summary" msgid="838917350127550703">"Наглася яркостта на екрана"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Време за изчакване"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Екранът се изключва автоматично след <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Време за изчакване на екрана"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Автоматична яркост"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Настройки за заключването на SIM картата"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Настройване на заключването на SIM картата"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Не е налично"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Състояние"</string>
<string name="device_status" msgid="607405385799807324">"Състояние"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Състояние на батерията, мрежата и друга информация"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Телефонен номер, сигнал и т.н."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Телефонен номер, сигнал и т.н."</string>
<string name="storage_settings" msgid="4211799979832404953">"Хранилище"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Настройки на хранилището"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Спиране на USB хранилището, преглед на наличното хранилище"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Деактивиране на SD картата, преглед на налично хранилище"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Моят телефонен номер"</string>
+ <string name="status_number" msgid="5123197324870153205">"Моят телефонен номер"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL версия"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Вътрешно хранилище"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB хранилище"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD карта"</string>
- <string name="memory_available" msgid="5052397223077021181">"На разположение"</string>
- <string name="memory_size" msgid="5458889090691922288">"Общо"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Изчислява се..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Приложения"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Мултимедия"</string>
+ <string name="memory_available" msgid="418542433817289474">"Налично място"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Общо място"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Използване от приложения"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Използване от мултимедия"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Спиране на сподел. хран."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Деактивиране на SD карта"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Спиране на вътрешното USB"</string>
@@ -732,7 +707,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Това ще изтрие всички данни от "<b>"вътрешното хранилище"</b>" на таблета ви, включително:"\n\n<li>"профила ви в Google;"</li>\n<li>"данни и настройки от системата и приложенията;"</li>\n<li>"изтеглени приложения."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Това ще изтрие всички данни от "<b>"вътрешното хранилище"</b>" на телефона ви, включително:"\n\n<li>"профила ви в Google;"</li>\n<li>"данни и настройки от системата и приложенията;"</li>\n<li>"изтеглени приложения."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Понастоящем сте влезли в следните профили:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Музика"</li>\n<li>"Снимки"</li>\n<li>"Други потребителски данни"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"За да изчистите и музиката, снимките и другите потребителски данни, трябва да се изтрие "<b>"USB хранилището"</b>"."</string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"За да изчистите и музиката, снимките и другите потребителски данни, трябва да се изтрие "<b>"SD картата"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Изтриване на USB хранилището"</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Използване на помощ за GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Използване на сървър за помощ с GPS (премахнете отметката за намаляване на употребата на мрежа)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Използване на сървър за помощ с GPS (премахнете отметката за подобряване на качеството нa услугата)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Да се използва местоположението за резултати от търсенето с Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Да се използва местоположението за резултати от търсенето с Google и други наши услуги"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Местоположението се използва за подобряване на резултатите от търсенето с Google и други наши услуги"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Да се използва местоположението за резултати от търсенето с Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Да се използва местоположението за резултати от търсенето с Google и други наши услуги"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Местоположението се използва за подобряване на резултатите от търсенето с Google и други наши услуги"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Всичко за таблета"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Всичко за телефона"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Преглед на състоянието, правната информация и версията на софтуера"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Паролата е зададена"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN кодът е зададен"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Фигурата е зададена"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Заключване на екрана"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Отключване на екрана"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Промяна на фигурата за отключване"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Промяна на PIN кода за отключване"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Потвърждаване на запазена фигура"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Напред"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Подсигуряване на таблета ви"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Защитаване на телефона ви"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Защитете таблета си от неупълномощена употреба, като създадете лична фигура за отключване на екрана. Свържете с пръст в произволен ред точките на следващия екран. Трябва да свържете поне четири точки. "\n\n"Готови ли сте да започнете? Докоснете „Напред“."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Защитете телефона си от неупълномощена употреба като създадете лична фигура за отключване. "\n<font height="17">\n</font><b>"1"</b>" На следващия екран вижте как е начертана примерна фигура. "\n<font height="17">\n</font><b>"2"</b>" Когато сте готови, начертайте своята лична фигура за отключване. Експериментирайте с различни модели, но свържете поне четири точки. "\n<font height="17">\n</font><b>"3"</b>" Начертайте фигурата си отново за потвърждение. "\n<font height="17">\n</font><b>"Готови ли сте да започнете? Докоснете „Напред“"</b>". "\n<font height="3">\n</font>"За да оставите телефона си незащитен, докоснете „Отказ“."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Управление на приложенията"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Управление и премахване на инсталирани приложения"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Общо"</string>
<string name="application_size_label" msgid="5055196275624686382">"Приложение"</string>
<string name="data_size_label" msgid="8679376373625710107">"Данни"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB хранилище"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD карта"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Деинсталиране"</string>
<string name="disable_text" msgid="6544054052049395202">"Деактивиране"</string>
<string name="enable_text" msgid="9217362512327828987">"Активиране"</string>
@@ -991,15 +966,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Да се спре ли системната услуга?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Наистина ли искате да спрете тази системна услуга? Ако го направите, е възможно някои функции на таблета ви да спрат да работят правилно, докато не го изключите и включите отново."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Наистина ли искате да спрете тази системна услуга? Ако го направите, е възможно някои функции на телефона ви да спрат да работят правилно, докато не го изключите и включите отново."</string>
- <string name="language_settings" msgid="5292716747264442359">"Език и въвеждане"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Език и въвеждане"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Език и клавиатура"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Настройки за език и клавиатура"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Езикови настройки"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Настройки на клавиатурата"</string>
<string name="phone_language" msgid="1165758957501090679">"Избор на език"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Автоматично заменяне"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Поправка на грешно написани думи"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Автоматични главни букви"</string>
+ <string name="auto_caps" msgid="6379232078052591265">"Автоматично поставяне на главни букви"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Прави всяка първа буква на изреченията главна"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Автоматично поставяне на пунктуация"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Настройки за физическа клавиатура"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Преки пътища"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Въвеждане на текст"</string>
<string name="input_method" msgid="5434026103176856164">"Метод на въвеждане"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Текущ метод за въвеждане"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Избор на метод за въвеждане"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Автоматично"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Винаги да се показва"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Винаги да се скрива"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Методи за въвеждане – конфигуриране"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Настройки"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Активни методи за въвеждане"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Използване на системен език"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Настройки за <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Избор: Активни методи за въвеждане"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Управление на методите за въвеждане"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Настройки за екранна клавиатура"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Вградена клавиатура"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Настройки за вградената физическа клавиатура"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Време за включен Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Време за включен Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Подробности от историята"</string>
- <string name="details_title" msgid="3792801565213935385">"Подробности за употребата"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Подробности за употребата на батерията"</string>
<string name="details_subtitle" msgid="32593908269911734">"Подробности за употреба"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Настройване на захранването"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Включени пакети"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Неуспешни преговори със сървър. Може да не е съгласен с опцията ви за шифроване. Искате ли да проверите тази настройка?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Добавяне на VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Добавяне на VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Подробности за VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Добавяне на VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Подробности за <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Задаване и управление на частни виртуални мрежи (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(непроменени)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(не е зададенo)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Хранилище за идент. данни"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Хранилище за идентификационни данни"</string>
<string name="credentials_access" msgid="4843187230913860492">"Използване на сигурни идентификационни данни"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Даване на достъп до защитени сертификати и други идентификационни данни"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Инсталиране от USB хранилището"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Инсталиране от SD картата"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Инсталиране на сертификати от USB хранилището"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Инсталиране на сертификати от SD картата"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Задаване на парола"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Задаване или промяна на паролата за хранилището за идентификационни данни"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Изчистване на идент. данни"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Премахване на цялото съдържание и задаване на нова парола"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Въвеждане на парола"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Въведете паролата за хранилището за идентификационни данни."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Задайте паролата за хранилището за идентификационни данни. Трябва да бъде поне 8 знака."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Въведете паролата за хранилището за идентификационни данни."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Инсталиране от USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Инсталиране от SD картата"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Инсталиране на шифровани сертификати от USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Инсталиране на сертификати от SD карта"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Задаване на парола"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Задаване или промяна на паролата за хранилището за идентификационни данни"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Изчистване на хранилище"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Изчиства хранилището от цялото съдържание и му задава нова парола"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Наистина ли искате да изтриете всички идентификационни данни и да зададете нова парола за хранилището им?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Текуща парола:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Нова парола:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Потвърждаване на нова парола:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Цялото съдържание ще бъде премахнато и ще бъде зададена нова парола. Наистина ли искате да го направите?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Задаване на парола за хранилището за идентификационни данни (поне 8 знака)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Моля, въведете правилната парола."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Моля, въведете правилната парола. Имате още един опит преди хранилището за идентификационни данни да бъде изтрито."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Моля, въведете правилната парола. Имате още <xliff:g id="NUMBER">%1$d</xliff:g> опита преди хранилището за идентификационни данни да бъде изтрито."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Паролите не си съответстват."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Трябва да въведете и потвърдите парола."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Моля, въведете паролата."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Паролата трябва да е поне 8 знака."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Паролата е неправилна."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Паролата е неправилна. Имате още една възможност, преди хранилището за идентификационни данни да бъде изтрито."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Паролата е неправилна. Имате още <xliff:g id="NUMBER">%1$d</xliff:g> възможности, преди хранилището за идентификационни данни да бъде изтрито."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Идент. данни: изтрито хранил."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Хранилището за идентификационни данни е изтрито."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Хранилището за идентификационни данни е активирано."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Хранилището за идентификационни данни е деактивирано."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Тон за спешност"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Задаване на поведение при спешно обаждане"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Поверителност"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Вх. обаждания"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Известия"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Отзиви"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Настройка на Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Свържете се с Wi-Fi мрежата <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Свързвате се с Wi-Fi мрежата <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Свързахте се с Wi-Fi мрежата <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Добавяне на мрежа"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Настройка на Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Няма връзка"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Добавяне на мрежа"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Опресняване на списъка"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Запазване"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Отказ"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Мрежите се сканират..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Докоснете мрежа, за да се свържете с нея"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Свързване със съществуващата мрежа"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Свързване с незащитена мрежа"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Въведете мрежова конфигурация"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Свързва се…"</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Напред към следващата стъпка"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Не се поддържа EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Не можете да конфигурирате Wi-Fi връзка с редактиране на точката за достъп (EAP) по време на настройката. След това можете да го направите от „Настройки“ в "<b>"Кабелни и безжични мрежи"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Свързването може да отнеме няколко минути..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Докоснете "<b>"Напред"</b>", за да продължите с настройката."\n\n"Докоснете "<b>"Назад"</b>", за да се свържете с друга Wi-Fi мрежа."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Не можете да конфигурирате Wi-Fi връзка с редактиране на точката за достъп по време на настройката. След това можете да го направите в „Настройки“ под „Кабелни и безжични мрежи“."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Настройки за синхрон"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Синхронизирането понастоящем има проблеми. Ще се върне скоро."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Добавяне на профил"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Общи настр. за синхронизиране"</string>
<string name="background_data" msgid="5779592891375473817">"Данни на заден план"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Приложенията да синхр., пращат и получават данни винаги"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Внимание"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Деактивирането на данните на заден план удължава живота на батерията и намалява употребата на данни. Някои приложения могат пак да ползват връзката за данни на заден план."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Автоматично синхронизиране"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Автосинхронизиране на данни от приложения"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Управление на профилите"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Синхр. е ВКЛЮЧЕНО"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Синхр. е ИЗКЛЮЧЕНО"</string>
<string name="sync_error" msgid="5060969083117872149">"Грешка при синхр."</string>
<string name="settings_backup" msgid="2274732978260797031">"Създаване на резервно копие на настройките"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Създаване на резервно копие на настройките ми"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Синхрон сега"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Отказ на синхронизиране"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Докоснете, за да синхронизирате сега<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Календар"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Контакти"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Добре дошли в Google Синхронизиране!"</font>" "\n"Подходът на Google към синхронизирането на данни, за да ви осигурим достъп до контактите ви, срещите ви и много други неща, където и да сте."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Настройки за синхронизиране на приложения"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Данни и синхронизиране"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Промяна на паролата"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Настройки на профила"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Премахване на профила"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Добавяне на профил"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Завършване"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Премахване на профил"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Наистина ли искате да премахнете този профил? Това ще изтрие и всичките му съобщения, контакти и други данни от таблета. "\n"Да се продължи ли?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Наистина ли искате да премахнете този профил? Това ще изтрие и всичките му съобщения, контакти и други данни от телефона. "\n"Да се продължи ли?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Този профил се изисква от някои приложения. Можете да го премахнете само като възстановите таблета до фабричните настройки (което изтрива всичките ви лични данни). Това става в приложението „Настройки“ в „Поверителност“."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Този профил се изисква от някои приложения. Можете да го премахнете само като възстановите телефона до фабричните настройки (което изтрива всичките ви лични данни). Това става в приложението „Настройки“ в „Поверителност“."</string>
- <string name="provider_label" msgid="7724593781904508866">"Прокарване на абонаменти"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Синхронизиране на <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Не може да се синхронизира ръчно"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Синхронизирането за този елемент понастоящем е деактивирано. За да промените предпочитанието си, временно включете данните на заден план и автоматичното синхронизиране."</string>
- <string name="enter_password" msgid="3268224850821675915">"Въведете паролата, за да дешифрирате хранилището"</string>
- <string name="try_again" msgid="5904121494468643129">"Съжаляваме, опитайте отново"</string>
- <string name="service_busy" msgid="225227519012409130">"Услугата е заета, опитайте отново"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-ca/arrays.xml b/res/values-ca/arrays.xml
index a63a6ef..840ba29 100644
--- a/res/values-ca/arrays.xml
+++ b/res/values-ca/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Es mostren algunes animacions de finestres"</item>
<item msgid="488968798204105119">"Es mostren totes les animacions de finestres"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segons"</item>
- <item msgid="8881760709354815449">"30 segons"</item>
- <item msgid="7589406073232279088">"1 minut"</item>
- <item msgid="7001195990902244174">"2 minuts"</item>
- <item msgid="7489864775127957179">"5 minuts"</item>
- <item msgid="2314124409517439288">"10 minuts"</item>
- <item msgid="6864027152847611413">"30 minuts"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"immediatament"</item>
- <item msgid="6736512735606834431">"5 segons"</item>
- <item msgid="8044619388267891375">"15 segons"</item>
- <item msgid="1822002388249545488">"30 segons"</item>
- <item msgid="8538071621211916519">"1 minut"</item>
- <item msgid="5663439580228932882">"2 minuts"</item>
- <item msgid="49888496216106852">"5 minuts"</item>
- <item msgid="9002737361305019353">"10 minuts"</item>
- <item msgid="4322676235684793329">"30 minuts"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Molt lenta"</item>
<item msgid="2361722960903353554">"Lenta"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excel·lent"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Quan s\'apagui la pantalla"</item>
+ <item msgid="3804733751095821976">"Quan s\'apagui la pantalla"</item>
<item msgid="1549288661423279207">"Mai mentre estigui connectada"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Mai"</item>
+ <item msgid="1986753720941888596">"Mai"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automàtic"</item>
diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml
index 79cecd1..2bfb007 100644
--- a/res/values-ca/strings.xml
+++ b/res/values-ca/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"S\'està cercant"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Sol·licitud d\'emparellament de Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Sol·licitud d\'emparellament"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Selecciona l\'emparellament amb <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Mostra els fitxers rebuts"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Mostra llista fitxers rebuts mitjançant Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selector de dispositiu Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Sol·licitud de permís de Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Una aplicació està sol·licitant permís per activar Bluetooth. Vols fer-ho?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Una aplicació de la tauleta sol·licita permís per activar Bluetooth i per fer que la tauleta sigui visible per a altres dispositius durant <xliff:g id="TIMEOUT">%1$d</xliff:g> segons. Vols acceptar-ho?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Una aplicació del telèfon sol·licita permís per activar el Bluetooth i perquè altres dispositius puguin detectar el telèfon durant <xliff:g id="TIMEOUT">%1$d</xliff:g> segons. Voleu permetre-ho?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"S\'està activant Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Connexió automàtica"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Configuració de data i hora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 p. m."</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Inicia <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Compte:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Configuració del servidor intermediari"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Configuració de servidor intermediari"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Defineix el servidor intermediari HTTP i les llistes d\'exclusió"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Esborra"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"S\'estan desactivant les connexions sense fil..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"S\'estan activant les connexions sense fil..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Sense fil i xarxes"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Sense fil i xarxes"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Configuració sense fil i de xarxa"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Gestiona la Wi-fi, el Bluetooth, el mode d\'avió, les xarxes mòbils i les VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Itinerància de dades"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Connecta\'t als serveis de dades en itinerància"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Selecció d\'operador"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Seleccioneu un operador de xarxa"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data i hora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Establiment de data i d\'hora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Defineix la data, l\'hora, el fus horari i els formats"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Data i hora automàtiques"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utilitza l\'hora proporcionada per la xarxa"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ordena per fus horari"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Hora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Temps d\'espera esgotat"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloqueja la pantalla <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> després que es desactivi automàticament"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloqueja dispositiu després de temps d\'espera"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostra informació del propietari a la pantalla de bloqueig"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Informació de propietari"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Defineix La meva ubicació, el desbloqueig de la pantalla, el bloqueig de la targeta SIM i el bloqueig de l\'emmagatzematge de credencials"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Defineix La meva ubicació, el desbloqueig de pantalla i el bloqueig d\'emmagatzematge de credencials"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Contrasenyes"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Encriptació del dispositiu"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Encriptació de les dades del dispositiu"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Encriptació de les dades del dispositiu"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Sol·licita que defineixis un PIN o bé una contrasenya de desbloqueig del dispositiu"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Sol·licita que defineixis un PIN o bé una contrasenya de desbloqueig del dispositiu"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Encriptat"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Pots encriptar els teus comptes, les configuracions, les aplicacions baixades i les seves dades, els elements multimèdia i altres fitxers. Una vegada encriptis el telèfon, no podràs desencriptar-lo tret que duguis a terme un restabliment de les dades de fàbrica, cosa que n\'esborrarà totes les dades."\n\n"L\'encriptació triga fins a una hora. Cal que iniciïs el procés amb la bateria carregada i que mantinguis el telèfon connectat fins que s\'hagi completat l\'encriptació. Si interromps el procés d\'encriptació, perdràs totes les dades o bé una part."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Pots encriptar els teus comptes, les configuracions, les aplicacions baixades i les seves dades, els elements multimèdia i altres fitxers. Una vegada encriptis el telèfon, no podràs desencriptar-lo tret que duguis a terme un restabliment de les dades de fàbrica, cosa que n\'esborrarà totes les dades."\n\n"L\'encriptació triga fins a una hora. Cal que iniciïs el procés amb la bateria carregada i que mantinguis el telèfon connectat fins que s\'hagi completat l\'encriptació. Si interromps el procés d\'encriptació, perdràs totes les dades o bé una part."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Encripta la tauleta"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Encripta el telèfon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmació de l\'encriptació"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Vols encriptar les dades de l\'usuari? Aquesta operació no es pot desfer i no es pot interrompre sense que es perdin dades. L\'encriptació pot trigar fins a una hora."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Vols encriptar les dades de l\'usuari? Aquesta operació no es pot desfer i no es pot interrompre sense que es perdin dades. L\'encriptació pot trigar fins a una hora."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Encriptació"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Torna-ho a provar d\'aquí a ^1 segon."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configurar bloqueig"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configuració del bloqueig de pantalla"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Seguretat del desbloqueig de pantalla"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configuració del bloqueig de pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Canvia el bloqueig de pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Canvia o desactiva la seguretat de contrasenyes, PIN o patrons"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Trieu un mètode per bloquejar la pantalla"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Desactivat"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"No bloquegis mai la pantalla"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Desactiva protecció"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Desbloqueig sense patró, PIN ni contrasenya"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"No mostris la pantalla de bloqueig"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Cap"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Desactiva la seguretat de desbloqueig de pantalla"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Patró"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Patró per desbloquejar la pantalla"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Dibuixeu el patró per desbloquejar la pantalla"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"PIN numèric per desbloquejar la pantalla"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Introduïu un PIN numèric per desbloquejar la pantalla"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Contrasenya"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Contrasenya per desbloquejar la pantalla"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Introduïu una contrasenya per desbloquejar la pantalla"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Desactivat per administrador remot de dispositiu"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Desactivat"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Sense protecció"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Assegurada mitjançant patró"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Assegurada mitjançant PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Protegida amb contrasenya"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Desactiva el bloqueig de pantalla"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Elimina el patró de desbloqueig"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Elimina el PIN de desbloqueig"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"L\'administrador del dispositiu no permet utilitzar una contrasenya recent"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"D\'acord"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancel·la"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancel·la"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Següent"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administració del dispositiu"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Administradors de dispositiu"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Mostra o desactiva els administradors del dispositiu"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Configuració de Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gestiona les connexions, defineix el nom i la detecció del dispositiu"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Sol·licitud d\'emparellament de Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Introdueix el PIN per emparellar amb \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". Prova amb 0000 o amb 1234. Pot ser que hagis d\'introduir el mateix PIN al dispositiu Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Introdueix la contrasenya per emparellar amb \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Per fer l\'emparellament amb \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", confirmeu que mostra la contrasenya: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"vol emparellar-se."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Introdueix \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" a \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" per emparellar i tot seguit prem la tecla de retorn."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Emparella"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"No emparellis"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositiu Bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opcions…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Connecta\'t a..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimèdia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Mans lliures"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tauleta"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transferència"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositiu d\'entrada"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Connexió compartida"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> es desconnectarà de l\'àudio del mitjà."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> es desconnectarà de l\'àudio de mans lliures."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> es desconnectarà del dispositiu d\'entrada."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> es desconnectarà de la connexió compartida."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opcions de: <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utilitza-ho per a l\'àudio del telèfon"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Utilitza per a la transferència de fitxers"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utilitza per a entrada"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utilitza\'l per a l\'accés a Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Configuració de la base"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Utilitza la base per a l\'àudio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Com a telèfon amb altaveu"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"No es pot cercar xarxes"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificació de xarxa"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Notifica\'m quan hi hagi una xarxa oberta disponible"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Política de suspensió de Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especifiqueu quan canviar de Wi-fi a dades mòbils"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"S\'ha produït un problema en definir la política de suspensió."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Afegeix una xarxa Wi-fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Xarxes Wi-fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Cerca"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modifica la xarxa"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuració de xarxa"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Introdueix el PIN des del punt d\'accés"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuració WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuració de mètode PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Introdueix el PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> al punt d\'accés"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS ja està en curs i pot trigar unes dècimes de segon a completar-se"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Error en iniciar WPS. Torna-ho a provar"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID de xarxa"</string>
<string name="wifi_security" msgid="6603611185592956936">"Seguretat"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensitat del senyal"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Oblida"</string>
<string name="wifi_save" msgid="3331121567988522826">"Desa"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancel·la"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"S\'ha detectat una altra sessió WPS. Torna-ho a provar d\'aquí a una estona"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avançat"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Política de suspensió de Wi-fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especifiqueu quan canviar de Wi-fi a dades mòbils"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"S\'ha produït un problema en definir la política de suspensió."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda de freqüència Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Especifica l\'interval de freqüència de funcionament"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"S\'ha produït un problema en definir la banda de freqüència."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Punt de connexió Wi-fi portàtil <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"So"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Pantalla"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Visualització"</string>
<string name="sound_settings" msgid="5007659014828162881">"Configuració del so"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Mode silenciós"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Silencia tots els sons excepte multimèdia i alarmes"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Canvia d\'orientació automàticament en girar el telèfon"</string>
<string name="brightness" msgid="2354961343555249270">"Brillantor"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajusta la brillantor de la pantalla"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Temps d\'espera esgotat"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"La pantalla es desactiva automàticament després de <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Temps d\'espera de la pantalla"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Brillantor automàtica"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Configuració de bloqueig de targeta SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Configura el bloqueig de la targeta SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"No disponible"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Estat"</string>
<string name="device_status" msgid="607405385799807324">"Estat"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Estat de la bateria, xarxa i altra informació"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Número de telèfon, senyal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Número de telèfon, senyal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Emmagatzematge"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Configuració d\'emmagatzematge"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Desmunta l\'emmagatzematge USB, mostra l\'emmagatzematge disponible"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Desmunta la targeta SD, visualitza l\'emmagatzematge disponible"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"El meu número de telèfon"</string>
+ <string name="status_number" msgid="5123197324870153205">"El meu número de telèfon"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versió de PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Emmagatzematge intern"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Emmagatzematge USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Targeta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponible"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"S\'està calculant..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicacions"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Multimèdia"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espai disponible"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espai total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Ús de l\'aplicació"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Ús de mitjans"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Desmunta emmag. compartit"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Desmunta la targeta SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Desinstal·la emmag. USB intern"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Esborra l\'emmagatzematge USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Esborra la targeta SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Esborra totes les dades de l\'emmagatzematge USB intern, com música i fotos."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Esborra totes les dades de la targeta SD, com ara la música i les fotos"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Esborra totes les dades de la targeta SD, com música i fotos"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"No disponible"</string>
<string name="read_only" msgid="6702420168629076340">" (Només de lectura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Desmunta emmag. USB"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Això esborrarà totes les dades de l\'"<b>"emmagatzematge intern"</b>" de la tauleta, entre les quals s\'inclouen:"\n\n<li>"El teu Compte de Google"</li>\n<li>"Dades i configuració del sistema i d\'aplicacions"</li>\n<li>"Aplicacions baixades"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Això esborrarà totes les dades de l\'"<b>"emmagatzematge intern"</b>" del telèfon, inclosos:"\n\n<li>"El Compte de Google"</li>\n<li>"Dades i configuració del sistema i d\'aplicacions"</li>\n<li>"Aplicacions baixades"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Actualment has iniciat la sessió als comptes següents:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Música"</li>\n<li>"Fotos"</li>\n<li>"Altres dades de l\'usuari"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Per esborrar també música, imatges i altres dades d\'usuari, cal esborrar l\'"<b>"emmagatzematge USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Si també vols suprimir música, imatges i altres dades de l\'usuari, cal que esborris la "<b>"targeta SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Per esborrar també música, imatges i altres dades d\'usuari, cal esborrar la "<b>"targeta SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Esborra l\'emmagatzematge USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Esborra la targeta SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Esborra totes les dades de l\'emmagatzematge USB intern, com música o fotos."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilitza GPS assistit"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilitza el servidor per ajudar al GPS (desmarqueu-ho per reduir l\'ús de la xarxa)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilitza el servidor per ajudar al GPS (desmarqueu-ho per millorar el rendiment del GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utilitza la ubicació per a la cerca de Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilitza la ubicació per a la cerca de Google i per a altres serveis de Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ubicació utilitzada per millorar els resultats de la cerca de Google i altres serveis de Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Utilitza la ubicació per a la cerca de Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilitza la ubicació per a la cerca de Google i per a altres serveis de Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ubicació utilitzada per millorar els resultats de cerca de Google i altres serveis de Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Quant a la tauleta"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Quant al telèfon"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Mostra informació legal, estat, versió de programari"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"La contrasenya s\'ha definit"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"S\'ha definit el PIN"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"El patró s\'ha definit"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloqueja la pantalla"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Desbloqueig de pantalla"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Canvia el patró de desbloqueig"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Canvia el PIN de desbloqueig"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmeu el patró desat"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Següent"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Seguretat de la tauleta"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Protecció del telèfon"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protegeix la tauleta de l\'ús no autoritzat: crea un patró personal de desbloqueig de la pantalla. Fes servir el dit per connectar els punts en l\'ordre que vulguis a la pantalla següent. Has de connectar un mínim de quatre punts. "\n\n"Estàs preparat per començar? Toca \"Següent\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Per protegir el telèfon d\'usos no autoritzats, creeu un patró de desbloqueig de pantalla personal. "\n<font height="17">\n</font><b>"1"</b>" A la pantalla següent veureu com es dibuixa un patró d\'exemple. "\n<font height="17">\n</font><b>"2"</b>" Quan estigueu preparat, dibuixeu el vostre propi patró de desbloqueig personal. Experimenteu amb diversos patrons, però connecteu com a mínim quatre punts. "\n<font height="17">\n</font><b>"3"</b>" Torneu a dibuixar el patró per confirmar-lo. "\n<font height="17">\n</font><b>"Esteu preparat per començar? Toqueu \"Següent\""</b>". "\n<font height="3">\n</font>"Per deixar el telèfon desprotegit, toqueu \"Cancel·la\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Gestiona les aplicacions"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gestiona i elimina les aplicacions instal·lades"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicació"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dades"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Emmagatzematge USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Targeta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Desinstal·la"</string>
<string name="disable_text" msgid="6544054052049395202">"Desactiva"</string>
<string name="enable_text" msgid="9217362512327828987">"Activa"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Vols aturar el servei del sistema?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Estàs segur que vols aturar aquest servei del sistema? Si ho fas, és possible que algunes funcions de la tauleta deixin de funcionar correctament fins que l\'apaguis i la tornis a encendre."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Estàs segur que vols aturar aquest servei del sistema? Si ho fas, és possible que algunes funcions del teu telèfon deixin de funcionar correctament fins que l\'apaguis i el tornis a encendre."</string>
- <string name="language_settings" msgid="5292716747264442359">"Idioma i entrada"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma i entrada"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Idioma i teclat"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Configuració d\'idioma i teclat"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Configuració d\'idioma"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Configuració de teclat"</string>
<string name="phone_language" msgid="1165758957501090679">"Selecciona l\'idioma"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Dreceres"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Entrada de text"</string>
<string name="input_method" msgid="5434026103176856164">"Mètode d\'entrada"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Mètode d\'entrada actual"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selector del mètode d\'entrada"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automàtic"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostra sempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Amaga sempre"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configura els mètodes d\'entrada"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Configuració"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Mètodes d\'entrada actius"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Utilitza l\'idioma del sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Configuració de: <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Selecciona mètodes d\'entrada actius"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Gestiona els mètodes d\'entrada"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Configuració del teclat en pantalla"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Teclat integrat"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Configuració de teclat físic integrat"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi a temps"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi a temps"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalls de l\'historial"</string>
- <string name="details_title" msgid="3792801565213935385">"Detalls d\'ús"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalls d\'ús de la bateria"</string>
<string name="details_subtitle" msgid="32593908269911734">"Detalls d\'ús"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajusta l\'ús d\'energia"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Paquets inclosos"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"S\'ha produït un error a la negociació del servidor. Pot ser que el servidor no accepti l\'opció d\'encriptació. Voleu comprovar la configuració d\'encriptació?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Afegeix VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Afegeix VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalls VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Afegeix la VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detalls de: <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configura i gestiona xarxes privades virtuals (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(sense canvis)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(sense definir)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Emmagatzematge de credencials"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Emmagatzematge de credencials"</string>
<string name="credentials_access" msgid="4843187230913860492">"Utilitza credencials segures"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Permet a les aplicacions accedir als certificats segurs i a altres credencials"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instal·la des d\'emmag. USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instal·la des de la targeta SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instal·la els certificats des de l\'emmagatzematge USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instal·la els certificats des de la targeta SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Defineix la contrasenya"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Estableix o canvia la contrasenya per a l\'emmagatzematge de credencials"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Esborra les credencials"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Elimina tot el contingut i restableix la contrasenya"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Introduïu la contrasenya"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Introdueix la contrasenya per a l\'emmagatzematge de credencials."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Estableix la contrasenya per a l\'emmagatzematge de credencials. Ha de tenir com a mínim vuit caràcters."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Introduïu la contrasenya d\'emmagatzematge de credencials."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instal·la des d\'emmag. USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instal·la des de la targeta SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instal·la certificats encriptats d\'emmagatzematge USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instal·la els certificats encriptats des de la targeta SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Defineix la contrasenya"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Defineix o canvia la contrasenya d\'emmagatzematge de credencials"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Esborra l\'emmagatzematge"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Esborra tot el contingut de l\'emmagatzematge de credencials i restableix-ne la contrasenya"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Esteu segur que voleu suprimir totes les credencials i restablir la contrasenya d\'emmagatzematge de credencials?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Contrasenya actual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Contrasenya nova:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmeu la contrasenya nova:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"S\'eliminarà tot el contingut i es restablirà la contrasenya. N\'estàs segur?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Defineix una contrasenya per a l\'emmagatzematge de credencials (almenys 8 caràcters)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Introduïu la contrasenya correcta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Introduïu la contrasenya correcta. Teniu un intent més per introduir la contrasenya correcta abans que s\'esborri l\'emmagatzematge de credencials."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Introduïu la contrasenya correcta. Teniu <xliff:g id="NUMBER">%1$d</xliff:g> intents més per introduir la contrasenya correcta abans que s\'esborri l\'emmagatzematge de credencials."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Les contrasenyes no coincideixen."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Heu d\'introduir i confirmar una contrasenya."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Introduïu la contrasenya."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"La contrasenya ha de tenir almenys 8 caràcters."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"La contrasenya no és correcta."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Contrasenya incorrecta. Tens una oportunitat més abans que no s\'esborri l\'emmagatzematge de credencials."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Contrasenya incorrecta. Tens <xliff:g id="NUMBER">%1$d</xliff:g> oportunitats més abans que no s\'esborri l\'emmagatzematge de credencials."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Emmag. credencials esborrat."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"S\'ha esborrat l\'emmagatzematge de credencials."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"L\'emmagatzematge de credencials està activat."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"L\'emmagatzematge de credencials està desactivat."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"To d\'emergència"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Defineix el comportament quan es fa una trucada d\'emergència"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privadesa"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Trucades entrants"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificacions"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Comentaris"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configuració de Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Connecta a una xarxa Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"S\'està connectant a una xarxa Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Connectat a una xarxa Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Addició d\'una xarxa"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuració de Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"No connectat"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Afegeix una xarxa"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualitza la llista"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Desa"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancel·la"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"S\'estan escanejant les xarxes..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toca una xarxa per connectar-t\'hi"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Connecta a una xarxa existent"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Connecta\'t a una xarxa no segura"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Introdueix la configuració de xarxa"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"S\'està connectant..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Continua al pas següent"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP no és compatible"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"No pots configurar una connexió EAP Wi-Fi durant la configuració. Ho pots fer després a l\'opció \"Configuració\" de "<b>"Sense fil i xarxes"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"La connexió pot trigar una estona..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Toca "<b>"Següent"</b>" per continuar amb la configuració."\n\n"Toca "<b>"Enrere"</b>" per connectar-te a una altra xarxa Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"No pots configurar una connexió EAP Wi-Fi durant la configuració. Ho pots fer després a Configuració, dins de Xarxes sense fil."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Configuració de sincronització"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"La sincronització té problemes. Es tornarà a activar aviat."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Afegeix un compte"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Config. general sincronització"</string>
<string name="background_data" msgid="5779592891375473817">"Dades de fons"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Les aplicacions poden sincronitzar, enviar i rebre dades en qualsevol moment"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Atenció"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Desactivar les dades de fons augmenta la durada de la bateria i disminueix l\'ús de dades. És possible que algunes aplicacions encara utilitzin la connexió de dades de fons."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Sincronització automàtica"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Les aplicacions sincronitzen dades automàticament"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Gestiona comptes"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sincronització ACTIVADA"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sincr. DESACTIVADA"</string>
<string name="sync_error" msgid="5060969083117872149">"Error sincron."</string>
<string name="settings_backup" msgid="2274732978260797031">"Còpia de seguretat de la configuració"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Fes una còpia de seguretat de la configuració"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronitza ara"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancel·la la sincronització"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Toca per sincronitzar ara <xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Calendari"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Contactes"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Benvingut a Google Sync!"</font>" "\n"La sincronització de dades que ha ideat Google per permetre l\'accés als contactes, a les cites i a molts més elements des de qualsevol lloc."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Configuració de la sincronització d\'aplicacions"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dades i sincronització"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Canvia la contrasenya"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Configuració del compte"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Elimina el compte"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Addició d\'un compte"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Finalitza"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Eliminació del compte"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Estàs segur que vols suprimir aquest compte? En eliminar-lo, també suprimiràs tots els seus missatges, contactes i altres dades del telèfon. "\n"Vols continuar?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Estàs segur que vols suprimir aquest compte? En eliminar-lo, també suprimiràs tots els seus missatges, contactes i altres dades del telèfon. "\n"Vols continuar?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Algunes aplicacions requereixen aquest compte. Només el pots eliminar si restableixes els valors predeterminats de fàbrica a la tauleta (això fa que se suprimeixin totes les teves dades personals). Per fer-ho, vés a l\'aplicació de configuració, a \"Privadesa\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Algunes aplicacions requereixen aquest compte. Només el pots eliminar si restableixes els valors predeterminats de fàbrica al telèfon (això fa que se suprimeixin totes les teves dades personals). Per fer-ho, vés a l\'aplicació de configuració, a \"Privadesa\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"Subscripcions de tramesa automàtica"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronitza <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"No es pot sincronitzar manualment"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"En aquest moment, la sincronització d\'aquest element està desactivada. Per canviar la preferència, activa temporalment la sincronització automàtica i de les dades de fons."</string>
- <string name="enter_password" msgid="3268224850821675915">"Introdueix la contrasenya per desencriptar l\'emmagatzematge"</string>
- <string name="try_again" msgid="5904121494468643129">"Torna-ho a provar"</string>
- <string name="service_busy" msgid="225227519012409130">"Servei ocupat; torna-ho a provar."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-cs/arrays.xml b/res/values-cs/arrays.xml
index 187ca39..dbadbdf 100644
--- a/res/values-cs/arrays.xml
+++ b/res/values-cs/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Zobrazují se některé animace oken"</item>
<item msgid="488968798204105119">"Zobrazují se všechny animace oken"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekund"</item>
- <item msgid="8881760709354815449">"30 sekund"</item>
- <item msgid="7589406073232279088">"1 minuta"</item>
- <item msgid="7001195990902244174">"2 minuty"</item>
- <item msgid="7489864775127957179">"5 minut"</item>
- <item msgid="2314124409517439288">"10 minut"</item>
- <item msgid="6864027152847611413">"30 minut"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"okamžitě"</item>
- <item msgid="6736512735606834431">"5 sekund"</item>
- <item msgid="8044619388267891375">"15 sekund"</item>
- <item msgid="1822002388249545488">"30 sekund"</item>
- <item msgid="8538071621211916519">"1 minuta"</item>
- <item msgid="5663439580228932882">"2 minuty"</item>
- <item msgid="49888496216106852">"5 minut"</item>
- <item msgid="9002737361305019353">"10 minut"</item>
- <item msgid="4322676235684793329">"30 minut"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Velmi pomalá"</item>
<item msgid="2361722960903353554">"Pomalá"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Vynikající"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Při vypnutí obrazovky"</item>
+ <item msgid="3804733751095821976">"Při vypnutí obrazovky"</item>
<item msgid="1549288661423279207">"Nikdy, je-li zapnuto napájení"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nikdy"</item>
+ <item msgid="1986753720941888596">"Nikdy"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automaticky"</item>
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
index 7e2debb..ab35a72 100644
--- a/res/values-cs/strings.xml
+++ b/res/values-cs/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Vybitá"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Přepětí"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Neznámá chyba"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Nejméně zajímavé"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Viditelné"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Zařízení je viditelné v intervalu <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> s."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Vyhledávání"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Požadavek na párování zařízení Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Požadavek na párování"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Vybrat k párování se zařízením <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Zobrazit přijaté soubory"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Zobrazit seznam souborů přijatých pomocí technologie Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Výběr zařízení Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Požadavek na povolení zařízení Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Aplikace požaduje povolení zapnout připojení Bluetooth. Chcete toto povolení udělit?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Aplikace v tabletu požaduje povolení zapnout připojení Bluetooth a nastavit tablet na <xliff:g id="TIMEOUT">%1$d</xliff:g> s do viditelného režimu. Chcete toto povolení udělit?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Aplikace v telefonu požaduje povolení zapnout připojení Bluetooth a nastavit telefonu do viditelného režimu na <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Chcete toto povolení udělit?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Zapínání zařízení Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatické připojení"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Nastavení data a času"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Spustit činnost <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Účet:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavení serveru proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavení serveru proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Nastavení globálního proxy serveru protokolu HTTP a seznamu vyloučení"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Vymazat"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Zrušit"</string>
<string name="settings_label" msgid="1626402585530130914">"Nastavení"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Nastavení"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Vybrat zástupce nastavení"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Nastavení"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Režim V letadle"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Vypne všechna bezdrátová připojení"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Vypínání bezdrátových připojení..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Povolování bezdrátových připojení..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Bezdrátová připojení a sítě"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bezdrátová připojení a sítě"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Nastavení bezdrátového připojení a sítě"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Spravovat Wi-Fi, Bluetooth, režim V letadle, mobilní sítě a sítě VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Datové služby při roamingu"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Datové služby se mohou připojovat při roamingu"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Výběr operátora"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Vybrat síťového operátora"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum a čas"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Nastavit datum a čas"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Umožňuje nastavit datum, čas, časové pásmo a formát"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatické datum a čas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Použít čas ze sítě"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Řadit podle časového pásma"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Čas"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Časový limit"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Uzamknout obrazovku <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> po automatickém vypnutí obrazovky"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Uzamknout zařízení po vypršení časového limitu"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Zobrazovat vlastníka na zamčené obrazovce"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info. o vlastníkovi"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Moje poloha, odemknutí obrazovky, zámek SIM, zámek úložiště pověření"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Nastavení funkce Moje poloha, odemknutí obrazovky a zamknutí úložiště pověření"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Hesla"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Šifrování zařízení"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Šifrovat data v zařízení"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Šifrovat data v zařízení"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Požaduje nastavit kód PIN nebo heslo pro odemčení zařízení"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Požaduje nastavit kód PIN nebo heslo pro odemčení zařízení"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Šifrováno"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Své účty, nastavení, stažené aplikace a jejich data můžete šifrovat. Jakmile telefon zašifrujete, bude moci šifrování zrušit jedině tím, že obnovíte tovární data a veškerá data v telefonu se smažou."\n\n"Šifrování trvá asi hodinu. V telefonu musí být nabitá baterie a po celou dobu šifrování musí být zapojen ke zdroji elektřiny. Pokud proces šifrování přerušíte, ztratíte některá nebo všechna svá data."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Své účty, nastavení, stažené aplikace a jejich data můžete šifrovat. Jakmile telefon zašifrujete, bude moci šifrování zrušit jedině tím, že obnovíte tovární data a veškerá data v telefonu se smažou."\n\n"Šifrování trvá asi hodinu. V telefonu musí být nabitá baterie a po celou dobu šifrování musí být zapojen ke zdroji elektřiny. Pokud proces šifrování přerušíte, ztratíte některá nebo všechna svá data."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Šifrovat tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Šifrovat telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Potvrdit šifrování"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Šifrovat uživatelská data? Tato operace se nedá vrátit a nesmí být přerušena, jinak může dojít ke ztrátě dat. Šifrování trvá asi hodinu."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Šifrovat uživatelská data? Tato operace se nedá vrátit a nesmí být přerušena, jinak může dojít ke ztrátě dat. Šifrování trvá asi hodinu."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Šifrování"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Sekundy zbývající do dalšího pokusu: ^1."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konf. uzamč. obrazovky"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konf. uzamč. obrazovky"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Zabezpečení odemknutí obrazovky"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Nastavit zámek obrazovky"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Změnit zámek obrazovky"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Změnit nebo deaktivovat bezpečnostní gesto, kód PIN nebo heslo"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Vyberte způsob uzamknutí obrazovky"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Vypnuto"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nikdy nezamykat obrazovku"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nezabezpečeno"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Odemknutí obr. nevyžaduje gesto, kód PIN ani heslo"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nezobrazovat obrazovku uzamčení"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Žádné"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Deaktivovat zabezpečení zámku obrazovky"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Gesto"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Odemknutí obrazovky vyžaduje gesto"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Nakreslete gesto pro odemknutí obrazovky"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Odemknutí obrazovky vyžaduje číselný kód PIN"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Zadejte číselný kód PIN pro odemknutí obrazovky"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Heslo"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Odemknutí obrazovky vyžaduje heslo"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Zadejte heslo pro odemknutí obrazovky"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Deaktivováno vzdáleným správcem zařízení"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Vypnuto"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nezabezpečeno"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Zabezpečeno pomocí gesta"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Zabezpečeno pomocí kódu PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Zabezpečeno pomocí hesla"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Vypnout zámek obrazovky"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Odebrat bezpečnostní gesto"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Odebrat bezpečnostní kód PIN"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Správce zařízení nepovoluje použít nedávno použité heslo"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Zrušit"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Zrušit"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Další"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Správa zařízení"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Správci zařízení"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Zobrazit nebo deaktivovat správce zařízení"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Vyberte správce zařízení"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Přidat nebo odebrat správce zařízení"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Zapnout Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Nastavení Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Nastavení Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Umožňuje spravovat připojení, nastavit název zařízení a viditelnost"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Požadavek na párování zařízení Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Párování se zařízením „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ zahájíte zadáním kódu PIN (zkuste kód 0000 nebo 1234). Možná bude nutné zadat stejný kód PIN v zařízení Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Zadejte přístupový klíč pro párování se zařízením <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Chcete-li provést párování se zařízením <xliff:g id="DEVICE_NAME">%1$s</xliff:g>, zkontrolujte, zda je zobrazen přístupový klíč: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"žádá o párování."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Pokud chcete párovat, v zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> zadejte <xliff:g id="PASSKEY">%2$s</xliff:g> a stiskněte klávesu Return nebo Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Párovat"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nepárovat"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"zařízení Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Možnosti"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Připojit k síti…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Média"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Sada handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Přenos"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Vstupní zařízení"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojeno od zvuku médií."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojeno od zvuku sady handsfree."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojeno od vstupního zařízení."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojeno z tetheringu."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Možnosti zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Akce zařízení"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Připojit"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Umožňuje připojení náhlavní soupravy"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Použít pro přenos souborů"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Použít pro vstup"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Použít pro přístup k internetu"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Nastavení doku"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Použít zvuk doku"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Jako telefon pro hlasitý poslech"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Zapamatovat nastavení"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Použít technologii NFC ke čtení a výměně štítků"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Došlo k chybě."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"WiFi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Zapnout WiFi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Nastavení WiFi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Nelze vyhledávat sítě"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Oznamování sítě"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Oznamovat dostupné nezabezpečené sítě"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Zásady používání sítě Wi-Fi v režimu spánku"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Určit, kdy přepnout ze sítě Wi-Fi na mobilní datový přenos"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Při nastavení zásad pro režim spánku došlo k problému."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Přidat síť WiFi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Sítě WiFi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Vyhledávání"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Upravit síť"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Nastavení sítě"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Zadejte kód PIN z přístupového bodu"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Nastavení WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfigurace metody PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Zadejte kód PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> přístupového bodu"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS probíhá a může trvat desítky sekund."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS se nepodařilo spustit, zkuste to prosím znovu."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Identifikátor SSID sítě"</string>
<string name="wifi_security" msgid="6603611185592956936">"Zabezpečení"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Síla signálu"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Odstranit"</string>
<string name="wifi_save" msgid="3331121567988522826">"Uložit"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Zrušit"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Byla zjištěna další relace WPS, zkuste to prosím znovu za pár minut."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Pokročilé"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Zásady používání sítě Wi-Fi v režimu spánku"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Určit, kdy přepnout ze sítě Wi-Fi na mobilní datový přenos"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Při nastavení zásad pro režim spánku došlo k problému."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Frekvenční pásmo Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Uveďte provozní frekvenční rozsah"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Při nastavení frekvenčního pásma došlo k problému."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Přenosný hotspot Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Zvuk"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Obrazovka"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Zobrazení"</string>
<string name="sound_settings" msgid="5007659014828162881">"Nastavení zvuku"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tichý režim"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Ztlumit všechny zvuky kromě médií a budíků"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Při otáčení telefonu automaticky přepínat orientaci"</string>
<string name="brightness" msgid="2354961343555249270">"Jas"</string>
<string name="brightness_summary" msgid="838917350127550703">"Nastavení jasu displeje"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Časový limit"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Obrazovka se automaticky vypne po <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>."</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Interval vypnutí obrazovky"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatický jas"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Nastavení zámku karty SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Nastavení zámku karty SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nedostupný"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Stav"</string>
<string name="device_status" msgid="607405385799807324">"Stav"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Stav baterie, sítě a další údaje"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, telefonní číslo, signál, atd."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonní číslo, signál, atd."</string>
<string name="storage_settings" msgid="4211799979832404953">"Úložiště"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Nastavení úložiště"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Odpojit úložiště USB a zobrazit dostupné úložiště"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Umožňuje odpojit kartu SD a zobrazit dostupnou paměť"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Moje telefonní číslo"</string>
+ <string name="status_number" msgid="5123197324870153205">"Moje telefonní číslo"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Verze PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Interní úložiště"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Úložiště USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Karta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"K dispozici"</string>
- <string name="memory_size" msgid="5458889090691922288">"Celkem"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Výpočet…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplikace"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Média"</string>
+ <string name="memory_available" msgid="418542433817289474">"Dostupná paměť"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Celková paměť"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Využito aplikacemi"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Využito médii"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Odpojit sdílené úložiště"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Odpojit kartu SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Odpojit interní úložiště USB"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Vložte kartu SD, kterou chcete připojit."</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Připojit úložiště USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Připojit kartu SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Připojit úložiště USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Připojit interní úložiště USB"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Připojit kartu SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Smazat úložiště USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Smazat kartu SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Smaže všechna data v interním úložišti USB, například hudbu a fotografie"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Smaže všechna data na kartě SD, například hudbu nebo fotografie"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Smaže všechna data v interním úložišti USB, například hudbu a fotografie"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Nedostupný údaj"</string>
<string name="read_only" msgid="6702420168629076340">" (Pouze pro čtení)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Odpojit úložiště USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Tato operace vymaže všechna data v "<b>"interním úložišti"</b>" tabletu, včetně:"\n\n<li>"účtu Google,"</li>\n<li>"dat a nastavení aplikací a systému,"</li>\n<li>"stažených aplikací."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Tato operace vymaže všechna data v "<b>"interním úložišti"</b>" telefonu, včetně:"\n\n<li>"účtu Google,"</li>\n<li>"dat a nastavení systému a aplikací,"</li>\n<li>"stažených aplikací."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Aktuálně jste přihlášeni do následujících účtů:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Hudba"</li>\n<li>"Fotky"</li>\n<li>"Další uživatelské údaje"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Chcete-li smazat také hudbu, obrázky a další uživatelská data, je potřeba vymazat "<b>"úložiště USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Chcete-li smazat také hudbu, obrázky nebo další uživatelská data, je třeba vymazat "<b>"kartu SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Chcete-li smazat také hudbu, obrázky a další uživatelská data, je potřeba vymazat "<b>"úložiště USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Smazat úložiště USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Smazat kartu SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Smazat všechna data v interním úložišti USB, například hudbu a fotografie."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Použít systém A-GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Vylepšit funkčnost GPS pomocí serveru (deaktivací této funkce snížíte využití sítě)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Vylepšit funkčnost GPS pomocí serveru (zrušením této funkce zvýšíte výkon GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Používat polohu pro Vyhledávání Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Používat polohu pro Vyhledávání Google a další služby Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ke zlepšení výsledků Vyhledávání Google a dalších služeb Google se využívají informace o poloze"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Používat polohu pro vyhledávání Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Používat polohu pro vyhledávání Google a další služby Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ke zlepšení výsledků vyhledávání Google a dalších služeb Google se využívají informace o poloze"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Informace o tabletu"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Info o telefonu"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Zobrazí právní informace, stav a verzi softwaru"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Heslo bylo nastaveno"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Kód PIN byl nastaven"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Gesto bylo nastaveno"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Uzamknout obrazovku"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Odemknutí obrazovky"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Změna bezpečnostního gesta"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Změna bezpečnostního kódu PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Potvrďte uložené gesto"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Další"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Zabezpečení tabletu"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Zabezpečení telefonu"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Svůj tablet můžete chránit před neoprávněným použitím pomocí osobního gesta pro odemknutí obrazovky. Tečky na následující obrazovce spojte prstem v jakémkoli pořadí. Spojit je třeba alespoň čtyři tečky. "\n\n"Jakmile budete připraveni začít, dotkněte se tlačítka Další."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Vytvořte si osobní gesto odemknutí a chraňte tak svůj telefon před nepovoleným použitím. "\n<font height="17">\n</font><b>"1"</b>" Na dalším snímku uvidíte příklad takového gesta. "\n<font height="17">\n</font><b>"2"</b>" Až budete připraveni, proveďte své osobní gesto odemknutí. Vyzkoušejte více gest, ale vždy spojte alespoň čtyři tečky. "\n<font height="17">\n</font><b>"3"</b>" Opakujte gesto a tím jej potvrďte. "\n<font height="17">\n</font><b>"Jste připraveni začít? Dotkněte se tlačítka Další "</b>". "\n<font height="3">\n</font>"Chcete-li ponechat telefon nezabezpečený, dotkněte se tlačítka Storno."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Správa aplikací"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Umožňuje spravovat a odebírat instalované aplikace"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Celkem"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplikace"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Úložiště USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Karta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Odinstalovat"</string>
<string name="disable_text" msgid="6544054052049395202">"Vypnout"</string>
<string name="enable_text" msgid="9217362512327828987">"Povolit"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Zastavit systémovou službu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Opravdu tuto systémovou službu chcete zastavit? Může se stát, že některé funkce tabletu nebudou fungovat správně, dokud tablet nevypnete a opět nezapnete."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Opravdu tuto systémovou službu chcete zastavit? Může se stát, že telefon ztratí některé funkce. Ty nebudou fungovat, dokud telefon nevypnete a opět nezapnete."</string>
- <string name="language_settings" msgid="5292716747264442359">"Jazyk a vstup"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Jazyk a vstup"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Národní prostředí a text"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Nastavení jazyka a klávesnice"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Nastavení jazyka"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Nastavení klávesnice"</string>
<string name="phone_language" msgid="1165758957501090679">"Vyberte jazyk"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Automatické nahrazování"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Opravovat pravopisné chyby"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Velká písmena automaticky"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Automatická velká písmena"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"První písmeno ve větě je automaticky velké"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Automatická interpunkce"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Nastavení fyzické klávesnice"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Zástupce"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Zadávání textu"</string>
<string name="input_method" msgid="5434026103176856164">"Metoda zadávání dat"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Aktuální metoda vstupu"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Nabídka metody vstupu"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automaticky"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vždy zobrazovat"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Vždy skrývat"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Nakonfigurovat metody vstupu"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Nastavení"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktivní metody vstupu"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Použít systémový jazyk"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Nastavení modulu <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Vyberte aktivní metody vstupu"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Nastavení klávesnice na obrazovce"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Vestavěná klávesnice"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Nastavení vestavěné fyzické klávesnice"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Doba provozu modulu Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Doba provozu sítě Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g> <xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Podrobnosti historie"</string>
- <string name="details_title" msgid="3792801565213935385">"Podrobnosti používání"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Podrobnosti využití baterie"</string>
<string name="details_subtitle" msgid="32593908269911734">"Podrobnosti používání"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Upravit spotřebu energie"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Zahrnuté balíčky"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Vyjednávání se serverem se nezdařilo. Server možná nedokáže pracovat s nastavenou možností šifrování. Chcete zkontrolovat nastavení šifrování?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Přidat síť VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Přidat síť VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Podrobnosti sítě VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Přidat síť VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> – podrobnosti"</string>
<string name="vpns" msgid="3148141862835492816">"Sítě VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Nastavit a spravovat sítě VPN"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nezměněno)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(není nastaveno)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Úložiště pověření"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Úložiště pověření"</string>
<string name="credentials_access" msgid="4843187230913860492">"Použít zabezpečená pověření"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Povolit aplikacím přístup k zabezpečeným certifikátům a dalším pověřením"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalovat z úložiště USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalace z karty SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Nainstalovat certifikáty z úložiště USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Nainstalovat certifikáty z karty SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Nastavit heslo"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Nastavit nebo změnit heslo pro úložiště pověření"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Vymazat pověření"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Odebrat veškerý obsah a obnovit heslo"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Zadejte heslo"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Zadejte heslo pro úložiště pověření"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Nastavit heslo pro úložiště pověření (nejméně 8 znaků)."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Zadejte heslo úložiště pověření."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalovat z úložiště USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalace z karty SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instalovat šifrované certifikáty z úložiště USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Nainstalovat šifrované certifikáty z karty SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Nastavit heslo"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Nastavení nebo změna hesla úložiště pověření"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Vymazat úložiště"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Vymazat veškerý obsah úložiště pověření a resetovat heslo"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Opravdu chcete smazat veškerá pověření a resetovat heslo úložiště pověření?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Aktuální heslo:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nové heslo:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Potvrďte nové heslo:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Veškerý obsah bude odstraněn a heslo bude obnoveno. Opravdu chcete akci provést?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Nastavte heslo pro úložiště pověření (nejméně 8 znaků)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Zadejte správné heslo."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Zadejte prosím správné heslo. Máte ještě jeden pokus na zadání správného hesla, poté bude úložiště pověření vymazáno."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Zadejte prosím správné heslo. Počet zbývajících pokusů o zadání správného hesla: <xliff:g id="NUMBER">%1$d</xliff:g>. Po vyčerpání všech pokusů bude úložiště pověření vymazáno."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Hesla se neshodují."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Musíte zadat a potvrdit heslo."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Zadejte heslo."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Heslo musí mít alespoň 8 znaků."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Nesprávné heslo."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Nesprávné heslo. Zbývá vám jeden pokus, než bude úložiště pověření smazáno."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Nesprávné heslo. Počet zbývajících pokusů, než bude úložiště pověření smazáno: <xliff:g id="NUMBER">%1$d</xliff:g>"</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Úložiště pověření je vymazáno."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Úložiště pověření je vymazáno."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Úložiště pověření je aktivováno."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Úložiště pověření je deaktivováno."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Systém souborů EFS (Encrypted File System)"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Šifrovat soukromá uživatelská data"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Aktivovat v tomto zařízení úložiště pro soukromá uživatelská data, které využívá šifrovaný systém souborů"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Aktivace systému souborů EFS vyžaduje vymazání dat ze zařízení."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Deaktivace systému souborů EFS vyžaduje vymazání dat ze zařízení."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Povolit"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Vypnout"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Zrušit"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Změna režimu systému souborů EFS byla zrušena."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Upozornění systému souborů EFS."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tísňové vyzvánění"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Nastavit chování při tísňovém volání"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Ochrana osobních údajů"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Příchozí hovory"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Oznámení"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Zpětná vazba"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Nastavení připojení k síti Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Připojit k síti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Připojování k síti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Připojeno k síti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Přidat síť"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Nastavení sítě WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nepřipojeno"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Přidat síť"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Aktualizovat seznam"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Uložit"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Zrušit"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Vyhledávání sítí..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"K síti se připojíte tak, že se jí dotknete"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dotykem vyberte síť"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Připojit k existující síti"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Připojit k nezabezpečené síti"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Zadejte konfiguraci sítě"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Připojování..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Pokračovat k dalšímu kroku"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Zabezpečení EAP není podporováno."</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"V rámci úvodního nastavení nelze nakonfigurovat připojení Wi-Fi se zabezpečením EAP. Můžete to udělat později v nabídce Nastavení v části "<b>"Bezdrátová připojení a sítě"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Připojování může trvat několik minut..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Chcete-li pokračovat v nastavení, dotkněte se možnosti "<b>"Další"</b>"."\n\n"Dotkněte se možnosti "<b>"Zpět"</b>", chcete-li se připojit k jiné síti Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"V rámci úvodního nastavení nelze nakonfigurovat připojení Wi-Fi se zabezpečením EAP. Můžete to udělat později v Nastavení v části Bezdrátová připojení a sítě."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Natavení synchronizace"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Nastaly potíže se synchronizací. Služba bude brzy obnovena."</string>
<string name="add_account_label" msgid="7811707265834013767">"Přidat účet"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synchronizace VYP."</string>
<string name="sync_error" msgid="5060969083117872149">"Chyba synchronizace"</string>
<string name="settings_backup" msgid="2274732978260797031">"Nastavení zálohování"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Zálohovat moje nastavení"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synchronizovat"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Zrušit synchronizaci"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Dotykem provedete synchronizaci nyní<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Kalendář"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kontakty"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Vítá vás aplikace Google Sync"</font>" "\n"Nový pohled na synchronizaci dat v režii Googlu. Poskytuje vám přístup ke kontaktům, schůzkám a dalším informacím, ať jste kdekoli."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Nastavení synchronizace aplikací"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data a synchronizace"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Změnit heslo"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Nastavení účtu"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Odebrat účet"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Přidat účet"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Dokončit"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Odebrat účet"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Opravdu chcete tento účet odebrat? Z telefonu budou smazány také všechny zprávy, kontakty a další data tohoto účtu. "\n"Pokračovat?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Opravdu chcete tento účet odebrat? Z telefonu budou smazány také všechny zprávy, kontakty a další data tohoto účtu. "\n"Pokračovat?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Tento účet je některými aplikacemi požadován. Můžete jej odebrat pouze obnovením výchozího nastavení tabletu z výroby (které smaže všechna osobní data). To můžete provést v aplikaci Nastavení v části Ochrana osobních údajů."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Tento účet je některými aplikacemi požadován. Můžete jej odebrat pouze obnovením výchozího nastavení telefonu z výroby (které smaže všechna osobní data). To můžete provést v aplikaci Nastavení v části Ochrana osobních údajů."</string>
- <string name="provider_label" msgid="7724593781904508866">"Zobrazit odběry"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synchronizace aplikace <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nelze ručně synchronizovat"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synchronizace této položky je aktuálně deaktivována. Chcete-li předvolbu změnit, dočasně zapněte přenos dat na pozadí a automatickou synchronizaci."</string>
- <string name="enter_password" msgid="3268224850821675915">"Chcete-li obsah úložiště dešifrovat, zadejte heslo."</string>
- <string name="try_again" msgid="5904121494468643129">"Zkuste to prosím znovu"</string>
- <string name="service_busy" msgid="225227519012409130">"Služba je zaneprázdněna, zkuste to znovu"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-da-nokeys/strings.xml b/res/values-da-nokeys/strings.xml
index 115916a3..f65be78 100644
--- a/res/values-da-nokeys/strings.xml
+++ b/res/values-da-nokeys/strings.xml
@@ -16,5 +16,5 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <string name="applications_settings_summary" msgid="6616938758022986257">"Programadministration"</string>
+ <string name="applications_settings_summary" msgid="6616938758022986257">"Administ. programmer"</string>
</resources>
diff --git a/res/values-da/arrays.xml b/res/values-da/arrays.xml
index 0363d99..3ce8428 100644
--- a/res/values-da/arrays.xml
+++ b/res/values-da/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Der vises nogle vinduesanimationer"</item>
<item msgid="488968798204105119">"Alle vinduesanimationer vises"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekunder"</item>
- <item msgid="8881760709354815449">"30 sekunder"</item>
- <item msgid="7589406073232279088">"1 minut"</item>
- <item msgid="7001195990902244174">"2 minutter"</item>
- <item msgid="7489864775127957179">"5 minutter"</item>
- <item msgid="2314124409517439288">"10 minutter"</item>
- <item msgid="6864027152847611413">"30 minutter"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"med det samme"</item>
- <item msgid="6736512735606834431">"5 sekunder"</item>
- <item msgid="8044619388267891375">"15 sekunder"</item>
- <item msgid="1822002388249545488">"30 sekunder"</item>
- <item msgid="8538071621211916519">"1 minut"</item>
- <item msgid="5663439580228932882">"2 minutter"</item>
- <item msgid="49888496216106852">"5 minutter"</item>
- <item msgid="9002737361305019353">"10 minutter"</item>
- <item msgid="4322676235684793329">"30 minutter"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Meget langsom"</item>
<item msgid="2361722960903353554">"Langsom"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Fremragende"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Når skærmen slukker"</item>
+ <item msgid="3804733751095821976">"Når skærmen slukker"</item>
<item msgid="1549288661423279207">"Aldrig når tilsluttet"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Aldrig"</item>
+ <item msgid="1986753720941888596">"Aldrig"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatisk"</item>
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
index 0713ef5..b2a6727 100644
--- a/res/values-da/strings.xml
+++ b/res/values-da/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Dødt"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Over spænding:"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Ukendt fejl"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Kold"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Søgbar"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Søgbar i <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> sekunder ..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Søger"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Anmodning om Bluetooth-parring"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Anmodning om parring"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Vælg for at parre med <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Vis modtagne filer"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Vis listen over filer, der er modtaget via Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Vælger af Bluetooth-enheder"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Anmodning om Bluetooth-tilladelse"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Et program anmoder om at aktivere Bluetooth. Ønsker du at gøre dette?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Et program på din tabletcomputer anmoder om tilladelse til at aktivere Bluetooth, så din tabletcomputer er synlig for andre enheder i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Ønsker du at gøre dette?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Et program på din telefon anmoder om tilladelse til at aktivere Bluetooth, så din telefon er synlig for andre enheder i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Ønsker du at gøre dette?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Aktiverer Bluetooth …"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Opret automatisk forbindelse"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Indstillinger for dato og tid"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Start <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konto:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxyindstillinger"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxyindstillinger"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Angiv den globale HTTP-proxy og udeladelseslister"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Ryd"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Annuller"</string>
<string name="settings_label" msgid="1626402585530130914">"Indstillinger"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Indstillinger"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Vælg genvej til indstillinger"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Indstillinger"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Flytilstand"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Deaktiver alle trådløse forbindelser"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Deaktiverer trådløse forbindelser ..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Aktiverer trådløse forbindelser ..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Trådløs og netværk"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Trådløst og netværk"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Indstillinger for trådløs og netværk"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Administrer Wi-Fi, Bluetooth, flytilstand, mobilnetværk og VPN\'er"</string>
<string name="roaming" msgid="3596055926335478572">"Dataroaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Opret forbindelse til datatjenester ved roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Valg af udbyder"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Vælg en netværksudbyder"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Dato og tid"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Indstil dato og tid"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Angiv dato, tid, tidszone og formater"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatisk dato og tid"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Brug netværkets tid"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sorter efter tidszone"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Dato"</string>
<string name="time_picker_title" msgid="483460752287255019">"Tid"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timeout"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Lås skærm <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> efter, skærmen automatisk slukker"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Lås enheden efter timeout"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Vis ejeroplysninger på låst skærm"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Ejeroplysninger"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Angiv Min placering, oplåsning af skærmen, låsning af SIM-kort og oplysningslagring"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Angiv Min placering, oplåsning af skærmen, oplysningslagring"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Adgangskoder"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Kryptering af en enhed"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Krypter data på enhed"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Krypter data på enhed"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Kræver, at du angiver en pinkode til oplåsning eller en adgangskode"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Kræver, at du angiver en pinkode til oplåsning eller en adgangskode"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Krypteret"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Du kan kryptere dine konti, indstillinger, downloadede applikationer og deres data, medier og andre filer. Når du krypterer din telefon, kan du kun dekryptere den ved at udføre en nulstilling af fabriksdata. Derved slettes alle dataene på din telefon."\n\n"Krypteringen tager op til én time. Du skal starte med et opladt batteri og sørge for, at din telefon forbliver tilsluttet, indtil krypteringen er gennemført. Hvis du afbryder krypteringsprocessen vil du miste dine data delvist eller helt."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Du kan kryptere dine konti, indstillinger, downloadede applikationer og deres data, medier og andre filer. Når du krypterer din telefon, kan du kun dekryptere den ved at udføre en nulstilling af fabriksdata. Derved slettes alle dataene på din telefon."\n\n"Krypteringen tager op til én time. Du skal starte med et opladt batteri og sørge for, at din telefon forbliver tilsluttet, indtil krypteringen er gennemført. Hvis du afbryder krypteringsprocessen vil du miste dine data delvist eller helt."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Krypter tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Krypter telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Bekræft kryptering"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Vil du kryptere brugerdataene? Denne handling kan ikke laves om og må ikke afbrydes uden tab af data til følge. Krypteringen kan tage op til én time."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Vil du kryptere brugerdataene? Denne handling kan ikke laves om og må ikke afbrydes uden tab af data til følge. Krypteringen kan tage op til én time."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Kryptering"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Prøv igen om ^1 sekunder."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfigurer skærmlås"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurer skærmlås"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Sikkerhed med skærmlås"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurer skærmlås"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Skift skærmlås"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Skift eller deaktiver mønster, PIN-kode eller adgangskode."</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Vælg en metode til låsning af skærmen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Fra"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Lås aldrig skærmen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Slå sikring fra"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Mønster, PIN eller adgangskode kræves ikke for skærmoplåsning"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Vis ikke låseskærmen"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ingen"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Deaktiver sikkerhed med skærmlås"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Mønster"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Kræv et mønster for at låse skærmen op"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Du skal tegne et mønster for at låse skærmen op"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN-kode"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Kræv en numerisk PIN-kode til skærmoplåsning"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Angiv en PIN-kode for at låse skærmen op"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Adgangskode"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Kræv en adgangskode for at låse skærmen op"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Angiv en adgangskode for at låse skærmen op"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Deaktiveret af fjernadministrator"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Fra"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Ikke sikret"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Sikret med mønster"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Sikret med PIN-kode"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Sikret med adgangskode"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Slå skærmlås fra"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Fjern mønster til at låse op"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Fjern pinkode til at låse op"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Enhedens administrator tillader ikke brug af nylig adgangskode"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Annuller"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Annuller"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Næste"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Enhedsadministration"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Enhedsadministratorer"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Vis eller deaktiver enhedsadministratorer"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Vælg enhedsadministratorer"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Tilføj eller fjern enhedsadministratorer"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Slå Bluetooth til"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Indstillinger for Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Indstillinger for Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Administrer forbindelser, angiv enhedens navn og søgbarhed"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Anmodning om Bluetooth-parring"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Indtast pinkode for at parre med \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Prøv 0000 eller 1234). Du skal muligvis indtaste den samme pinkode på Bluetooth-enheden."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Indtast adgangsnøgle for at parre med \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"For at parre med \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" skal du bekræfte, at den viser adgangsnøglen: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"ønsker at forbinde."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Indtast \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" på \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" for at parre."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Par"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Undlad at parre"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-enhed"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Indstillinger"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Opret forbindelse til ..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Medier"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Håndfri"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tabletcomputer"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Overfør"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Inputenhed"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> afbrydes fra medielyd."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> afbrydes fra håndfri lyd."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> afbrydes fra inputenheden."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> afbrydes fra tethering."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Valgmuligheder for <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Enhedshandlinger"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Forbind"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Brug til telefonlyd"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Brug til filoverførsel"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Brug til input"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Brug til internetadgang"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Indstillinger af Dock"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Brug dock til audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Som højttalertelefon"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Husk indstillinger"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Brug Near Field Communication til at læse og udveksle tags"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Der er opstået en fejl."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Slå Wi-Fi til"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Indstillinger for Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Der kunne ikke søges efter netværk"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Netværksmeddelelse"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Fortæl mig, når der er et tilgængeligt åbent netværk"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Politik for Wi-Fi-dvale"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Angiv, hvornår der skal skiftes fra Wi-Fi til mobile data"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Der opstod et problem med angivelsen af dvalepolitikken."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Tilføj Wi-Fi-netværk"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi-netværk"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scan"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Rediger netværk"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Netværkskonfiguration"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Indtast pin via adgangspunkt"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Konfiguration af WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfiguration af WPS-pinmetode"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Indtast pinkoden <xliff:g id="WPS_PIN">%1$s</xliff:g> på adgangspunkt"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS er allerede i gang og kan være flere sekunder om at fuldføre"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS kunne ikke startes. Prøv igen."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Netværk-SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sikkerhed"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signalstyrke"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Glem"</string>
<string name="wifi_save" msgid="3331121567988522826">"Gem"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Annuller"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Der er registreret en anden WPS-session. Prøv igen om et par minutter."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avanceret"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Politik for Wi-Fi-dvale"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Angiv, hvornår der skal skiftes fra Wi-Fi til mobile data"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Der opstod et problem med indstillingen af dvalepolitikken."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi-frekvensbånd"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Angiv frekvensintervallet"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Problemer med indstillingen af frekvensbåndet."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> bærbart Wi-Fi-hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Lyd"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Skærm"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Visning"</string>
<string name="sound_settings" msgid="5007659014828162881">"Indstillinger for lyd"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Lydløs"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Fjern alle lyde undtagen medier og alarmer"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Skift automatisk retning, når telefonen drejes"</string>
<string name="brightness" msgid="2354961343555249270">"Lysstyrke"</string>
<string name="brightness_summary" msgid="838917350127550703">"Juster skærmens lysstyrke"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timeout"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Skærmen slukker automatisk efter <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Timeout for skærmen"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatisk lysstyrke"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Indstillinger for lås af SIM-kort"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Konfigurer låsning af SIM-kort"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Ikke tilgængelig"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status for batteri, netværk og andre oplysninger"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, telefonnummer, signal osv."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonnummer, signal osv."</string>
<string name="storage_settings" msgid="4211799979832404953">"Lagerplads"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Indstillinger for lager"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Demonter USB-lager, vis ledig lagerplads"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Demonter SD-kort, vis ledig lagerplads"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mit telefonnummer"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mit telefonnummer"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-version"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Internt lager"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-lager"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-kort"</string>
- <string name="memory_available" msgid="5052397223077021181">"Tilgængelig"</string>
- <string name="memory_size" msgid="5458889090691922288">"I alt"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Beregner..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Applikationer"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medier"</string>
+ <string name="memory_available" msgid="418542433817289474">"Ledig plads"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Plads i alt"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Programbrug"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Mediebrug"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Demonter delt hukommelse"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Demonter SD-kort"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Demonter det interne USB-lager"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Insæt et SD-kort, der skal monteres"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Isæt USB-lager"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Montér SD-kort"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Monter USB-lager"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Monter det interne USB-lager"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Montér SD-kortet"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Slet USB-lager"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Slet SD-kort"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Sletter alle data på det interne USB-lager, f.eks. musik og billeder"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Sletter alle data på telefonens SD-kort, f.eks. musik og billeder"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Sletter alle data på det interne USB-lager, f.eks. musik og billeder"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Utilgængelig"</string>
<string name="read_only" msgid="6702420168629076340">" (Skrivebeskyttet)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Demonter USB-lager"</string>
@@ -729,12 +710,11 @@
<string name="master_clear_title" msgid="5907939616087039756">"Gendannelse af fabriksdata"</string>
<string name="master_clear_summary" product="tablet" msgid="4036344100254678429">"Sletter alle data på tabletcomputeren"</string>
<string name="master_clear_summary" product="default" msgid="4986154238001088492">"Sletter alle data på telefonen"</string>
- <string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Dette sletter alle data fra tablettens "<b>"interne lager"</b>", bl.a.:"\n\n<li>"din Google-konto"</li>\n<li>"data og indstillinger for system og programmer"</li>\n<li>"downloadede programmer"</li></string>
- <string name="master_clear_desc" product="default" msgid="2950536633526374209">"Dette sletter alle data fra telefonens "<b>"interne lager"</b>", bl.a.:"\n\n<li>"din Google-konto"</li>\n<li>"data og indstillinger for system og programmer"</li>\n<li>"downloadede programmer"</li></string>
+ <string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Dette sletter alle data fra tablettens "<b>"interne lager"</b>", bl.a.:"\n\n<li>"din Google-konto"</li>\n<li>"system- og programdata og -indstillinger"</li>\n<li>"downloadede programmer"</li></string>
+ <string name="master_clear_desc" product="default" msgid="2950536633526374209">"Dette sletter alle data fra telefonens "<b>"interne lager"</b>", bl.a.:"\n\n<li>"din Google-konto"</li>\n<li>"system- og programdata og -indstillinger"</li>\n<li>"downloadede programmer"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Du er i øjeblikket logget ind på disse konti:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musik"</li>\n<li>"Billeder"</li>\n<li>"Andre brugerdata"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Ryd også musik, billeder og andre brugerdata ved også at slette "<b>"USB-lager"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"For at slette musik, billeder og andre brugerdata, skal "<b>"SD-kortet"</b>" slettes."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Ryd også musik, billeder og andre brugerdata ved også at slette "<b>"USB-lager"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Slet USB-lager"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Slet SD-kort"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Slet alle data på det interne USB-lager, f.eks. musik og billeder."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Brug assisteret GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Brug serveren til at assistere GPS (fjern markering for at mindske netværksforbrug)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Brug serveren til at assistere GPS (fjern markering for at forbedre GPS-ydelsen)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Brug placering til Google-søgning"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Brug placering til Google-søgning og andre Google-tjenester"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Placering bruges til at forbedre Google-søgeresultater og andre Google-tjenester"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Brug placering ved Google-søgning"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Brug placering til Google-søgning og andre Google-tjenester"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Placering bruges til at forbedre Google-søgeresultater og andre Google-tjenester"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Om tabletcomputeren"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Om telefonen"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Vis juridiske oplysninger, status, softwareversion"</string>
@@ -840,14 +820,14 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Adgangskoden er indstillet"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Pinkoden er blevet indstillet"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Mønsteret er blevet indstillet"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Lås skærm"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Lås skærm op"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Skift oplåsningsmønster"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Skift pinkode til at låse op"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Bekræft gemt mønster"</string>
<string name="lockpattern_need_to_unlock_wrong" msgid="5629093548611791080">"Beklager! Prøv igen:"</string>
<string name="lockpattern_recording_intro_header" msgid="308287052221942814">"Tegn et oplåsningsmønster"</string>
<string name="lockpattern_recording_intro_footer" msgid="1118579101409152113">"Tryk på Menu for at få hjælp."</string>
- <string name="lockpattern_recording_inprogress" msgid="4622772178078818425">"Slip med fingeren, når du er færdig."</string>
+ <string name="lockpattern_recording_inprogress" msgid="4622772178078818425">"Slip fingeren, når du er færdig."</string>
<string name="lockpattern_recording_incorrect_too_short" msgid="3103250430366718996">"Forbind mindst <xliff:g id="NUMBER">%d</xliff:g> punkter. Prøv igen:"</string>
<string name="lockpattern_pattern_entered_header" msgid="5012716272001299362">"Mønstret blev registreret!"</string>
<string name="lockpattern_need_to_confirm" msgid="5144676887162575050">"Tegn mønstret igen for at bekræfte:"</string>
@@ -870,9 +850,12 @@
<string name="next_button_label" msgid="8890792540116568321">"Næste"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Sådan beskytter du din tabletcomputer"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Beskyt din telefon"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Beskyt din tablet mod uautoriseret brug ved at oprette et personligt mønster til at låse skærmen op. Brug din finger til at forbinde punkterne vilkårligt på det næste skærmbillede. Du skal forbinde mindst fire punkter."\n\n"Klar til at starte? Tryk på \"Næste\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Beskyt din telefon mod uautoriseret brug ved at oprette et personligt mønster til at låse skærmen op. "\n<font height="17">\n</font><b>"1"</b>" På næste skærm kan du se et eksempel på, hvordan mønsteret tegnes. "\n<font height="17">\n</font><b>"2"</b>" Når du er klar, kan du tegne dit eget personlige mønster til at låse op. Eksperimenter med forskellige mønstre, men forbind mindst fire punkter. "\n<font height="17">\n</font><b>"3"</b>" Tegn dit mønster igen for at bekræfte. "\n<font height="17">\n</font><b>"Er du klar? Tryk på \"Næste\""</b>". "\n<font height="3">\n</font>"Du kan lade din telefon være ubeskyttet ved at trykke på \"Annuller\"."</font></string>
- <string name="manageapplications_settings_title" msgid="5712405848153426706">"Programadministration"</string>
+ <string name="manageapplications_settings_title" msgid="5712405848153426706">"Administ. programmer"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Administrer og fjern installerede programmer"</string>
<string name="applications_settings" msgid="3736173521008476946">"Programmer"</string>
<string name="applications_settings_summary" msgid="2714215108369119717">"Administ. programmer, konf. genveje til hurtig start"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"I alt"</string>
<string name="application_size_label" msgid="5055196275624686382">"Program"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-lager"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kort"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Afinstaller"</string>
<string name="disable_text" msgid="6544054052049395202">"Deaktiver"</string>
<string name="enable_text" msgid="9217362512327828987">"Aktiver"</string>
@@ -912,7 +893,7 @@
<string name="filter" msgid="2018011724373033887">"Filter"</string>
<string name="filter_dlg_title" msgid="6507663329723966854">"Vælg indstillinger for filtret"</string>
<string name="filter_apps_all" msgid="5142129378749391876">"Alle"</string>
- <string name="filter_apps_third_party" msgid="7786348047690140979">"Downloads"</string>
+ <string name="filter_apps_third_party" msgid="7786348047690140979">"Overført"</string>
<string name="filter_apps_running" msgid="7767071454371350486">"Kørende"</string>
<string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"USB-lager"</string>
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"På SD-kort"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Stop systemtjeneste?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Er du sikker på, at du vil stoppe denne systemtjeneste? Hvis du gør det, kan du være nødt til at slukke og tænde igen, før tabletcomputeren fungerer, som den skal."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Er du sikker på, at du vil stoppe denne systemtjeneste? Hvis du gør, kan nogle af funktionerne på din telefon holde op med at fungere korrekt, indtil du slukker og tænder igen."</string>
- <string name="language_settings" msgid="5292716747264442359">"Sprog og input"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Sprog og input"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Landestandard og tekst"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Indstillinger for sprog og tastatur"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Sprogindstillinger"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Indstillinger for tastatur"</string>
<string name="phone_language" msgid="1165758957501090679">"Vælg sprog"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Automatisk erstatning"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Ret ord, der er stavet forkert"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Skriv aut. med stort"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Skriv aut. med stort"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Første bogstav i en sætning skrives med stort"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Foretag automatisk tegnsætning"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Indstillinger for fysisk tastatur"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Genveje"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Tekstinput"</string>
<string name="input_method" msgid="5434026103176856164">"Inputmetode"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Aktuel inputmetode"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Valg af inputmetode"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatisk"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vis altid"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Skjul altid"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurer inputmetoder"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Indstillinger"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktive inputmetoder"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Brug systemsprog"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g>-indstillinger"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Vælg aktive inputmetoder"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Indstillinger for skærmens tastatur"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Indbygget tastatur"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Indstillinger for indbygget fysisk tastatur"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi til tiden"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi til tiden"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Oplysninger om oversigten"</string>
- <string name="details_title" msgid="3792801565213935385">"Brugsdetaljer"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Oplysninger om batteriforbrug"</string>
<string name="details_subtitle" msgid="32593908269911734">"Brugsdetaljer"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Juster strømforbrug"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Inkluderede pakker"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Serverkommunikationen mislykkedes. Serveren accepterer muligvis ikke dine krypteringsindstillinger. Vil du kontrollere dine krypteringsindstillinger?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Tilføj VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Tilføj VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Oplysninger om VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Tilføj <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> detaljer"</string>
<string name="vpns" msgid="3148141862835492816">"VPN\'er"</string>
@@ -1285,38 +1278,51 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Konfigurer og administrer Virtuelle Private Netværk (VPN\'er)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(uændret)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ikke indstillet)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Oplysningslagring"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Oplysningslagring"</string>
<string name="credentials_access" msgid="4843187230913860492">"Brug sikre oplysninger"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Giv programmer adgang til sikre certifikater og andre oplysninger"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Installer fra USB-lager"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Installer fra SD-kort"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Installer certifikater fra USB-lagring"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Installer certifikater fra SD-kortet"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Angiv adgangskode"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Indstil eller skift adgangskoden for oplysningslagring"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Ryd oplysninger"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Fjern alt indhold, og nulstil adgangskoden"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Indtast adgangskode"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Indtast adgangskoden for oplysningslagring."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Indstil adgangskode for oplysningslagring. Den skal være på mindst otte tegn."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Indtast adgangskoden til oplysningslagringen."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installer fra USB-lager"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installer fra SD-kort"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Installer krypt. cert. fra USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installer krypterede certifikater fra SD-kortet"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Angiv adgangskode"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Angiv eller skift adgangskode til oplysningslagringen"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Ryd lager"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Slet al indhold i oplysningslagringen, og nulstil adgangskoden"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Er du sikker på, at du ønsker at slette alle oplysninger og nulstille adgangskoden til oplysningslagringen?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Nuværende adgangskode:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Ny adgangskode:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Bekræft ny adgangskode:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Alt indholdet vil blive slette, og adgangskoden vil blive nulstillet. Er du sikker på, at du vil gøre det?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Angiv en adgangskode til oplysningslagringen (min. 8 tegn)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Indtast den rigtige adgangskode."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Indtast den rigtige adgangskode. Du har et forsøg mere til at indtaste den rigtige adgangskode, inden oplysningslagringen slettes."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Indtast den rigtige adgangskode. Du har <xliff:g id="NUMBER">%1$d</xliff:g> forsøg mere til at indtaste den rigtige adgangskode, inden oplysningslagringen slettes."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Adgangskoderne stemmer ikke overens."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Du skal indtaste og bekræfte en adgangskode."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Indtast adgangskoden."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Adgangskoden skal indeholde mindst 8 tegn."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Ugyldig adgangskode."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Forkert adgangskode. Du har ét forsøg mere, inden oplysningslagringen slettes."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Forkert adgangskode. Du har <xliff:g id="NUMBER">%1$d</xliff:g> forsøg mere, inden oplysningslagringen slettes."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Oplysningslagring er slettet."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Oplysningslagringen er slettet."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Oplysningslagring er aktiveret."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Oplysningslagring er deaktiveret."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Krypteret filsystem"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Krypter private brugerdata"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Aktiver krypteret filsystemlager for private brugerdata på denne enhed"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Aktivering af krypterede filsystemer kræver en enhedsdatasletter."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Deaktivering af krypterede filsystemer kræver en enhedsdatasletter."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Aktivér"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Deaktiver"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Annuller"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Ændring af tilstand for krypterede filsystemer blev anulleret."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Advarsel for krypterede filsystemer."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Nødtone"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Angiv adfærd ved nødopkald"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Fortrolighed"</string>
<string name="privacy_settings_title" msgid="1987089301293213705">"Indstillinger for fortrolighed"</string>
<string name="backup_section_title" msgid="8856083167469467588">"Sikkerhedskopiering og gendannelse"</string>
<string name="personal_data_section_title" msgid="7815209034443782061">"Personlige oplysninger"</string>
- <string name="backup_data_title" msgid="1239105919852668016">"Sikkerhedskopier data"</string>
+ <string name="backup_data_title" msgid="1239105919852668016">"Sikkerhedskopier mine data"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Sikkerhedskopier programdata, Wi-Fi-adgangskoder og andre indstillinger på Googles servere"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"Sikkerhedskonto"</string>
<string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Der er ingen konto, der i øjeblikket lagrer sikkerhedskopierede data"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Indgående opkald"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Underretninger"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Konfiguration af Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Opret forbindelse til Wi-Fi-netværket <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Opretter forbindelse til Wi-Fi-netværket <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Forbundet til Wi-Fi-netværket <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Tilføj et netværk"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Konfiguration af Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Ikke tilsluttet"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Tilføj netværk"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Opdater liste"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Gem"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Annuller"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Scanner netværk..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tryk på et netværk for at oprette forbindelse til det"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tryk for at vælge netværk"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Opret forbindelse til eksisterende netværk"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Tilslut til usikret netværk"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Angiv netværkskonfiguration"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Opretter forbindelse..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Fortsæt til næste trin"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP understøttes ikke"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939"><b>"Du kan ikke konfigurere en EAP Wi-Fi-forbindelse under installationen. Efter opsætningen kan du gøre det i Indstillinger under Trådløs og netværk"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Oprettelsen kan tage nogle få minutter..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Tryk på "<b>"Næste "</b>" for at fortsætte med opsætning."\n\n"Tryk på "<b>"Tilbage"</b>" for at oprette forbindelse til et andet Wi-Fi-netværk."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Du kan ikke konfigurere en EAP Wi-Fi-forbindelse under installationen. Efter opsætningen kan du gøre det i Indstillinger under Trådløs og netværk."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synkroniseringsindstillinger"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Der er i øjeblikket problemer med synkroniseringen. Den etableres igen om lidt."</string>
<string name="add_account_label" msgid="7811707265834013767">"Tilføj konto"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synkronisering slået fra"</string>
<string name="sync_error" msgid="5060969083117872149">"Synkroniseringsfejl"</string>
<string name="settings_backup" msgid="2274732978260797031">"Indstillinger for sikkerhedskopiering"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Sikkerhedskopier mine indstillinger"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synkroniser nu"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Annuller synkronisering"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tryk for at synkronisere nu<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Kalender"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kontaktpersoner"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Velkommen til Google Sync!"</font>" "\n"Googles tilgang til synkronisering af data giver dig adgang til dine kontaktpersoner, aftaler og meget mere, uanset hvor du er."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Indstillinger for programsynkronisering"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data og synkronisering"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Skift adgangskode"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Indstillinger for konto"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Fjern konto"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Tilføj en konto"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Afslut"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Fjern konto"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Vil du virkelig fjerne denne konto? Hvis du fjerner den, slettes også alle dens beskeder, kontaktpersoner og andre data fra telefonen. "\n"Fortsæt?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Vil du virkelig fjerne denne konto? Hvis du fjerner den, slettes også alle dens beskeder, kontaktpersoner og andre data fra telefonen. "\n"Fortsæt?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Denne konto kræves af nogle programmer. Du kan kun fjerne den ved at gendanne din tablet til fabriksstandard (hvilket sletter alle dine personlige oplysninger). Du kan gøre dette under Fortrolighed i Indstillinger."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Denne konto kræves af nogle programmer. Du kan kun fjerne den ved at gendanne telefonen til fabriksstandard (hvilket sletter alle dine personlige oplysninger). Du kan gøre dette under Fortrolighed i Indstillinger."</string>
- <string name="provider_label" msgid="7724593781904508866">"Pushabonnementer"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synkroniser <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Kan ikke synkronisere manuelt"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synkronisering af dette element er slået fra i øjeblikket. Hvis du vil ændre indstillingen, skal du midlertidigt slå baggrundsdata til og synkronisere automatisk."</string>
- <string name="enter_password" msgid="3268224850821675915">"Indtast en adgangskode for at dekryptere lager"</string>
- <string name="try_again" msgid="5904121494468643129">"Beklager! Prøv igen"</string>
- <string name="service_busy" msgid="225227519012409130">"Tjeneste optaget, prøv igen."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-de/arrays.xml b/res/values-de/arrays.xml
index 6189a62..132b823 100644
--- a/res/values-de/arrays.xml
+++ b/res/values-de/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Einige Fensteranimationen werden angezeigt."</item>
<item msgid="488968798204105119">"Alle Fensteranimationen werden angezeigt."</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 Sekunden"</item>
- <item msgid="8881760709354815449">"30 Sekunden"</item>
- <item msgid="7589406073232279088">"1 Minute"</item>
- <item msgid="7001195990902244174">"2 Minuten"</item>
- <item msgid="7489864775127957179">"5 Minuten"</item>
- <item msgid="2314124409517439288">"10 Minuten"</item>
- <item msgid="6864027152847611413">"30 Minuten"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"sofort"</item>
- <item msgid="6736512735606834431">"5 Sekunden"</item>
- <item msgid="8044619388267891375">"15 Sekunden"</item>
- <item msgid="1822002388249545488">"30 Sekunden"</item>
- <item msgid="8538071621211916519">"1 Minute"</item>
- <item msgid="5663439580228932882">"2 Minuten"</item>
- <item msgid="49888496216106852">"5 Minuten"</item>
- <item msgid="9002737361305019353">"10 Minuten"</item>
- <item msgid="4322676235684793329">"30 Minuten"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Sehr langsam"</item>
<item msgid="2361722960903353554">"Langsam"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Ausgezeichnet"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Wenn Bildschirm sich abschaltet"</item>
+ <item msgid="3804733751095821976">"Wenn Bildschirm sich abschaltet"</item>
<item msgid="1549288661423279207">"Niemals, wenn im Netzbetrieb"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nie"</item>
+ <item msgid="1986753720941888596">"Niemals"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatisch"</item>
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
index 75b163b..ab71a78 100644
--- a/res/values-de/strings.xml
+++ b/res/values-de/strings.xml
@@ -87,10 +87,11 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Leer"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Überspannung"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Unbekannter Fehler"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Kalt"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Sichtbar"</string>
- <string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Für <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> Sekunden sichtbar..."</string>
+ <string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Für <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> Sekunden erkennbar..."</string>
<string name="bluetooth_not_discoverable" msgid="128269993123955177">"Gerät sichtbar machen"</string>
<string name="bluetooth_lock_voice_dialing" msgid="3139322992062086225">"Sprachwahl sperren"</string>
<string name="bluetooth_lock_voice_dialing_summary" msgid="4741338867496787042">"Verwendung des Bluetooth-Dialers bei gesperrtem Bildschirm verhindern"</string>
@@ -111,19 +112,19 @@
<string name="progress_scanning" msgid="3760897655335759141">"Scannen..."</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth-Pairing-Anfrage"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Pairing-Anfrage"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Zum Pairing auswählen: <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Erhaltene Dateien anzeigen"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Liste der über Bluetooth empfang. Dateien anzeigen"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth-Geräteauswahl"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth-Berechtigungsanfrage"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Eine Anwendung beantragt eine Berechtigung zum Aktivieren von Bluetooth. Möchten Sie dies tun?"</string>
<string name="bluetooth_ask_discovery" product="tablet" msgid="5950965604673262829">"Eine Anwendung auf Ihrem Tablet beantragt die Berechtigung, Ihr Tablet für <xliff:g id="TIMEOUT">%1$d</xliff:g> Sekunden für andere Bluetooth-Geräte sichtbar zu machen. Möchten Sie dies tun?"</string>
- <string name="bluetooth_ask_discovery" product="default" msgid="669870705606180872">"Eine Anwendung auf Ihrem Telefon beantragt die Berechtigung, Ihr Telefon für <xliff:g id="TIMEOUT">%1$d</xliff:g> Sekunden für andere Bluetooth-Geräte sichtbar zu machen. Möchten Sie dies tun?"</string>
+ <string name="bluetooth_ask_discovery" product="default" msgid="669870705606180872">"Eine Anwendung auf Ihrem Telefon beantragt die Berechtigung, Ihr Telefon für <xliff:g id="TIMEOUT">%1$d</xliff:g> Sekunden für andere Bluethooth-Geräte sichtbar zu machen. Möchten Sie dies tun?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Eine Anwendung auf Ihrem Tablet beantragt die Berechtigung, Bluetooth zu aktivieren und Ihr Tablet für <xliff:g id="TIMEOUT">%1$d</xliff:g> Sekunden für andere Geräte sichtbar zu machen. Möchten Sie dies tun?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Eine Anwendung auf Ihrem Telefon beantragt die Berechtigung, Bluetooth zu aktivieren und Ihr Telefon für <xliff:g id="TIMEOUT">%1$d</xliff:g> Sekunden für andere Telefone sichtbar zu machen. Möchten Sie dies tun?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Bluetooth wird aktiviert..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatische Verbindung"</string>
- <string name="date_and_time" msgid="4114084177056654663">"Einstellungen für Datum & Uhrzeit"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
+ <string name="date_and_time" msgid="4114084177056654663">"Einstellungen für Datum &amp Uhrzeit"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
<string name="choose_timezone" msgid="7762866468013985022">"Zeitzone auswählen"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g> starten"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konto:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy-Einstellungen"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy-Einstellungen"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Globalen HTTP-Proxy und Ausschlusslisten festlegen"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Löschen"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -219,14 +220,14 @@
<string name="proxy_settings_label" msgid="3271174136184391743">"Proxy-Einstellungen"</string>
<string name="cancel" msgid="6859253417269739139">"Abbrechen"</string>
<string name="settings_label" msgid="1626402585530130914">"Einstellungen"</string>
- <string name="settings_label_launcher" msgid="8344735489639482340">"Einstellung."</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Einstellungsverknüpfung auswählen"</string>
+ <string name="settings_label_launcher" msgid="8344735489639482340">"Ein- stellungen"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Einstellungen"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Flugmodus"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Alle drahtlosen Verbindungen deaktivieren"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Drahtlosverbindungen werden deaktiviert..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Drahtlosverbindungen werden aktiviert..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Drahtlos & Netzwerke"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Drahtlos und Netzwerke"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Einstellungen für Drahtlos & Netzwerke"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"WLAN, Bluetooth, Flugmodus, Mobilfunknetze und VPNs verwalten"</string>
<string name="roaming" msgid="3596055926335478572">"Daten-Roaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Bei Roaming mit Datendienst verbinden"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Netzbetreiberauswahl"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Netzbetreiber auswählen"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum & Uhrzeit"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Datum und Uhrzeit einstellen"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Datum, Uhrzeit, Zeitzone und Formate festlegen"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatisches Datum & Uhrzeit"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Vom Netzwerk angegebene Zeitzone verwenden"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Nach Zeitzone sortieren"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Uhrzeit"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timeout"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bildschirm <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> nach automatischer Bildschirmabschaltung sperren"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Gerät nach Timeout sperren"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Inhaberinformationen auf Sperrbildschirm anzeigen"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Inhaberinformationen"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Meinen Standort, Display-Entsperrung, SIM-Kartensperre und Sperre für Anmeldeinformationsspeicher festlegen"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Meinen Standort, Display-Entsperrung, SIM-Kartensperrung und Sperrung des Anmeldeinformationsspeichers festlegen"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Passwörter"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Geräteverschlüsselung"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Daten auf Gerät verschlüsseln"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Daten auf Gerät verschlüsseln"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Erfordert das Festlegen einer PIN bzw. eines Passworts zur Geräteentsperrung"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Erfordert das Festlegen einer PIN bzw. eines Passworts zur Geräteentsperrung"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Verschlüsselt"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Sie können Ihre Konten, Einstellungen, heruntergeladenen Anwendungen und die entsprechenden Daten, Medien und sonstigen Dateien verschlüsseln. Nach einer Verschlüsselung Ihres Telefons können Sie es nur noch mittels Zurücksetzen auf die Werkseinstellungen entschlüsseln, wobei alle auf ihm befindlichen Daten gelöscht werden."\n\n"Die Verschlüsselung kann bis zu einer Stunde dauern. Der Akku muss beim Start des Vorgangs aufgeladen sein und das Telefon muss eingesteckt bleiben, bis er abgeschlossen ist. Sollten Sie den Verschlüsselungsvorgang unterbrechen, gehen einige oder alle Daten verloren."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Sie können Ihre Konten, Einstellungen, heruntergeladenen Anwendungen und die entsprechenden Daten, Medien und sonstigen Dateien verschlüsseln. Nach einer Verschlüsselung Ihres Telefons können Sie es nur noch mittels Zurücksetzen auf die Werkseinstellungen entschlüsseln, wobei alle auf ihm befindlichen Daten gelöscht werden."\n\n"Die Verschlüsselung kann bis zu einer Stunde dauern. Der Akku muss beim Start des Vorgangs aufgeladen sein und das Telefon muss eingesteckt bleiben, bis er abgeschlossen ist. Sollten Sie den Verschlüsselungsvorgang unterbrechen, gehen einige oder alle Daten verloren."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Tablet verschlüsseln"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Telefon verschlüsseln"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Verschlüsselung bestätigen"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Nutzerdaten verschlüsseln? Dieser Vorgang ist nicht umkehrbar und jede Unterbrechung ist mit einem Datenverlust verbunden! Die Verschlüsselung kann bis zu einer Stunde dauern."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Nutzerdaten verschlüsseln? Dieser Vorgang ist nicht umkehrbar und jede Unterbrechung ist mit einem Datenverlust verbunden! Die Verschlüsselung kann bis zu einer Stunde dauern."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Verschlüsselung"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"In ^1 Sekunden erneut versuchen"</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Sperrbildschirm konfig"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Bildschirmsperre konf."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Display-Entsperrung"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Display-Sperre einrichten"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Display-Sperre ändern"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Sperre (Muster, PIN, Passwort) ändern oder deaktivieren"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Methode zum Sperren des Bildschirms wählen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Aus"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Niemals den Bildschirm sperren"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Unsicher"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Kein Muster, Passwort oder PIN zum Entsp. v. Bildschirm nötig"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Sperrbildschirm nicht anzeigen"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Keine"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Display-Entsperrung deaktivieren"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Muster"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Muster zur Bildschirmentsperrung erfordern"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Muster zum Entsperren des Displays zeichnen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Numerische PIN zur Bildschirmentsp. erfordern"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Numerische PIN zum Entsperren des Displays eingeben"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Passwort"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Passwort zur Bildschirmentsperrung erfordern"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Passwort zum Entsperren des Displays eingeben"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Vom Remote-Geräteadministrator deaktiviert"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Aus"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Unsicher"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Durch Muster geschützt"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Durch PIN geschützt"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Geschützt durch Passwort"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Display-Sperre deaktivieren"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Entsperrungsmuster entfernen"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Entsperrungs-PIN entfernen"</string>
@@ -367,23 +338,28 @@
</plurals>
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Geräteadministrator lässt die Verwendung eines früheren Passworts nicht zu"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
- <string name="lockpassword_cancel_label" msgid="8818529276331121899">"Abbruch"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Abbrechen"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Weiter"</string>
+ <string name="lockpassword_cancel_label" msgid="8818529276331121899">"Abbrechen"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Geräteverwaltung"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Geräteadministratoren"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Geräteadministratoren anzeigen oder deaktivieren"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Geräte-Administratoren"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Geräteadministratoren hinzufügen oder entfernen"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Bluetooth aktivieren"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth-Einstellungen"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth-Einstellungen"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Verbindungen, Gerätenamen und Erkennbarkeit verwalten"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth-Pairing-Anfrage"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"PIN zum Pairing mit \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eingeben. Versuchen Sie es mit 0000 oder 1234. Möglicherweise müssen Sie dieselbe PIN auf dem Bluetooth-Gerät eingeben."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Schlüssel zum Pairing mit \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eingeben"</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Bestätigen Sie zum Paaren mit \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", dass es den folgenden Schlüssel anzeigt: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"möchte sich paaren."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Geben Sie zum Pairing \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" auf \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" ein und drücken Sie anschließend die Eingabetaste."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Paaren"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nicht paaren"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-Gerät"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Optionen..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Verbinden mit..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Medien"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Freisprechfunktion"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Übertragung"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Eingabegerät"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird vom Medien-Audiosystem getrennt."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird von der Freisprechfunktion getrennt."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird vom Eingabegerät getrennt."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird vom Tethering getrennt."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Optionen von <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Geräteaktionen"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Verbinden"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Für Audiosystem des Telefons verwenden"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Für Dateiübertragung verwenden"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Für Eingabe verwenden"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Für Internetzugriff verwenden"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Dock-Einstellungen"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Dock für Audio verwenden"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Als Lautsprechertelefon"</string>
@@ -439,22 +420,21 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Einstellungen speichern"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Nahfeldkommunikation zum Lesen und Austauschen von Tags verwenden"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Ein Fehler ist aufgetreten."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"WLAN"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"WLAN aktivieren"</string>
<string name="wifi_settings" msgid="4746946030627213196">"WLAN-Einstellungen"</string>
<string name="wifi_settings_category" msgid="2810363951104753710">"WLAN-Einstellungen"</string>
<string name="wifi_settings_summary" msgid="668767638556052820">"WLAN-Zugangspunkte festlegen und verwalten"</string>
<string name="wifi_starting" msgid="6710266609710860129">"Aktivierung..."</string>
- <string name="wifi_stopping" msgid="5952909472548218348">"Deaktivierung..."</string>
+ <string name="wifi_stopping" msgid="5952909472548218348">"Wird beendet..."</string>
<string name="wifi_error" msgid="3207971103917128179">"Fehler"</string>
<string name="wifi_in_airplane_mode" msgid="7618393787965366655">"Im Flugmodus"</string>
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Netzwerkscan nicht möglich"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Netzwerkhinweis"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Benachrichtigen, wenn ein offenes Netzwerk verfügbar ist"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"WLAN Standby-Richtlinie"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Festlegen, wann von WLAN auf mobile Daten umgeschaltet werden soll"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Beim Einrichten der Standby-Richtlinie ist ein Problem aufgetreten."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"WLAN-Netzwerk hinzufügen"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"WLAN-Netzwerke"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scan"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Netzwerk ändern"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Netzwerkeinrichtung"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"PIN vom Zugriffspunkt eingeben"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS-Einrichtung"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfiguration der WPS-PIN-Methode"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> am Zugriffspunkt eingeben"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS ist bereits im Aufbau. Dies kann noch einige Sekunden dauern."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS konnte nicht gestartet werden. Versuchen Sie es erneut."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Netzwerk-SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sicherheit"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signalstärke"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Entfernen"</string>
<string name="wifi_save" msgid="3331121567988522826">"Speichern"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Abbrechen"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Andere WPS-Sitzung gefunden, versuchen Sie es in einigen Minuten erneut."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Erweitert"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"WLAN Standby-Richtlinie"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Festlegen, wann von WLAN auf mobile Daten umgeschaltet werden soll"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Beim Einrichten der Standby-Richtlinie ist ein Problem aufgetreten."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"WLAN-Frequenzband"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Frequenzbereich für Betrieb festlegen"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Fehler beim Festlegen des Frequenzbands"</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> mobiler WLAN-Hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Töne"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Bildschirm"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Display"</string>
<string name="sound_settings" msgid="5007659014828162881">"Toneinstellungen"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Lautlosmodus"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Alle Töne (außer für Wecker & Medienwiedergabe) stummschalten"</string>
@@ -549,7 +529,7 @@
<string name="media_volume_title" msgid="3576565767317118106">"Medien"</string>
<string name="media_volume_summary" msgid="5363248930648849974">"Lautstärke für Musik und Videos festlegen"</string>
<string name="alarm_volume_title" msgid="2285597478377758706">"Wecker"</string>
- <string name="dock_settings_summary" msgid="455802113668982481">"Audioeinstellungen für angeschlossenes Dock"</string>
+ <string name="dock_settings_summary" msgid="455802113668982481">"Audioeinstellungen für angeschlossenen Dock"</string>
<string name="dtmf_tone_enable_title" msgid="1453831168789523185">"Tastentöne"</string>
<string name="dtmf_tone_enable_summary_on" msgid="3028201873989887327">"Töne bei Telefonwahl"</string>
<string name="dtmf_tone_enable_summary_off" msgid="7791065951268525678">"Töne bei Telefonwahl"</string>
@@ -567,11 +547,11 @@
<string name="dock_settings" msgid="1820107306693002541">"Dock"</string>
<string name="dock_settings_title" msgid="9161438664257429372">"Dock-Einstellungen"</string>
<string name="dock_audio_settings_title" msgid="3324750259959570305">"Audio"</string>
- <string name="dock_audio_summary_desk" msgid="6487784412371139335">"Einstellungen für angeschlossenes Desktop-Dock"</string>
- <string name="dock_audio_summary_car" msgid="6740897586006248450">"Einstellungen für angeschlossenes Kfz-Dock"</string>
+ <string name="dock_audio_summary_desk" msgid="6487784412371139335">"Einstellungen für angeschlossenen Desktop-Dock"</string>
+ <string name="dock_audio_summary_car" msgid="6740897586006248450">"Einstellungen für angeschlossenen Kfz-Dock"</string>
<string name="dock_audio_summary_none" product="tablet" msgid="8215337394914283607">"Tablet nicht angedockt"</string>
<string name="dock_audio_summary_none" product="default" msgid="289909253741048784">"Telefon nicht angedockt"</string>
- <string name="dock_audio_summary_unknown" msgid="4465059868974255693">"Einstellungen für angeschlossenes Dock"</string>
+ <string name="dock_audio_summary_unknown" msgid="4465059868974255693">"Einstellungen für angeschlossenen Dock"</string>
<string name="dock_not_found_title" msgid="3290961741828952424">"Dock nicht gefunden"</string>
<string name="dock_not_found_text" product="tablet" msgid="7935403744079168804">"Zur Konfiguration des Dock-Audios muss das Tablet angedockt sein."</string>
<string name="dock_not_found_text" product="default" msgid="3035260358985111855">"Zur Konfiguration des Dock-Audios muss das Telefon angedockt sein."</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Ausrichtung beim Drehen des Telefons automatisch ändern"</string>
<string name="brightness" msgid="2354961343555249270">"Helligkeit"</string>
<string name="brightness_summary" msgid="838917350127550703">"Helligkeit des Bildschirms anpassen"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timeout"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Bildschirm wird nach <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> automatisch abgeschaltet."</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Display-Timeout"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatische Helligkeit"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Einstellungen für SIM-Karten-Sperre"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIM-Sperre einrichten"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nicht verfügbar"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Akku- und Netzwerkstatus und andere Informationen"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, Telefonnummer, Signal usw."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonnummer, Signal usw."</string>
<string name="storage_settings" msgid="4211799979832404953">"Speicher"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Speichereinstellungen"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USB-Speicher trennen, verfügbaren Speicher anzeigen"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD-Karte entnehmen, verfügbaren Speicher anzeigen"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Meine Telefonnummer"</string>
+ <string name="status_number" msgid="5123197324870153205">"Meine Telefonnummer"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-Version"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Interner Speicher"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-Speicher"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-Karte"</string>
- <string name="memory_available" msgid="5052397223077021181">"Verfügbar"</string>
- <string name="memory_size" msgid="5458889090691922288">"Gesamt"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Berechnen…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Anwendungen"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medien"</string>
+ <string name="memory_available" msgid="418542433817289474">"Verfügbarer Speicher"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Gesamtspeicher"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Anwendungsnutzung"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Mediennutzung"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Freig. Speicher trennen"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SD-Karte entnehmen"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Internen USB-Speicher trennen"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"SD-Karte zur Bereitstellung einlegen"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"USB-Speicher bereitst."</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"SD-Karte bereitstellen"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"USB-Speicher bereitstellen"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Int. USB-Speicher bereitst."</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"SD-Karte bereitstellen"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"USB-Speicher löschen"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"SD-Karte löschen"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Löscht alle Daten, z. B. Musik und Fotos, aus dem internen USB-Speicher"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Löscht sämtliche Daten wie Musik und Fotos von der SD-Karte"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Löscht alle Daten, z. B. Musik und Fotos, aus dem internen USB-Speicher"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Nicht verfügbar"</string>
<string name="read_only" msgid="6702420168629076340">" (schreibgeschützt)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"USB-Speicher trennen"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Hierdurch werden alle Daten aus dem "<b>"internen Speicher"</b>" Ihres Tablet-Geräts gelöscht, u. a."\n\n<li>"Ihr Google-Konto,"</li>\n<li>"die System- und Anwendungsdaten und -einstellungen"</li>\n<li>"und heruntergeladene Anwendungen"</li>"."</string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Hierdurch werden alle Daten aus dem "<b>"internen Speicher"</b>" Ihres Telefons gelöscht, u. a."\n\n<li>"Ihr Google-Konto,"</li>\n<li>"die System- und Anwendungsdaten und -einstellungen"</li>\n<li>"und heruntergeladene Anwendungen"</li>"."</string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Sie sind derzeit in folgenden Konten angemeldet:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musik"</li>\n<li>"Fotos"</li>\n<li>"Sonstige Nutzerdaten"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Um auch Musik, Bilder und sonstige Nutzerdaten zu löschen, muss der "<b>"USB-Speicher"</b>" geleert werden."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Damit auch Musik, Bilder und andere Nutzerdaten gelöscht werden können, muss die "<b>"SD-Karte"</b>" gelöscht werden."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Um auch Musik, Bilder und sonstige Nutzerdaten zu löschen, muss der "<b>"USB-Speicher"</b>" geleert werden."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USB-Speicher löschen"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SD-Karte löschen"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Löscht alle Daten, z. B. Musik und Fotos, aus dem internen USB-Speicher"</string>
@@ -791,7 +771,7 @@
<string name="bluetooth_tethering_available_subtext" msgid="3317112145693933963">"Bluetooth-Tethering ein, aber nicht verbunden"</string>
<string name="bluetooth_tethering_connected_subtext" msgid="893888246368164894">"Bluetooth-Tethering ein und verbunden"</string>
<string name="bluetooth_tethering_off_subtext" msgid="1798863866978968964">"Bluetooth-Tethering aus"</string>
- <string name="bluetooth_tethering_errored_subtext" msgid="1344187103463073993">"Bluetooth-Tethering-Fehler"</string>
+ <string name="bluetooth_tethering_errored_subtext" msgid="1344187103463073993">"Bluethooth-Tethering-Fehler"</string>
<string name="bluetooth_tethering_overflow_error" msgid="2222060504731415763">"Tethering nur für maximal <xliff:g id="MAXCONNECTION">%1$d</xliff:g> Geräte möglich"</string>
<string name="bluetooth_untether_blank" msgid="2871192409329334813">"Tethering für <xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird deaktiviert."</string>
<string name="tethering_help_button_text" msgid="656117495547173630">"Hilfe"</string>
@@ -800,16 +780,16 @@
<string name="location_title" msgid="1029961368397484576">"Mein Standort"</string>
<string name="location_network_based" msgid="8815705866861993344">"Drahtlosnetzwerke"</string>
<string name="location_networks_disabled" msgid="2708968452901433980">"Standort über Drahtlosnetzwerke bestimmen (z. B. in Google Maps)"</string>
- <string name="location_neighborhood_level" msgid="4656658097932515921">"Standort über WLAN und/oder Mobilfunknetze bestimmen"</string>
+ <string name="location_neighborhood_level" msgid="4656658097932515921">"Standort bestimmt von WLAN und/oder Mobilfunknetzen"</string>
<string name="location_gps" msgid="6296125378829097831">"GPS-Satelliten"</string>
<string name="location_street_level" msgid="7456259025474443314">"Genau auf Straßenebene lokalisieren"</string>
<string name="location_gps_disabled" msgid="6632537158777308128">"Auf Straßenebene lokalisieren (höherer Akkuverbrauch, im Freien)"</string>
<string name="assisted_gps" msgid="4649317129586736885">"Unterstütztes GPS verwenden"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Server zur Unterstützung von GPS verwenden (zur Verringerung der Netzwerkauslastung nicht auswählen)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Server zur Unterstützung von GPS verwenden (zur Verbesserung der GPS-Leistung deaktivieren)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Standort für Google-Suche verwenden"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Standort für Google-Suche und andere Google-Services verwenden"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Standort wird zur Verbesserung der Google-Suchergebnisse und anderer Google-Services verwendet."</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Standort für Google-Suche verwenden"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Standort für Google-Suche und andere Google-Services verwenden"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Standort für Google-Suchergebnisse/-Services verwendet"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Über das Tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Telefoninfo"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Rechtliche Hinweise, Status und Softwareversion anzeigen"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Das Passwort wurde festgelegt."</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Die PIN wurde festgelegt."</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Das Muster wurde festgelegt."</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bildschirm sperren"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Display-Entsperrung"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Entsperrungsmuster ändern"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Entsperrungs-PIN ändern"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Gespeichertes Muster bestätigen"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Weiter"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Sichern Ihres Tablets"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Sichern Ihres Telefons"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Schützen Sie Ihr Tablet durch die Erstellung eines persönlichen Bildschirm-Entsperrungsmusters vor unbefugten Zugriffen. Verbinden Sie auf dem nächsten Bildschirm die Punkte in beliebiger Reihenfolge mit dem Finger. Sie müssen mindestens vier Punkte verbinden."\n\n"Sind Sie bereit? Berühren Sie \"Weiter\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Schützen Sie Ihr Telefon vor unerlaubter Verwendung, indem Sie ein persönliches Entsperrungsmuster erstellen. "\n<font height="17">\n</font><b>"1"</b>" Auf dem nächsten Bildschirm sehen Sie, wie ein Beispielmuster gezeichnet wird. "\n<font height="17">\n</font><b>"2"</b>" Anschließend können Sie Ihr eigenes Entsperrungsmuster zeichnen. Sie können verschiedene Muster ausprobieren, müssen jedoch immer mindestens vier Punkte miteinander verbinden. "\n<font height="17">\n</font><b>"3"</b>" Zeichnen Sie Ihr Muster zur Bestätigung erneut. "\n<font height="17">\n</font><b>"Bereit? Wählen Sie “Weiter”"</b>". "\n<font height="3">\n</font>"Wählen Sie “Abbrechen”, wenn Sie Ihr Telefon nicht schützen möchten."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Anwendungen verwalten"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Installierte Anwendungen verwalten und entfernen"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Insgesamt"</string>
<string name="application_size_label" msgid="5055196275624686382">"Anwendung"</string>
<string name="data_size_label" msgid="8679376373625710107">"Daten"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-Speicher"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-Karte"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Deinstallieren"</string>
<string name="disable_text" msgid="6544054052049395202">"Deaktivieren"</string>
<string name="enable_text" msgid="9217362512327828987">"Aktivieren"</string>
@@ -942,7 +923,7 @@
<string name="move_app" msgid="5042838441401731346">"Verschieben"</string>
<string name="move_app_to_internal" product="tablet" msgid="2299714147283854957">"Auf Tablet verschieben"</string>
<string name="move_app_to_internal" product="default" msgid="3895430471913858185">"Auf Telefon verschieben"</string>
- <string name="move_app_to_sdcard" product="nosdcard" msgid="4350451696315265420">"In USB-Speicher verschieben"</string>
+ <string name="move_app_to_sdcard" product="nosdcard" msgid="4350451696315265420">"In USB-Speicher versch."</string>
<string name="move_app_to_sdcard" product="default" msgid="1143379049903056407">"Auf SD-Karte verschieben"</string>
<string name="moving" msgid="6431016143218876491">"Verschieben"</string>
<string name="insufficient_storage" msgid="8566913062094452962">"Es ist nicht genügend Speicher vorhanden."</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Systemdienst beenden?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Möchten Sie diesen Systemdienst wirklich beenden? Möglicherweise funktionieren dann einige Funktionen Ihres Tablets nicht mehr richtig, bis Sie es aus- und wieder einschalten."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Möchten Sie diesen Systemdienst wirklich beenden? Möglicherweise funktionieren dann einige Funktionen Ihres Telefons nicht mehr richtig, bis Sie es aus- und wieder einschalten."</string>
- <string name="language_settings" msgid="5292716747264442359">"Sprache & Eingabe"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Sprache & Eingabe"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Gebietsschema & Text"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Einstellungen für Sprache & Tastatur"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Spracheinstellungen"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Tastatureinstellungen"</string>
<string name="phone_language" msgid="1165758957501090679">"Sprache auswählen"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Autom. Ersetzung"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Tippfehler korrigieren"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Autom. Groß-/Kleinschr."</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Autom. Großschreibung"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Jeden Satz mit einem Großbuchstaben beginnen"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Autom. Zeichensetzung"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Einstellungen für physische Tastatur"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Tastenkombinationen"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Texteingabe"</string>
<string name="input_method" msgid="5434026103176856164">"Eingabemethode"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Aktuelle Eingabemethode"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Auswahl der Eingabemethoden"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatisch"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Immer anzeigen"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Immer ausblenden"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Eingabemethoden konfigurieren"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Einstellungen"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktive Eingabemethoden"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Systemsprache verwenden"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g>-Einstellungen"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Aktive Eingabemethoden auswählen"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Einstellungen der Bildschirmtastatur"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Eingebaute Tastatur"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Einstellungen für eingebaute, physische Tastatur"</string>
@@ -1070,7 +1061,7 @@
<string name="launch_count_label" msgid="4019444833263957024">"Anzahl"</string>
<string name="usage_time_label" msgid="295954901452833058">"Nutzungszeit"</string>
<string name="accessibility_settings" msgid="3975902491934816215">"Eingabehilfen"</string>
- <string name="accessibility_settings_title" msgid="2130492524656204459">"Einstellungen für Eingabehilfen"</string>
+ <string name="accessibility_settings_title" msgid="2130492524656204459">"Einstellungen für Eingabehilfe"</string>
<string name="accessibility_settings_summary" msgid="8185181964847149507">"Optionen für Eingabehilfe verwalten"</string>
<string name="toggle_accessibility_title" msgid="650839277066574497">"Eingabehilfen"</string>
<string name="accessibility_services_category" msgid="8127851026323672607">"Eingabehilfendienste"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"WLAN-Aktivzeit"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"WLAN-Aktivzeit"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g> <xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Verlaufsdetails"</string>
- <string name="details_title" msgid="3792801565213935385">"Nutzungsdetails"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Akkuverbrauch - Details"</string>
<string name="details_subtitle" msgid="32593908269911734">"Details"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Energieverbrauch anpassen"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Enthaltene Pakete"</string>
@@ -1166,9 +1158,9 @@
<string name="voice_input_category" msgid="1589318440824204736">"Spracheingabe"</string>
<string name="voice_output_category" msgid="2624538587784986229">"Sprachausgabe"</string>
<string name="recognizer_title" msgid="3231385184559054457">"Spracherkennung"</string>
- <string name="recognizer_settings_title" msgid="6038598099039717232">"Spracherkennung"</string>
+ <string name="recognizer_settings_title" msgid="6038598099039717232">"Spracherkennungseinstellungen"</string>
<string name="recognizer_settings_summary" msgid="4472287934134546902">"Einstellungen für \'<xliff:g id="RECOGNIZER_NAME">%s</xliff:g>\'"</string>
- <string name="tts_settings" msgid="8186971894801348327">"Text-in-Sprache"</string>
+ <string name="tts_settings" msgid="8186971894801348327">"Text-in-Sprache-Einstellungen"</string>
<string name="tts_settings_title" msgid="4182348653053000933">"Text-in-Sprache-Einstellungen"</string>
<string name="use_default_tts_settings_title" msgid="1577063839539732930">"Immer meine Einst. verwenden"</string>
<string name="use_default_tts_settings_summary" msgid="4253502106159206276">"Standardeinstellungen überschreiben Anwendungseinstellungen"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Bei der Serververhandlung ist ein Fehler aufgetreten. Der Server stimmt möglicherweise nicht mit Ihrer Verschlüsselungsoption überein. Möchten Sie die Einstellungen Ihrer Verschlüsselung überprüfen?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPN hinzufügen"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPN hinzufügen"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN-Details"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g>-VPN hinzufügen"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Details zu <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPNs"</string>
@@ -1285,31 +1278,45 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Virtual Private Networks (VPNs) einrichten und verwalten"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nicht geändert)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nicht festgelegt)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Anmeldedatenspeicher"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Anmeldeinformationsspeicher"</string>
<string name="credentials_access" msgid="4843187230913860492">"Sichere Anmeldeinfos"</string>
- <string name="credentials_access_summary" msgid="319662078718574168">"Anwendungen können sichere Zertifikate und Anmeldeinformationen abrufen"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Von USB-Speicher installieren"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Von SD-Karte installieren"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Zertifikate von USB-Speicher installieren"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Zertifikate von SD-Karte installieren"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Passwort festlegen"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Passwort für Anmeldedatenspeicher festlegen oder ändern"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Anmeldedaten löschen"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Sämtliche Inhalte entfernen und Passwort zurücksetzen"</string>
+ <!-- unknown quoting pattern: original -1, translation 1 -->
+ <string name="credentials_access_summary" msgid="319662078718574168">"Anwendungen können sichere Zertifikate &amp; Anmeldeinform. abrufen"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Passwort eingeben"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Geben Sie das Passwort für den Anmeldedatenspeicher ein."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Legen Sie das Passwort für den Anmeldedatenspeicher fest. Dieses muss mindestens acht Zeichen lang sein."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Geben Sie das Passwort für den Anmeldeinformationsspeicher ein."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Von USB-Speicher inst."</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Von SD-Karte installieren"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Verschl. Zertifikate von USB-Speicher inst."</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Verschlüsselte Zertifikate von SD-Karte installieren"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Passwort festlegen"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Passwort für Anmeldeinformationsspeicher festlegen oder ändern"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Speicherinhalt löschen"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Inhalt des Anmeldeinformationsspeichers löschen und Passwort zurücksetzen"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Möchten Sie wirklich alle Anmeldeinformationen löschen und das Passwort für den Anmeldeinformationsspeicher zurücksetzen?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Aktuelles Passwort:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Neues Passwort:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Neues Passwort bestätigen:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Sämtliche Inhalte werden gelöscht und das Passwort wird zurückgesetzt. Möchten Sie wirklich fortfahren?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Legen Sie ein mindestens acht Zeichen langes Passwort für den Anmeldeinformationsspeicher fest."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Geben Sie das richtige Passwort ein."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Geben Sie das richtige Passwort ein. Sie haben noch einen Versuch, das richtige Passwort einzugeben. Anschließend wird der Anmeldeinformationsspeicher gelöscht."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Geben Sie das richtige Passwort ein. Sie haben noch <xliff:g id="NUMBER">%1$d</xliff:g> Versuche, das richtige Passwort einzugeben. Anschließend wird der Anmeldeinformationsspeicher gelöscht."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Die Passwörter stimmen nicht überein."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Sie müssen ein Passwort eingeben und bestätigen."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Geben Sie das Passwort ein."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Das Passwort muss mindestens acht Zeichen lang sein."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Falsches Passwort"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Falsches Passwort. Sie haben noch einen Versuch, bevor Ihr Anmeldedatenspeicher gelöscht wird."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Falsches Passwort. Sie haben noch <xliff:g id="NUMBER">%1$d</xliff:g> Versuche, bevor Ihr Anmeldedatenspeicher gelöscht wird."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Speicher wurde gelöscht."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Der Anmeldeinformationsspeicher wurde gelöscht."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Der Anmeldeinformationsspeicher ist aktiviert."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Der Anmeldeinformationsspeicher ist deaktiviert."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Encrypted File System"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Private Nutzerdaten verschlüsseln"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Encrypted File System-Speicherung für private Nutzerdaten auf diesem Gerät aktivieren"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Für das Aktivieren von Encrypted File Systems müssen die Gerätedaten zurückgesetzt werden."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Für das Deaktivieren von Encrypted File Systems müssen die Gerätedaten zurückgesetzt werden."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Aktivieren"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Deaktivieren"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Abbrechen"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Encrypted File Systems-Modusänderung abgebrochen"</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Encrypted File Systems-Warnung"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Notfallsignal"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Verhalten bei einem Notruf festlegen"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Datenschutz"</string>
@@ -1339,11 +1346,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Eingehende Anrufe"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Benachrichtigungen"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"WLAN-Einrichtung"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Mit WLAN-Netzwerk verbinden: <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Verbindung mit WLAN-Netzwerk <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Mit WLAN-Netzwerk <xliff:g id="NETWORK_NAME">%s</xliff:g> verbunden"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Netzwerk hinzufügen"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WLAN-Setup"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nicht verbunden"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Netzwerk hinzufügen"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Liste aktualisieren"</string>
@@ -1356,7 +1359,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Speichern"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Abbrechen"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Netzwerke werden überprüft..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Berühren Sie ein Netzwerk, um eine Verbindung herzustellen."</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Zur Netzwerkauswahl berühren"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Mit vorhandenem Netzwerk verbinden"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Mit ungesich. Netzwerk verbinden"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Netzwerkkonfiguration eingeben"</string>
@@ -1364,9 +1367,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Verbindung wird hergestellt..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Weiter zum nächsten Schritt"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP nicht unterstützt"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Während der Einrichtung können Sie keine EAP-WLAN-Verbindung konfigurieren. Sie können dies anschließend in den Einstellungen unter "<b>"Drahtlos und Netzwerke"</b>" tun."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Der Verbindungsaufbau kann einige Minuten dauern..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Tippen Sie auf "<b>"Weiter"</b>", um mit der Einrichtung fortzufahren."\n\n"Tippen Sie auf "<b>"Zurück"</b>", um eine Verbindung zu einem anderen WLAN-Netzwerk herzustellen."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Während der Installation können Sie keine EAP-WLAN-Verbindung konfigurieren. Sie können dies anschließend in den Einstellungen unter \"Drahtlos und Netzwerke\" tun."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synchronisierungseinstellungen"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Bei der Synchronisierung treten derzeit Probleme auf. Sie wird in Kürze fortgesetzt."</string>
<string name="add_account_label" msgid="7811707265834013767">"Konto hinzufügen"</string>
@@ -1382,32 +1383,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synchronisierung aus"</string>
<string name="sync_error" msgid="5060969083117872149">"Synchron.fehler"</string>
<string name="settings_backup" msgid="2274732978260797031">"Einstellungen sichern"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Meine Einstellungen sichern"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Jetzt synchronisieren"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Synchronisierung abbrechen"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Zum sofortigen Synchronisieren berühren<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Google Mail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Google Kalender"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kontakte"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Willkommen bei Google Sync!"</font>\n"Mit dieser Funktion von Google können Sie Ihre Daten synchronisieren, um auf Ihre Kontakte, Termine und vieles mehr zuzugreifen - wo immer Sie auch sind!"</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Anwendungssynchronisierung"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Daten und Synchronisierung"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Passwort ändern"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Kontoeinstellungen"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Konto entfernen"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Konto hinzufügen"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Fertigstellen"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Konto entfernen"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Möchten Sie dieses Konto wirklich entfernen? Hierdurch werden auch die zugehörigen Nachrichten, Kontakte und anderen Daten von dem Tablet gelöscht. "\n"Vorgang fortsetzen?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Möchten Sie dieses Konto wirklich entfernen? Hierdurch werden auch die zugehörigen Nachrichten, Kontakte und anderen Daten auf dem Telefon gelöscht. "\n"Vorgang fortsetzen?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Dieses Konto wird von einigen Anwendungen benötigt. Sie können es nur entfernen, indem Sie das Tablet auf die Werkseinstellungen zurücksetzen und so alle persönlichen Daten löschen. Wählen Sie hierfür unter \"Einstellungen\" die Option \"Datenschutz\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Dieses Konto wird von einigen Anwendungen benötigt. Sie können es nur entfernen, indem Sie das Telefon auf die Werkseinstellungen zurücksetzen und so alle persönlichen Daten löschen. Wählen Sie hierfür unter \"Einstellungen\" die Option \"Datenschutz\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push-Abos"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"<xliff:g id="AUTHORITY">%s</xliff:g> synchronisieren"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Manuelle Synchronisierung kann nicht durchgeführt werden"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Die Synchronisierung ist für dieses Element zurzeit deaktiviert. Zur Änderung Ihrer Voreinstellungen aktivieren Sie vorübergehend Hintergrunddaten und automatische Synchronisierung."</string>
- <string name="enter_password" msgid="3268224850821675915">"Passwort zum Entschlüsseln des Speichers eingeben"</string>
- <string name="try_again" msgid="5904121494468643129">"Tut uns leid. Versuchen Sie es noch einmal."</string>
- <string name="service_busy" msgid="225227519012409130">"Dienst nicht verfügbar. Bitte versuchen Sie es erneut."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-el/arrays.xml b/res/values-el/arrays.xml
index 6331cde..e6ac187 100644
--- a/res/values-el/arrays.xml
+++ b/res/values-el/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Εμφάνιση ορισμένων εφέ κίνησης παραθύρων"</item>
<item msgid="488968798204105119">"Εμφανίζονται όλα τα εφέ κίνησης παραθύρων"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 δευτερόλεπτα"</item>
- <item msgid="8881760709354815449">"30 δευτερόλεπτα"</item>
- <item msgid="7589406073232279088">"1 λεπτό"</item>
- <item msgid="7001195990902244174">"2 λεπτά"</item>
- <item msgid="7489864775127957179">"5 λεπτά"</item>
- <item msgid="2314124409517439288">"10 λεπτά"</item>
- <item msgid="6864027152847611413">"30 λεπτά"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"άμεσα"</item>
- <item msgid="6736512735606834431">"5 δευτερόλεπτα"</item>
- <item msgid="8044619388267891375">"15 δευτερόλεπτα"</item>
- <item msgid="1822002388249545488">"30 δευτερόλεπτα"</item>
- <item msgid="8538071621211916519">"1 λεπτό"</item>
- <item msgid="5663439580228932882">"2 λεπτά"</item>
- <item msgid="49888496216106852">"5 λεπτά"</item>
- <item msgid="9002737361305019353">"10 λεπτά"</item>
- <item msgid="4322676235684793329">"30 λεπτά"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Πολύ αργός"</item>
<item msgid="2361722960903353554">"Αργός"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Εξαιρετικό"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Όταν η οθόνη απενεργοποιείται"</item>
+ <item msgid="3804733751095821976">"Όταν η οθόνη απενεργοποιείται"</item>
<item msgid="1549288661423279207">"Ποτέ όταν είναι συνδεδεμένο"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Ποτέ"</item>
+ <item msgid="1986753720941888596">"Ποτέ"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Αυτόματο"</item>
diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml
index 5908b68..3f6eba3 100644
--- a/res/values-el/strings.xml
+++ b/res/values-el/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Νεκρό"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Υπερβολική τάση"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Άγνωστο σφάλμα"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Κρύο"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Ανιχνεύσιμο"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Ανιχνεύσιμο για <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> δευτερόλεπτα..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Σάρωση"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Αίτημα σύζευξης Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Αίτημα σύζευξης"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Επιλογή για ζεύξη με <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Εμφάνιση ληφθέντων αρχείων"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Εμφάνιση αρχείων που έχουν ληφθεί μέσω Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Επιλογή συσκευής Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Αίτημα άδειας Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Μια εφαρμογή ζητά άδεια ενεργοποίησης του Bluetooth. Θέλετε να το επιτρέψετε;"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Μια εφαρμογή στο tablet σας ζητά άδεια να ενεργοποιήσει το Bluetooth και να καταστήσει τη συσκευή σας ορατή από άλλες συσκευές για <xliff:g id="TIMEOUT">%1$d</xliff:g> δευτερόλεπτα. Θέλετε να τη χορηγήσετε;"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Μια εφαρμογή στο τηλέφωνό σας ζητά άδεια να ενεργοποιήσει το Bluetooth και να καταστήσει τη συσκευή σας ορατή από άλλες συσκευές για <xliff:g id="TIMEOUT">%1$d</xliff:g> δευτερόλεπτα. Θέλετε να τη χορηγήσετε;"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Ενεργοποίηση Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Αυτόματη σύνδεση"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Ρυθμίσεις ημερομηνίας & ώρας"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 μμ"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Εκκίνηση <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Λογαριασμός:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Ρυθμίσεις διακομιστή μεσολάβησης"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Ρυθμίσεις διακομιστή μεσολάβησης"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Ορίστε το γενικό διακομιστή μεσολάβησης HTTP και τις λίστες εξαιρέσεων"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Εκκαθάριση"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Θύρα"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Ακύρωση"</string>
<string name="settings_label" msgid="1626402585530130914">"Ρυθμίσεις"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Ρυθμίσεις"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Επιλογή συντόμευσης ρυθμίσεων"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Ρυθμίσεις"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Λειτουργία πτήσης"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Απενεργοποίηση όλων των ασύρματων συνδέσεων"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Απενεργοποίηση ασύρματων συνδέσεων..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Ενεργοποίηση ασύρματων συνδέσεων..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Ασύρματο και δίκτυα"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Ασύρματο και δίκτυα"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Ρυθμίσεις ασύρματου & δικτύου"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Διαχείριση Wi-Fi, Bluetooth, λειτουργίας πτήσης, δικτύων κινητής τηλεφωνίας και VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Περιαγωγή δεδομένων"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Σύνδεση στις υπηρεσίες δεδομένων κατά την περιαγωγή"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Επιλογή παρόχου"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Επιλέξτε εταιρεία δικτύου"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Ημερομηνία και ώρα"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Ορισμός ημερομηνίας και ώρας"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Ορισμός ημερομηνίας, ώρας, ζώνης ώρας & μορφές"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Αυτόματη ημερομ. και ώρα"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Χρήση ώρας που παρέχεται από το δίκτυο"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ταξινόμηση με βάση ζώνη ώρας"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Ημερομηνία"</string>
<string name="time_picker_title" msgid="483460752287255019">"Ώρα"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Λήξη ορίου χρόνου"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Κλείδωμα οθόνης <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> μετά την αυτόματη απενεργοποίηση της οθόνης"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Κλείδωμα συσκευής μετά τη λήξη του ορίου χρόνου"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Εμφάνιση πληροφοριών κατόχου στην οθόνη κλειδώμ."</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Στοιχεία κατόχου"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Ορισμός του \"Η τοποθεσία μου\", ξεκλειδώματος οθόνης, κλειδώματος κάρτας SIM, κλειδώματος αποθηκευτικού χώρου διαπιστευτηρίων"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Ορισμός του \"Η τοποθεσία μου\", του ξεκλειδώματος οθόνης και του κλειδώματος αποθηκευτικού χώρου διαπιστευτηρίων"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Κωδικοί πρόσβασης"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Κρυπτογράφηση συσκευής"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Κρυπτογράφηση δεδομένων στη συσκευή"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Κρυπτογράφηση δεδομένων στη συσκευή"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Απαιτεί να ορίσετε έναν αριθμό PIN ή κωδικό ξεκλειδώματος συσκευής"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Απαιτεί να ορίσετε έναν αριθμό PIN ή κωδικό ξεκλειδώματος συσκευής"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Κρυπτογραφημένο"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Μπορείτε να κρυπτογραφήσετε τους λογαριασμούς, τις ρυθμίσεις, τις ληφθείσες εφαρμογές σας και τα δεδομένα τους, τα πολυμέσα και άλλα αρχεία. Από τη στιγμή που θα κρυπτογραφήσετε το τηλέφωνό σας, δεν μπορείτε να αναιρέσετε αυτήν την ενέργεια πάρα μόνο εάν εκτελέσετε επαναφορά εργοστασιακών ρυθμίσεων, διαγράφοντας έτσι όλα τα δεδομένα που υπάρχουν στο τηλέφωνό σας."\n\n"Η κρυπτογράφηση διαρκεί έως και μία ώρα. Θα πρέπει να ξεκινήσετε τη διαδικασία με φορτισμένη μπαταρία και να διατηρήσετε το τηλέφωνο συνδεδεμένο με την παροχή ρεύματος μέχρι να ολοκληρωθεί η κρυπτογράφηση. Σε περίπτωση που διακόψετε τη διαδικασία κρυπτογράφησης, θα χάσετε μέρος ή το σύνολο των δεδομένων σας."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Μπορείτε να κρυπτογραφήσετε τους λογαριασμούς, τις ρυθμίσεις, τις ληφθείσες εφαρμογές σας και τα δεδομένα τους, τα πολυμέσα και άλλα αρχεία. Από τη στιγμή που θα κρυπτογραφήσετε το τηλέφωνό σας, δεν μπορείτε να αναιρέσετε αυτήν την ενέργεια πάρα μόνο εάν εκτελέσετε επαναφορά εργοστασιακών ρυθμίσεων, διαγράφοντας έτσι όλα τα δεδομένα που υπάρχουν στο τηλέφωνό σας."\n\n"Η κρυπτογράφηση διαρκεί έως και μία ώρα. Θα πρέπει να ξεκινήσετε τη διαδικασία με φορτισμένη μπαταρία και να διατηρήσετε το τηλέφωνο συνδεδεμένο με την παροχή ρεύματος μέχρι να ολοκληρωθεί η κρυπτογράφηση. Σε περίπτωση που διακόψετε τη διαδικασία κρυπτογράφησης, θα χάσετε μέρος ή το σύνολο των δεδομένων σας."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Κρυπτογράφηση tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Κρυπτογράφηση τηλεφώνου"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Επιβεβαίωση κρυπτογράφησης"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Να γίνει κρυπτογράφηση των δεδομένων του χρήστη; Αυτή η λειτουργία δεν είναι αναστρέψιμη και υπάρχει κίνδυνος απώλειας δεδομένων σε περίπτωση διακοπής της! Η κρυπτογράφηση ενδέχεται να διαρκέσει έως και μία ώρα."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Να γίνει κρυπτογράφηση των δεδομένων του χρήστη; Αυτή η λειτουργία δεν είναι αναστρέψιμη και υπάρχει κίνδυνος απώλειας δεδομένων σε περίπτωση διακοπής της! Η κρυπτογράφηση ενδέχεται να διαρκέσει έως και μία ώρα."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Κρυπτογράφηση"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Προσπαθήστε ξανά σε ^1 δευτερόλεπτα."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Διαμ. οθόνης κλειδ."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Διαμόρ. οθόνης κλειδ."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Ασφάλεια ξεκλειδώματος οθόνης"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ρύθμιση κλειδώματος οθόνης"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Αλλαγή του κλειδώματος οθόνης"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Αλλαγή ή απενεργοποίηση ασφάλειας μοτίβου, PIN ή κωδικού πρόσβασης"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Επιλέξτε μια μέθοδο για κλείδωμα της οθόνης"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Απενεργοποίηση"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Να μην κλειδώνεται ποτέ η οθόνη"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Δεν έχει ασφαλιστεί"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Δε χρειάζεται μοτίβο, PIN ή κωδικό για ξεκλείδωμα της οθόνης"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Να μην εμφανίζεται η οθόνη κλειδώματος"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Καμία"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Απενεργοποίηση της ασφάλειας ξεκλειδώματος οθόνης"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Μοτίβο"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Για ξεκλείδωμα της οθόνης απαιτείται μοτίβο"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Σχεδιάστε το μοτίβο για να ξεκλειδώσετε την οθόνη"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Αριθμός PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Απαιτείται PIN για ξεκλείδωμα της οθόνης"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Εισαγάγετε ένα αριθμητικό PIN για να ξεκλειδώσετε την οθόνη"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Κωδικός πρόσβασης"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Για ξεκλείδαμα της οθόνης απαιτείται κωδικός"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Εισαγάγετε έναν κωδικό πρόσβασης για να ξεκλειδώσετε την οθόνη"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Απεργοποιήθηκε από τον απομακρ. διαχειριστή"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Απενεργοποίηση"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Δεν έχει ασφαλιστεί"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Έχει ασφαλιστεί με μοτίβο"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Έχει ασφαλιστεί με PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Έχει ασφαλιστεί με κωδικό πρόσβασης"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Απενεργοποίηση κλειδώματος οθόνης"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Κατάργηση μοτίβου ξεκλειδώματος"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Κατάργηση αριθμού PIN ξεκλειδώματος"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Ο διαχειριστής της συσκευής δεν επιτρέπει τη χρήση ενός πρόσφατου κωδικού πρόσβασης"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"ΟΚ"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Ακύρωση"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Ακύρωση"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Επόμενο"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Διαχείριση συσκευής"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Διαχειριστές συσκευών"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Προβολή ή απενεργοποίηση των διαχειριστών συσκευής"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Επιλογή διαχειριστών συσκευών"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Προσθήκη ή κατάργηση διαχειριστών συσκευών"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Ενεργοποίηση Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Ρυθμίσεις Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Ρυθμίσεις Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Διαχείριση συνδέσεων, ορισμός ονόματος συσκευής & ανιχνευσιμότητα"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Αίτημα σύζευξης Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Εισαγάγετε το PIN για να πραγματοποιήσετε ζεύξη με τη συσκευή \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Δοκιμάστε 0000 ή 1234.) Ενδέχεται να χρειαστεί να εισαγάγετε το ίδιο PIN στη συσκευή Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Πληκτρολογήστε το κλειδί πρόσβασης για ζεύξη με τη συσκευή \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Για ζεύξη με τη συσκευή \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", βεβαιωθείτε ότι προβάλλεται το κλειδί πρόσβασης: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"επιθυμεί σύζευξη."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Εισαγάγετε \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" στη συσκευή \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" για να πραγματοποιήσετε ζεύξη και, στη συνέχεια, πατήστε return ή enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Ζεύγος"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Χωρίς ζεύξη"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"συσκευή bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Επιλογές..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Σύνδεση σε..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Πολυμέσα"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Μεταφορά"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Συσκευή εισόδου"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Η συσκευή <xliff:g id="DEVICE_NAME">%1$s</xliff:g> θα αποσυνδεθεί από τον ήχο μέσων."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Η συσκευή <xliff:g id="DEVICE_NAME">%1$s</xliff:g> θα αποσυνδεθεί από τον ήχο handsfree."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Η συσκευή <xliff:g id="DEVICE_NAME">%1$s</xliff:g> θα αποσυνδεθεί από τη συσκευή εισόδου."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Η σύνδεση της συσκευής <xliff:g id="DEVICE_NAME">%1$s</xliff:g> θα διακοπεί."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> επιλογές"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Ενέργειες συσκευής"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Σύνδεση"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Χρήση για ήχο τηλεφώνου"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Χρήση για τη μεταφορά αρχείων"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Χρήση για είσοδο"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Χρήση για την πρόσβαση στο Διαδίκτυο"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Ρυθμίσεις βάσης σύνδεσης αυτοκινήτου"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Χρησιμοποιήστε τη βάση σύνδεσης αυτοκινήτου για αναπαραγωγή ήχου"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Ως τηλέφωνο ανοιχτής συνομιλίας"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Διατήρηση ρυθμίσεων"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Κάντε χρήση της Επικοινωνίας κοντινού πεδίου για την ανάγνωση και ανταλλαγή ετικετών"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Παρουσιάστηκε σφάλμα."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Ενεργοποίηση Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Ρυθμίσεις Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Δεν είναι δυνατή η σάρωση για δίκτυα"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Ειδοποίηση δικτύου"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Να ειδοποιούμαι όταν υπάρχει διαθέσιμο ανοικτό δίκτυο"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Πολιτική κατάστασης αδράνειας Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Ορισμός εναλλαγής από δεδομένα Wi-Fi σε δεδομένα κινητού"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Παρουσιάστηκε ένα πρόβλημα κατά τη ρύθμιση της πολιτικής κατάστασης αδράνειας."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Προσθήκη δικτύου Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Δίκτυα Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Σάρωση"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Τροποποίηση δικτύου"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Ρύθμιση δικτύου"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Εισαγωγή ορισμού από σημείο πρόσβασης"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Ρύθμιση WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Διαμόρφωση μεθόδου ορισμού WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Εισαγάγετε τον ορισμό <xliff:g id="WPS_PIN">%1$s</xliff:g> στο σημείο πρόσβασης"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Το WPS είναι σε εξέλιξη. Χρειάζονται αρκετά δευτερόλεπτα για να ολοκληρωθεί"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Αποτυχία εκκίνησης του WPS, δοκιμάστε αργότερα"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Δίκτυο SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Ασφάλεια"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Ισχύς σήματος"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Να διαγραφεί από τη μνήμη"</string>
<string name="wifi_save" msgid="3331121567988522826">"Αποθήκευση"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Ακύρωση"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Εντοπίστηκε άλλη περίοδος σύνδεσης WPS. Προσπαθήστε ξανά σε λίγα λεπτά"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Σύνθετα"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Πολιτική κατάστασης αδράνειας Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Ορισμός εναλλαγής από δεδομένα Wi-Fi σε δεδομένα κινητού"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Παρουσιάστηκε ένα πρόβλημα κατά τη ρύθμιση της πολιτικής κατάστασης αδράνειας."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Ζώνη συχνοτήτων Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Προσδιορίστε το εύρος συχνότητας της λειτουργίας"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Πρόβλημα κατά τη ρύθμιση της ζώνης συχνότητας."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> φορητό σημείο πρόσβασης Wi-Fi"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Ήχος"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Οθόνη"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Προβολή"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ρυθμίσεις ήχου"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Λειτουργία σίγασης"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Σίγαση όλων των ήχων εκτός από τα μέσα και τις ειδοποιήσεις"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Αυτόματη εναλλαγή προσανατολισμού κατά την περιστροφή του τηλεφώνου"</string>
<string name="brightness" msgid="2354961343555249270">"Φωτεινότητα"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ρύθμιση της φωτεινότητας της οθόνης"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Λήξη ορίου χρόνου"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Η οθόνη απενεργοποιείται αυτόματα μετά από <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Λήξη ορίου χρόνου οθόνης"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Αυτόματη φωτεινότητα"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Ρυθμίσεις κλειδώματος κάρτας SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Ορισμός κλειδώματος κάρτας SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Δεν είναι διαθέσιμο"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Κατάσταση"</string>
<string name="device_status" msgid="607405385799807324">"Κατάσταση"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Η κατάσταση της μπαταρίας και του δικτύου, καθώς και άλλες πληροφορίες"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Αριθμός IMEI, τηλεφωνικός αριθμός, σήμα, κ.λπ."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Τηλεφωνικός αριθμός, σήμα κ.λπ."</string>
<string name="storage_settings" msgid="4211799979832404953">"Αποθηκευτικός χώρος"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Ρυθμίσεις αποθηκευτικού χώρου"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Αποπροσάρτηση αποθηκευτικού χώρου USB, προβολή διαθέσιμου αποθηκευτικού χώρου"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Αφαίρεση κάρτας SD, προβολή διαθέσιμου αποθηκευτικού χώρου"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Ο τηλεφωνικός αριθμός μου"</string>
+ <string name="status_number" msgid="5123197324870153205">"Ο τηλεφωνικός αριθμός μου"</string>
<string name="status_min_number" msgid="3519504522179420597">"ΛΕΠΤΟ"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Έκδοση PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Εσωτερικός αποθηκευτικός χώρος"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Αποθ. χώρος USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Κάρτα SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Διαθέσιμο"</string>
- <string name="memory_size" msgid="5458889090691922288">"Σύνολο"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Υπολογισμός..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Εφαρμογές"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Μέσα"</string>
+ <string name="memory_available" msgid="418542433817289474">"Διαθέσιμος χώρος"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Συνολικός χώρος"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Χρήση εφαρμογής"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Χρήση μέσων"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Αποπρ. κοιν. αποθ. χώρου"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Αφαίρεση κάρτας SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Αποπροσ. εσωτ. χώρο αποθ. USB"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Εισαγάγετε μια κάρτα SD για τοποθέτηση"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Προσάρτ. χώρου αποθ. USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Τοποθέτηση κάρτας SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Προσάρτηση αποθηκευτικού χώρου USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Προσαρ. τον εσ. αποθ. χώρο USB"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Τοποθέτηση κάρτας SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Διαγρ. αποθ. χώρου USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Διαγραφή κάρτας SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Διαγραφή των δεδομένων στον εσωτερικό χώρο USB όπως μουσική και φωτογραφίες"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Διαγράφει όλα τα δεδ. που υπάρχουν στην κάρτα SD, όπως αρχ. μουσ. και φωτογ."</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Διαγραφή των δεδομένων στον εσωτερικό χώρο USB όπως μουσική και φωτογραφίες"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Μη διαθέσιμο"</string>
<string name="read_only" msgid="6702420168629076340">" (Μόνο για ανάγνωση)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Αποπροσ. αποθ. χώρου USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Αυτή η ενέργεια θα διαγράψει όλα τα δεδομένα από τον "<b>"εσωτερικό χώρο αποθήκευσης"</b>" του υπολογιστή σας tablet, συμπεριλαμβανομένων των εξής:"\n\n<li>"Λογαριασμός Google"</li>\n<li>"Ρυθμίσεις δεδομένων συστήματος και εφαρμογών"</li>\n<li>"Εφαρμογές από λήψη"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Αυτή η ενέργεια θα διαγράψει όλα τα δεδομένα από τον "<b>"εσωτερικό χώρο αποθήκευσης"</b>" του τηλεφώνου σας, συμπεριλαμβανομένων των εξής:"\n\n<li>"Λογαριασμός Google"</li>\n<li>"Ρυθμίσεις δεδομένων συστήματος και εφαρμογών"</li>\n<li>"Εφαρμογές από λήψη"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Αυτήν τη στιγμή είστε συνδεδεμένοι στους παρακάτω λογαριασμούς:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Μουσική"</li>\n<li>"Φωτογραφίες"</li>\n<li>"Άλλα δεδομένα χρήστη"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Πρέπει να γίνει διαγραφή του "<b>"χώρου αποθήκευσης USB"</b>" για να γίνει, επίσης, εκκαθάριση της μουσικής, των εικόνων και άλλων δεδομένων."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Για να γίνει, επίσης, εκκαθάριση της μουσικής, των εικόνων και άλλων δεδομένων, πρέπει να γίνει διαγραφή της "<b>"κάρτας SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Πρέπει να γίνει διαγραφή του "<b>"χώρου αποθήκευσης USB"</b>" για να γίνει, επίσης, εκκαθάριση της μουσικής, των εικόνων και άλλων δεδομένων."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Διαγρ. αποθ. χώρου USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Διαγραφή κάρτας SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Διαγράψτε όλα τα δεδομένα που υπάρχουν στον εσωτερικό αποθηκευτικό χώρο USB του τηλεφώνου σας, όπως αρχεία μουσικής και φωτογραφίες."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Χρήση υποβοηθούμενου GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Χρήση διακομιστή για βοήθεια GPS (αποεπιλογή για να μειώσετε τη χρήση του δικτύου)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Χρήση διακομιστή για βοήθεια του GPS (αποεπιλογή για βελτίωση της απόδοσης του GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Χρήση τοποθεσίας για Αναζήτηση Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Χρήση της τοποθεσίας για την Αναζήτηση Google και άλλες υπηρεσίες της Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Τοποθεσία που χρησιμοπ. για βελτίωση των αποτελ. Αναζήτησης Google και άλλων υπηρεσιών της Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Χρήση τοποθεσίας για Αναζήτηση Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Χρήση της τοποθεσίας για την Αναζήτηση Google και για άλλες υπηρεσίες Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Τοποθεσία που χρησιμοποιήθηκε για τη βελτίωση των αποτελ. αναζήτησης Google και άλλων υπηρεσ. Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Σχετικά με το tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Σχετικά με το τηλέφωνο"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Προβολή νομικών πληροφοριών, κατάστασης, έκδοσης λογισμικού"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Ο κωδικός πρόσβασης έχει οριστεί"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Ο αριθμός PIN έχει οριστεί"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Το μοτίβο έχει οριστεί"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Κλείδωμα οθόνης"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Ξεκλείδωμα οθόνης"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Αλλαγή μοτίβου ξεκλειδώματος"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Αλλαγή αριθμού PIN ξεκλειδώματος"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Επιβεβαίωση αποθηκευμένου μοτίβου"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Επόμενο"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Ασφάλεια του tablet σας"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Ασφάλιση του τηλεφώνου σας"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Προστατέψτε το tablet σας από μη εξουσιοδοτημένη χρήση, δημιουργώντας ένα προσωπικό μοτίβο ξεκλειδώματος οθόνης. Χρησιμοποιήστε το δάχτυλό σας για να συνδέσετε τις τελείες με οποιαδήποτε σειρά στην επόμενη οθόνη. Πρέπει να συνδέσετε τουλάχιστον τέσσερις τελείες. "\n\n"Είστε έτοιμοι να ξεκινήσετε; Πατήστε “Επόμενο”."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Προστατέψτε το τηλέφωνό σας από μη εξουσιοδοτημένη χρήση δημιουργώντας ένα προσωπικό μοτίβο ξεκλειδώματος οθόνης. "\n<font height="17">\n</font><b>"1"</b>" Στην επόμενη οθόνη παρακολουθήστε ένα παράδειγμα σχεδίασης μοτίβου. "\n<font height="17">\n</font><b>"2"</b>" Όταν είστε έτοιμοι, σχεδιάστε το προσωπικό σας μοτίβο ξεκλειδώματος. Πειραματιστείτε με διάφορα μοτίβα αλλά συνδέστε τουλάχιστον τέσσερα σημεία. "\n<font height="17">\n</font><b>"3"</b>" Ξανασχεδιάστε το μοτίβο σας για επιβεβαίωση. "\n<font height="17">\n</font><b>"Είστε έτοιμοι να ξεκινήσετε; Πατήστε “Επόμενο”"</b>". "\n<font height="3">\n</font>"Εάν δεν θέλετε να προστατεύσετε το τηλέφωνό σας, επιλέξτε “Ακύρωση”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Διαχείριση εφαρμογών"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Διαχείριση και κατάργηση εγκατεστημένων εφαρμογών"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Σύνολο"</string>
<string name="application_size_label" msgid="5055196275624686382">"Εφαρμογή"</string>
<string name="data_size_label" msgid="8679376373625710107">"Δεδομένα"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Αποθηκευτικού χώρου USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Κάρτα SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Κατάργηση εγκατάστασης"</string>
<string name="disable_text" msgid="6544054052049395202">"Απενεργοποίηση"</string>
<string name="enable_text" msgid="9217362512327828987">"Ενεργοποίηση"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Διακοπή υπηρεσίας συστήματος;"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Είστε ακόμα σίγουροι ότι θέλετε να διακόψετε αυτή την υπηρεσία συστήματος; Αν ναι, κάποιες λειτουργίες του tablet σας ενδέχεται να σταματήσουν να λειτουργούν σωστά μέχρι να το απενεργοποιήσετε και να το ενεργοποιήσετε ξανά."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Είστε ακόμα σίγουροι ότι θέλετε να διακόψετε αυτή την υπηρεσία συστήματος; Αν ναι, κάποιες λειτουργίες του τηλεφώνου σας ενδέχεται να σταματήσουν να λειτουργούν σωστά μέχρι να απενεργοποιήσετε και να ενεργοποιήσετε ξανά την υπηρεσία."</string>
- <string name="language_settings" msgid="5292716747264442359">"Γλώσσα και εισαγωγή"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Γλώσσα και εισαγωγή"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Τοπικές ρυθμίσεις & κείμενο"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Ρυθμίσεις γλώσσας και πληκτρολογίου"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Ρυθμίσεις γλώσσας"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Ρυθμίσεις πληκτρολογίου"</string>
<string name="phone_language" msgid="1165758957501090679">"Επιλογή γλώσσας"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Αυτόματη αντικατάσταση"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Διόρθωση εσφαλμένα πληκτρολογημένων λέξεων"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Αυτόματη χρήση κεφαλαίων"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Αυτόματη χρήση κεφαλαίων"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Μετατροπή του πρώτου γράμματος σε προτάσεις σε κεφαλαίο"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Αυτόματη στίξη"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Κανονικές ρυθμίσεις πληκτρολογίου"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Συντομεύσεις"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Είσοδος κειμένου"</string>
<string name="input_method" msgid="5434026103176856164">"Μέθοδος εισόδου"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Τρέχουσα μέθοδος εισαγωγής"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Επιλογή μεθόδου εισαγωγής"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Αυτόματα"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Να εμφανίζεται πάντα"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Πάντα απόκρυψη"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Διαμόρφωση μεθόδων εισαγωγής"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Ρυθμίσεις"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Ενεργές μέθοδοι εισαγωγής"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Χρήση γλώσσας συστήματος"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Ρυθμίσεις <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Επιλέξτε ενεργές μεθόδους εισαγωγής"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ρυθμίσεις πληκτρολογίου οθόνης"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Ενσωματωμένο πληκτρολόγιο"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Ρυθμίσεις ενσωματωμένου κανονικού πληκτρολογίου"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi στην ώρα του"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi στην ώρα του"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Λεπτομέρειες ιστορικού"</string>
- <string name="details_title" msgid="3792801565213935385">"Λεπτομέρειες χρήσης"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Λεπτομέρειες από τη χρήση της μπαταρίας"</string>
<string name="details_subtitle" msgid="32593908269911734">"Λεπτομέρειες χρήσης"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Προσαρμογή χρήσης ισχύος"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Συμπεριλαμβανόμενα πακέτα"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Η διαπραγμάτευση διακομιστή απέτυχε. Ο διακομιστής μπορεί να μη δέχεται την επιλογή κρυπτογράφησής που έχετε κάνει. Θέλετε να ελέγξετε τη ρύθμιση κρυπτογράφησης;"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Προσθήκη VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Προσθήκη VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Στοιχεία VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Προσθήκη VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Λεπτομέρειες <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Εγκατάσταση και διαχείριση Εικονικών Ιδιωτικών Δικτύων (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(δεν έγινε αλλαγή)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(δεν ορίστηκε)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Αποθηκ. χώρος διαπιστευτηρίων"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Χώρος αποθήκευσης διαπιστευτηρίων"</string>
<string name="credentials_access" msgid="4843187230913860492">"Χρήση ασφαλών διαπιστευτηρίων"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Να επιτρέπεται στις εφαρμογές η πρόσβαση σε ασφαλή πιστοποιητικά και άλλα διαπιστευτήρια"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Εγκατάσταση από αποθ. χώρο USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Εγκατάσταση από κάρτα SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Εγκατάσταση πιστοποιητικών από τον αποθηκευτικό χώρο USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Εγκατάσταση πιστοποιητικών από την κάρτα SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Ορισμός κωδικού πρόσβασης"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Ορισμός ή αλλαγή του κωδικού πρόσβασης του αποθηκευτικού χώρου διαπιστευτηρίων"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Εκκαθάριση διαπιστευτηρίων"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Κατάργηση όλου του περιεχομένου και επαναφορά του κωδικού πρόσβασης"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Εισαγωγή κωδικού πρόσβασης"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Εισαγάγετε τον κωδικό πρόσβασης για τον αποθηκευτικό χώρο διαπιστευτηρίων."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Ορίστε τον κωδικό πρόσβασης για τον αποθηκευτικό χώρο διαπιστευτηρίων. Πρέπει να περιέχει τουλάχιστον 8 χαρακτήρες."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Εισαγάγετε τον κωδικό πρόσβασης του χώρου αποθήκευσης διαπιστευτηρίων."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Εγκ. από αποθ. χώρο USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Εγκατάσταση από κάρτα SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Εγκ. κρ. πιστ. απ. χώρο USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Εγκατάσταση κρυπτογραφημένων πιστοποιητικών από την κάρτα SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Ορισμός κωδικού πρόσβασης"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Ορισμός ή αλλαγή κωδικού πρόσβασης χώρου αποθήκευσης διαπιστευτηρίων"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Εκκαθάριση χώρου αποθήκευσης"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Εκκαθάριση χώρου αποθήκευσης διαπιστευτηρίων όλων των περιεχομένων και επαναφορά του κωδικού πρόσβασής του"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα διαπιστευτήρια και να επαναφέρετε τον κωδικό πρόσβασης του χώρου αποθήκευσης διαπιστευτηρίων;"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Τρέχον κωδικός πρόσβασης:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Νέος κωδικός πρόσβασης:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Επιβεβαίωση νέου κωδικού πρόσβασης:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Όλο το περιεχόμενο θα διαγραφεί και θα γίνει επαναφορά του κωδικού πρόσβασης. Είστε σίγουροι;"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Ορίστε έναν κωδικό πρόσβασης για την αποθήκευση των διαπιστευτηρίων (τουλάχιστον 8 χαρακτήρες)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Εισαγάγετε το σωστό κωδικό πρόσβασης."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Εισαγάγετε το σωστό κωδικό πρόσβασης. Σας απομένει άλλη μία προσπάθεια για τη σωστή καταχώριση του κωδικού πρόσβασης πριν τη διαγραφή του χώρου αποθήκευσης διαπιστευτηρίων."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Εισαγάγετε το σωστό κωδικό πρόσβασης. Σας απομένουν ακόμη <xliff:g id="NUMBER">%1$d</xliff:g> προσπάθειες για τη σωστή καταχώριση του κωδικού πρόσβασης πριν τη διαγραφή του χώρου αποθήκευσης διαπιστευτηρίων."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Οι κωδικοί πρόσβασης δεν συμφωνούν."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Πρέπει να καταχωρίσετε και να επιβεβαιώσετε έναν κωδικό πρόσβασης."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Εισαγάγετε τον κωδικό πρόσβασης."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Ο κωδικός πρόσβασης θα πρέπει να αποτελείται από τουλάχιστον 8 χαρακτήρες."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Λανθασμένος κωδικός πρόσβασης."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Λανθασμένος κωδικός πρόσβασης. Έχετε μία ακόμα ευκαιρία πριν διαγραφεί ο αποθηκευτικός χώρος των διαπιστευτηρίων."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Λανθασμένος κωδικός πρόσβασης. Έχετε <xliff:g id="NUMBER">%1$d</xliff:g> ακόμα ευκαιρίες πριν διαγραφεί ο αποθηκευτικός χώρος των διαπιστευτηρίων."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Ο αποθ. χώρος διαπιστ. διαγρ."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Αυτός ο χώρος αποθήκευσης διαπιστευτηρίων διαγράφτηκε."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Ο χώρος αποθήκευσης διαπιστευτηρίων ενεργοποιήθηκε."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Ο χώρος αποθήκευσης διαπιστευτηρίων απενεργοποιήθηκε."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Κρυπτογραφημένο σύστημα αρχείων"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Κρυπτογράφηση ιδιωτικών δεδομένων χρήστη"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Ενεργοποίηση αποθήκευσης κρυπτογραφημένου συστήματος αρχείων για ιδιωτικά δεδομένα χρήστη σε αυτήν τη συσκευή"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Για την ενεργοποίηση των κρυπτογραφημένων συστημάτων αρχείων απαιτείται σβήσιμο των δεδομένων συσκευής."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Για την απενεργοποίηση των κρυπτογραφημένων συστημάτων αρχείων απαιτείται σβήσιμο των δεδομένων συσκευής."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Ενεργοποίηση"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Απενεργοποίηση"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Ακύρωση"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Η αλλαγή λειτουργίας κρυπτογραφημένων συστημάτων αρχείων ακυρώθηκε."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Προειδοποίηση κρυπτογραφημένων συστημάτων αρχείων."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Τόνος επείγουσας ανάγκης"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Ορισμός συμπεριφοράς κατά την πραγματοποίηση κλήσης επείγουσας ανάγκης"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Απόρρητο"</string>
@@ -1319,7 +1325,7 @@
<string name="backup_data_title" msgid="1239105919852668016">"Δημιουργία αντιγράφων ασφαλείας για τα δεδομένα μου"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Δεδομένα εφαρμογής δημιουργίας αντιγράφων ασφαλείας, κωδικοί πρόσβασης Wi-Fi και άλλες ρυθμίσεις στους διακομιστές Google"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"Εφεδρικός λογαριασμός"</string>
- <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Κανένας λογαριασμός δεν αποθηκεύει αντίγραφα ασφαλείας"</string>
+ <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Δεν υπάρχει λογ. αποθήκευσης δεδομ. για τα οποία έχουν δημιουργηθεί αντίγ. ασφ."</string>
<string name="auto_restore_title" msgid="5397528966329126506">"Αυτόματη επαναφορά"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"Εάν εγκαταστήσω ξανά μια εφαρμογή, να γίνει επαναφορά των ρυθμίσεων ή άλλων δεδομένων για τα οποία έχουν δημιουργηθεί αντίγραφα ασφαλείας"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Αντίγραφο ασφαλείας"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Εισερχόμενες κλήσεις"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Ειδοποιήσεις"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Σχόλια"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Ρύθμιση Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Σύνδεση στο δίκτυο Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Σύνδεση σε δίκτυο Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Συνδέθηκε στο δίκτυο Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Προσθήκη δικτύου"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Ρύθμιση WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Δεν συνδέθηκε"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Προσθήκη δικτύου"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Ανανέωση λίστας"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Αποθήκευση"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Ακύρωση"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Σάρωση δικτύων..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Αγγίξτε ένα δίκτυο για να συνδεθείτε σε αυτό"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Αγγίξτε για να επιλέξετε δίκτυο"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Σύνδεση σε υπάρχον δίκτυο"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Σύνδεση σε μη ασφαλές δίκτυο"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Εισαγάγετε διαμόρφωση δικτύου"</string>
@@ -1364,50 +1366,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Σύνδεση..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Προχωρήστε στο επόμενο βήμα"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Δεν υποστηρίζεται το EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Δεν είναι δυνατή η διαμόρφωση μιας σύνδεσης EAP Wi-Fi κατά τη διάρκεια της ρύθμισης. Μετά τη ρύθμιση, μπορείτε να τη διαμορφώσετε από τις Ρυθμίσεις, στην ενότητα "<b>"Ασύρματο και Δίκτυα"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Η σύνδεση μπορεί να διαρκέσει αρκετά λεπτά..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Αγγίξτε το στοιχείο "<b>"Επόμενο"</b>" για να συνεχίσετε την εγκατάσταση."\n\n"Αγγίξτε το στοιχείο "<b>"Πίσω"</b>" για να συνδεθείτε σε διαφορετικό δίκτυο Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Δεν είναι δυνατή η διαμόρφωση μιας σύνδεσης EAP Wi-Fi κατά τη διάρκεια της ρύθμισης. Μετά τη ρύθμιση, μπορείτε να τη διαμορφώσετε από τις Ρυθμίσεις, στην περιοχή Ασύρματο & Δίκτυα."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Ρυθμίσεις συγχρονισμού"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Το Sync αντιμετωπίζει προβλήματα αυτή τη στιγμή. Θα είναι διαθέσιμο ξανά σε λίγο."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Προσθήκη λογαριασμού"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Γενικές ρυθμίσεις συγχρονισμού"</string>
<string name="background_data" msgid="5779592891375473817">"Δεδομένα φόντου"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Οι εφ/γές μπορούν να κάνουν συγχρ., αποστ. και λήψη δεδομ."</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Προσοχή"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Η απενεργοποίηση δεδομένων παρασκηνίου αυξάνει το χρόνο ζωής της μπαταρίας και μειώνει τη χρήση δεδομένων. Ορισμένες εφαρμογές ενδέχεται να συνεχίσουν να χρησιμοποιούν τη σύνδεση δεδομένων παρασκηνίου."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Αυτόματος συγχρονισμός"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Οι εφαρμογές συγχρονίζουν αυτόματα τα δεδομένα"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Διαχείριση λογαριασμών"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Συγχρ. είναι ενεργ."</string>
<string name="sync_disabled" msgid="8511659877596511991">"Ο συγχρονισμός είναι απενεργοποιημένος"</string>
<string name="sync_error" msgid="5060969083117872149">"Σφάλμα συγχρονισμού"</string>
<string name="settings_backup" msgid="2274732978260797031">"Δημιουργία αντιγράφων ασφαλείας για τις ρυθμίσεις"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Δημιουργία αντιγράφων ασφαλείας για τις ρυθμίσεις μου"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Άμεσος συγχρονισμός"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Ακύρωση συγχρονισμού"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Πατήστε για άμεσο συγχρονισμό<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Ημερολόγιο"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Επαφές"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Καλώς ορίσατε στο Google Sync!"</font>" "\n"Μια προσέγγιση της Google στο συγχρονισμό δεδομένων, που επιτρέπει την πρόσβαση στις επαφές σας, στις συναντήσεις σας και σε άλλα στοιχεία, όπου και αν βρίσκεστε."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Ρυθμίσεις συγχρονισμού εφαρμογής"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Δεδομένα και συγχρονισμός"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Αλλαγή κωδικού πρόσβασης"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Ρυθμίσεις λογαριασμού"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Κατάργηση λογαριασμού"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Προσθήκη λογαριασμού"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Τέλος"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Κατάργηση λογαριασμού"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτόν το λογαριασμό; Η κατάργησή του θα έχει σαν αποτέλεσμα τη διαγραφή όλων των μηνυμάτων, των επαφών και άλλων δεδομένων του από το ταβλετ. "\n"Συνέχεια;"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτόν το λογαριασμό; Η κατάργησή του θα έχει σαν αποτέλεσμα τη διαγραφή όλων των μηνυμάτων, των επαφών και άλλων δεδομένων του από το τηλέφωνο. "\n"Συνέχεια;"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Αυτός ο λογαριασμός είναι απαραίτητος για ορισμένες εφαρμογές. Ο μόνος τρόπος να τον καταργήσετε είναι μέσω της επαναφοράς του tablet στις εργοστασιακές ρυθμίσεις (ενέργεια που διαγράφει όλα τα προσωπικά σας δεδομένα). Μπορείτε να επιλέξετε αυτήν την ενέργεια στην εφαρμογή \"Ρυθμίσεις\", στην ενότητα \"Απόρρητο\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Αυτός ο λογαριασμός είναι απαραίτητος για ορισμένες εφαρμογές. Ο μόνος τρόπος να τον καταργήσετε είναι μέσω της επαναφοράς του τηλεφώνου στις εργοστασιακές ρυθμίσεις (ενέργεια που διαγράφει όλα τα προσωπικά σας δεδομένα). Μπορείτε να επιλέξετε αυτήν την ενέργεια στην εφαρμογή \"Ρυθμίσεις\", στην ενότητα \"Απόρρητο\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"Προώθηση συνδρομών"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Συγχρονισμός <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Δεν είναι δυνατός ο μη αυτόματος συγχρονισμός"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Ο συγχρονισμός για αυτό το στοιχείο είναι προς το παρόν απενεργοποιημένος. Για να αλλάξετε την προτίμησή σας, ενεργοποιήστε προσωρινά τα δεδομένα παρασκηνίου και τον αυτόματο συγχρονισμό."</string>
- <string name="enter_password" msgid="3268224850821675915">"Εισαγάγετε κωδικό πρόσβασης για την αποκρυπτογράφηση του αποθηκευτικού χώρου"</string>
- <string name="try_again" msgid="5904121494468643129">"Λυπούμαστε, προσπαθήστε αργότερα"</string>
- <string name="service_busy" msgid="225227519012409130">"Η υπηρεσία είναι απασχολημένη, προσπαθήστε αργότερα"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-en-rGB/arrays.xml b/res/values-en-rGB/arrays.xml
index ea5f1be..0e34c9f 100644
--- a/res/values-en-rGB/arrays.xml
+++ b/res/values-en-rGB/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Some window animations are shown"</item>
<item msgid="488968798204105119">"All window animations are shown"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 seconds"</item>
- <item msgid="8881760709354815449">"30 seconds"</item>
- <item msgid="7589406073232279088">"1 minute"</item>
- <item msgid="7001195990902244174">"2 minutes"</item>
- <item msgid="7489864775127957179">"5 minutes"</item>
- <item msgid="2314124409517439288">"10 minutes"</item>
- <item msgid="6864027152847611413">"30 minutes"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"immediately"</item>
- <item msgid="6736512735606834431">"5 seconds"</item>
- <item msgid="8044619388267891375">"15 seconds"</item>
- <item msgid="1822002388249545488">"30 seconds"</item>
- <item msgid="8538071621211916519">"1 minute"</item>
- <item msgid="5663439580228932882">"2 minutes"</item>
- <item msgid="49888496216106852">"5 minutes"</item>
- <item msgid="9002737361305019353">"10 minutes"</item>
- <item msgid="4322676235684793329">"30 minutes"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Very slow"</item>
<item msgid="2361722960903353554">"Slow"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excellent"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"When screen turns off"</item>
+ <item msgid="3804733751095821976">"When screen turns off"</item>
<item msgid="1549288661423279207">"Never when plugged in"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Never"</item>
+ <item msgid="1986753720941888596">"Never"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Auto"</item>
diff --git a/res/values-en-rGB/strings.xml b/res/values-en-rGB/strings.xml
index 8dd24c4..636afa6 100644
--- a/res/values-en-rGB/strings.xml
+++ b/res/values-en-rGB/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Scanning"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth pairing request"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Pairing request"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Select to pair with <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Show files received"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Show the list of files received via Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth device picker"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth permission request"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"An application is requesting permission to turn on Bluetooth. Do you want to do this?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"An application on your tablet is requesting permission to turn on Bluetooth and to make your tablet discoverable by other devices for <xliff:g id="TIMEOUT">%1$d</xliff:g> seconds. Do you want to do this?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"An application on your phone is requesting permission to turn on Bluetooth and make your phone discoverable by other devices for <xliff:g id="TIMEOUT">%1$d</xliff:g> seconds. Do you want to do this?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Turning on Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Auto-connect"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Date & time settings"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 P.M."</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Start <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Account:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy settings"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy Settings"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Set the global HTTP proxy and exclusion lists"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Clear"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Disabling wireless connections…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Enabling wireless connections…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Wireless & networks"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Wireless & networks"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Wireless & network settings"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Manage Wi-Fi, Bluetooth, airplane mode, mobile networks & VPNs"</string>
<string name="roaming" msgid="3596055926335478572">"Data roaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Connect to data services when roaming"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Operator selection"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Select a network operator"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Date & time"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Set date and time"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Set date, time, time zone & formats"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatic date & time"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Use network-provided time"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sort by time zone"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Date"</string>
<string name="time_picker_title" msgid="483460752287255019">"Time"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timeout"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Lock screen <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> after screen turns off automatically"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Lock device after timeout"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Show owner info on lock screen"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Owner info"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Set My Location, screen unlock, SIM card lock, credential storage lock"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Set My Location, screen unlock, credential storage lock"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Passwords"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Device encryption"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Encrypt data on device"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Encrypt data on device"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Requires you to set a device unlock pin or password"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Requires you to set a device unlock pin or password"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Encrypted"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"You can encrypt your accounts, settings, downloaded applications and their data, media and other files. Once you encrypt your phone, you can\'t unencrypt it except by performing a factory data reset, erasing all the data on your phone."\n\n"Encryption takes up to an hour. You must start with a charged battery and keep your phone plugged in until encryption is complete. If you interrupt the encryption process, you will lose some or all of your data."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"You can encrypt your accounts, settings, downloaded applications and their data, media and other files. Once you encrypt your phone, you can\'t unencrypt it except by performing a factory data reset, erasing all the data on your phone."\n\n"Encryption takes up to an hour. You must start with a charged battery and keep your phone plugged in until encryption is complete. If you interrupt the encryption process, you will lose some or all of your data."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Encrypt tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Encrypt phone"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirm encryption"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Encrypt user data? This operation is not reversible and may not be interrupted without loss of data! Encryption may take up to an hour."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Encrypt user data? This operation is not reversible and may not be interrupted without loss of data! Encryption may take up to an hour."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Encrypting"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Try again in ^1 seconds."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configure lock screen"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configure lock screen"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Screen-unlock security"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Set up screen lock"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Change screen lock"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Change or disable pattern, PIN or password security"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Choose a method to lock the screen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Off"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Never lock the screen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Unsecure"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Don\'t require a pattern, PIN or password to unlock the screen"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Don\'t show the lock screen"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"None"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Disable screen-unlock security"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Pattern"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Require a pattern to unlock the screen"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Draw pattern to unlock screen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Require a numerical PIN to unlock the screen"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Enter a numeric PIN to unlock screen"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Password"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Require a password to unlock the screen"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Enter a password to unlock screen"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Disabled by remote device administrator"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Off"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Unsecure"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Secured with pattern"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Secured with PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Secured with password"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Turn off screen lock"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Remove unlock pattern"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Remove unlock PIN"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Device administrator disallows use of a recent password"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancel"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancel"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Next"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Device administration"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Device administrators"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"View or deactivate device administrators"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth settings"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Manage connections, set device name & discoverability"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth pairing request"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Enter PIN to pair with \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Try 0000 or 1234.) You may need to enter the same PIN on the Bluetooth device."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Enter passkey to pair with \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>DEVICE_NAMEPASSKEY<xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"wants to pair."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Enter \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" on \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" to pair, followed by return or enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Pair"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Don\'t Pair"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth device"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Options…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Connect to…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Hands-free"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transfer"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Input Device"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> will be disconnected from media audio."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> will be disconnected from hands-free audio."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> will be disconnected from input device."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> will be disconnected from tethering."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> options"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Use for phone audio"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Use for file transfer"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Use for input"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Use for Internet access"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Dock Settings"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Use dock for audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"As speaker phone"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Unable to scan for networks"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Network notification"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Notify me when an open network is available"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi sleep policy"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Specify when to switch from Wi-Fi to mobile data"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"There was a problem while setting the sleep policy."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Add WiFi network"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi networks"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scan"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modify network"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Network Setup"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Enter pin from access point"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS Setup"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS pin method configuration"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Enter the pin <xliff:g id="WPS_PIN">%1$s</xliff:g> on the access point"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS is already in progress and can take some time to complete"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Failed to start WPS. Please try again"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Network SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Security"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signal strength"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Forget"</string>
<string name="wifi_save" msgid="3331121567988522826">"Save"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancel"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Another WPS session detected. Please retry in a few minutes."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Advanced"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi sleep policy"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Specify when to switch from Wi-Fi to mobile data"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"There was a problem setting the sleep policy."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi frequency band"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Specify the frequency range of operation"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"There was a problem while setting the frequency band."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> portable Wi-Fi hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android Hotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Sound"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Screen"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Display"</string>
<string name="sound_settings" msgid="5007659014828162881">"Sound settings"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Silent mode"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"All sounds except media & alarms"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Switch orientation automatically when rotating phone"</string>
<string name="brightness" msgid="2354961343555249270">"Brightness"</string>
<string name="brightness_summary" msgid="838917350127550703">"Adjust the brightness of the screen"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timeout"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Screen turns off automatically after <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Screen timeout"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatic brightness"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM card lock settings"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Set up SIM card lock"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Not available"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status of the battery, network and other information"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, phone number, signal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"phone number, signal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Storage"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Storage settings"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Unmount USB storage, view available storage"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Unmount SD card, view available storage"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"My phone number"</string>
+ <string name="status_number" msgid="5123197324870153205">"My phone number"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL Version"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Internal storage"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB storage"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD card"</string>
- <string name="memory_available" msgid="5052397223077021181">"Available"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calculating..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Applications"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Available space"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Total space"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Application usage"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Media usage"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Unmount shared storage"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Unmount SD card"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Unmount the internal USB storage"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"This will erase all data from your tablet\'s "<b>"internal storage"</b>", including:"\n\n<li>"Your Google account"</li>\n<li>"System and application data and settings"</li>\n<li>"Downloaded applications"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"This will erase all data from your phone\'s "<b>"internal storage"</b>", including:"\n\n<li>"Your Google account"</li>\n<li>"System and application data and settings"</li>\n<li>"Downloaded applications"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"You are currently signed in to the following accounts:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Music"</li>\n<li>"Photos"</li>\n<li>"Other user data"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"To clear music, pictures and other user data as well, the "<b>"USB storage"</b>" needs to be erased."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"_1To clear music, pictures and other user data as well, the "<b>"SD card"</b>" needs to be erased."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"To clear music, pictures and other user data as well, the "<b>"SD card"</b>" needs to be erased."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Erase USB storage"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Erase SD card"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Erase all the data on the internal USB storage, such as music or photos."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Use assisted GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Use server to assist GPS (un-tick to reduce network usage)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Use server to assist GPS (un-tick to improve GPS performance)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Use location for Google Search"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Use location for Google Search and other Google services"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Location used to improve Google Search results and other Google services"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Use location for Google search"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Use location for Google search and other Google services"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Location used to improve Google search results and other Google services"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"About tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"About phone"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"View legal info, status, software version"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"password has been set"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN has been set"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Pattern has been set"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Lock screen"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Screen unlock"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Change unlock pattern"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Change unlock PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirm saved pattern"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Next"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Securing your tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Securing your phone"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protect your tablet from unauthorised use by creating a personal screen-unlock pattern. Use your finger to connect the dots in any order on the next screen. You must connect at least four dots. "\n\n"Ready to start? Touch “Next”."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protect your phone from unauthorised use by creating a personal screen unlock pattern. "\n<font height="17">\n</font><b>"1"</b>" On the next screen, watch while an example pattern is drawn. "\n<font height="17">\n</font><b>"2"</b>" When ready, draw your own personal unlock pattern. Experiment with different patterns but connect at least four dots. "\n<font height="17">\n</font><b>"3"</b>" Redraw your pattern to confirm. "\n<font height="17">\n</font><b>"Ready to start? Select “Next”"</b>". "\n<font height="3">\n</font>"To leave your phone unprotected, select “Cancel”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Manage applications"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Manage and remove installed applications"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Application"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB storage"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD card"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Uninstall"</string>
<string name="disable_text" msgid="6544054052049395202">"Disable"</string>
<string name="enable_text" msgid="9217362512327828987">"Enable"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Stop system service?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Are you sure that you want to stop this system service? If you do, some features of your tablet may stop working correctly until you turn it off and then on again."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Are you sure that you want to stop this system service? If you do, some features of your phone may stop working correctly until you turn it off and then on again."</string>
- <string name="language_settings" msgid="5292716747264442359">"Language & input"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Language & input"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Locale & text"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Language & keyboard settings"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Language settings"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Keyboard settings"</string>
<string name="phone_language" msgid="1165758957501090679">"Select language"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Short cuts"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Text input"</string>
<string name="input_method" msgid="5434026103176856164">"Input method"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Current input method"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Input method selector"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatic"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Always show"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Always hide"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configure input methods"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Settings"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Active input methods"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Use system language"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> Settings"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Select active input methods"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Manage Input Methods"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"On-screen keyboard settings"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Built-in keyboard"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Built-in, physical keyboard settings"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi-on time"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi-on time"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"History details"</string>
- <string name="details_title" msgid="3792801565213935385">"Use details"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Battery use details"</string>
<string name="details_subtitle" msgid="32593908269911734">"Use details"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Adjust power use"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Included packages"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Server negotiation failed. The server may not agree with your encryption option. Do you want to check your encryption setting?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Add VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Add VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN details"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g>Add VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> details"</string>
<string name="vpns" msgid="3148141862835492816">"VPNs"</string>
@@ -1285,31 +1271,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Set up & manage Virtual Private Networks (VPNs)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(unchanged)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(not set)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Credential storage"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Credential storage"</string>
<string name="credentials_access" msgid="4843187230913860492">"Use secure credentials"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Allow applications to access secure certificates and other credentials"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Install from USB storage"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Install from SD card"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Install certificates from USB storage"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Install certificates from SD card"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Set password"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Set or change the password for credential storage"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Clear credentials"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Remove all the contents and reset the password"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Enter Password"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Enter the password for credential storage."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Set the password for credential storage. It must have at least 8 characters."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Enter the credential storage password."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Install from USB storage"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Install from SD card"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Install encrypted certificates from USB storage"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Install encrypted certificates from SD card"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Set password"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Set or change the credential storage password"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Clear storage"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Clear credential storage of all contents and reset its password"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Are you sure that you want to delete all credentials and reset the credential storage password?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Current password:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"New password:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirm new password:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"All the contents will be removed and the password will be reset. Are you sure about that?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Set a password for the credential storage (at least 8 characters)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Please enter the correct password."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Please enter the correct password. You have one more try to enter the correct password before the credential storage is erased."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Please enter the correct password. You have <xliff:g id="NUMBER">%1$d</xliff:g> more tries to enter the correct password before the credential storage is erased."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"passwords do not match."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"You must enter and confirm a password."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Please enter the password."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"The password must contain at least 8 characters."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Incorrect password."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Incorrect password. You have one more chance before credential storage is erased."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Incorrect password. You have <xliff:g id="NUMBER">%1$d</xliff:g> more chances before credential storage is erased."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Credential storage has been erased."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"The credential storage is erased."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Credential storage is enabled."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Credential storage is disabled."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Encrypted File System"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Encrypt private user data"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Enable encrypted file-system storage for private user data in this device"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Enabling Encrypted File Systems requires a device data wipe."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Disabling Encrypted File Systems requires a device data wipe."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Enable"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Disable"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Cancel"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Encrypted File Systems mode change cancelled."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Encrypted File Systems Warning."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Emergency tone"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Set behaviour when an emergency call is placed"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacy"</string>
@@ -1339,11 +1338,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Incoming calls"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notifications"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi setup"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Connect to Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Connecting to Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Connected to Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Add a network"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi setup"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Not connected"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Add network"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Refresh list"</string>
@@ -1356,7 +1351,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Save"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancel"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Scanning networks..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Touch a network to connect to it"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Connect to existing network"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Connect to unsecured network"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Enter network configuration"</string>
@@ -1364,9 +1360,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Connecting..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Proceed to the next step"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP not supported"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"You can\'t configure an EAP Wi-Fi connection during setup. After setup, you can do that in Settings, under "<b>"Wireless & networks"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Connecting can take a few minutes..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Touch "<b>"Next"</b>" to continue with setup."\n\n"Touch "<b>"Back"</b>" to connect to a different Wi-Fi network."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"You can\'t configure an EAP Wi-Fi connection during setup. After setup, you can do that in Settings, under Wireless & Networks."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Sync settings"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Sync is currently experiencing problems. It will be back shortly."</string>
<string name="add_account_label" msgid="7811707265834013767">"Add account"</string>
@@ -1382,32 +1376,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Sync is OFF"</string>
<string name="sync_error" msgid="5060969083117872149">"Sync error"</string>
<string name="settings_backup" msgid="2274732978260797031">"Back up settings"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Back up my settings"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Sync now"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancel sync"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Touch to sync now<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Google Mail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Calendar"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contacts"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Welcome to Google Sync!"</font>" "\n"A Google approach to synchronising data to allow access to your contacts, appointments and more, wherever you are."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Application sync settings"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data & synchronisation"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Change password"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Account settings"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Remove account"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Add an account"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Finish"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Remove account"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Do you really want to remove this account? Removing it will also delete all of its messages, contacts and other data from the tablet. "\n"Proceed?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Do you really want to remove this account? Removing it will also delete all of its messages, contacts and other data from the phone. "\n"Proceed?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"This account is required by some applications. You can only remove it by resetting the tablet to factory defaults (which deletes all your personal data). You do that in the Settings application, under Privacy."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"This account is required by some applications. You can only remove it by resetting the phone to factory defaults (which deletes all your personal data). You do that in the Settings application, under Privacy."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push subscriptions"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sync <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Cannot sync manually"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Sync for this item is currently disabled. To change your preference, temporarily turn on background data and automatic sync."</string>
- <string name="enter_password" msgid="3268224850821675915">"Enter password to decrypt storage"</string>
- <string name="try_again" msgid="5904121494468643129">"Sorry, try again"</string>
- <string name="service_busy" msgid="225227519012409130">"Service busy, try again"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-es-rUS-xlarge/arrays.xml b/res/values-es-rUS-xlarge/arrays.xml
new file mode 100644
index 0000000..04099b3
--- /dev/null
+++ b/res/values-es-rUS-xlarge/arrays.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <!-- XL -->
+ <string-array name="wifi_security">
+ <item msgid="8098106756841626036">"Abrir"</item>
+ <item msgid="7483225427388329117">"WEP"</item>
+ <item msgid="8071038021261720793">"WPA/WPA2 PSK"</item>
+ <item msgid="5661583279841773853">"802.1x EAP"</item>
+ </string-array>
+ <!-- XL -->
+ <string-array name="wifi_frequency_band_entries">
+ <item msgid="3900072086708522443">"Automático"</item>
+ <item msgid="340369996479905172">"Sólo 5 GHz"</item>
+ <item msgid="8972783095997098604">"Sólo 2.4 GHz"</item>
+ </string-array>
+ <!-- XL -->
+ <string-array name="screen_timeout_entries">
+ <item msgid="7251475645193927923">"15 segundos"</item>
+ <item msgid="3096271690668053645">"30 segundos"</item>
+ <item msgid="7587396843694140399">"1 min"</item>
+ <item msgid="3432725714539986129">"2 minutos"</item>
+ <item msgid="2351497979153515283">"5 minutos"</item>
+ <item msgid="6211101478382857129">"10 minutos"</item>
+ <item msgid="6022107142498163153">"30 minutos"</item>
+ </string-array>
+ <!-- XL -->
+ <string-array name="lock_after_timeout_entries">
+ <item msgid="5362873482125106390">"inmediatamente"</item>
+ <item msgid="3780867917055948012">"5 segundos"</item>
+ <item msgid="5460826743422816481">"15 segundos"</item>
+ <item msgid="594626999700796913">"30 segundos"</item>
+ <item msgid="4512047639656166646">"1 min"</item>
+ <item msgid="5000428060573159180">"2 minutos"</item>
+ <item msgid="8652935668691967302">"5 minutos"</item>
+ <item msgid="7248542120979379593">"10 minutos"</item>
+ <item msgid="7877328604016083017">"30 minutos"</item>
+ </string-array>
+</resources>
diff --git a/res/values-es-rUS-xlarge/strings.xml b/res/values-es-rUS-xlarge/strings.xml
new file mode 100644
index 0000000..94555e6
--- /dev/null
+++ b/res/values-es-rUS-xlarge/strings.xml
@@ -0,0 +1,544 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <!-- XL -->
+ <string name="sdcard_unmount" product="nosdcard" msgid="6181733313037149844">"Desmontar almacenamiento USB"</string>
+ <string name="sdcard_unmount" product="default" msgid="3220625241064789469">"Desinstalar tarjeta SD"</string>
+ <!-- XL -->
+ <string name="medium_font" msgid="7243768730537648126">"Medio"</string>
+ <!-- XL -->
+ <string name="bluetooth_scan_for_devices" msgid="2561185277445482038">"Buscar dispositivos"</string>
+ <!-- XL -->
+ <string name="bluetooth_not_connected" msgid="3244587936263217172">"Sincronizar con este dispositivo"</string>
+ <!-- XL -->
+ <string name="bluetooth_pairing" msgid="840401894618252947">"Sincronizando..."</string>
+ <!-- XL -->
+ <string name="bluetooth_paired" msgid="240792816202583985">"Sincronizado, pero no conectado"</string>
+ <!-- XL -->
+ <string name="bluetooth_notif_title" msgid="7262914492803452468">"Sincronizando solicitud"</string>
+ <!-- XL -->
+ <string name="bluetooth_ask_enablement" msgid="1018147255689867055">"Una aplicación de tu tableta solicita permiso para activar Bluetooth. ¿Deseas activarla?"</string>
+ <!-- XL -->
+ <string name="bluetooth_ask_discovery" product="tablet" msgid="1313777388650947864">"Una aplicación de tu tableta solicita permiso para hacer que tu tableta pueda ser detectable por otros dispositivos de Bluetooth durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
+ <string name="bluetooth_ask_discovery" product="default" msgid="5256054526438641715">"Una aplicación de tu teléfono solicita permiso para hacer que tu teléfono pueda ser detectable por otros dispositivos de Bluetooth durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
+ <!-- XL -->
+ <string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="1639243393400460738">"Una aplicación de tu tableta solicita permiso para activar Bluetooth y hacer que tu tableta pueda ser detectable por otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
+ <string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="3143376144048362982">"Una aplicación de tu teléfono solicita permiso para activar Bluetooth y hacer que tu teléfono pueda ser detectable por otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
+ <!-- XL -->
+ <string name="date_and_time" msgid="1715474185723734462">"Configuración de fecha & hora"</string>
+ <!-- XL -->
+ <string name="proxy_settings_title" msgid="1673069489276889879">"Configuración de proxy"</string>
+ <!-- XL -->
+ <string name="proxy_action_text" msgid="6459715028082177605">"Listo"</string>
+ <!-- XL -->
+ <string name="radio_info_ping_ipaddr" msgid="5132996845195488290">"Hacer ping al IpAddr:"</string>
+ <!-- XL -->
+ <string name="radio_info_ping_hostname" msgid="3740314114100572642">"Hacer ping al nombre de host(www.google.com):"</string>
+ <!-- XL -->
+ <string name="phone_info_label" product="tablet" msgid="1256735448532460951">"Información de la tableta"</string>
+ <string name="phone_info_label" product="default" msgid="4786804657555550795">"Información del teléfono"</string>
+ <!-- XL -->
+ <string name="settings_label_launcher" msgid="3660044841861599780">"Configuración"</string>
+ <!-- XL -->
+ <string name="settings_shortcut" msgid="6696339474899813295">"Seleccionar un acceso directo para la configuración"</string>
+ <!-- XL -->
+ <string name="airplane_mode" msgid="682335907994118234">"Modo avión"</string>
+ <!-- XL -->
+ <string name="radio_controls_title" msgid="2439212533870469926">"Redes inalámbricas & redes"</string>
+ <!-- XL -->
+ <string name="wireless_networks_settings_title" msgid="3355271355697831103">"Redes inalámbricas & redes"</string>
+ <!-- XL -->
+ <string name="date_and_time_settings_title" msgid="1610925119073294819">"Fecha & hora"</string>
+ <!-- XL -->
+ <string name="date_and_time_settings_summary" msgid="5970527077559774942">"Establecer fecha, hora, zona horaria & formatos"</string>
+ <!-- XL -->
+ <string name="date_time_auto" msgid="7575618634719390063">"Fecha & hora automáticas"</string>
+ <!-- XL -->
+ <string name="date_time_24hour" msgid="6849850078757557733">"Utilizar formato de 24 horas"</string>
+ <!-- XL -->
+ <string name="date_time_set_time" msgid="1003206712792772707">"Configurar hora"</string>
+ <!-- XL -->
+ <string name="date_time_set_date" msgid="8711447531767507950">"Configurar fecha"</string>
+ <!-- XL -->
+ <string name="date_time_date_format" msgid="7461449249664299378">"Seleccionar formato de fecha"</string>
+ <!-- XL -->
+ <string name="time_picker_title" msgid="4696843998853074855">"Hora"</string>
+ <!-- XL -->
+ <string name="lock_after_timeout" msgid="7600891513842005">"Tiempo de espera"</string>
+ <!-- XL -->
+ <string name="owner_info_settings_title" msgid="5868468517033834142">"Datos de propietario"</string>
+ <!-- XL -->
+ <string name="owner_info_settings_edit_text_hint" msgid="8714689633531483174">"Introduce el texto para la pantalla de bloqueo."</string>
+ <!-- XL -->
+ <string name="security_settings_title" msgid="3592400130935638009">"Seguridad & ubicación"</string>
+ <!-- XL -->
+ <string name="location_security_settings_title" msgid="2760622897087864574">"Configuración de ubicación & seguridad"</string>
+ <!-- XL -->
+ <!-- outdated translation 7222261825322058694 --> <string name="lock_settings_picker_title" msgid="2690788880781812819">"Seguridad de desbloqueo de la pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_launch_picker_title" msgid="3679744779726501637">"Configurar bloqueo de pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_off_summary" msgid="7637549453338831016">"Nunca bloquear la pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_none_title" msgid="8302920869082326280">"Sin asegurar"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_none_summary" msgid="8836395154986917752">"No se necesita un patrón, PIN o contraseña para desbloquear la pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_pattern_summary" msgid="7704094261502377451">"Solicitar un patrón para desbloquear la pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_pin_summary" msgid="8765565920176739681">"Se necesita PIN numérico para desbloquear la pantalla."</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_password_summary" msgid="5551818803088356462">"Solicitar una contraseña para desbloquear la pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_disabled_summary" msgid="5962903914511361952">"Inhabilitado por el administrador remoto de la tableta"</string>
+ <!-- XL -->
+ <string name="unlock_disable_lock_title" msgid="4388312117226861970">"Desactivar bloqueo de pantalla"</string>
+ <!-- XL -->
+ <string name="unlock_change_lock_pattern_title" msgid="8720081642421556462">"Cambiar gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="unlock_change_lock_password_title" msgid="5574509194598366149">"Cambiar contraseña de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lockpassword_illegal_character" msgid="4404339348027064222">"La contraseña tiene un carácter no admitido."</string>
+ <!-- XL -->
+ <string name="manage_device_admin" msgid="6479936342949689413">"Administradores del dispositivo."</string>
+ <!-- XL -->
+ <string name="manage_device_admin_summary" msgid="7845961601612123357">"Ver o desactivar administradores del dispositivo"</string>
+ <!-- XL -->
+ <string name="bluetooth_settings" msgid="8107038264437692653">"Configuración de Bluetooth"</string>
+ <!-- XL -->
+ <string name="bluetooth_settings_title" msgid="1587105812755318361">"Configuración de Bluetooth"</string>
+ <!-- XL -->
+ <string name="bluetooth_settings_summary" msgid="1945225217496068493">"Administrar conexiones, establecer nombre & detección del dispositivo"</string>
+ <!-- XL -->
+ <string name="bluetooth_pairing_accept" msgid="7511894889564380537">"Sincronizar"</string>
+ <!-- XL -->
+ <string name="bluetooth_pairing_decline" msgid="322715418093484957">"No sincronizar"</string>
+ <!-- XL -->
+ <string name="bluetooth_pairing_rejected_error_message" msgid="4929974371411936161">"Sincronización rechazada por <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
+ <!-- XL -->
+ <string name="bluetooth_preference_scan_title" msgid="4736901133861650647">"Buscar dispositivos"</string>
+ <!-- XL -->
+ <string name="bluetooth_device_context_pair_connect" msgid="456785429134442097">"Sincronizar & conectar"</string>
+ <!-- XL -->
+ <string name="bluetooth_device_context_disconnect_unpair" msgid="5984258177855811275">"Desconectar & desincronizar"</string>
+ <!-- XL -->
+ <string name="bluetooth_profile_headset" msgid="8027880654407151060">"Manos libres"</string>
+ <!-- XL -->
+ <string name="wifi_quick_toggle_summary" msgid="4327207796364453872">"Encender Wi-Fi"</string>
+ <!-- XL -->
+ <string name="wifi_settings_summary" msgid="1531844224629340571">"Configurar & administrar los puntos de acceso de teléfonos inalámbricos"</string>
+ <!-- XL -->
+ <string name="wifi_starting" msgid="3998518840927475072">"Encendiendo..."</string>
+ <!-- XL -->
+ <string name="wifi_stopping" msgid="1597068456987691567">"Apagándose..."</string>
+ <!-- XL -->
+ <string name="wifi_add_network" msgid="1628543924879894494">"Agregar red Wi-Fi"</string>
+ <!-- XL -->
+ <string name="wifi_access_points" msgid="2679863921498041856">"Redes Wi-Fi"</string>
+ <!-- XL -->
+ <string name="wifi_gateway" msgid="6125453662582091251">"Puerta de enlace"</string>
+ <!-- XL -->
+ <string name="wifi_tether_settings_text" msgid="3270263236218027103">"Configuración de la zona activa Wi-Fi portátil"</string>
+ <!-- XL -->
+ <string name="wifi_tether_settings_subtext" msgid="6987791462145606369">"Configurar & administrar la zona activa Wi-Fi portátil"</string>
+ <!-- XL -->
+ <string name="wifi_tether_settings_title" msgid="1163442397537759931">"Configuración de la zona activa Wi-Fi portátil"</string>
+ <!-- XL -->
+ <string name="display_settings_title" msgid="891288246221134525">"Pantalla"</string>
+ <!-- XL -->
+ <string name="silent_mode_title" msgid="1261478570389701519">"Modo silencio"</string>
+ <!-- XL -->
+ <string name="silent_mode_summary" msgid="5222199351217769201">"Silenciar todos los sonidos excepto los medios & las alarmas."</string>
+ <!-- XL -->
+ <string name="vibrate_in_silent_title" msgid="6321155850445761207">"Vibración en modo silencio"</string>
+ <!-- XL -->
+ <string name="notification_sound_title" msgid="8307596933805931966">"Tono de notificación"</string>
+ <!-- XL -->
+ <string name="notification_pulse_title" msgid="1662517963585325755">"Emisión de la luz de notificación"</string>
+ <!-- XL -->
+ <string name="sound_effects_enable_title" msgid="7685254225251204074">"Selección sonora"</string>
+ <!-- XL -->
+ <string name="dock_audio_summary_none" product="tablet" msgid="2455047773318255064">"La tableta no está en la base"</string>
+ <string name="dock_audio_summary_none" product="default" msgid="3752991668999796049">"El teléfono no se encuentra en la base"</string>
+ <!-- XL -->
+ <string name="dock_not_found_text" product="tablet" msgid="3669499294776809558">"La tableta debe estar en la base para configurar el audio de la base"</string>
+ <string name="dock_not_found_text" product="default" msgid="7992727946537528417">"El teléfono debe estar en la base para configurar el audio de la base."</string>
+ <!-- XL -->
+ <string name="dock_sounds_enable_title" msgid="8515730189986247419">"Sonido al insertar la base"</string>
+ <!-- XL -->
+ <string name="dock_sounds_enable_summary_on" product="tablet" msgid="4240969084467846600">"Reproducir sonido cuando se inserte o elimine la tableta de la base."</string>
+ <string name="dock_sounds_enable_summary_on" product="default" msgid="2670675175363833224">"Reproducir sonido cuando se inserte o elimine un teléfono desde acoplar."</string>
+ <!-- XL -->
+ <string name="dock_sounds_enable_summary_off" product="tablet" msgid="6437740762539930686">"No reproducir sonido cuando se inserte o elimine un tableta de la estación."</string>
+ <string name="dock_sounds_enable_summary_off" product="default" msgid="4510944311939544242">"No reproducir sonido cuando se inserte o elimine un teléfono de la estación."</string>
+ <!-- XL -->
+ <string name="sync_settings" msgid="7388802514272631256">"Cuentas & sincronización"</string>
+ <!-- XL -->
+ <string name="animations_summary_on" msgid="5830579378573262644">"Mostrar animación al abrir & cerrar ventanas"</string>
+ <!-- XL -->
+ <string name="animations_summary_off" msgid="2812412088253753387">"Mostrar animación al abrir & cerrar ventanas"</string>
+ <!-- XL -->
+ <string name="accelerometer_title" msgid="3473695021420064579">"Girar la pantalla automáticamente"</string>
+ <!-- XL -->
+ <string name="accelerometer_summary_on" product="tablet" msgid="9163244852385491015">"Cambiar la orientación automáticamente al girar la tableta"</string>
+ <string name="accelerometer_summary_on" product="default" msgid="643627966003934286">"Cambiar la orientación automáticamente al girar el teléfono"</string>
+ <!-- XL -->
+ <string name="accelerometer_summary_off" product="tablet" msgid="4678290739639397018">"Cambiar la orientación automáticamente al girar la tableta"</string>
+ <string name="accelerometer_summary_off" product="default" msgid="5382045890112616097">"Cambiar la orientación automáticamente al girar el teléfono"</string>
+ <!-- XL -->
+ <string name="screen_timeout" msgid="6722687152321894360">"Tiempo de espera"</string>
+ <!-- XL -->
+ <string name="sim_lock_settings_category" msgid="3725835714557961131">"Configurar bloqueo de tarjeta SIM"</string>
+ <!-- XL -->
+ <string name="sim_lock_on" product="tablet" msgid="1276225978093801721">"Se requiere PIN para utilizar la tableta"</string>
+ <string name="sim_lock_on" product="default" msgid="7944779439246994089">"Se requiere PIN para utilizar el teléfono"</string>
+ <!-- XL -->
+ <string name="sim_lock_off" product="tablet" msgid="4282321528173258005">"Se requiere PIN para utilizar la tableta"</string>
+ <string name="sim_lock_off" product="default" msgid="1727502952471674565">"Se requiere PIN para utilizar el teléfono"</string>
+ <!-- XL -->
+ <string name="device_info_settings" product="tablet" msgid="4609418231218898931">"Estado de la tableta"</string>
+ <string name="device_info_settings" product="default" msgid="3965535171546673910">"Estado del teléfono"</string>
+ <!-- XL -->
+ <string name="system_update_settings_list_item_title" msgid="1528270218415819290">"Actualizaciones del sistema"</string>
+ <!-- XL -->
+ <string name="build_number" msgid="5240350635232938488">"Crear número"</string>
+ <!-- XL -->
+ <!-- outdated translation 899895687115294054 --> <string name="device_status_summary" product="tablet" msgid="1593450654160814122">"Número de teléfono, señal, etc."</string>
+ <string name="device_status_summary" product="default" msgid="899895687115294054">"Número de teléfono, señal, etc."</string>
+ <!-- XL -->
+ <string name="storage_settings" msgid="5625705972110860801">"Almacenamiento"</string>
+ <!-- XL -->
+ <string name="sd_eject" product="nosdcard" msgid="2291329760090260835">"Desactivar alm. comp."</string>
+ <string name="sd_eject" product="default" msgid="4218059792434713782">"Desinstalar tarjeta SD"</string>
+ <!-- XL -->
+ <string name="sd_format_summary" product="nosdcard" msgid="8577120345088226893">"Borra todos los datos del almacenamiento USB interno, como la música y las fotos"</string>
+ <string name="sd_format_summary" product="default" msgid="2457918992362105399">"Borra todos los datos de la tarjeta SD, como la música y las fotos"</string>
+ <!-- XL -->
+ <string name="dlg_confirm_unmount_title" product="nosdcard" msgid="7525607480940098908">"Desmontar almacenamiento USB"</string>
+ <string name="dlg_confirm_unmount_title" product="default" msgid="4564499408967738533">"Desinstalar tarjeta SD"</string>
+ <!-- XL -->
+ <string name="master_clear_title" msgid="4194091281339550954">"Restablecer datos de fábrica"</string>
+ <!-- XL -->
+ <string name="master_clear_summary" product="tablet" msgid="9210209005633768855">"Borra todos los datos de la tableta"</string>
+ <string name="master_clear_summary" product="default" msgid="936647106525403110">"Borra todos los datos del teléfono"</string>
+ <!-- XL -->
+ <string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="7986099264340112418">\n\n"Para borrar la música, las imágenes y otros datos del usuario, debes borrar el "<b>"almacenamiento USB"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="1360961377736586116">\n\n"Para borrar la música, las imágenes y otros datos del usuario, debes borrar la "<b>"tarjeta SD"</b>"."</string>
+ <!-- XL -->
+ <string name="master_clear_button_text" product="tablet" msgid="3975362725334524231">"Restablecer tableta"</string>
+ <string name="master_clear_button_text" product="default" msgid="8395209262149378086">"Restablecer el teléfono"</string>
+ <!-- XL -->
+ <string name="master_clear_gesture_prompt" msgid="3676928144768453187">"Establece tu gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="master_clear_gesture_explanation" msgid="3042439365081430991">"Debes extraer tu gráfico de desbloqueo para confirmar el restablecimiento de la tableta."</string>
+ <!-- XL -->
+ <string name="media_format_final_desc" product="nosdcard" msgid="2622677755263601126">"¿Deseas borrar el almacenamiento USB y suprimir todos los archivos almacenados allí? ¡Esta acción no se puede cambiar!"</string>
+ <string name="media_format_final_desc" product="default" msgid="3543547213407695305">"¿Deseas borrar la tarjeta SD y suprimir todos los archivos almacenados allí? ¡Esta acción no se puede cambiar!"</string>
+ <!-- XL -->
+ <string name="media_format_gesture_prompt" msgid="5269018715080212198">"Establece tu gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="call_settings_title" msgid="838591943136606726">"Configuración de llamada"</string>
+ <!-- XL -->
+ <string name="tether_settings_summary_usb" product="tablet" msgid="7810522151323603203">"Comparte la conexión de datos para celulares de tu tableta a través de USB"</string>
+ <string name="tether_settings_summary_usb" product="default" msgid="1363698204986102517">"Comparte la conexión de datos para celulares de tu teléfono a través de USB"</string>
+ <!-- XL -->
+ <string name="tether_settings_summary_usb_wifi" product="tablet" msgid="4178485315755192173">"Comparte conexión de datos p/ cel. de tu tableta a través de USB o como zona activa Wi-Fi portátil"</string>
+ <string name="tether_settings_summary_usb_wifi" product="default" msgid="4044134394461366035">"Comparte la conexión de datos para celulares de tu teléfono a través de USB o como zona activa Wi-Fi portátil"</string>
+ <!-- XL -->
+ <string name="tether_settings_summary_usb_bluetooth" product="tablet" msgid="4467414011700016754">"Comparte la conexión de datos para celulares de tu tableta a través de USB o Bluetooth"</string>
+ <string name="tether_settings_summary_usb_bluetooth" product="default" msgid="7230529666467131797">"Comparte la conexión de datos para celulares de tu teléfono a través de USB o Bluetooth"</string>
+ <!-- XL -->
+ <string name="tether_settings_summary_wifi_bluetooth" product="tablet" msgid="5563702371743033831">"Comparte conexión de datos p/ cel. de tu tableta con Bluetooth o como zona activa Wi-Fi portátil"</string>
+ <string name="tether_settings_summary_wifi_bluetooth" product="default" msgid="6393030059306414892">"Comparte la conexión de datos para celulares de tu teléfono a través de Bluetooth o como zona activa Wi-Fi portátil."</string>
+ <!-- XL -->
+ <string name="tether_settings_summary_all" product="tablet" msgid="7714876436379931592">"Comparte la conexión de datos para celulares de tu tableta a través de USB, Wi-Fi o Bluetooth"</string>
+ <string name="tether_settings_summary_all" product="default" msgid="2273985527989414830">"Comparte la conexión de datos para celulares de tu teléfono a través de USB, Wi-Fi o Bluetooth."</string>
+ <!-- XL -->
+ <string name="location_network_based" msgid="8571259791160378077">"Utilizar redes inalámbricas"</string>
+ <!-- XL -->
+ <string name="location_street_level" msgid="6486055483162410201">"Cuando se esté ubicando, sea preciso hasta el nivel de la calle."</string>
+ <!-- XL -->
+ <string name="location_gps_disabled" msgid="368445950600796860">"Localizar a nivel de calle (necesita más batería además de la vista del cielo)"</string>
+ <!-- XL -->
+ <string name="use_location_title" msgid="6603235165943700077">"Utilizar la ubicación para buscar con Google"</string>
+ <!-- XL -->
+ <string name="use_location_summary_disabled" msgid="555010365449402016">"Utilizar la ubicación para buscar con Google y otros servicios de Google"</string>
+ <!-- XL -->
+ <string name="use_location_summary_enabled" msgid="5155029913791084058">"Ubicación utilizada para mejorar los resultados de la búsqueda y otros servicios de Google"</string>
+ <!-- XL -->
+ <string name="about_settings" product="tablet" msgid="4492242295431251939">"Acerca de la tableta"</string>
+ <string name="about_settings" product="default" msgid="5642163368100089859">"Acerca del teléfono"</string>
+ <!-- XL -->
+ <string name="about_settings_summary" msgid="2127336751571543006">"Ver información legal, estado, versión de software de la tableta"</string>
+ <!-- XL -->
+ <string name="system_tutorial_list_item_summary" product="tablet" msgid="176391697191022240">"Aprende cómo utilizar tu tableta"</string>
+ <string name="system_tutorial_list_item_summary" product="default" msgid="696702567266318374">"Aprende cómo utilizar tu teléfono"</string>
+ <!-- XL -->
+ <string name="lockpassword_choose_your_pattern_header" msgid="1478083096563754867">"Escoge tu patrón"</string>
+ <!-- XL -->
+ <string name="lockpassword_choose_lock_generic_header" msgid="205113288645586976">"Desbloquear selección"</string>
+ <!-- XL -->
+ <string name="lock_settings_title" msgid="9000564553472290676">"Bloquear pantalla"</string>
+ <!-- XL -->
+ <string name="lockpattern_change_lock_pattern_label" msgid="4234350892820550249">"Cambiar gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lockpattern_recording_intro_header" msgid="9142059965773629252">"Establecer un gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lockpattern_pattern_confirmed_header" msgid="1908744990013559058">"Tu nuevo gráfico de desbloqueo:"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_enable_summary" msgid="1456211092062050289">"Debes extraer el patrón para desbloquear la pantalla"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_enable_visible_pattern_title" msgid="554387666060565792">"Utilizar patrón visible"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_enable_tactile_feedback_title" msgid="9092475391999414878">"Utilizar respuesta táctil"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_choose_lock_pattern" msgid="3477319366008177548">"Configurar gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_change_lock_pattern" msgid="807557015335006719">"Cambiar gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lockpattern_settings_help_how_to_record" msgid="2679593325847484412">"Cómo dibujar un gráfico de desbloqueo"</string>
+ <!-- XL -->
+ <string name="lock_title" product="tablet" msgid="9166767874243041429">"Protección de tu tableta"</string>
+ <string name="lock_title" product="default" msgid="1092944886413119561">"Asegurando tu teléfono"</string>
+ <!-- XL -->
+ <string name="lock_intro_message" product="tablet" msgid="4721776268392533907">"Protege tu tableta del uso no autorizado creando un gráfico de desbloqueo de pantalla personal. Usa el dedo para unir los puntos en cualquier orden en la pantalla. Debes unir al menos cuatro puntos. "\n\n"¿Listo para comenzar? Toca “Siguiente”."</string>
+ <string name="lock_intro_message" product="default" msgid="907038783986041076"><font size="17">"Protege a tu teléfono de usos no autorizados al crear un gráfico de desbloqueo en la pantalla personal. "\n<font height="17">\n</font><b>"1"</b>" En la pantalla siguiente, observa cómo se establece un gráfico de ejemplo. "\n<font height="17">\n</font><b>"2"</b>" Cuando estés listo, establece tu propio gráfico de desbloqueo personal. Experimenta con diferentes gráficos pero conecta al menos cuatro puntos. "\n<font height="17">\n</font><b>"3"</b>" Revisa tu gráfico para confirmar. "\n<font height="17">\n</font><b>"¿Estás listo para comenzar? Toca \"Siguiente\""</b>". "\n<font height="3">\n</font>"Si deseas dejar sin protección a tu teléfono, toca \"Cancelar\"."</font></string>
+ <!-- XL -->
+ <string name="applications_settings_header" msgid="7998404736890425408">"Configuración de aplicación"</string>
+ <!-- XL -->
+ <string name="install_unknown_applications" msgid="5523436660596740637">"Permite la instalación de aplicaciones que no pertenezcan a Tienda"</string>
+ <!-- XL -->
+ <string name="install_all_warning" product="tablet" msgid="5048087898876117901">"Tu tableta y datos personales son más vulnerables a sufrir ataques de aplicaciones provenientes de fuentes desconocidas. Aceptas que eres el único responsable de cualquier daño que sufra tu tableta o de cualquier pérdida de datos que pueda ocasionar el uso de estas aplicaciones."</string>
+ <string name="install_all_warning" product="default" msgid="8051207775052950715">"Tu teléfono y datos personales son más vulnerables a sufrir ataques de aplicaciones provenientes de fuentes desconocidas. Aceptas que eres el único responsable de cualquier daño que sufra tu teléfono o de cualquier pérdida de datos que pueda ocasionar el uso de estas aplicaciones."</string>
+ <!-- XL -->
+ <string name="storage_label" msgid="721825759391089611">"Almacenamiento"</string>
+ <!-- XL -->
+ <string name="auto_launch_label" msgid="952095110510946762">"Ejecutar de forma predeterminada"</string>
+ <!-- XL -->
+ <string name="force_stop" msgid="8640872458052681478">"Provocar la detención"</string>
+ <!-- XL -->
+ <string name="uninstall_text" msgid="4025039762527439329">"Desinstalar"</string>
+ <!-- XL -->
+ <string name="security_settings_desc" product="tablet" msgid="9213000088515475700">"Esta aplicación puede acceder a lo siguiente en tu tableta:"</string>
+ <string name="security_settings_desc" product="default" msgid="6170390933313935985">"Esta aplicación puede acceder a lo siguiente en tu teléfono:"</string>
+ <!-- XL -->
+ <string name="move_app_to_internal" product="tablet" msgid="3087556251205296105">"Mover a la tableta"</string>
+ <string name="move_app_to_internal" product="default" msgid="4683272575835299333">"Mover al teléfono"</string>
+ <!-- XL -->
+ <string name="force_stop_dlg_title" msgid="1073476967469219114">"Provocar la detención"</string>
+ <!-- XL -->
+ <string name="running_processes_item_description_p_s" msgid="6016515454264324121">"<xliff:g id="NUMPROCESS">%1$d</xliff:g> procesos y <xliff:g id="NUMSERVICES">%2$d</xliff:g> servicio"</string>
+ <!-- XL -->
+ <string name="service_manage" msgid="6150785653738071102">"Configuración"</string>
+ <!-- XL -->
+ <string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5330727138762830508">"¿Estás seguro de que deseas detener el servicio del sistema? Si lo haces, algunas funciones de tu tableta podrían dejar de ejecutarse correctamente hasta que la apagues y enciendas nuevamente."</string>
+ <string name="runningservicedetails_stop_dlg_text" product="default" msgid="6840410545044552506">"¿Estás seguro de que deseas detener el servicio del sistema? Si lo haces, algunas funciones de tu teléfono podrían dejar de ejecutarse correctamente hasta que lo apagues y enciendas nuevamente."</string>
+ <!-- XL -->
+ <string name="language_settings" msgid="8904228615052580661">"Idioma & entrada"</string>
+ <!-- XL -->
+ <string name="language_keyboard_settings_title" msgid="3826317747930581490">"Idioma & entrada"</string>
+ <!-- XL -->
+ <string name="auto_replace" msgid="2972453466301833766">"Reemplazar automáticamente"</string>
+ <!-- XL -->
+ <string name="auto_caps" msgid="1349585249132014166">"Uso de mayúsculas automático"</string>
+ <!-- XL -->
+ <string name="testing_phone_info" product="tablet" msgid="9128283157166365872">"Información de la tableta"</string>
+ <string name="testing_phone_info" product="default" msgid="8368042652385895322">"Información del teléfono"</string>
+ <!-- XL -->
+ <string name="quick_launch_summary" msgid="8680015390756527810">"Establecer métodos abreviados de teclado para lanzar aplicaciones"</string>
+ <!-- XL -->
+ <string name="keep_screen_on" msgid="6685373812866219183">"Mantener activa"</string>
+ <!-- XL -->
+ <string name="allow_mock_location" msgid="8337884419688998284">"Permitir ubicaciones simuladas"</string>
+ <!-- XL -->
+ <string name="allow_mock_location_summary" msgid="8221368721502475488">"Permitir ubicaciones simuladas"</string>
+ <!-- XL -->
+ <string name="battery_history_days" msgid="6388963237495315461">"<xliff:g id="DAYS">%1$d</xliff:g>días <xliff:g id="HOURS">%2$d</xliff:g>h <xliff:g id="MINUTES">%3$d</xliff:g>min <xliff:g id="SECONDS">%4$d</xliff:g>s"</string>
+ <!-- XL -->
+ <string name="battery_history_hours" msgid="1864714660768076601">"<xliff:g id="HOURS">%1$d</xliff:g>h <xliff:g id="MINUTES">%2$d</xliff:g>min <xliff:g id="SECONDS">%3$d</xliff:g>s"</string>
+ <!-- XL -->
+ <string name="battery_history_minutes" msgid="904790647144376065">"<xliff:g id="MINUTES">%1$d</xliff:g> min <xliff:g id="SECONDS">%2$d</xliff:g> s"</string>
+ <!-- XL -->
+ <string name="battery_history_seconds" msgid="3665349590312523082">"<xliff:g id="SECONDS">%1$d</xliff:g> s"</string>
+ <!-- XL -->
+ <string name="accessibility_script_injection_security_warning" product="tablet" msgid="6700381643398366558">"Algunas aplicaciones pueden solicitar que Google descargue scripts a tu tableta para hacer más accesible su contenido. ¿Estás seguro de que quieres permitir que Google instale scripts de accesibilidad en tu tableta?"</string>
+ <string name="accessibility_script_injection_security_warning" product="default" msgid="5442302097021173031">"Algunas aplicaciones pueden solicitar que Google descargue scripts a tu teléfono para hacer más accesible su contenido. ¿Estás seguro de que quieres permitir que Google instale scripts de accesibilidad en tu teléfono?"</string>
+ <!-- XL -->
+ <string name="details_title" msgid="5089499312993127089">"Utilizar detalles"</string>
+ <!-- XL -->
+ <string name="power_idle" product="tablet" msgid="8117801758410646708">"Tableta ausente"</string>
+ <string name="power_idle" product="default" msgid="3337610844756425131">"Teléfono inactivo"</string>
+ <!-- XL -->
+ <string name="battery_action_stop" msgid="5203139623674829450">"Provocar la detención"</string>
+ <!-- XL -->
+ <string name="battery_action_app_settings" msgid="6095037590992693768">"Configuración de aplicación"</string>
+ <!-- XL -->
+ <string name="battery_action_bluetooth" msgid="853528034605826496">"Configuración de Bluetooth"</string>
+ <!-- XL -->
+ <string name="battery_desc_standby" product="tablet" msgid="5473666863365332447">"La batería se utiliza cuando la tableta está inactiva"</string>
+ <string name="battery_desc_standby" product="default" msgid="2197999446645143507">"La batería se utiliza cuando el teléfono está inactivo"</string>
+ <!-- XL -->
+ <string name="battery_sugg_apps_gps" msgid="2003155161828900770">"Controla manualmente el GPS para que la aplicación no lo use."</string>
+ <!-- XL -->
+ <string name="voice_input_output_settings" msgid="1559584883190087877">"Entrada & salida de voz"</string>
+ <!-- XL -->
+ <string name="voice_input_output_settings_title" msgid="650779670494513011">"Configuración de entrada y salida de voz"</string>
+ <!-- XL -->
+ <string name="voice_input_category" msgid="6409471746439542556">"Entrada de voz"</string>
+ <!-- XL -->
+ <string name="recognizer_settings_title" msgid="6114971041507760293">"Configuración del reconocedor de voz"</string>
+ <!-- XL -->
+ <string name="tts_settings_title" msgid="6637716247707110736">"Configuración de texto de voz"</string>
+ <!-- XL -->
+ <string name="use_default_tts_settings_title" msgid="5306939106240140474">"Utilizar siempre mi configuración"</string>
+ <!-- XL -->
+ <string name="tts_default_rate_title" msgid="976403399602850472">"Velocidad de voz"</string>
+ <!-- XL -->
+ <string name="tts_play_example_title" msgid="3789445594548626958">"Escucha un ejemplo"</string>
+ <!-- XL -->
+ <string name="tts_engine_name_is_disabled_summary" msgid="3336669129361332481">"<xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g> está inhabilitado."</string>
+ <!-- XL -->
+ <string name="vpn_menu_delete" msgid="4916522121879342228">"Suprimir red"</string>
+ <!-- XL -->
+ <string name="vpn_dns_search_list_title" msgid="4541049212952610939">"Dominios de búsqueda de DNS"</string>
+ <!-- XL -->
+ <string name="vpn_is_enabled" msgid="7983866862437815600">"<xliff:g id="OPTION">%s</xliff:g> está habilitado."</string>
+ <!-- XL -->
+ <string name="vpn_is_disabled" msgid="2992826944244218888">"<xliff:g id="OPTION">%s</xliff:g> está inhabilitado."</string>
+ <!-- XL -->
+ <string name="vpn_settings_summary" msgid="813124993643276598">"Establecer & administrar Redes privadas virtuales (VPN)"</string>
+ <!-- XL -->
+ <string name="credentials_access" msgid="4979934961780740364">"Utilizar credenciales seguras"</string>
+ <!-- XL -->
+ <string name="credentials_install_certificates" product="nosdcard" msgid="6544302303222468077">"Instalar desde almacenamiento USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="6102468185992800407">"Instalar desde la tarjeta SD"</string>
+ <!-- XL -->
+ <string name="encrypted_fs_enable_button" msgid="5517966150893551199">"Habilitar"</string>
+ <!-- XL -->
+ <string name="encrypted_fs_disable_button" msgid="5723342350828112970">"Inhabilitar"</string>
+ <!-- XL -->
+ <string name="backup_data_summary" msgid="1336378642693518890">"Copias de seguridad de los datos de la aplicación, de las contraseñas de Wi-Fi y otra configuración en los servidores de Google"</string>
+ <!-- XL -->
+ <string name="backup_configure_account_default_summary" msgid="6098490331238505056">"No existe una cuenta que esté almacenando datos con copia de seguridad."</string>
+ <!-- XL -->
+ <string name="auto_restore_title" msgid="6131625376900473183">"Restauración automática"</string>
+ <!-- XL -->
+ <string name="backup_erase_dialog_message" msgid="420760487469699485">"¿Estás seguro de que deseas dejar de hacer copias de seguridad de tus contraseñas de Wi-Fi, favoritos y otros datos de configuración y aplicaciones, y borrar todas las copias de los servidores de Google?"</string>
+ <!-- XL -->
+ <!-- outdated translation 459632371726748549 --> <string name="wifi_setup_title" msgid="7213494455033152368">"Configuración de Wi-Fi"</string>
+ <!-- XL -->
+ <string name="wifi_setup_status_select_network" msgid="2849893362484510765">"Toca una red para conectarte a ella"</string>
+ <!-- XL -->
+ <string name="wifi_setup_status_eap_not_supported" msgid="2580119613877986130">"EAP no admitido"</string>
+ <!-- XL -->
+ <string name="wifi_setup_eap_not_supported" msgid="518966154814708106">"No puedes configurar la conexión Wi-Fi de EAP durante la instalación. Después de la configuración, puedes hacerlo en Configuraciones, en Redes inalámbricas & redes."</string>
+ <!-- XL -->
+ <string name="background_data_summary" msgid="1261820775251511583">"Las aplic. pueden sinc., env. y recibir datos en cualq. mom."</string>
+ <!-- XL -->
+ <string name="really_remove_account_message" product="tablet" msgid="812472619471595089">"¿Realmente deseas eliminar·esta cuenta? Si lo haces, también suprimirás todos sus mensajes, contactos y otros datos de la tableta. "\n"¿Deseas continuar?"</string>
+ <string name="really_remove_account_message" product="default" msgid="6592950875510640653">"¿Realmente deseas eliminar·esta cuenta? Si lo haces, también suprimirás todos sus mensajes, contactos y otros datos del teléfono. "\n"¿Deseas continuar?"</string>
+ <!-- XL -->
+ <string name="bluetooth_notif_message" msgid="2611095882015030198">"Seleccionar para vincular con <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
+ <!-- XL -->
+ <string name="bluetooth_auto_connect" msgid="5635834571497957651">"Conectar automáticamente"</string>
+ <!-- XL -->
+ <string name="lock_after_timeout_summary" msgid="1115580514157023005">"Bloquear pantalla <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> luego de que la pantalla se apague automáticamente"</string>
+ <!-- XL -->
+ <string name="encryption_settings_title" msgid="2646733014286658918">"Encriptación del dispositivo"</string>
+ <!-- XL -->
+ <string name="encrypt_title" msgid="6588721799092579532">"Encriptar datos en el dispositivo"</string>
+ <!-- XL -->
+ <string name="encrypt_summary" msgid="8034174282555891811">"Debes configurar un número de PIN o contraseña para desbloquear el dispositivo"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_mode_off" msgid="3083317055441778577">"Apagado"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_mode_none" msgid="2265502443989071295">"Sin asegurar"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_mode_pattern" msgid="891892061776325935">"Asegurado con patrón"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_mode_pin" msgid="948449971660341581">"Asegurado con número de PIN"</string>
+ <!-- XL -->
+ <string name="unlock_set_unlock_mode_password" msgid="527487918702728081">"Asegurado con contraseña"</string>
+ <!-- XL -->
+ <string name="lockpattern_tutorial_cancel_label" msgid="8891383231976441554">"Cancelar"</string>
+ <!-- XL -->
+ <string name="lockpattern_tutorial_continue_label" msgid="607092788342282292">"Siguiente"</string>
+ <!-- XL -->
+ <string name="bluetooth_enter_pin_msg" msgid="4795866589006598648">\n"Ingresa el PIN para vincularse con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Intenta con 0000 ó 1234). Es posible que debas ingresar el mismo PIN en el dispositivo Bluetooth."</string>
+ <!-- XL -->
+ <string name="bluetooth_enter_passkey_msg" msgid="5281098098369174842">\n"Ingresa la llave maestra para vincular con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- XL -->
+ <string name="bluetooth_display_passkey_pin_msg" msgid="4517875819897263465">"Ingresa la \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" en tu \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" para sincronizar y luego return (volver) o enter (aceptar)."</string>
+ <!-- XL -->
+ <string name="bluetooth_disconnect_a2dp_profile" msgid="8558839213545432142">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del audio de medios."</string>
+ <!-- XL -->
+ <string name="bluetooth_disconnect_headset_profile" msgid="7632141632739822572">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del audio de manos libre."</string>
+ <!-- XL -->
+ <string name="bluetooth_disconnect_hid_profile" msgid="1679676194011650565">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del dispositivo de entrada."</string>
+ <!-- XL -->
+ <string name="bluetooth_disconnect_pan_profile" msgid="7327390610936860378">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del anclaje."</string>
+ <!-- XL -->
+ <string name="bluetooth_pan_profile_summary_use_for" msgid="7152329494274254683">"Utilizar para acceso a Internet"</string>
+ <!-- XL -->
+ <string name="screen_timeout_summary" msgid="8423734042860540453">"La pantalla se apaga automáticamente después de <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- XL -->
+ <string name="memory_calculating_size" msgid="4994844259856032553">"Calculando…"</string>
+ <!-- XL -->
+ <string name="current_input_method" msgid="1106006204280275670">"Método de entrada actual"</string>
+ <!-- XL -->
+ <string name="input_method_selector" msgid="4603564747071938112">"Selector de método de entrada"</string>
+ <!-- XL -->
+ <string name="input_method_selector_show_automatically_title" msgid="1706737268175339595">"Automático"</string>
+ <!-- XL -->
+ <string name="input_method_selector_always_show_title" msgid="3708432810001453807">"Mostrar siempre"</string>
+ <!-- XL -->
+ <string name="input_method_selector_always_hide_title" msgid="4836415734240597745">"Ocultar siempre"</string>
+ <!-- XL -->
+ <string name="configure_input_method" msgid="6026015289285751240">"Configurar métodos de entrada"</string>
+ <!-- XL -->
+ <string name="input_method_settings" msgid="9024293785411698203">"Configuración"</string>
+ <!-- XL -->
+ <string name="active_input_method_subtypes" msgid="5725808834287911653">"Métodos de entrada activos"</string>
+ <!-- XL -->
+ <string name="use_system_language_to_select_input_method_subtypes" msgid="6563524811468810194">"Usar el idioma del sistema"</string>
+ <!-- XL -->
+ <string name="input_methods_and_subtype_enabler_title" msgid="2847364292968799808">"Seleccionar métodos de entrada activos"</string>
+ <!-- XL -->
+ <string name="history_details_title" msgid="8910742461149938017">"Detalles del historial"</string>
+ <!-- XL -->
+ <string name="vpn_details_title" msgid="2756802240544287896">"Detalles de VPN"</string>
+ <!-- XL -->
+ <string name="settings_backup_summary" msgid="111187787880535545">"Realizar copia de seguridad de mi configuración"</string>
+ <!-- XL -->
+ <string name="sync_one_time_sync" msgid="7494419538560558301">"Tocar para sincronizar ahora<xliff:g id="LAST_SYNC_TIME">
+%1$s</xliff:g>"</string>
+ <!-- XL -->
+ <string name="sync_plug" msgid="3462111668444144965"><font fgcolor="#ffffffff">"¡Bienvenido a Google sync!"</font>" "\n"Un método de Google que sincroniza datos para permitir el acceso a tus contactos, citas y mucho más desde cualquier lugar donde estés."</string>
+ <!-- XL -->
+ <string name="header_application_sync_settings" msgid="6437837277802783145">"Config. de sincroniz. de la aplic."</string>
+ <!-- XL -->
+ <string name="header_data_and_synchronization" msgid="506768433213665971">"Sincronización & datos"</string>
+ <!-- XL -->
+ <string name="preference_change_password_title" msgid="4912535804788535201">"Cambiar contraseña"</string>
+ <!-- XL -->
+ <string name="header_account_settings" msgid="6867837572336802076">"Configuración de la cuenta"</string>
+ <!-- XL -->
+ <string name="remove_account_label" msgid="4367473583514778695">"Eliminar cuenta"</string>
+ <!-- XL -->
+ <string name="header_add_an_account" msgid="5117101576908916159">"Agregar una cuenta"</string>
+ <!-- XL -->
+ <string name="finish_button_label" msgid="1346555381324556167">"Finalizar"</string>
+ <!-- XL -->
+ <string name="really_remove_account_title" msgid="6530859245072522666">"Eliminar cuenta"</string>
+ <!-- XL -->
+ <string name="remove_account_failed" product="tablet" msgid="2043864489637138343">"Algunas aplicaciones requieren esta cuenta. Sólo puedes suprimirla si restableces la configuración predeterminada de fábrica en la tableta (esta acción suprime todos tus datos personales). Puedes hacerlo en la aplicación Configuración, dentro de Privacidad."</string>
+ <string name="remove_account_failed" product="default" msgid="900970657285357323">"Algunas aplicaciones requieren esta cuenta. Sólo puedes suprimirla si restableces la configuración predeterminada de fábrica en el teléfono (la cual suprime todos tus datos personales). Puedes hacerlo en la aplicación Configuración, dentro de Privacidad."</string>
+ <!-- XL -->
+ <string name="provider_label" msgid="5253020684282273567">"Suscripciones de inserción"</string>
+ <!-- XL -->
+ <string name="sync_item_title" msgid="6895422961712326561">"Sincronización<xliff:g id="AUTHORITY">%s</xliff:g>"</string>
+ <!-- XL -->
+ <string name="cant_sync_dialog_title" msgid="5549345079325238269">"No se puede realizar la sincronización manual"</string>
+ <!-- XL -->
+ <string name="cant_sync_dialog_message" msgid="1447798364019734634">"La sincronización de este elemento actualmente está desactivada. Para cambiar tus preferencias, activa momentáneamente los datos de fondo y la sincronización automática."</string>
+</resources>
diff --git a/res/values-es-rUS/arrays.xml b/res/values-es-rUS/arrays.xml
index a2b83a3..051ab98 100644
--- a/res/values-es-rUS/arrays.xml
+++ b/res/values-es-rUS/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Se muestran algunas animaciones de ventana"</item>
<item msgid="488968798204105119">"Se muestran todas las animaciones de ventana"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segundos"</item>
- <item msgid="8881760709354815449">"30 segundos"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minutos"</item>
- <item msgid="7489864775127957179">"5 minutos"</item>
- <item msgid="2314124409517439288">"10 minutos"</item>
- <item msgid="6864027152847611413">"30 minutos"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"inmediatamente"</item>
- <item msgid="6736512735606834431">"5 segundos"</item>
- <item msgid="8044619388267891375">"15 segundos"</item>
- <item msgid="1822002388249545488">"30 segundos"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minutos"</item>
- <item msgid="49888496216106852">"5 minutos"</item>
- <item msgid="9002737361305019353">"10 minutos"</item>
- <item msgid="4322676235684793329">"30 minutos"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Muy lento"</item>
<item msgid="2361722960903353554">"Lento"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excelente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Cuando se apaga la pantalla"</item>
+ <item msgid="3804733751095821976">"Cuando se apaga la pantalla"</item>
<item msgid="1549288661423279207">"Nunca cuando está conectado"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nunca"</item>
+ <item msgid="1986753720941888596">"Nunca"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automáticamente"</item>
diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml
index 9088546..5a5829f 100644
--- a/res/values-es-rUS/strings.xml
+++ b/res/values-es-rUS/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Explorando"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Solicitud de vinculación de Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Vinculando solicitud"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Seleccionar para vincularse con <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Mostrar los archivos recibidos"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Mostrar la lista de datos recibidos por Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selector de dispositivo Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Solicitud de permiso de Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Una aplicación de tu tablet solicita permiso para activar Bluetooth. ¿Deseas activarlo?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Una aplicación de tu tablet solicita permiso para activar Bluetooth y hacer que tu tablet pueda ser detectable por otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Una aplicación de tu teléfono solicita permiso para activar Bluetooth y hacer que tu teléfono pueda ser detectable por otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Deseas activarlo?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Activando Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Conectar automáticamente"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Configuración de fecha y hora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 p. m."</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Inicio <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Cuenta:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Configuración de proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Configuraciones de proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Establece el proxy HTTP global y las listas de exclusión"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Borrar"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Puerto"</string>
@@ -220,13 +220,13 @@
<string name="cancel" msgid="6859253417269739139">"Cancelar"</string>
<string name="settings_label" msgid="1626402585530130914">"Configuración"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Config."</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Seleccionar un acceso directo para la configuración"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Configurac."</string>
<string name="airplane_mode" msgid="8837269988154128601">"Modo de avión"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Desactivar todas las conexiones inalámbricas"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Desactivando conexiones inalámbricas…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Activando conexiones inalámbricas…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Redes y wireless"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Redes inalámbricas y redes"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Configuración inalámbrica y de red"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Administrar Wi-Fi, Bluetooth, modo de avión, redes, móviles, & VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming de datos"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Conectarse a servicios de datos en el roaming"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Selección de operador"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Seleccionar un operador de red"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Fecha y hora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Configurar fecha y hora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Establecer fecha, hora, zona horaria y formatos"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Fecha y hora automáticas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Usar hora proporcionada por la red"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ordenar por zona horaria"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Fecha"</string>
<string name="time_picker_title" msgid="483460752287255019">"Tiempo"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tiempo de espera"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloquear pantalla <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> luego de que la pantalla se apague automáticamente"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloquear el dispositivo después del tiempo de espera"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostrar la información del propietario en el bloqueo de la pantalla"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Datos propietario"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Establecer Mi ubicación, desbloqueo de pantalla, bloqueo de la tarjeta SIM, bloqueo de almacenamiento de la credencial"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Establecer Mi ubicación, desbloqueo de pantalla, bloqueo de almacenamiento de credencial"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Contraseñas"</string>
- <!-- outdated translation 3855024169931601690 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Encriptación del dispositivo"</string>
- <!-- outdated translation 824181954831066710 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Encriptar datos en el dispositivo"</string>
- <!-- outdated translation 824181954831066710 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Encriptar datos en el dispositivo"</string>
- <!-- outdated translation 8654848918081244133 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Debes configurar un número de PIN o contraseña para desbloquear el dispositivo"</string>
- <!-- outdated translation 8654848918081244133 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Debes configurar un número de PIN o contraseña para desbloquear el dispositivo"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Encriptado"</string>
- <!-- outdated translation 9127899943273969221 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Puedes encriptar tus cuentas, tus configuraciones, tus aplicaciones descargadas y sus datos, tus medios, y otros archivos. Una vez que encriptas tu teléfono, no puedes desencriptarlo a menos que restablezcas la configuración de fábrica, borrando todos los datos de tu teléfono. "\n\n"La encriptación lleva hasta una hora. Debes comenzar con la batería cargada y mantener tu teléfono conectado hasta que finalice la encriptación. Si interrumpes el proceso, perderás algunos o todos tus datos."</string>
- <!-- outdated translation 9127899943273969221 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Puedes encriptar tus cuentas, tus configuraciones, tus aplicaciones descargadas y sus datos, tus medios, y otros archivos. Una vez que encriptas tu teléfono, no puedes desencriptarlo a menos que restablezcas la configuración de fábrica, borrando todos los datos de tu teléfono. "\n\n"La encriptación lleva hasta una hora. Debes comenzar con la batería cargada y mantener tu teléfono conectado hasta que finalice la encriptación. Si interrumpes el proceso, perderás algunos o todos tus datos."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Encriptar tableta"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Encriptar teléfono"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmar encriptación"</string>
- <!-- outdated translation 5952712462271194618 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"¿Deseas encriptar los datos del usuario? ¡No podrás volver atrás esta operación y puede que no se interrumpa sin pérdida de datos! La encriptación puede demorar hasta una hora."</string>
- <!-- outdated translation 5952712462271194618 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"¿Deseas encriptar los datos del usuario? ¡No podrás volver atrás esta operación y puede que no se interrumpa sin pérdida de datos! La encriptación puede demorar hasta una hora."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Encriptando"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Vuelve a intentarlo en ^segundos."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configurar el bloqueo de pantalla"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar el bloqueo de pantalla"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Seguridad de desbloqueo de la pantalla"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar bloqueo de pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Cambiar bloqueo de la pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Cambia o inhabilita el patrón, PIN o la contraseña de seguridad."</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Elige un método para bloquear la pantalla."</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Apagado"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nunca bloquear la pantalla"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Sin asegurar"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"No se necesita un patrón, PIN o contraseña para desbloquear la pantalla"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"No mostrar el bloqueo de pantalla"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ninguno"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Inhabilitar seguridad de desbloqueo de la pantalla"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Patrón"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Solicitar un patrón para desbloquear la pantalla"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Dibuja el patrón para desbloquear la pantalla."</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Requieren un PIN numérico para desbloquear la pantalla"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ingresa un PIN numérico para desbloquear la pantalla."</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Contraseña"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Solicitar una contraseña para desbloquear la pantalla"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ingresa una contraseña para desbloquear la pantalla."</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Inhabilitado por el administrador remoto del tablet"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Desactivado"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Sin seguros"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Asegurado con el patrón"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Asegurado con PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Asegurado con contraseña"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Desactivar el bloqueo de pantalla"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Eliminar el gráfico de desbloqueo"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Eliminar el PIN de desbloqueo"</string>
@@ -368,22 +338,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"El administrador de dispositivos no permite utilizar una contraseña reciente."</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Aceptar"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancelar"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancelar"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Siguiente"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administración del dispositivo"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administradores del dispositivo."</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Ver o desactivar administradores del dispositivo"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Seleccionar los administradores del dispositivo"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Agregar o eliminar los administradores de dispositivo"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Activar Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Config. de Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Config. de Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Administrar conexiones, establecer nombre y detección del dispositivo"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Solicitud de vinculación de Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Ingresa el PIN para vincularlo con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Intenta con 0000 ó 1234). Es posible que debas ingresar el mismo PIN en el dispositivo Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Escribe la llave maestra para vincular con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Para vincular con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", confirma que muestra la llave maestra: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"desea vincularse."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Ingresa \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" en \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" para sincronizar y luego volver o aceptar."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Vincular"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"No vincular"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositivo bluetooth"</string>
@@ -406,14 +381,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opciones…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Conectar a..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Medios"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Manos libres"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tableta"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transferir"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositivo de entrada"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Anclaje a red"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del audio de medios."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del audio de manos libres."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del dispositivo de entrada."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del anclaje."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"opciones de <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Acciones del dispositivo"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Conectar"</string>
@@ -431,7 +410,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utilizar para el audio del teléfono"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Utilizar para la transferencia de archivos"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utilizar para entrada"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utilizar para acceso a Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Configuración de la base"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Utilizar la base para el audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Como altavoz"</string>
@@ -452,9 +432,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"No se han podido explorar las redes"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificación de red"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Notificarme cuando se encuentre disponible una red abierta"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Política de estado de inactividad de Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar cuándo se debe cambiar de Wi-Fi a datos de celular"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Se ha producido un problema al establecer la política de estado de inactividad."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Agregar red de Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Redes de Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Explorar"</string>
@@ -464,10 +441,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modificar la red"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuración de red"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Ingresar pin de punto de acceso"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuración de WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuración del método de pin WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Ingrese el pin <xliff:g id="WPS_PIN">%1$s</xliff:g> en el punto de acceso."</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS está en progreso y puede demorar varios segundos hasta completarse"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Falló el inicio de WPS, inténtalo nuevamente"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID de red"</string>
<string name="wifi_security" msgid="6603611185592956936">"Seguridad"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Potencia de la señal"</string>
@@ -496,8 +471,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Olvidar"</string>
<string name="wifi_save" msgid="3331121567988522826">"Guardar"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancelar"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Se detectó otra sesión WPS, vuelve a intentarlo en unos minutos"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avanzado"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Política de estado de inactividad de Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar cuándo se debe cambiar de Wi-Fi a datos de celular"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Se ha producido un problema al establecer la política de estado de inactividad."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda de frecuencia Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Especificar el rango de frecuencia de la operación"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Problema al configurar la banda de frecuencias."</string>
@@ -524,7 +501,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">" Zona activa Wi-Fi portátil <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android Hotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Sonido"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Pantalla"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Pantalla"</string>
<string name="sound_settings" msgid="5007659014828162881">"Configuración de sonido"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Modo silencioso"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Silenciar todos los sonidos excepto los medios y las alarmas."</string>
@@ -595,8 +572,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Cambiar la orientación automáticamente al girar el teléfono"</string>
<string name="brightness" msgid="2354961343555249270">"Brillo"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajustar el brillo de la pantalla"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tiempo de espera"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"La pantalla se apaga automáticamente después de <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Tiempo de espera de la pant."</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Brillo automático"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Configuración de bloqueo de la tarjeta SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Conf. bloqueo de tarj. SIM"</string>
@@ -633,14 +611,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"No disponible"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Estado"</string>
<string name="device_status" msgid="607405385799807324">"Estado"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Estado de la batería, la red y otra información"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, número de teléfono, señal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Número de teléfono, señal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Espacio de almacenamiento"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Configuración de almacenamiento"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Desmontar almacenamiento USB, ver almacenamiento disponible"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Desmontar tarjeta SD, ver espacio de almacenamiento disponible"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mi número de teléfono"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mi número de teléfono"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versión de PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +635,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Almacenamiento interno"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Almacenamiento USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Tarjeta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponible"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calculando…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicaciones"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medios"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espacio disponible"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espacio total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Uso de la aplicación"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Uso de medios"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Desactivar alm. comp."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Desmontar la tarjeta SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Desmontar el almacenamiento USB interno"</string>
@@ -676,7 +654,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Borrar almacenamiento USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Borrar la tarjeta SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Borra todos los datos del almacenamiento USB interno, como la música y las fotos"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Borra todos los datos de la tarjeta SD, como la música y las fotos"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Borra todos los datos del almacenamiento USB interno, como la música y las fotos"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"No disponible"</string>
<string name="read_only" msgid="6702420168629076340">" (Sólo lectura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Desmontar almacenamiento USB"</string>
@@ -732,9 +710,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Esto borrará todos los datos del "<b>"almacenamiento interno"</b>" de tu tableta, incluidos "\n\n<li>"Tu cuenta de Google"</li>\n<li>"Datos del sistema y aplicaciones y configuración"</li>\n<li>"Aplicaciones descargadas"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Esto borrará todos los datos del "<b>"almacenamiento interno"</b>" del teléfono, incluidos "\n\n<li>"Tu cuenta de Google"</li>\n<li>"Datos del sistema y aplicaciones y configuración"</li>\n<li>"Aplicaciones descargadas"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Actualmente has accedido a las siguientes cuentas:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Música"</li>\n<li>"Fotos"</li>\n<li>"Otros datos de usuario"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Para borrar la música, las imágenes y otros datos del usuario, debes borrar el "<b>"almacenamiento USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Para borrar la música, las imágenes y otros datos del usuario, debes borrar la "<b>" tarjeta SD "</b></string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Para borrar la música, las imágenes y otros datos del usuario, debes borrar el "<b>"almacenamiento USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Borrar almacenamiento USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Borrar la tarjeta SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Borrar todos los datos del almacenamiento USB, como la música o las fotos."</string>
@@ -807,9 +784,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilizar GPS asistido"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilizar el servidor para asistir el GPS (anular la selección para reducir el uso de la red)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilizar el servidor para asistir el GPS (anula la selección para mejorar el rendimiento del GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utilizar la ubicación para buscar con Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilizar la ubicación para buscar con Google y otros servicios de Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ubicación utilizada para mejorar los resultados de la búsqueda y otros servicios de Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Utilizar la ubicación para buscar con Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilizar la ubicación para buscar con Google y otros servicios de Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ubicación utilizada para mejorar los resultados de la búsqueda y otros servicios de Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Acerca del tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Acerca del teléfono"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Ver información legal, estado, versión de software del tablet"</string>
@@ -829,10 +806,10 @@
<string name="settings_safetylegal_activity_unreachable" msgid="170670055116721810">"No tienes datos de conexión. Para ver esta información ahora, visita %s desde cualquier equipo conectado a Internet."</string>
<string name="settings_safetylegal_activity_loading" msgid="8059022597639516348">"Cargando…"</string>
<string name="lockpassword_choose_your_password_header" msgid="8624900666929394990">"Elegir la contraseña"</string>
- <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Elige tu diseño"</string>
+ <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Elige tu patrón"</string>
<string name="lockpassword_choose_your_pin_header" msgid="7598849519816138302">"Elige tu PIN"</string>
<string name="lockpassword_confirm_your_password_header" msgid="6308478184889846633">"Confirmar la contraseña"</string>
- <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Confirma tu diseño"</string>
+ <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Confirma tu patrón"</string>
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"Confirmar tu PIN"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"Las contraseñas no coinciden."</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"Los PIN no coinciden."</string>
@@ -840,7 +817,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Se ha configurado la contraseña."</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Se ha configurado el PIN."</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Se ha configurado el patrón."</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloquear pantalla"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Desbloqueo de pantalla"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Cambiar patrón de desbloqueo"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Cambiar PIN de desbloqueo"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmar el patrón guardado"</string>
@@ -870,7 +847,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Siguiente"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Protección de tu tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Asegurando tu teléfono"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protege tu tableta del uso no autorizado creando un gráfico de desbloqueo de pantalla personal. Usa el dedo para unir los puntos en cualquier orden en la pantalla. Debes unir al menos cuatro puntos."\n\n"¿Listo para comenzar? Toca “Siguiente”."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protege a tu teléfono de usos no autorizados al crear un patrón de desbloqueo en la pantalla personal. "\n<font height="17">\n</font><b>"1"</b>" En la pantalla siguiente, observa cómo se extrae un patrón de ejemplo. "\n<font height="17">\n</font><b>"2"</b>" Cuando estés listo, extrae tu propio patrón de desbloqueo personal. Experimenta con diferentes patrones pero conecta al menos cuatro puntos. "\n<font height="17">\n</font><b>"3"</b>" Revisa tu patrón para confirmar. "\n<font height="17">\n</font><b>"¿Estás listo para comenzar? Toca \"Siguiente\""</b>". "\n<font height="3">\n</font>"Si deseas dejar sin protección a tu teléfono, toca \"Cancelar\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Administrar aplicaciones"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Administrar y eliminar aplicaciones instaladas"</string>
@@ -893,8 +873,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicación"</string>
<string name="data_size_label" msgid="8679376373625710107">"Datos"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Almacenamiento USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Tarjeta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Desinstalar..."</string>
<string name="disable_text" msgid="6544054052049395202">"Inhabilitar"</string>
<string name="enable_text" msgid="9217362512327828987">"Habilitar"</string>
@@ -991,15 +969,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"¿Deseas detener el servicio?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"¿Estás seguro de que deseas detener el servicio del sistema? Si lo haces, algunas funciones de tu tablet podrían dejar de ejecutarse correctamente hasta que la apagues y enciendas nuevamente."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"¿Estás seguro de que deseas detener el servicio del sistema? Si lo haces, algunas funciones de tu teléfono podrían dejar de ejecutarse correctamente hasta que lo apagues y enciendas nuevamente."</string>
- <string name="language_settings" msgid="5292716747264442359">"Idioma y entrada"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma y entrada"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"País y texto"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma y Configuración del teclado"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Configuración de idiomas"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Configuración de teclado"</string>
<string name="phone_language" msgid="1165758957501090679">"Seleccionar idioma"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Reemplazar automát."</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corregir palabras mal escritas"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Uso de mayúsculas automático"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Uso automát. de mayús."</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Escribir con mayúscula la primera letra en las oraciones"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Puntuación automática"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Configuración de teclado físico"</string>
@@ -1033,17 +1011,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Accesos directos"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Ingreso de texto"</string>
<string name="input_method" msgid="5434026103176856164">"Método de entrada"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Método de entrada actual"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selector de método de entrada"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automático"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostrar siempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Ocultar siempre"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configurar métodos de entrada"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Configuración"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Métodos de entrada activos"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Usar el idioma del sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Configuración de <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Seleccionar métodos de entrada activos"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Configuración del teclado en pantalla"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Teclado incorporado"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Configuración del teclado físico incorporada"</string>
@@ -1106,8 +1094,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi a tiempo"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi a tiempo"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalles del historial"</string>
- <string name="details_title" msgid="3792801565213935385">"Utilizar detalles"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalles de uso de la batería"</string>
<string name="details_subtitle" msgid="32593908269911734">"Utilizar detalles"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajustar el uso de energía"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Paquetes incluidos"</string>
@@ -1242,7 +1231,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Hubo un error en la negociación del servidor. Es posible que el servidor no acuerde con tu opción de encriptación. ¿Deseas revisar tu configuración de encriptación?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Agregar VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Agregar VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalles de VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Agregar <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> detalles"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1275,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Establecer y administrar Redes privadas virtuales (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(sin cambios)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(no establecido)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Almacenamiento de la credencial"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Almacenamiento de la credencial"</string>
<string name="credentials_access" msgid="4843187230913860492">"Usar credenciales seg."</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Permitir a las aplic. acceder a certificados seguros y otras cred."</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalar desde almacenamiento USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalar desde la tarjeta SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalar certificados encriptados desde el almacenamiento USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalar certificados desde la tarjeta SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Establecer contraseña"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Establecer o cambiar la contraseña para el almacenamiento de la credencial"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Borrar credenciales"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Eliminar todos los contenidos y restablecer la contraseña"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Ingresar contraseña"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Ingresar la contraseña para el almacenamiento de la credencial."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Establecer la contraseña para el almacenamiento de la credencial. Debe tener al menos 8 caracteres."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Ingresar la contraseña de almacenamiento de la credencial"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalar desde almacenamiento USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalar de la tarjeta SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instalar certificados encriptados del almacenamiento USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalar certificados encriptados de la tarjeta SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Establecer contraseña"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Establecer o cambiar la contraseña de almacenamiento de la credencial"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Borrar almacenamiento"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Borrar todo el contenido almac. en la credencial y restabl. su contraseña"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"¿Estás seguro de que deseas eliminar todas las credenciales y restablecer la contraseña de almacenamiento de la credencial?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Contraseña actual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nueva contraseña:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmar contraseña nueva:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Se eliminarán todos los contenidos, y la contraseña se restablecerá. ¿Estás seguro de eso?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Configurar una contraseña para el almacenamiento de la credencial (mínimo 8 caracteres)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Ingresa la contraseña correcta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Ingresa la contraseña correcta. Tienes una oportunidad más para ingresar la contraseña correcta antes de que el almacenamiento de la credencial se borre."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Ingresa la contraseña correcta. Tienes <xliff:g id="NUMBER">%1$d</xliff:g> oportunidades más para ingresar la contraseña correcta antes de que el almacenamiento de la credencial se borre."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Las contraseñas no coinciden."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Debes ingresar y confirmar una contraseña."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Ingresa la contraseña."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"La contraseña debe tener 8 caracteres como mínimo."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Contraseña incorrecta."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Contraseña incorrecta. Tienes una oportunidad más antes de que el almacenamiento de la credencial se borre."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Contraseña incorrecta. Tienes <xliff:g id="NUMBER">%1$d</xliff:g> oportunidades más antes de que el almacenamiento de la credencial se borre."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"El almacenamiento de la credencial se ha borrado."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"El almacenamiento de la credencial se ha borrado."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"El almacenamiento de la credencial está activado."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"El almacenamiento de la credencial está inhabilitado."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Sistema de encriptado de archivos"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Encriptar los datos privados del usuario"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Habilitar el almacenamiento del sistema de encriptado de archivos para los datos privados del usuario en este dispositivo"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Si se habilitan los sistemas de encriptado de archivos, se requiere la eliminación de datos del dispositivo."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Si se deshabilitan los sistemas de encriptado de archivos, se requiere la eliminación de datos del dispositivo."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Activar"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Desactivar"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Cancelar"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Cambio en el modo de sistemas de encriptado de archivos cancelado"</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Advertencia de los sistemas de encriptado de archivos."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tono de emergencia"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Establecer el comportamiento cuando se establece una llamada de emergencia"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacidad"</string>
@@ -1339,11 +1342,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Llamadas entrantes"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificaciones"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Comentarios"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configurar Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Conectar a una red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Conectando a una red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Conectado a una red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Agregar una red"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuración de WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"No conectado"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Agregar red"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualizar lista"</string>
@@ -1356,7 +1355,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Guardar"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancelar"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Explorando redes..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toca una red para conectarte a ella"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toca para seleccionar red"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Conectar a la red existente"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Conectar a la red no segura"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Ingresar configuración de red"</string>
@@ -1364,9 +1363,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Conectando..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Proceder con el siguiente paso"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP no es compatible"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"No puedes configurar la conexión Wi-Fi de EAP durante la instalación. Después de la instalación, puedes hacerlo en Configuraciones, en "<b>"Redes inalámbricas &"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"La conexión puede demorar unos minutos..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Tocar "<b>"Siguiente"</b>" para continuar con la instalación."\n\n"Tocar "<b>"Atrás"</b>" para conectarte a otra red Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"No puedes configurar una conexión Wi-Fi de EAP durante la instalación. Después de la instalación, puedes hacerlo en Configuraciones, en Redes inalámbricas & redes."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Ajustes de sincronización"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"En este momento la sincronización experimenta problemas. Volverá en breve."</string>
<string name="add_account_label" msgid="7811707265834013767">"Agregar cuenta"</string>
@@ -1382,32 +1379,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Sincronización desactivada"</string>
<string name="sync_error" msgid="5060969083117872149">"Error de sincronización"</string>
<string name="settings_backup" msgid="2274732978260797031">"Hacer una copia de seguridad de configuraciones"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Realizar copia de seguridad de mi configuración"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizar ahora"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancelar sincronización"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tocar para sincronizar ahora<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Calendario"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contactos"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"¡Bienvenido a Google Sync!"</font>" "\n"Un método de Google que sincroniza datos para permitir el acceso a tus contactos, citas y mucho más, desde cualquier lugar en donde estés."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Config. de sincroniz. de la aplic."</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Sincronización y datos"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Cambiar contraseña"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Configuración de la cuenta"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Eliminar cuenta"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Agregar una cuenta"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Finalizar"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Eliminar cuenta"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"¿Deseas eliminar realmente esta cuenta? Si la eliminas, se eliminarán también todos los mensajes, los contactos y otros datos de la tableta. "\n"¿Quieres continuar?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"¿Deseas eliminar realmente esta cuenta? Si la eliminas, se eliminarán también todos los mensajes, los contactos y otros datos del teléfono. "\n"¿Quieres continuar?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Algunas aplicaciones requieren esta cuenta. Solo puedes suprimirla si restableces la configuración predeterminada de fábrica en la tableta (esta acción suprime todos tus datos personales). Puedes hacerlo en la aplicación Configuración, dentro de Privacidad."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Algunas aplicaciones requieren esta cuenta. Solo puedes suprimirla si restableces la configuración predeterminada de fábrica en el teléfono (la cual suprime todos tus datos personales). Puedes hacerlo en la aplicación Configuración, dentro de Privacidad."</string>
- <string name="provider_label" msgid="7724593781904508866">"Suscripciones de inserción"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronización<xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"No se puede realizar la sincronización manual"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"La sincronización de este elemento actualmente está desactivada. Para cambiar tus preferencias, activa momentáneamente los datos de fondo y la sincronización automática."</string>
- <string name="enter_password" msgid="3268224850821675915">"Ingresar contraseña para desencriptar almacenamiento"</string>
- <string name="try_again" msgid="5904121494468643129">"Lo sentimos, vuelve a intentarlo"</string>
- <string name="service_busy" msgid="225227519012409130">"Servicio ocupado, inténtalo nuevamente"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-es/arrays.xml b/res/values-es/arrays.xml
index 9065b92..5a8c969 100644
--- a/res/values-es/arrays.xml
+++ b/res/values-es/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Aparecen algunas animaciones de ventana."</item>
<item msgid="488968798204105119">"Aparecen todas las animaciones de ventana."</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segundos"</item>
- <item msgid="8881760709354815449">"30 segundos"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minutos"</item>
- <item msgid="7489864775127957179">"5 minutos"</item>
- <item msgid="2314124409517439288">"10 minutos"</item>
- <item msgid="6864027152847611413">"30 minutos"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"inmediatamente"</item>
- <item msgid="6736512735606834431">"5 segundos"</item>
- <item msgid="8044619388267891375">"15 segundos"</item>
- <item msgid="1822002388249545488">"30 segundos"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minutos"</item>
- <item msgid="49888496216106852">"5 minutos"</item>
- <item msgid="9002737361305019353">"10 minutos"</item>
- <item msgid="4322676235684793329">"30 minutos"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Muy lenta"</item>
<item msgid="2361722960903353554">"Lenta"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excelente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Cuando la pantalla se apague"</item>
+ <item msgid="3804733751095821976">"Cuando la pantalla se apague"</item>
<item msgid="1549288661423279207">"Nunca si se está cargando la batería"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nunca"</item>
+ <item msgid="1986753720941888596">"Nunca"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automático"</item>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
index 570d7b9..9cd987e 100644
--- a/res/values-es/strings.xml
+++ b/res/values-es/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Agotada"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Sobretensión"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Error desconocido"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Nivel bajo"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Ajustes de Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Visible"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Visible durante <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> segundos..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Buscando..."</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Solicitud de sincronización de Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Solicitud de sincronización"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Seleccionar <xliff:g id="DEVICE_NAME">%1$s</xliff:g> para realizar la sincronización"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Mostrar archivos recibidos"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Mostrar lista de archivos recibidos por Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selector del dispositivo Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Solicitud de permiso de Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Una aplicación está solicitando permiso para activar la función Bluetooth. ¿Aceptas?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Una aplicación de la tableta está solicitando permiso para activar la función Bluetooth y hacer visible la tableta para otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Quieres realizar esta acción?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Una aplicación del teléfono está solicitando permiso para activar la función Bluetooth y hacer visible el teléfono para otros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. ¿Quieres realizar esta acción?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Activando Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Conexión automática"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Ajustes de fecha y hora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 p.m."</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Iniciar <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Cuenta:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Ajustes de proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Ajustes de proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Definir el proxy HTTP global y las listas de exclusión"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Borrar"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Puerto"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Cancelar"</string>
<string name="settings_label" msgid="1626402585530130914">"Ajustes"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Ajustes"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Seleccionar acceso directo de configuración"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Ajustes"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Modo avión"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Inhabilitar todas las conexiones inalámbricas"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Inhabilitando conexiones inalámbricas..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Habilitando conexiones inalámbricas..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Conexiones inalámbricas y redes"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Conexiones inalámbricas y redes"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Configuración inalámbrica y de red"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Administrar Wi-Fi, Bluetooth, modo avión, redes móviles y VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Itinerancia de datos"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Establecer conexión con servicios de datos en itinerancia"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Selección de operador"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Seleccionar un operador de red"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Fecha y hora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Establecer fecha y hora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Establecer fecha, hora, zona horaria y formatos"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Fecha y hora automáticas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Usar hora proporcionada por la red"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ordenar por zona horaria"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Fecha"</string>
<string name="time_picker_title" msgid="483460752287255019">"Hora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tiempo de espera"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloquear la pantalla <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> después de que la pantalla se haya apagado automáticamente"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloquear dispositivo tras tiempo de espera"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostrar info de propietario en pantalla de bloqueo"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info propietario"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Establecer Mi ubicación, bloqueo de pantalla, bloqueo de tarjeta SIM y bloqueo de almacenamiento de credenciales"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Establecer ubicación, bloqueo de pantalla y bloqueo de almacenamiento de credenciales"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Contraseñas"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Encriptación del dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Encriptar datos del dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Encriptar datos del dispositivo"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Requiere que el usuario establezca una contraseña o un PIN de desbloqueo para el dispositivo."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Requiere que el usuario establezca una contraseña o un PIN de desbloqueo para el dispositivo."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Encriptado"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Puedes encriptar tus cuentas, tus ajustes, las aplicaciones descargadas y sus datos, archivos multimedia y otros tipos de archivos. Una vez que hayas encriptado el teléfono, solo podrás deshacer la operación restableciendo los datos de fábrica y borrando todos los datos del teléfono."\n\n"El proceso de encriptación tarda una hora. Debes iniciar este proceso con una batería cargada y mantener el teléfono conectado hasta que finalice. Si se interrumpe el proceso de encriptación, perderás tus datos total o parcialmente."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Puedes encriptar tus cuentas, tus ajustes, las aplicaciones descargadas y sus datos, archivos multimedia y otros tipos de archivos. Una vez que hayas encriptado el teléfono, solo podrás deshacer la operación restableciendo los datos de fábrica y borrando todos los datos del teléfono."\n\n"El proceso de encriptación tarda una hora. Debes iniciar este proceso con una batería cargada y mantener el teléfono conectado hasta que finalice. Si se interrumpe el proceso de encriptación, perderás tus datos total o parcialmente."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Encriptar tableta"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Encriptar teléfono"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmar encriptación"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"¿Deseas iniciar la encriptación de datos de usuario? Este proceso puede tardar un máximo de una hora. Ten en cuenta que esta operación no se puede deshacer y que, si se interrumpe, se perderán datos."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"¿Deseas iniciar la encriptación de datos de usuario? Este proceso puede tardar un máximo de una hora. Ten en cuenta que esta operación no se puede deshacer y que, si se interrumpe, se perderán datos."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Encriptando"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Espera ^1 segundos y vuelve a intentarlo."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configurar bloqueo"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar bloqueo"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Bloqueo de la pantalla"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Bloqueo pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Cambio bloqueo pantalla"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Cambia o inhabilit seguridad contraseña, PIN o patrón"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Elige un método para bloquear la pantalla."</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Desactivar"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nunca bloquear la pantalla"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Inhabilitar protección"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Desbloqueo sin patrón, PIN ni contraseña"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"No mostrar la pantalla de bloqueo"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ninguno"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Inhabilitar desbloqueo pantalla"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Patrón"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Patrón para desbloquear la pantalla"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Patrón para desbloqueo de pantalla"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"PIN numérico para desbloquear la pantalla"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"PIN numérico para desbloquear pantalla"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Contraseña"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Contraseña para desbloquear la pantalla"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Contraseña para desbloq pantalla"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Inhabilitado por admin de dispositivo remoto"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Desactivado"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Sin protección"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Protegida con patrón"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Protegida con PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Protegida con contraseña"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Desactivar bloqueo pantalla"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Eliminar patrón de desbloqueo"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Eliminar PIN de desbloqueo"</string>
@@ -331,7 +302,7 @@
<string name="unlock_change_lock_password_title" msgid="5606298470358768865">"Cambiar contraseña de desbloqueo"</string>
<string name="lockpassword_password_too_short" msgid="7328975683669256660">"La contraseña debe contener al menos %d caracteres."</string>
<string name="lockpassword_pin_too_short" msgid="2252847623267704683">"El PIN debe contener al menos %d caracteres."</string>
- <string name="lockpassword_press_continue" msgid="122706614386757182">"Tocar Continuar al terminar"</string>
+ <string name="lockpassword_press_continue" msgid="122706614386757182">"Tocar \"Continuar\" al terminar"</string>
<string name="lockpassword_continue_label" msgid="4602203784934526940">"Continuar"</string>
<string name="lockpassword_password_too_long" msgid="7354418473281442589">"El PIN no puede tener más de %d dígitos."</string>
<string name="lockpassword_pin_too_long" msgid="6290317580664119373">"El PIN no puede tener más de %d dígitos."</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Administrador de dispositivos no permite contraseña reciente."</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Aceptar"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancelar"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancelar"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Siguiente"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administración de dispositivos"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administradores de dispositivos"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Ver o desactivar administradores de dispositivo"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Seleccionar administradores de dispositivos"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Añadir o eliminar administradores de dispositivos"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Ajustes de Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Activar Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Ajustes de Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Ajustes de Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Administrar conexiones, establecer el nombre del dispositivo y la visibilidad"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Solicitud de sincronización de Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Introduce el PIN para realizar la sincronización con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Prueba 0000 o 1234). Puede que tengas que introducir el mismo PIN en el dispositivo Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Introduce la clave de acceso para la sincronización con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Para realizar la sincronización con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", confirma que muestre la clave de acceso <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"solicita la sincronización."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Introduce \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" en \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" para realizar la sincronización y, a continuación, pulsa la tecla volver o Intro."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Sincronizar"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"No sincronizar"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositivo Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opciones…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Establecer conexión con…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimedia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Manos libres"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tableta"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transferencia"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositivo de entrada"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Anclaje a red"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del perfil de audio A2DP."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del audio manos libres."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del dispositivo de entrada."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> se desconectará del anclaje."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opciones de <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Acciones del dispositivo"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Establecer conexión"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utilizar para audio del teléfono"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Uso de la transferencia de archivos"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Usar para introducción"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utilizar para el acceso a Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Ajustes del conector"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Uso del conector para audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Como altavoz del teléfono"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Ajustes de recordatorio"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Usar Comunicación de campo cercano (NFC) para leer e intercambiar etiquetas"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Se ha producido un error."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Activar Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Ajustes de Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"No se han podido buscar redes."</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificación de red"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Informarme cuando haya una red abierta disponible"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Política de suspensión de WiFi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar cuándo cambiar de Wi-Fi a datos móviles"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Se ha producido un problema al intentar establecer la política de suspensión."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Añadir red Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Redes Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Buscar"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modificar red"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuración de red"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Introducir PIN de punto de acceso"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuración WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuración de método PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Introduce el PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> en el punto de acceso."</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Se ha iniciado el proceso WPS; puede tardar diez segundos en completarse."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Se ha producido un error al iniciar el proceso WPS. Inténtalo de nuevo."</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID de red"</string>
<string name="wifi_security" msgid="6603611185592956936">"Seguridad"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensidad de la señal"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Borrar"</string>
<string name="wifi_save" msgid="3331121567988522826">"Guardar"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancelar"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Se ha detectado otra configuración WPS. Inténtalo de nuevo en unos minutos."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avanzado"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Política de suspensión de Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar cuándo cambiar de Wi-Fi a datos móviles"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Se ha producido un problema al intentar establecer la política de suspensión."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda de frecuencia WiFi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Especificar intervalo frecuencia de funcionamiento"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Error al establecer la banda de frecuencia"</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Zona Wi-Fi portátil de <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> de <xliff:g id="NETWORK_SSID">%1$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Sonido"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Pantalla"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Pantalla"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ajustes de sonido"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Modo silencio"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Silenciar todos los sonidos, excepto el contenido multimedia y las alarmas"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Cambiar orientación automáticamente al girar el teléfono"</string>
<string name="brightness" msgid="2354961343555249270">"Brillo"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajustar el brillo de la pantalla"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tiempo de espera"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"La pantalla se apaga automáticamente después de <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>."</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Tiempo espera pantalla"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Brillo automático"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Ajustes de bloqueo de tarjeta SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Bloqueo de tarjeta SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"No disponible"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Estado"</string>
<string name="device_status" msgid="607405385799807324">"Estado"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Estado de la batería y de la red y otra información"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, número de teléfono, señal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Número de teléfono, señal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Almacenamiento"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Ajustes de almacenamiento"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Desactivar almacenamiento USB, ver almacenamiento disponible"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Desactivar tarjeta SD, ver almacenamiento disponible."</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mi número de teléfono"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mi número de teléfono"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versión de PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,25 +638,26 @@
<string name="internal_memory" msgid="9129595691484260784">"Almacenamiento interno"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Almacenamiento USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Tarjeta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponible"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calculando..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicaciones"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Multimedia"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espacio disponible"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espacio total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Uso de la aplicación"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Uso de medios"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Desactivar almacenam comp"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Desactivar tarjeta SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Desactivar almacenamiento USB interno"</string>
<string name="sd_eject_summary" product="default" msgid="3300599435073550246">"Desactivar la tarjeta SD para extraerla de forma segura"</string>
- <string name="sd_insert_summary" product="nosdcard" msgid="5264016886409577313">"Inserta USB para activar almacenamiento"</string>
+ <string name="sd_insert_summary" product="nosdcard" msgid="5264016886409577313">"Insert alm USB para activ"</string>
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Insertar una tarjeta SD para el montaje"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Activar almacenamiento USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Activar tarjeta SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Activar el almacenamiento USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Activar almacenam USB interno"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Activar tarjeta SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Borrar almacenamiento USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Borrar tarjeta SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Permite borrar los datos del almacenamiento USB interno, como música y fotos."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Borra todos los datos de la tarjeta SD como, por ejemplo, la música y las fotos."</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Permite borrar los datos del almacenamiento USB interno, como música y fotos."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"No disponible"</string>
<string name="read_only" msgid="6702420168629076340">" (Sólo lectura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Desactivar USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Se borrará toda la información del "<b>"almacenamiento interno"</b>" de la tableta, incluidos:"\n\n<li>"los datos de tu cuenta de Google,"</li>\n<li>"los datos de configuración e información de aplicaciones y del sistema,"</li>\n<li>"los datos de aplicaciones descargadas"</li>"."</string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Se borrará toda la información del "<b>"almacenamiento interno"</b>" del teléfono, incluidos:"\n\n<li>"los datos de tu cuenta de Google,"</li>\n<li>"los datos de configuración e información de aplicaciones y del sistema,"</li>\n<li>"los datos de aplicaciones descargadas"</li>"."</string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Has accedido a las cuentas que se indican a continuación:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Música"</li>\n<li>"Fotos"</li>\n<li>"Otros datos de usuario"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Si también quieres borrar la música, las imágenes y otros datos de usuario, debes borrar el "<b>"almacenamiento USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Si también quieres borrar la música, las imágenes y otros datos de usuario, debes borrar la "<b>"tarjeta SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Si también quieres borrar la música, las imágenes y otros datos de usuario, debes borrar el "<b>"almacenamiento USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Borrar almacenamiento USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Borrar tarjeta SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Borra todos los datos del almacenamiento USB interno, como la música o las fotos."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilizar GPS asistido"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilizar el servidor para asistir al GPS (desactivar para reducir el uso de la red)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilizar el servidor para asistir al GPS (desactivar para mejorar el rendimiento del GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utilizar la ubicación para la búsqueda de Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilizar la ubicación para el servicio de búsqueda y otros servicios de Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Ubicación utilizada para mejorar los resultados de búsqueda y otros servicios de Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Usar ubicación para la búsqueda de Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usar la ubicación para la búsqueda de Google y otros servicios de Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"La ubicación se usa para mejorar los resultados de búsqueda de Google y otros servicios de Google."</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Acerca de la tableta"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Acerca del teléfono"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Ver información legal, estado, versión del software"</string>
@@ -821,7 +801,7 @@
<string name="system_tutorial_list_item_title" msgid="9082844446660969729">"Tutorial del sistema"</string>
<string name="system_tutorial_list_item_summary" product="tablet" msgid="3341504384445734067">"Aprende a utilizar tu tableta"</string>
<string name="system_tutorial_list_item_summary" product="default" msgid="3861815254521030201">"Aprende a utilizar tu teléfono"</string>
- <string name="settings_license_activity_title" msgid="7553683406244228650">"Licencias de código abierto"</string>
+ <string name="settings_license_activity_title" msgid="7553683406244228650">"Licencias de sw libre"</string>
<string name="settings_license_activity_unavailable" msgid="4210539215951487627">"Se ha producido un problema al intentar cargar las licencias."</string>
<string name="settings_license_activity_loading" msgid="3337535809093591740">"Cargando..."</string>
<string name="settings_safetylegal_title" msgid="1289483965535937431">"Información de seguridad"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"La contraseña se ha establecido."</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"El PIN se ha establecido."</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"El patrón se ha establecido."</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloqueo de pantalla"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Desbloqueo de pantalla"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Cambiar patrón desbloqueo"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Cambiar PIN de desbloqueo"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmar patrón guardado"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Siguiente"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Protección de la tableta"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Protección del teléfono"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protege la tableta contra usos no autorizados mediante la creación de un patrón de desbloqueo de pantalla personal. Utiliza el dedo para unir los puntos en cualquier orden en la siguiente pantalla. Debes conectar al menos cuatro puntos."\n\n"Si estás preparado para comenzar, toca \"Siguiente\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protege el teléfono de usos no autorizados mediante la creación de un patrón de desbloqueo de pantalla personal. "\n<font height="17">\n</font><b>"1"</b>" En la siguiente pantalla, puedes observar cómo se crea un patrón de ejemplo. "\n<font height="17">\n</font><b>"2"</b>" Cuando estés preparado, crea tu propio patrón de desbloqueo personal. Puedes experimentar con distintos patrones, pero recuerda que debes conectar al menos cuatro puntos. "\n<font height="17">\n</font><b>"3"</b>" Vuelve a dibujar el patrón para confirmarlo. "\n<font height="17">\n</font><b>"Si estás preparado para comenzar, toca en \"Siguiente\""</b>". "\n<font height="3">\n</font>"Si deseas dejar tu teléfono sin protección, toca \"Cancelar\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Administrar aplicaciones"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Administrar y eliminar aplicaciones instaladas"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicación"</string>
<string name="data_size_label" msgid="8679376373625710107">"Datos"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Almacenamiento USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Tarjeta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Desinstalar"</string>
<string name="disable_text" msgid="6544054052049395202">"Inhabilitar"</string>
<string name="enable_text" msgid="9217362512327828987">"Habilitar"</string>
@@ -912,13 +893,13 @@
<string name="filter" msgid="2018011724373033887">"Filtrar"</string>
<string name="filter_dlg_title" msgid="6507663329723966854">"Seleccionar opciones de filtrado"</string>
<string name="filter_apps_all" msgid="5142129378749391876">"Todas"</string>
- <string name="filter_apps_third_party" msgid="7786348047690140979">"Descargadas"</string>
+ <string name="filter_apps_third_party" msgid="7786348047690140979">"Descargada"</string>
<string name="filter_apps_running" msgid="7767071454371350486">"En ejecución"</string>
<string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"Almacenamiento USB"</string>
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"En tarjeta SD"</string>
<string name="disabled" msgid="9206776641295849915">"Inhabilitada"</string>
<string name="no_applications" msgid="5190227407135243904">"Sin aplicaciones"</string>
- <string name="internal_storage" msgid="1584700623164275282">"Almacenamiento interno"</string>
+ <string name="internal_storage" msgid="1584700623164275282">"Almac interno"</string>
<string name="sd_card_storage" product="nosdcard" msgid="2673203150465132465">"Almacenamiento USB"</string>
<string name="sd_card_storage" product="default" msgid="7623513618171928235">"Tarjeta SD"</string>
<string name="recompute_size" msgid="7722567982831691718">"Recalculando tamaño..."</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"¿Deseas detener el servicio del sistema?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"¿Estás seguro de que deseas detener este servicio del sistema? Si lo haces, algunas funcionalidades podrían dejar de funcionar correctamente hasta que apagues la tableta y vuelvas a encenderla."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"¿Estás seguro de que deseas detener este servicio del sistema? Si lo haces, algunas utilidades podrían dejar de funcionar correctamente hasta que apagues el teléfono y vuelvas a encenderlo."</string>
- <string name="language_settings" msgid="5292716747264442359">"Idioma e introducción de texto"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma e introducción de texto"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Idioma y país"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Ajustes de teclado y de idioma"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Ajustes de idioma"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Ajustes de teclado"</string>
<string name="phone_language" msgid="1165758957501090679">"Seleccionar idioma"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Corrección automática"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corregir palabras con errores de escritura"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Mayúsculas automáticas"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Mayúsculas automáticas"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Escribir en mayúsculas la primera letra de las frases"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Puntuación automática"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Ajustes del teclado físico"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Accesos directos"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Introducción de texto"</string>
<string name="input_method" msgid="5434026103176856164">"Introducción de texto"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Método de introducción actual"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selector de método de introducción"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automáticamente"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostrar siempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Ocultar siempre"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configurar métodos de introducción"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Configuración"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Métodos de introducción activos"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Utilizar idioma del sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Ajustes de <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Selecc métodos introducción activos"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ajustes de teclado en pantalla"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Teclado integrado"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Ajustes de teclado físico integrado"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Tiempo de conexión WiFi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Tiempo de conexión WiFi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g>: <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalles de historial"</string>
- <string name="details_title" msgid="3792801565213935385">"Detalles de uso"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalles de uso de la batería"</string>
<string name="details_subtitle" msgid="32593908269911734">"Detalles de uso"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajustar uso de la batería"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Paquetes incluidos"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Error de negociación con el servidor. Es posible que el servidor no acepte tu opción de encriptación. ¿Quieres comprobar tus valores de configuración de la encriptación?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Añadir VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Añadir VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalles de red VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Añadir red VPN \"<xliff:g id="NAME">%s</xliff:g>\""</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detalles de <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Redes VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configurar y administrar redes privadas virtuales (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(sin modificar)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(sin definir)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Almacenamiento de credenciales"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Almacenamiento de credenciales"</string>
<string name="credentials_access" msgid="4843187230913860492">"Credenciales seguras"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Permitir que las aplicaciones accedan a los certificados seguros y a otras credenciales"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalar desde USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalar desde la tarjeta SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalar certificados desde almacenamiento USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalar certificados desde la tarjeta SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Establecer contraseña"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Establecer o cambiar la contraseña del almacenamiento de credenciales"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Borrar credenciales"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Eliminar todo el contenido y restablecer la contraseña"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Introducir contraseña"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Introduce la contraseña del almacenamiento de credenciales."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Establece la contraseña del almacenamiento de credenciales (debe tener un mínimo de 8 caracteres)."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Introduce la contraseña de almacenamiento de credenciales."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalar desde almac USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalar desde la tarjeta SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inst cert encr de alm USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalar certificados encriptados de tarjeta SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Establecer contraseña"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Establecer o cambiar la contraseña de almacenamiento de credenciales"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Borrar almacenamiento"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Borrar almacenamiento de credenciales de todo el contenido y restablecer su contraseña"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"¿Estás seguro de que quieres eliminar todas las credenciales y restablecer la contraseña de almacenamiento de credenciales?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Contraseña actual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Contraseña nueva:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmar contraseña nueva:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Se eliminará todo el contenido y se restablecerá la contraseña. ¿Seguro que quieres continuar?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Establece una contraseña para el almacenamiento de credenciales (ocho caracteres como mínimo)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Introduce la contraseña correcta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Introduce la contraseña correcta. Dispones de un intento más para introducir la contraseña antes de que se borre el almacenamiento de credenciales."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Introduce la contraseña correcta. Dispones de <xliff:g id="NUMBER">%1$d</xliff:g> intentos más para introducir la contraseña antes de que se borre el almacenamiento de credenciales."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Las contraseñas no coinciden."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Debes introducir una contraseña y confirmarla."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Introduce la contraseña."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"La contraseña debe tener un mínimo de ocho caracteres."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Contraseña incorrecta"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Contraseña incorrecta. Tienes una oportunidad más antes de que se borre el almacenamiento de credenciales."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Contraseña incorrecta. Tienes <xliff:g id="NUMBER">%1$d</xliff:g> oportunidades más antes de que se borre el almacenamiento de credenciales."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Almacenamiento credenciales borrado"</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Se ha borrado el almacenamiento de credenciales."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Almacenamiento de credenciales habilitado"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Almacenamiento de credenciales inhabilitado"</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Sistema de archivos encriptados"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Encriptar datos de usuario privados"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Habilitar almacenamiento de sistema de archivos encriptados para datos de usuario privados en este dispositivo"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Es necesario eliminar los datos del dispositivo para habilitar los sistemas de archivos encriptados."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Es necesario eliminar los datos del dispositivo para inhabilitar los sistemas de archivos encriptados."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Habilitar"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Inhabilitar"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Cancelar"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Se ha cancelado el cambio de modo de sistemas de archivos encriptados."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Advertencia de sistemas de archivos encriptados"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tono de emergencia"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Establecer comportamiento al realizar una llamada de emergencia"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacidad"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Llamadas entrantes"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificaciones"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Respuesta del teléfono"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configuración de Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Establecer conexión con la red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Estableciendo conexión con la red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Conectado a la red Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Añadir una red"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuración de WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Sin conexión"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Añadir red"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualizar lista"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Guardar"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancelar"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Buscando redes..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toca en una red para conectarte a ella"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tocar para seleccionar una red"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Establecer conexión con red existente"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Conectar con red no segura"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Introducir configuración de red"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Conectando..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Ir al siguiente paso"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"No se admite EAP."</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"No puedes definir una conexión Wi-Fi EAP durante la configuración, pero puedes hacerlo una vez que haya finalizado a través de Ajustes en "<b>"Configuración inalámbrica y redes"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Conectando (puede tardar unos minutos)..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Toca "<b>"Siguiente"</b>" para continuar con la configuración."\n\n"Toca "<b>"Volver"</b>" para conectarte a otra red Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"No puedes definir una conexión Wi-Fi EAP durante la configuración, pero puedes hacerlo una vez finalizada (en \"Ajustes\" > \"Configuración inalámbrica y de red\")."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Ajustes de sincronización"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"En este momento hay problemas con la sincronización. Se restablecerá en breve."</string>
<string name="add_account_label" msgid="7811707265834013767">"Añadir cuenta"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"La sincronización está desactivada."</string>
<string name="sync_error" msgid="5060969083117872149">"Error sincronización"</string>
<string name="settings_backup" msgid="2274732978260797031">"Realizar copia de seguridad de configuración"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Realizar copia de seguridad de mi configuración"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizar ahora"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancelar sincronización"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tocar para realizar la sincronización ahora<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Calendar"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contactos"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Te damos la bienvenida a Google Sync,"</font>" "\n"un servicio de Google que te permite sincronizar datos para hacer posible el acceso a tus contactos, a tus citas, etc., desde cualquier ubicación."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Ajustes de sincronización de aplicación"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Datos y sincronización"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Cambiar contraseña"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Ajustes de la cuenta"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Eliminar cuenta"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Añadir cuenta"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Finalizar"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Eliminar cuenta"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"¿Seguro que deseas eliminar esta cuenta? Si lo haces, también se eliminarán de la tableta todos los mensajes, los contactos y otros datos de la cuenta. "\n"¿Quieres continuar?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"¿Deseas eliminar realmente esta cuenta? Si la eliminas, también se borrarán del teléfono todos los mensajes, los contactos y otros datos de la cuenta. "\n"¿Quieres continuar?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Algunas aplicaciones necesitan esta cuenta. Solo puedes eliminarla restableciendo los valores predeterminados de fábrica de la tableta (esta acción elimina todos tus datos personales). Para ello, accede a Ajustes, Privacidad."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Algunas aplicaciones necesitan esta cuenta. Solo puedes eliminarla restableciendo los valores predeterminados de fábrica del teléfono (esta acción elimina todos tus datos personales). Para ello, accede a Ajustes y, después, a Privacidad."</string>
- <string name="provider_label" msgid="7724593781904508866">"Enviar suscripciones"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronizar <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"No se puede realizar la sincronización de forma manual."</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"La sincronización de este elemento no está disponible en este momento. Para modificar tu preferencia, activa temporalmente los datos de referencia y la sincronización automática."</string>
- <string name="enter_password" msgid="3268224850821675915">"Introducir contraseña para descifrar el almacenamiento"</string>
- <string name="try_again" msgid="5904121494468643129">"Inténtalo de nuevo"</string>
- <string name="service_busy" msgid="225227519012409130">"Servicio VPN ocupado. Inténtalo de nuevo."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-fa/arrays.xml b/res/values-fa/arrays.xml
index 6b511b1..7c1a012 100644
--- a/res/values-fa/arrays.xml
+++ b/res/values-fa/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"برخی از انیمیشن های پنجره نمایش داده می شوند"</item>
<item msgid="488968798204105119">"تمام انیمیشن های پنجره نمایش داده می شوند"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 ثانیه"</item>
- <item msgid="8881760709354815449">"30 ثانیه"</item>
- <item msgid="7589406073232279088">"1 دقیقه قبل"</item>
- <item msgid="7001195990902244174">"2 دقیقه"</item>
- <item msgid="7489864775127957179">"5 دقیقه"</item>
- <item msgid="2314124409517439288">"10 دقیقه"</item>
- <item msgid="6864027152847611413">"30 دقیقه"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"بلافاصله"</item>
- <item msgid="6736512735606834431">"5 ثانیه"</item>
- <item msgid="8044619388267891375">"15 ثانیه"</item>
- <item msgid="1822002388249545488">"30 ثانیه"</item>
- <item msgid="8538071621211916519">"1 دقیقه"</item>
- <item msgid="5663439580228932882">"2 دقیقه"</item>
- <item msgid="49888496216106852">"5 دقیقه"</item>
- <item msgid="9002737361305019353">"10 دقیقه"</item>
- <item msgid="4322676235684793329">"30 دقیقه"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"بسیار آهسته"</item>
<item msgid="2361722960903353554">"آهسته"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"عالی"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"هنگام خاموش شدن صفحه"</item>
+ <item msgid="3804733751095821976">"هنگام خاموش شدن صفحه"</item>
<item msgid="1549288661423279207">"هرگز در هنگام اتصال"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"هیچوقت"</item>
+ <item msgid="1986753720941888596">"هرگز"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"خودکار"</item>
diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml
index 3de37ba..5b94d2f 100644
--- a/res/values-fa/strings.xml
+++ b/res/values-fa/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"اسکن کردن"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"درخواست جفت سازی"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"درخواست جفت سازی"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"انتخاب برای جفت سازی با <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"نمایش فایل های دریافتی"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"نمایش لیستی از فایل های دریافت شده از طریق بلوتوث"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"انتخاب کننده دستگاه بلوتوث"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"درخواست مجوز بلوتوث"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"برنامه ای درخواست کرده است که بلوتوث روشن شود. می خواهید این کار را انجام دهید؟"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"برنامه ای در رایانه لوحی شما درخواست مجوز برای روشن کردن بلوتوث کرده و اینکه دستگاه شما برای دیگر دستگاه ها به مدت <xliff:g id="TIMEOUT">%1$d</xliff:g> ثانیه قابل شناسایی باشد. می خواهید این کار را انجام دهید؟"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"برنامه ای در گوشی شما درخواست مجوز برای روشن کردن بلوتوث کرده و اینکه دستگاه شما برای دیگر دستگاه ها به مدت <xliff:g id="TIMEOUT">%1$d</xliff:g> ثانیه قابل شناسایی باشد. می خواهید این کار را انجام دهید؟"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"خاموش کردن بلوتوث..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"اتصال خودکار"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"تنظیمات تاریخ و ساعت"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 بعدازظهر"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"شروع <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"حساب:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"تنظیمات پروکسی"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"تنظیمات پروکسی"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"تنظیم پروکسی HTTP جهانی و لیست های استثنا"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"پاک کردن"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"درگاه"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"در حال غیرفعال کردن اتصال های بی سیم..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"فعالسازی اتصال های بی سیم..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"شبکه و بی سیم"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"بی سیم و شبکه ها"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"تنظیمات شبکه و بی سیم"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"مدیریت Wi-Fi، بلوتوث، حالت هواپیما، شبکه های تلفن همراه و VPN ها"</string>
<string name="roaming" msgid="3596055926335478572">"رومینگ داده"</string>
<string name="roaming_enable" msgid="3737380951525303961">"اتصال به سرویس های داده هنگام رومینگ"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"انتخاب اپراتور"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"انتخاب یک اپراتور شبکه"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"تاریخ و ساعت"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"تنظیم تاریخ و زمان"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"تنظیم تاریخ، ساعت، منطقه زمانی و قالب ها"</string>
<string name="date_time_auto" msgid="7076906458515908345">"زمان و تاریخ خودکار"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"استفاده از زمان ارائه شده توسط شبکه"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"ترتیب بر اساس منطقه زمانی"</string>
<string name="date_picker_title" msgid="1338210036394128512">"تاریخ"</string>
<string name="time_picker_title" msgid="483460752287255019">"زمان"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"وقفه زمانی"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"قفل صفحه <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> بعد از اینکه صفحه به صورت خودکار خاموش می شود"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"قفل دستگاه بعد از وقفه زمانی"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"نمایش اطلاعات مالک در صفحه قفل"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"اطلاعات مالک"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"تنظیم مکان من، قفل صفحه، قفل سیم کارت، قفل محل ذخیره اطلاعات کاربری"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"تنظیم مکان من، بازگشایی قفل صفحه، قفل محل ذخیره اطلاعات کاربری"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"رمزهای ورود"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"رمزگذاری دستگاه"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"رمزگذاری داده ها در دستگاه"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"رمزگذاری داده ها در دستگاه"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"باید برای یک پین قفل گشایی یا رمز ورود برای دستگاه تنظیم کنید"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"باید برای یک پین قفل گشایی یا رمز ورود برای دستگاه تنظیم کنید"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"رمز گذاری شده"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"شما می توانید حساب های خود، تنظیمات و برنامه های کاربری دانلود شده و داده های آنها، رسانه و سایر فایل های خود را رمز گذاری کنید. هنگامی که گوشی خود را رمزگذاری می کنید، فقط با بازنشانی داده های کارخانه و پاک کردن همه داده های موجود در آن می توانید گوشی را رمزگشایی کنید."\n\n"رمزگذاری یک ساعت طول می کشد. هنگام شروع باید باتری از شارژ کامل برخوردار باشد و دوشاخه برق گوشی خود را تا پایان رمزگذاری از پریز جدا نکنید. در صورت قطع مرحله رمزگذاری، همه داده های خود یا قسمتی از آنها را از دست خواهید داد."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"شما می توانید حساب های خود، تنظیمات و برنامه های کاربری دانلود شده و داده های آنها، رسانه و سایر فایل های خود را رمز گذاری کنید. هنگامی که گوشی خود را رمزگذاری می کنید، فقط با بازنشانی داده های کارخانه و پاک کردن همه داده های موجود در آن می توانید گوشی را رمزگشایی کنید."\n\n"رمزگذاری یک ساعت طول می کشد. هنگام شروع باید باتری از شارژ کامل برخوردار باشد و دوشاخه برق گوشی خود را تا پایان رمزگذاری از پریز جدا نکنید. در صورت قطع مرحله رمزگذاری، همه داده های خود یا قسمتی از آنها را از دست خواهید داد."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"رمزگذاری رایانه لوحی شخصی"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"رمزگذاری گوشی"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"تأیید رمزگذاری"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"داده های کاربر را رمزگذاری می کنید؟ این عملیات قابل بازگشت نیست و در صورت قطع آن ممکن است داده های خود را از دست بدهید! رمزگذاری ممکن است حدود یک ساعت طول بکشد."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"داده های کاربر را رمزگذاری می کنید؟ این عملیات قابل بازگشت نیست و در صورت قطع آن ممکن است داده های خود را از دست بدهید! رمزگذاری ممکن است حدود یک ساعت طول بکشد."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"رمزگذاری"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"بعد از ^1 ثانیه دوباره امتحان کنید."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"پیکربندی قفل صفحه"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"پیکربندی قفل صفحه"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"امنیت بازگشایی قفل صفحه"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"تنظیم قفل صفحه"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"تغییر قفل صفحه"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"تغییر یا غیرفعال کردن الگو، PIN یا ایمنی رمز ورود"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"روشی برای قفل کردن صفحه نمایش انتخاب کنید"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"خاموش"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"هرگز صفحه قفل نشود"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"ناامن"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"برای باز کردن صفحه به الگو، پین یا رمز عبور نیازی نیست"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"صفحه قفل نشان داده نشود"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"هیچکدام"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"غیرفعال کردن ایمنی بازگشایی صفحه"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"الگو"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"برای باز کردن قفل صفحه یک الگو لازم است"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"الگو را بکشید تا قفل صفحه باز شود"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"پین"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"برای باز کردن قفل صفحه یک پین عددی لازم است"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"برای بازگشایی قفل صفحه، یک پین عددی وارد کنید"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"رمز ورود"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"برای باز کردن قفل صفحه یک رمز ورود لازم است"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"برای بازگشایی قفل صفحه، یک رمز ورود وارد کنید"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"از طریق سرپرست دستگاه راه دور غیرفعال شد"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"خاموش"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"ناامن"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"ایمن شده با الگو"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"محافظت شده با پین"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"ایمن شده با رمز ورود"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"خاموش کردن قفل صفحه"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"حذف الگوی بازگشایی قفل"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"حذف پین بازگشایی قفل"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"سرپرست دستگاه اجازه استفاده از رمز ورود اخیر را نمی دهد"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"تأیید"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"لغو"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"لغو"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"بعدی"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"سرپرستی دستگاه"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"سرپرست های دستگاه"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"مشاهده یا غیر فعال کردن سرپرست های دستگاه"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"تنظیمات بلوتوث"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"مدیریت اتصال ها، تنظیم نام دستگاه و قابلیت شناسایی"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"درخواست جفت سازی بلوتوث"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"کد پین را برای جفت سازی با \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" وارد کنید. (0000 یا 1234 را امتحان کنید.) ممکن است لازم باشد همین کد پین را در دستگاه بلوتوث نیز وارد کنید."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"رمز ورود را برای جفت سازی با \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" وارد کنید."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"برای جفت سازی با \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"، تأیید کنید که کلید عبور را نمایش دهد: <xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"می خواهد جفت شود."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"برای جفت سازی \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" را در \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" وارد کنید و سپس Return یا Enter را فشار دهید."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"جفت سازی"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"جفت نشود"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"دستگاه بلوتوث"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"گزینه ها…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"اتصال به..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"رسانه"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"هندزفری"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"رایانه لوحی"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"انتقال"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"دستگاه ورودی"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"اتصال به اینترنت با تلفن همراه"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"اتصال <xliff:g id="DEVICE_NAME">%1$s</xliff:g> از صدای رسانه قطع می شود."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"اتصال <xliff:g id="DEVICE_NAME">%1$s</xliff:g> از صدای هندزفری قطع می شود."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"اتصال <xliff:g id="DEVICE_NAME">%1$s</xliff:g> از دستگاه ورودی قطع می شود."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> از اتصال اینترنتی با تلفن همراه قطع می شود."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"گزینه های <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"استفاده برای تلفن صوتی"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"استفاده برای انتقال فایل"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"استفاده برای چاپ"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"استفاده برای دسترسی به اینترنت"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"تنظیمات جایگاه"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"استفاده از جایگاه برای صدا"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"به عنوان تلفن دارای بلندگو"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"اسکن کردن شبکه ها امکان پذیر نیست"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"اعلان شبکه"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"هنگام در دسترس بودن یک شبکه باز، به من اعلام شود"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"خط مشی توقف موقت عملکرد WiFi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"زمان جابجایی Wi-Fi به داده تلفن همراه را مشخص کنید"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"مشکلی در تنظیم قوانین خواب دستگاه وجود داشت."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"افزودن شبکه Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"شبکه های Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"اسکن"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"اصلاح کردن شبکه"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"تنظیم شبکه"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"پین را از نقطه دستیابی وارد کنید"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"راه اندازی WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"پیکربندی روش پین WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"پین <xliff:g id="WPS_PIN">%1$s</xliff:g> را در نقطه دستیابی وارد کنید"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS اکنون در حال انجام است و ممکن است تکمیل این مرحله مدتی طول بکشد"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS شروع نشد، لطفاً دوباره امتحان کنید."</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID شبکه"</string>
<string name="wifi_security" msgid="6603611185592956936">"امنیت"</string>
<string name="wifi_signal" msgid="5514120261628065287">"قدرت سیگنال"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"فراموش کردن"</string>
<string name="wifi_save" msgid="3331121567988522826">"ذخیره"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"لغو"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"جلسه WPS دیگری شناسایی شد، لطفاً چند دقیقه دیگر دوباره امتحان کنید"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"پیشرفته"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"سیاست توقف موقت عملکرد WiFi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"زمان جابجایی Wi-Fi به داده تلفن همراه را مشخص کنید"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"مشکلی در تنظیم قوانین خواب دستگاه وجود داشت."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"باند فرکانس Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"تعیین دامنه فرکانس عملکرد"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"مشکلی در تنظیم باند فرکانس روی داد."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> نقطه اتصال Wi-Fi قابل حمل"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"صدا"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"صفحه نمایش"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"نمایش"</string>
<string name="sound_settings" msgid="5007659014828162881">"تنظیمات صوتی"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"حالت ساکت"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"ساکت کردن تمام صداها بجز رسانه و هشدارها"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"هنگام چرخاندن تلفن، جهت به طور خودکار تغییر می کند"</string>
<string name="brightness" msgid="2354961343555249270">"روشنایی"</string>
<string name="brightness_summary" msgid="838917350127550703">"تنظیم روشنایی صفحه"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"وقفه زمانی"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"صفحه بعد از <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> به صورت خودکار خاموش می شود"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"وقفه زمانی صفحه"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"روشنایی خودکار"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"تنظیمات قفل سیم کارت"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"تنظیم قفل سیم کارت"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"موجود نیست"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"وضعیت"</string>
<string name="device_status" msgid="607405385799807324">"وضعیت"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"وضعیت باتری، شبکه و اطلاعات دیگر"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"شماره تلفن، سیگنال و سایر موارد"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"شماره تلفن، سیگنال و سایر موارد"</string>
<string name="storage_settings" msgid="4211799979832404953">"ذخیره سازی"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"تنظیمات ذخیره سازی"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"قطع اتصال حافظه USB، مشاهده حافظه موجود"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"جدا کردن کارت SD، مشاهده محل ذخیره موجود"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"شماره تلفن من"</string>
+ <string name="status_number" msgid="5123197324870153205">"شماره تلفن من"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"نسخه PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"حافظه داخلی"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"حافظه USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"کارت SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"موجود"</string>
- <string name="memory_size" msgid="5458889090691922288">"مجموع"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"در حال محاسبه..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"برنامه های کاربردی"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"رسانه"</string>
+ <string name="memory_available" msgid="418542433817289474">"فضای موجود"</string>
+ <string name="memory_size" msgid="6629067715017232195">"کل فضا"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"استفاده از برنامه"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"استفاده از رسانه"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"قطع اتصال حافظه مشترک"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"جدا کردن کارت SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"قطع اتصال حافظه USB داخلی"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"پاک کردن حافظه USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"پاک کردن کارت SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"پاک کردن همه داده های موجود در حافظه USB داخلی مانند موسیقی و عکس"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"همه داده های موجود در کارت SD مانند موسیقی و عکس ها را پاک می کند"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"پاک کردن همه داده های موجود در کارت SD مانند موسیقی و عکس"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"در دسترس نیست"</string>
<string name="read_only" msgid="6702420168629076340">" (فقط خواندنی)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"قطع اتصال حافظه USB"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"با این کار همه اطلاعات "<b>"حافظه داخلی"</b>" رایانه لوحی شما پاک می شود، از جمله:"\n\n<li>"حساب Google شما"</li>\n<li>"سیستم و داده های برنامه و تنظیمات"</li>\n<li>"برنامه های دانلود شده"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"با این کار همه اطلاعات "<b>"حافظه داخلی"</b>" گوشی شما پاک می شود، از جمله:"\n\n<li>"حساب Google شما"</li>\n<li>"سیستم و داده های برنامه و تنظیمات"</li>\n<li>"برنامه های دانلود شده"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"شما در حال حاضر به حساب های زیر وارد شده اید:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"موسیقی"</li>\n<li>"عکس ها"</li>\n<li>"سایر اطلاعات کاربر"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"برای پاک کردن موسیقی، عکس ها و سایر داده های کاربر، "<b>"حافظه USB"</b>" باید پاک شود."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n"برای پاک کردن موسیقی، تصاویر و سایر داده های کاربر، "\n"کارت SD"<b>"SD"</b>" نیز باید پاک شود."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"برای پاک کردن موسیقی، عکس ها و سایر داده های کاربر، "<b>"کارت SD"</b>" باید پاک شود."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"پاک کردن حافظه USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"پاک کردن کارت SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"همه داده های موجود در حافظه USB داخلی مانند موسیقی یا عکس ها را پاک کنید."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"استفاده از GPS کمکی"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"استفاده از سرور برای کمک به GPS (برای کاهش میزان استفاده از شبکه، علامت آن را حذف کنید)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"استفاده از سرور برای کمک به GPS (برای ارتقای عملکرد GPS، علامت آن را حذف کنید)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"استفاده از موقعیت مکانی برای جستجوی Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"استفاده از موقعیت مکانی برای جستجوی Google و سایر سرویس های Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"موقعیت مکانی مورد استفاده برای بهبود نتایج جستجوی Google و سایر سرویس های آن"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"استفاده از موقعیت مکانی برای جستجوی Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"استفاده از موقعیت مکانی برای جستجوی Google و سایر سرویس های Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"موقعیت مکانی مورد استفاده برای بهبود نتایج جستجوی Google و سایر سرویس های آن"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"درباره رایانه لوحی"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"درباره تلفن"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"مشاهده اطلاعات حقوقی، وضعیت، نسخه نرم افزار"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"رمز ورود تنظیم شد"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"پین تنظیم شد"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"الگو تنظیم شد"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"صفحه قفل"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"بازگشایی قفل صفحه"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"تغییر الگوی بازگشایی قفل"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"تغییر پین بازگشایی قفل"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"تأیید الگوی ذخیره شده"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"بعدی"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"محافظت از رایانه لوحی خود"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"حفظ امنیت تلفن شما"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"با ایجاد یک الگوی باز کردن قفل صفحه شخصی، از رایانه لوحی خود در برابر استفاده غیر مجاز محافظت کنید. با استفاده از انگشت خود، در صفحه بعدی نقاط را با ترتیب دلخواه متصل کنید. حداقل باید چهار نقطه را به هم متصل کنید."\n" "\n"آماده هستید؟ \"بعدی\" را لمس کنید."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"با ایجاد یک الگوی شخصی بازگشایی قفل صفحه، از تلفن خود در برابر استفاده های غیرمجاز محافظت کنید. "\n<font height="17">\n</font><b>"1"</b>" در صفحه بعد، هنگام طراحی یک الگوی نمونه، آن را مشاهده کنید. "\n<font height="17">\n</font><b>"2"</b>" هنگامی که آماده بودید، الگوی شخصی بازگشایی قفل خود را طراحی کنید. با الگوهای زیادی کار کنید اما حداقل چهار نقطه را به یکدیگر متصل کنید. "\n<font height="17">\n</font><b>"3"</b>" برای تأیید مجدداً، الگوی خود را بکشید. "\n<font height="17">\n</font><b>"آماده هستید شروع کنید؟ روی \"بعدی\" کلیک کنید"</b>". "\n<font height="3">\n</font>"برای اینکه تلفن بدون محافظت باشد، روی \"لغو\" کلیک کنید."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"مدیریت برنامه های کاربردی"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"مدیریت وحذف برنامه های حذف شده"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"مجموع"</string>
<string name="application_size_label" msgid="5055196275624686382">"برنامه کاربردی"</string>
<string name="data_size_label" msgid="8679376373625710107">"داده"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"حافظه USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"کارت SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"حذف نصب"</string>
<string name="disable_text" msgid="6544054052049395202">"غیرفعال کردن"</string>
<string name="enable_text" msgid="9217362512327828987">"فعال کردن"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"توقف سرویس سیستم؟"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"مطمئن هستید که می خواهید این سرویس سیستمی را متوقف کنید؟ در این صورت، برخی از ویژگی های رایانه لوحی شما ممکن است تا زمانی که گوشی را خاموش و سپس روشن کنید، به درستی کار نکنند."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"مطمئن هستید که می خواهید این سرویس سیستمی را متوقف کنید؟ در این صورت، برخی از ویژگی های گوشی شما ممکن است تا زمانی که آن را خاموش و دوباره روشن کنید، به درستی کار نکنند."</string>
- <string name="language_settings" msgid="5292716747264442359">"زبان و ورودی"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"زبان و ورودی"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"زبان و صفحه کلید"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"تنظیمات زبان و صفحه کلید"</string>
<string name="language_settings_category" msgid="2288258489940617043">"تنظیمات زبان"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"تنظیمات صفحه کلید"</string>
<string name="phone_language" msgid="1165758957501090679">"انتخاب زبان"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"میانبرها"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"ووردی متن"</string>
<string name="input_method" msgid="5434026103176856164">"روش ورودی"</string>
- <string name="current_input_method" msgid="2146807723398303917">"روش ورودی فعلی"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"انتخابگر روش ورودی"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"خودکار"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"همیشه نمایش داده شود"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"همیشه پنهان شود"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"پیکربندی روش های ورودی"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"تنظیمات"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"روش های ورودی فعال"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"استفاده از زبان سیستم"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> تنظیمات"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"انتخاب روش های ورودی فعال"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"مدیریت روش های ورودی"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"تنظیمات صفحه کلید روی صفحه"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"صفحه کلید داخلی"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"تنظیمات صفحه کلید واقعی، داخلی"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi به موقع"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi به موقع"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"اطلاعات سابقه"</string>
- <string name="details_title" msgid="3792801565213935385">"جزئیات استفاده"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"جزئیات استفاده از باتری"</string>
<string name="details_subtitle" msgid="32593908269911734">"جزئیات استفاده"</string>
<string name="controls_subtitle" msgid="390468421138288702">"تنظیم استفاده از نیرو"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"شامل بسته ها"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"ارتباط با سرور برقرار نشد. ممکن است سرور با گزینه رمزگذاری شما موافقت نکند. می خواهید تنظیمات رمزگذاری خود را بررسی کنید؟"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"افزودن VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"افزودن VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"جزئیات VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"افزودن <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"جزئیات <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPNها"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"تنظیم و مدیریت شبکه های خصوصی مجازی (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(بدون تغییر)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(تنظیم نشده)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"ذخیره اطلاعات کاربری"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"ذخیره سازی اطلاعات کاربری"</string>
<string name="credentials_access" msgid="4843187230913860492">"استفاده از اطلاعات کاربری ایمن"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"به برنامه های کاربردی اجازه می دهد به گواهی های ایمن و دیگر اطلاعات کاربری دسترسی داشته باشد."</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"نصب از حافظه USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"نصب از کارت SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"نصب گواهی ها از حافظه USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"نصب مجوزها از کارت SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"تنظیم رمز ورود"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"تنظیم یا تغییر رمز ورود برای ذخیره اطلاعات کاربری"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"پاک کردن اطلاعات کاربری"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"حذف همه محتواها و بازنشانی رمز ورود"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"رمز ورود را وارد کنید"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"رمز ورود را برای حافظه اطلاعات کاربری وارد کنید."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"رمز ورود را برای حافظه اطلاعات کاربری تنظیم کنید. این رمز ورود باید حداقل 8 نویسه داشته باشد."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"رمز ورود دستگاه ذخیره سازی اطلاعات کاربری را وارد کنید."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"نصب از حافظه USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"نصب از کارت SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"نصب مجوزهای رمزگذاری شده از حافظه USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"نصب گواهی های رمزگذاری شده از کارت SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"تنظیم رمز ورود"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"تنظیم یا تغییر رمز ورود محل ذخیره اطلاعات کاربری"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"پاک کردن محل ذخیره سازی"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"ذخیره اطلاعات کاربری تمام محتواها را پاک کرده و رمز ورود را بازنشانی کنید"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"مطمئن هستید می خواهید تمام اطلاعات کاربری را حذف کرده و رمز ورود دستگاه ذخیره سازی را بازنشانی کنید؟"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"رمز ورود فعلی:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"رمز ورود جدید:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"تأیید رمز ورود جدید:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"همه محتوا حذف می شود و رمز ورود بازنشانی می شود. آیا مطمئن هستید؟"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"یک رمز ورود را برای محل ذخیره اطلاعات کاربری تنظیم کنید (حداقل 8 نویسه)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"لطفاً رمز ورود صحیح را وارد کنید."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"لطفاً رمز ورود صحیح را وارد کنید. شما یک بار دیگر قبل از پاک شدن محل ذخیره اطلاعات کاربری می توانید رمز ورود صحیح را وارد کنید."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"لطفاً رمز ورود صحیح را وارد کنید. شما <xliff:g id="NUMBER">%1$d</xliff:g> بار دیگر قبل از پاک شدن محل ذخیره اطلاعات کاربری می توانید رمز ورود صحیح را وارد کنید."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"رمزهای ورود مطابقت ندارند."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"باید رمز ورود را وارد کرده و آن را تأیید کنید."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"لطفاً رمز ورود را وارد کنید."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"رمز ورود باید حداقل 8 نویسه داشته باشد."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"رمز ورود نادرست است."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"رمز ورود نادرست است. قبل از پاک کردن حافظه اطلاعات کاربری، یک بار دیگر می توانید رمز خود را وارد کنید."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"رمز ورود نادرست است. قبل از پاک شدن حافظه اطلاعات کاربری، <xliff:g id="NUMBER">%1$d</xliff:g> بار دیگر می توانید رمز ورود را وارد کنید."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"حافظه اطلاعات کاربری پاک شد."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"محل ذخیره اطلاعات کاربری پاک شد."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"ذخیره سازی اطلاعات کاربری فعال شد."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"ذخیره سازی اطلاعات کاربری غیرفعال شد."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"آهنگ اضطراری"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"واکنش موجود در هنگام برقراری تماس اضطراری را تنظیم کنید"</string>
<string name="privacy_settings" msgid="9206631214140954954">"رازداری"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"تماس های ورودی"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"اعلان ها"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"بازخورد"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"تنظیم Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"اتصال به شبکه Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"در حال اتصال به شبکه Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"به شبکه Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g> متصل شد"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"افزودن یک شبکه"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"تنظیم WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"متصل نیست"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"افزودن شبکه"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"تازه کردن لیست"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"ذخیره"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"لغو"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"در حال اسکن شبکه..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"لمس یک شبکه برای اتصال به آن"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"اتصال به شبکه موجود"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"اتصال به شبکه ایمن نشده"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"پیکربندی شبکه را وارد کنید"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"در حال اتصال..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"به مرحله بعدی بروید"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP پشتیبانی نمی شود"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"امکان پیکربندی اتصال EAP Wi-Fi در حین نصب وجود ندارد. پس از راه اندازی، می توانید این کار را از طریق گزینه تنظیمات، در "<b>"بی سیم و شبکه ها"</b>" انجام دهید."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"اتصال چند دقیقه طول می کشد..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"برای ادامه تنظیم، "<b>"بعدی"</b>" را لمس کنید."\n\n" برای اتصال به یک شبکه Wi-Fi دیگر، "<b>"برگشت"</b>" را لمس کنید."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"امکان پیکربندی اتصال EAP Wi-Fi در حین نصب وجود ندارد. پس از نصب می توانید این کار را از طریق گزینه تنظیمات در بی سیم و شبکه ها انجام دهید."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"همگام سازی تنظیمات"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"همگام سازی در حال حاضر دارای مشکلی است. در مدت کوتاهی تصحیح می شود."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"افزودن حساب"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"تنظیمات همگام سازی کلی"</string>
<string name="background_data" msgid="5779592891375473817">"داده های پس زمینه"</string>
<string name="background_data_summary" msgid="3630389249212620467">"برنامه ها در هر زمان می توانند داده ها را همگام کرده، ارسال و دریافت کنند"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"توجه"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"غیرفعال کردن داده های پس زمینه طول عمر باتری را بیشتر کرده و مصرف داده ها را کاهش می دهد. برخی از برنامه ها ممکن است همچنان از اتصال داده در پس زمینه استفاده کنند."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"همگام سازی خودکار"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"همگام سازی خودکار داده ها توسط برنامه ها"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"مدیریت حساب ها"</string>
<string name="sync_enabled" msgid="4551148952179416813">"همگام سازی روشن است"</string>
<string name="sync_disabled" msgid="8511659877596511991">"همگام سازی خاموش است"</string>
<string name="sync_error" msgid="5060969083117872149">"خطای همگام سازی"</string>
<string name="settings_backup" msgid="2274732978260797031">"تهیه پشتیبان از تنظیمات"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"تهیه نسخه پشتیبان از تنظیمات من"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"همگام سازی اکنون"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"لغو همگام سازی"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"لمس کنید تا اکنون همگام سازی شود<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"تقویم"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"مخاطبین"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"به همگام ساز Google خوش آمدید!"</font>" "\n"این رویکردی از Google است برای همگام سازی داده ها و ایجاد امکان دسترسی به مخاطبین، قرارها و موارد بیشتر از هر کجا که هستید."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"تنظیمات همگام سازی برنامه کاربردی"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"داده و همگام سازی"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"تغییر رمز ورود"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"تنظیمات حساب"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"حذف حساب"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"افزودن یک حساب"</string>
- <string name="finish_button_label" msgid="481587707657751116">"پایان"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"حذف حساب"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"آیا واقعاً میخواهید این حساب را حذف کنید؟ با حذف این حساب کلیه پیام های آن، مخاطبین، و دیگر داده ها از رایانه لوحی حذف می شود. "\n"ادامه می دهید؟"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"آیا واقعاً میخواهید این حساب را حذف کنید؟ با حذف این حساب کلیه پیام های آن، مخاطبین، و دیگر داده ها از گوشی حذف می شود. "\n"ادامه می دهید؟"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"برخی از برنامه ها به این حساب نیاز دارند. شما تنها با بازنشانی رایانه لوحی به موارد پیش فرض کارخانه می توانید آن را حذف کنید (که در این صورت تمام اطلاعات شخصی نیز حذف می شود). این کار را در برنامه تنظیمات در قسمت حریم خصوصی می توانید انجام دهید."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"برخی از برنامه ها به این حساب نیاز دارند. شما تنها با تنظیم مجدد گوشی به موارد پیش فرض کارخانه می توانید آن را حذف کنید (که در این صورت تمام اطلاعات شخصی نیز حذف می شود). این کار را در برنامه تنظیمات در قسمت حریم خصوصی می توانید انجام دهید."</string>
- <string name="provider_label" msgid="7724593781904508866">"اشتراک در پیام های سرویس"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"همگام سازی <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"نمی توان بصورت دستی همگام سازی کرد"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"همگام سازی برای این مورد در حال حاضر غیرفعال است. برای تغییر تنظیمات برگزیده خود، داده پس زمینه و همگام سازی خودکار را موقتاً روشن کنید."</string>
- <string name="enter_password" msgid="3268224850821675915">"برای رمزگشایی حافظه رمز ورود را وارد کنید"</string>
- <string name="try_again" msgid="5904121494468643129">"متأسفیم، دوباره امتحان کنید"</string>
- <string name="service_busy" msgid="225227519012409130">"سرویس مشغول است، دوباره امتحان کنید"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-fi/arrays.xml b/res/values-fi/arrays.xml
index 5984e23..d7d23f1 100644
--- a/res/values-fi/arrays.xml
+++ b/res/values-fi/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Joitakin ikkuna-animaatioita näytetään"</item>
<item msgid="488968798204105119">"Kaikki ikkuna-animaatiot näytetään"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekuntia"</item>
- <item msgid="8881760709354815449">"30 sekuntia"</item>
- <item msgid="7589406073232279088">"1 minuutti"</item>
- <item msgid="7001195990902244174">"2 minuuttia"</item>
- <item msgid="7489864775127957179">"5 minuuttia"</item>
- <item msgid="2314124409517439288">"10 minuuttia"</item>
- <item msgid="6864027152847611413">"30 minuuttia"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"heti"</item>
- <item msgid="6736512735606834431">"5 sekuntia"</item>
- <item msgid="8044619388267891375">"15 sekuntia"</item>
- <item msgid="1822002388249545488">"30 sekuntia"</item>
- <item msgid="8538071621211916519">"1 minuutti"</item>
- <item msgid="5663439580228932882">"2 minuuttia"</item>
- <item msgid="49888496216106852">"5 minuuttia"</item>
- <item msgid="9002737361305019353">"10 minuuttia"</item>
- <item msgid="4322676235684793329">"30 minuuttia"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Hyvin hidas"</item>
<item msgid="2361722960903353554">"Hidas"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Erinomainen"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Kun näyttö sammuu"</item>
+ <item msgid="3804733751095821976">"Kun näyttö sammuu"</item>
<item msgid="1549288661423279207">"Ei koskaan, kun laturi on kytketty"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Ei koskaan"</item>
+ <item msgid="1986753720941888596">"Ei koskaan"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automaattinen"</item>
diff --git a/res/values-fi/strings.xml b/res/values-fi/strings.xml
index 85f323d..b662914 100644
--- a/res/values-fi/strings.xml
+++ b/res/values-fi/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Etsitään"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth-laiteparipyyntö"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Laiteparinmuodostuspyyntö"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Muodostetaan laitepari laitteeseen <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Näytä vastaanotetut tiedostot"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Näytä Bluetoothin kautta vastaanotetut tiedostot"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth-laitevalitsin"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth-yhteyspyyntö"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Sovellus pyytää lupaa ottaa Bluetooth-yhteys käyttöön. Haluatko myöntää luvan?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Tablet-laitteesi sovellus pyytää lupaa ottaa Bluetooth-yhteys käyttöön ja asettaa tablet-laite muiden Bluetooth-laitteiden löydettäviin <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunnin ajaksi. Haluatko myöntää luvan?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Puhelimesi sovellus pyytää lupaa ottaa Bluetooth-yhteyden käyttöön ja asettaa puhelimesi muiden Bluetooth-laitteiden tunnistettavaksi <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunnin ajaksi. Haluatko myöntää luvan?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Otetaan Bluetooth-yhteys käyttöön…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Yhdistä automaattisesti"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Päivämäärä- ja aika-asetukset"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1.00 ip"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13.00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Käynnistä <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Tili:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Välityspalvelimen asetukset"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Välityspalvelimen asetukset"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Aseta yleinen HTTP-välityspalvelin ja poissulkemisluettelot"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Tyhjennä"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Portti"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Poistetaan langattomia yhteyksiä käytöstä..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Otetaan langattomia yhteyksiä käyttöön..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Langaton verkko ja verkot"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Langaton verkko ja verkot"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Langaton verkko- ja verkkoasetukset"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Hallinnoi wifi- ja Bluetooth-yhteyksiä, lentokonetilaa ja mobiili- ja VPN-verkkoja"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming-tiedonsiirto"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Yhdistä verkkoon roaming-tilassa"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Operaattorin valinta"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Valitse verkko-operaattori"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Päivämäärä ja aika"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Aseta päivämäärä ja aika"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Aseta päivämäärä, aika, aikavyöhyke ja muodot"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automaattinen päivä ja aika"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Käytä verkon määrittämää aikaa"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Lajittelu aikavyöhykkeen mukaan"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Päiväys"</string>
<string name="time_picker_title" msgid="483460752287255019">"Aika"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Aikaraja"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Lukitse ruutu <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> ruudun automaattisen sulkeutumisen jälkeen"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Lukitse laite aikarajan jälkeen"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Näytä omistajan tiedot lukitusruudulla"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Omistajan tiedot"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Aseta Oma sijainti, näytön lukituksen poisto, SIM-kortin lukitus, käyttöoikeustietojen tallennustilan lukitus"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Aseta Oma sijainti, näytön lukituksen poisto, käyttöoikeustietojen tallennustilan lukitus"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Salasanat"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Laitteen salaus"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Salaa laitteen tiedot"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Salaa laitteen tiedot"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Anna laitteen lukituksenpoisto-PIN-koodi tai -salasana"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Anna laitteen lukituksenpoisto-PIN-koodi tai -salasana"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Salattu"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Voit salata tilisi, asetuksesi, ladatut sovelluksesi ja niiden tiedot, media- ja muut tiedostot. Tablet-laitteesi salaamisen jälkeen voit purkaa salauksen vain palauttamalla tehtaan oletusasetukset, jolloin kaikki puhelimesi tiedot poistetaan."\n\n"Salaus kestää korkeintaan tunnin. Se tulee aloittaa täydellä akulla ja puhelin täytyy pitää kytkettynä laturiin kunnes salaus on valmis. Jos keskeytät salausprosessin, menetät tallentamasi tiedot osittain tai kokonaan."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Voit salata tilisi, asetuksesi, ladatut sovelluksesi ja niiden tiedot, media- ja muut tiedostot. Tablet-laitteesi salaamisen jälkeen voit purkaa salauksen vain palauttamalla tehtaan oletusasetukset, jolloin kaikki puhelimesi tiedot poistetaan."\n\n"Salaus kestää korkeintaan tunnin. Se tulee aloittaa täydellä akulla ja puhelin täytyy pitää kytkettynä laturiin kunnes salaus on valmis. Jos keskeytät salausprosessin, menetät tallentamasi tiedot osittain tai kokonaan."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Salaa tablet-laite"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Salaa puhelin"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Vahvista salaus"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Salataanko käyttäjän tiedot? Tätä toimintoa ei voi peruuttaa eikä keskeyttää ilman tietojen menetystä. Salaus voi kestää korkeintaan tunnin."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Salataanko käyttäjän tiedot? Tätä toimintoa ei voi peruuttaa eikä keskeyttää ilman tietojen menetystä. Salaus voi kestää korkeintaan tunnin."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Salaus käynnissä"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Yritä uudelleen ^1 sekunnin kuluttua."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Määritä ruudun lukitus"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Määritä ruudunlukitus"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Näytön lukituksen poiston suojaus"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ota näytön lukitus käyttöön"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Vaihda näytön lukitus"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Vaihda tai poista käytöstä kuvio-, PIN-koodi- tai salasanasuojaus"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Valitse ruudunlukitustapa"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Pois käytöstä"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Älä lukitse ruutua"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Suojaamaton"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Ei kuviota, PIN-koodia tai salasanaa ruudun avaamiseen"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Älä näytä lukitusruutua"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ei mitään"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Poista näytön lukituksen poiston suojaus"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Kuvio"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Vaadi kuvio ruudun avaamiseen"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Poista näytön lukitus piirtämällä kuvio"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN-koodi"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Vaadi PIN-koodi ruudun avaamiseen"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Poista näytön lukitus antamalla PIN-koodi"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Salasana"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Vaadi salasana ruudun avaamiseen"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Poista näytön lukitus antamalla salasana"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Laitteen etäylläpitäjä poisti toiminnon käytöstä"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Ei käytössä"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Suojaamaton"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Suojattu kuviolla"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"PIN-suojattu"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Suojattu salasanalla"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Poista näytön lukitus käytöstä"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Poista lukituksenpoistokuvio"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Poista lukituksen poistoon käytettävä PIN-koodi"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Laitteen ylläpitäjä ei salli viimeaik. salasanan käyttöä"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Peruuta"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Peruuta"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Seuraava"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Laitteen järjestelmänvalvonta"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Laitteen ylläpitäjät"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Näytä tai poista käytöstä laitteen ylläpitäjiä"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth-asetukset"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Hallinnoi yhteyksiä, aseta laitteen nimi ja tunnistettavuus"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth-laiteparipyyntö"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Anna PIN-koodi muodostaaksesi parin laitteen <xliff:g id="DEVICE_NAME">%1$s</xliff:g> kanssa. (Kokeile koodeja 0000 tai 1234.) Saatat joutua antamaan saman PIN-koodin Bluetooth-laitteeseen."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Anna avain muodostaaksesi laiteparin laitteen <xliff:g id="DEVICE_NAME">%1$s</xliff:g> kanssa."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Jos haluat muodostaa laiteparin laitteen <xliff:g id="DEVICE_NAME">%1$s</xliff:g> kanssa, vahvista, että se esittää todentamisavaimen <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" haluaa muodostaa laitepariyhteyden."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Kirjoita <xliff:g id="PASSKEY">%2$s</xliff:g> laitteeseen <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ja paina enter muodostaaksesi parin."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Muodosta laitepari"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Älä muodosta laiteparia"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-laite"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Asetukset…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Yhdistä profiiliin..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Siirrä"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Syöttölaite"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Jaettu yhteys"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> irrotetaan median äänentoistosta."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> irrotetaan handsfree-äänentoistosta."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> irrotetaan syöttölaitteesta."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> irrotetaan jaetusta yhteydestä."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>-asetukset"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Käytä puhelimen äänille"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Käytä tiedostojen siirtoon"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Käytä syöttöön"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Käytä internetyhteyteen"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Telakointiasetukset"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Käytä telakointia äänelle"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Kaiuttimena"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Verkkojen etsintä epäonnistui"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Verkkoilmoitus"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Ilmoita, kun avoin verkko on käytettävissä"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wifi-yhteyden virransäästötilakäytäntö"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Määritä, milloin vaihdetaan wifi-yhteydestä mobiiliverkkoyhteyteen"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Ongelma virransäästötilakäytännön asettamisessa."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Lisää wifi-verkko"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wifi-verkot"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Etsi"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Muokkaa verkkoa"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Verkon asetukset"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Anna pin-koodi tukiasemasta"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS-asetukset"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS:n pin-koodin tavan määritykset"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Anna pin-koodi <xliff:g id="WPS_PIN">%1$s</xliff:g> tukiasemassa"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS on jo käynnissä. Sen valmistuminen voi kestää kymmeniä sekunteja."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS:n käynnistys epäonnistui, yritä uudelleen"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Verkon SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Suojaus"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signaalin vahvuus"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Unohda"</string>
<string name="wifi_save" msgid="3331121567988522826">"Tallenna"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Peruuta"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Toinen WPS-käyttökerta havaittu, yritä uudelleen muutaman minuutin kuluttua"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Lisäasetukset"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wifi-yhteyden virransäästötilakäytäntö"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Määritä, milloin vaihdetaan wifi-yhteydestä mobiiliverkkoyhteyteen"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Ongelma virransäästötilakäytännön asettamisessa."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wifi-taajuusalue"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Määritä toiminnan taajuusalue"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Ongelma taajuusalueen asettamisessa."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> kannettava wifi-yhteyspiste"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Ääni"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Ruutu"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Näyttö"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ääniasetukset"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Äänetön tila"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Hiljennä kaikki äänet paitsi media ja hälytykset"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Vaihda suuntaa automaattisesti, kun puhelinta käännetään"</string>
<string name="brightness" msgid="2354961343555249270">"Kirkkaus"</string>
<string name="brightness_summary" msgid="838917350127550703">"Säädä näytön kirkkautta"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Aikaraja"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Ruutu sammuu automaattisesti <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> kuluttua"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Näytön sammuminen"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automaattinen kirkkaus"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM-kortin lukitusasetukset"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Ota SIM-kortin lukitus käyttöön"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Ei käytettävissä"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Tila"</string>
<string name="device_status" msgid="607405385799807324">"Tila"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Akun ja verkon tila ja muita tietoja"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, puhelinnumero, signaali jne."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Puhelinnumero, signaali jne."</string>
<string name="storage_settings" msgid="4211799979832404953">"Tallentaminen"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Tallennusasetukset"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Poista USB-tila käytöstä, katso käytettävissä oleva tallennustila"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Poista SD-kortti käytöstä, näytä käytettävissä oleva tallennustila"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Oma puhelinnumero"</string>
+ <string name="status_number" msgid="5123197324870153205">"Oma puhelinnumero"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-versio"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Sisäinen tallennustila"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-tallennustila"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-kortti"</string>
- <string name="memory_available" msgid="5052397223077021181">"Käytettävissä"</string>
- <string name="memory_size" msgid="5458889090691922288">"Yhteensä"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Lasketaan…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Sovellukset"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Käytettävissä oleva tila"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Tallennustilaa yhteensä"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Sovellusten käyttö"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Median käyttö"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Poista jaettu tila käyt."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Poista SD-kortti käytöstä"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Poista sis. USB-tila käytöstä"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Kaikki tablet-laitteesi "<b>"sisäisen tallennustilan"</b>" tiedot poistetaan. Näihin kuuluvat "\n\n<li>"Google-tilisi"</li>\n<li>"järjestelmä- ja sovellustiedot ja -asetukset"</li>\n<li>"ladatut sovellukset"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Kaikki puhelimesi "<b>"sisäisen tallennustilan"</b>" tiedot poistetaan. Näihin kuuluvat "\n\n<li>"Google-tilisi"</li>\n<li>"järjestelmä- ja sovellustiedot ja -asetukset"</li>\n<li>"ladatut sovellukset"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Olet kirjautunut sisään seuraaviin tileihin:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musiikki"</li>\n<li>"Valokuvat"</li>\n<li>"Muut käyttäjän tiedot"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Jos haluat poistaa myös musiikin, kuvat ja muuta käyttäjän tiedot, "<b>"USB-tallennustila"</b>" tulee tyhjentää."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Jos haluat poistaa myös musiikin, kuvat ja muut käyttäjän tiedot, "<b>"SD-kortti"</b>" tulee tyhjentää."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Jos haluat poistaa myös musiikin, kuvat ja muuta käyttäjän tiedot, "<b>"SD-kortti"</b>" tulee tyhjentää."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Tyhjennä USB-tallennustila"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Tyhjennä SD-kortti"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Poista kaikki sisäisen USB-tallennustilan tiedot kuten musiikki tai valokuvat."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Käytä avustettua GPS:ää"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Käytä palvelinta GPS:n apuna (poista valinta vähentääksesi verkon käyttöä)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Käytä palvelinta GPS:n apuna (poista valinta parantaaksesi GPS:n tehokkuutta)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Käytä sijaintia Google-hakuun"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Käytä sijaintia Google-hakutuloksissa ja muissa Googlen palveluissa"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Sijaintia käytetään Google-hakutuloksien ja muiden Googlen palveluiden parantamiseen"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Käytä sijaintia Google-hakuun"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Käytä sijaintia Google-hakutuloksissa ja muissa Googlen palveluissa"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Sijaintia käytetään Google-hakutuloksien ja muiden Googlen palveluiden parantamiseen"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Tietoja tablet-laitteesta"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Tietoja puhelimesta"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Näytä lakitiedot, tila, ohjelmiston versio"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Salasana on asetettu"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN-koodi asetettu"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Kuvio on asetettu"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Lukitse ruutu"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Näytön lukituksen poisto"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Vaihda lukituksenpoistokuvio"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Muuta lukituksen poistoon tarvittava PIN-koodi"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Vahvista tallennettu kuvio"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Seuraava"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Tablet-laitteen suojaaminen"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Puhelimen suojaaminen"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Suojaa tablet-laitetta luvattomalta käytöltä luomalla henkilökohtainen ruudun lukituksenpoistokuvio. Yhdistä seuraavassa ruudussa olevat pisteet sormellasi haluamassasi järjestyksessä. Yhdistä vähintään 4 pistettä."\n\n"Valmis? Kosketa Seuraava."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Suojaa puhelintasi luvattomalta käytöltä luomalla henkilökohtainen näytön lukituksenpoistokuvio. "\n<font height="17">\n</font><b>"1"</b>" Katso seuraavalla sivulla, kun piirrämme esimerkkikuvion. "\n<font height="17">\n</font><b>"2"</b>" Kun olet valmis, voit piirtää oman lukituksenpoistokuviosi. Kokeile eri kuvioita mutta yhdistä vähintään neljä pistettä. "\n<font height="17">\n</font><b>"3"</b>" Vahvista kuvio piirtämällä se uudelleen. "\n<font height="17">\n</font><b>"Oletko valmis? Kosketa Seuraava"</b>". "\n<font height="3">\n</font>"Jos haluat jättää puhelimesi suojaamatta, kosketa Peruuta."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Hallinnoi sovelluksia"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Hallinnoi ja poista asennettuja sovelluksia"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Yhteensä"</string>
<string name="application_size_label" msgid="5055196275624686382">"Sovellus"</string>
<string name="data_size_label" msgid="8679376373625710107">"Tiedot"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-tallennustila"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kortti"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Poista"</string>
<string name="disable_text" msgid="6544054052049395202">"Poista käytöstä"</string>
<string name="enable_text" msgid="9217362512327828987">"Ota käyttöön"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Pysäytetäänkö järjestelmäpalvelu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Haluatko varmasti pysäyttää tämän järjestelmän palvelun? Jos pysäytät palvelun, jotkut tablet-laitteen toiminnot eivät välttämättä enää toimi oikein kunnes sammutat laitteen ja käynnistät sen uudelleen."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Haluatko varmasti pysäyttää tämän järjestelmän palvelun? Jos pysäytät palvelun, jotkut puhelimen toiminnot eivät välttämättä enää toimi oikein, kunnes sammutat puhelimen ja käynnistät sen uudelleen."</string>
- <string name="language_settings" msgid="5292716747264442359">"Kieli ja syöttötapa"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Kieli ja syöttötapa"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Kieli ja teksti"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Kieli- ja näppäimistöasetukset"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Kieliasetukset"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Näppäimistön asetukset"</string>
<string name="phone_language" msgid="1165758957501090679">"Valitse kieli"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Pikakuvakkeet"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Tekstisyöttö"</string>
<string name="input_method" msgid="5434026103176856164">"Syöttötapa"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Nykyinen syöttötapa"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Syöttötavan valinta"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automaattinen"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Näytä aina"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Piilota aina"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Määritä syöttötavat"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Asetukset"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktiiviset syöttötavat"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Käytä järjestelmän kieltä"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g>-asetukset"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Valitse aktiiviset syöttötavat"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Hallinnoi syöttötapoja"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Näyttönäppäimistön asetukset"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Sisäinen näppäimistö"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Sisäisen näppäimistön asetukset"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wifi ajoissa"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wifi ajoissa"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Historiatiedot"</string>
- <string name="details_title" msgid="3792801565213935385">"Käyttötiedot"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Akun käyttötiedot"</string>
<string name="details_subtitle" msgid="32593908269911734">"Käyttötiedot"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Säädä virrankäyttöä"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Sisältyvät paketit"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Palvelinyhteyttä ei muodostettu. Palvelin ei välttämättä hyväksy salausvalintaasi. Haluatko tarkistaa salausasetuksesi?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Lisää VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Lisää VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN-tiedot"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Lisää <xliff:g id="NAME">%s</xliff:g>-VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g>-tiedot"</string>
<string name="vpns" msgid="3148141862835492816">"VPN-yhteydet"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Ota käyttöön ja hallinnoi virtuaalisia yksityisverkkoja (VPN)."</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(ei muutettu)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ei asetettu)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Käyttöoikeustietojen tallennus"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Käyttöoikeustietojen tallennus"</string>
<string name="credentials_access" msgid="4843187230913860492">"Käytä suojattuja käyttöoikeustietoja"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Anna sovelluksien käyttää suojattuja varmenteita ja muita käyttöoikeustietoja"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Asenna USB-tilasta"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Asenna SD-kortilta"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Asenna varmenteet USB-tilasta"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Asenna varmenteet SD-kortilta"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Aseta salasana"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Aseta käyttöoikeustietojen tallennustilan salasana tai vaihda salasanaa"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Tyhjennä käyttöoikeustiedot"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Poista kaikki sisältö ja nollaa salasana"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Anna salasana"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Anna käyttöoikeustietojen tallennustilan salasana."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Aseta salasana käyttöoikeustietojen tallennustilalle. Salasanassa on oltava vähintään 8 merkkiä."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Anna käyttöoikeustietojen tallennustilan salasana."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Asenna USB-tilasta"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Asenna SD-kortilta"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Asenna salatut varmenteet USB-tilasta"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Asenna salatut varmenteet SD-kortilta"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Aseta salasana"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Aseta tai muuta käyttöoikeustietojen tallennustilan salasana"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Tyhjennä tallennustila"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Tyhjennä käyttöoikeustietojen tallennustila kokonaan ja palauta sen salasana"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Haluatko varmasti poistaa kaikki käyttöoikeustiedot ja palauttaa käyttöoikeustietojen salasanan?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Nykyinen salasana:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Uusi salasana:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Vahvista uusi salasana:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Kaikki sisältö poistetaan ja salasana nollataan. Haluatko jatkaa?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Aseta salasana käyttöoikeustietojen tallennukselle (vähintään 8 merkkiä)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Anna oikea salasana."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Anna oikea salasana. Voit yrittää antaa oikean salasanan vielä yhden kerran, ennen kuin tallennetut käyttöoikeustiedot tyhjennetään."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Anna oikea salasana. Voit yrittää antaa oikean salasanan vielä <xliff:g id="NUMBER">%1$d</xliff:g> kertaa, ennen kuin tallennetut käyttöoikeustiedot tyhjennetään."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Salasanat eivät täsmää."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Anna ja vahvista salasana."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Anna salasana."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Salasanassa täytyy olla vähintään 8 merkkiä."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Virheellinen salasana."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Väärä salasana. Yksi yritys jäljellä, ennen kuin käyttöoikeustietojen tallennustila tyhjennetään."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Väärä salasana. Jäljellä <xliff:g id="NUMBER">%1$d</xliff:g> yritystä, ennen kuin käyttöoikeustietojen tallennustila tyhjennetään."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Käyttöoikeustietojen tallennustila on tyhjennetty."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Käyttöoikeustietojen tallennustila on tyhjennetty."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Käyttöoikeustietojen tallentaminen on käytössä."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Käyttöoikeustietojen tallentaminen on pois käytöstä."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Hätäpuhelun ääni"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Aseta toiminta hätäpuhelun tapauksessa"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Tietosuoja"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Saapuvat puhelut"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Ilmoitukset"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Palaute"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wifi-asetukset"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Yhdistä wifi-verkkoon <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Yhdistetään wifi-verkkoon <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Yhdistetty wifi-verkkoon <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Lisää verkko"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Wifi-asetukset"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Ei yhdistetty"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Lisää verkko"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Päivitä luettelo"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Tallenna"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Peruuta"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Haetaan verkkoja..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Yhdistä verkkoon koskettamalla sitä"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Yhdistä olemassa olevaan verkkoon"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Yhdistä suojaamattomaan verkkoon"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Anna verkon määritykset"</string>
@@ -1364,9 +1370,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Yhdistetään..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Siirry seuraavaan vaiheeseen"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP:tä ei tueta"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Et voi määrittää EAP wifi -yhteyttä asennuksen aikana. Asennuksen jälkeen voit suorittaa määrityksen Asetusten kohdassa "<b>"Langaton verkko ja verkot"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Yhteyden muodostaminen voi kestää muutaman minuutin..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Jatka asetuksien määrittämistä koskettamalla "<b>"Seuraava"</b>"."\n\n"Muodosta yhteys eri wifi-verkkoon koskettamalla "<b>"Takaisin"</b>"."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Et voi määrittää EAP wifi -yhteyttä asennuksen aikana. Asennuksen jälkeen voit suorittaa määrityksen Asetusten kohdassa Langaton verkko ja verkot."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synkronointiasetukset"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Synkronoinnissa on tällä hetkellä ongelmia. Palvelu palaa käyttöön hetken kuluttua."</string>
<string name="add_account_label" msgid="7811707265834013767">"Lisää tili"</string>
@@ -1382,32 +1386,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synkronointi ei käyt."</string>
<string name="sync_error" msgid="5060969083117872149">"Synkronointivirhe"</string>
<string name="settings_backup" msgid="2274732978260797031">"Varmuuskopioi asetukset"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Varmuuskopioi asetukseni"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synkronoi nyt"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Peruuta synkronointi"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Kosketa ja synkronoi nyt<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Kalenteri"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Yhteyshenkilöt"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Tervetuloa käyttämään Google Sync -palvelua!"</font>" "\n"Se on Googlen tapa synkronoida tietoja, ja sen avulla voit käyttää yhteystietojasi, tapaamisiasi ynnä muuta mistä tahansa."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Sovelluksen synkronointiasetukset"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Tiedot ja synkronointi"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Vaihda salasana"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Tilin asetukset"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Poista tili"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Lisää tili"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Valmis"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Poista tili"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Haluatko varmasti poistaa tämän tilin? Poistamalla tilin poistat myös kaikki sen viestit, yhteystiedot ja muut tiedot tablet-laitteelta. "\n"Jatketaanko?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Haluatko varmasti poistaa tämän tilin? Poistamalla tilin poistat myös kaikki sen viestit, yhteystiedot ja muut tiedot puhelimesta. "\n"Jatketaanko?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Jotkut sovellukset käyttävät tätä tiliä. Voit poistaa sen vain palauttamalla tablet-laitteen tehdasasetukset. Tällöin kaikki henkilökohtaiset tietosi poistetaan. Voit palauttaa tehdasasetukset Asetukset-sovelluksen Tietosuoja-kohdassa."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Jotkut sovellukset käyttävät tätä tiliä. Voit poistaa sen vain palauttamalla puhelimen tehdasasetukset. Tällöin kaikki henkilökohtaiset tietosi poistetaan. Voit palauttaa tehdasasetukset Asetukset-sovelluksen Tietosuoja-kohdassa."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push-tilaukset"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synkronoi <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Manuaalinen synkronointi epäonnistui"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Tämän kohteen synkronointi on tällä hetkellä pois käytöstä. Voit muuttaa asetuksia ottamalla taustatiedot ja automaattisen synkronoinnin väliaikaisesti käyttöön."</string>
- <string name="enter_password" msgid="3268224850821675915">"Poista tallennustilan salaus antamalla salasana"</string>
- <string name="try_again" msgid="5904121494468643129">"Yritä uudelleen"</string>
- <string name="service_busy" msgid="225227519012409130">"Palvelu varattu, yritä uudelleen"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-fr/arrays.xml b/res/values-fr/arrays.xml
index 02100e7..6e5e867 100644
--- a/res/values-fr/arrays.xml
+++ b/res/values-fr/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Certaines animations sont affichées."</item>
<item msgid="488968798204105119">"Toutes les animations sont affichées"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 secondes"</item>
- <item msgid="8881760709354815449">"30 secondes"</item>
- <item msgid="7589406073232279088">"1 minute"</item>
- <item msgid="7001195990902244174">"2 minutes"</item>
- <item msgid="7489864775127957179">"5 minutes"</item>
- <item msgid="2314124409517439288">"10 minutes"</item>
- <item msgid="6864027152847611413">"30 minutes"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"immédiatement"</item>
- <item msgid="6736512735606834431">"5 secondes"</item>
- <item msgid="8044619388267891375">"15 secondes"</item>
- <item msgid="1822002388249545488">"30 secondes"</item>
- <item msgid="8538071621211916519">"1 minute"</item>
- <item msgid="5663439580228932882">"2 minutes"</item>
- <item msgid="49888496216106852">"5 minutes"</item>
- <item msgid="9002737361305019353">"10 minutes"</item>
- <item msgid="4322676235684793329">"30 minutes"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Très lente"</item>
<item msgid="2361722960903353554">"Lente"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excellente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Lorsque l\'écran s\'éteint"</item>
+ <item msgid="3804733751095821976">"Lorsque l\'écran s\'éteint"</item>
<item msgid="1549288661423279207">"Jamais si branché"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Jamais"</item>
+ <item msgid="1986753720941888596">"Jamais"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatique"</item>
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
index 4fe626d..f2015c0 100644
--- a/res/values-fr/strings.xml
+++ b/res/values-fr/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Vide"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Voltage dépassé"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Erreur inconnue"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Peu populaire"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Identifiable"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Identifiable pendant <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> secondes..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Recherche"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Demande d\'association Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Demande d\'association"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Sélectionner pour associer à <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Afficher les fichiers reçus"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Afficher la liste des fichiers reçus via Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Sélecteur de périphérique Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Demande d\'autorisation Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Une application demande l\'autorisation d\'activer Bluetooth. Voulez-vous l\'activer ?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Une application de votre tablette demande l\'autorisation d\'activer Bluetooth et de permettre à d\'autres appareils de détecter la tablette pendant <xliff:g id="TIMEOUT">%1$d</xliff:g> secondes. Voulez-vous activer cette fonction ?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Une application sur votre téléphone demande l\'autorisation d\'activer Bluetooth et de permettre à d\'autres appareils de détecter votre téléphone pendant <xliff:g id="TIMEOUT">%1$d</xliff:g> secondes. Voulez-vous l\'activer ?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Activation du Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Connexion automatique"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Paramètres d\'heure et de date"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00 h"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13 h 00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Démarrer <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Compte :"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Paramètres proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Paramètres proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Définir le proxy HTTP global et les listes d\'exclusion"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Effacer"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Annuler"</string>
<string name="settings_label" msgid="1626402585530130914">"Paramètres"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Paramètres"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Sélectionner le raccourci des paramètres"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Paramètres"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Mode avion"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Désactiver toutes les connexions sans fil"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Désactivation des connexions sans fil…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Activation des connexions sans fil…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Sans fil et réseaux"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Sans fil et réseaux"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Paramètres sans fil et réseau"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Configurer le Wi-Fi, le mode Bluetooth, le mode Avion, les réseaux mobiles et le VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Itinérance des données"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Se connecter aux services de données lors de l\'itinérance"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Sélection de l\'opérateur"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Choisir un opérateur réseau"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Date et heure"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Régler la date et l\'heure"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Configurer la date, l\'heure, le fuseau horaire et les formats"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Date/Heure automatique"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utiliser la date et l\'heure fournies par le réseau"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Trier par fuseau horaire"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Date"</string>
<string name="time_picker_title" msgid="483460752287255019">"Heure"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Délai"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Verrouiller l\'écran <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> après l\'arrêt automatique de celui-ci"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Une fois en veille, verrouiller le mobile après"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Coordonnées du propriétaire sur l\'écran verrouillé"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Infos propriétaire"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Définir les paramètres de l\'option Ma position et de verrouillage"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Définir les paramètres de la fonction Ma position, de déverrouillage de l\'écran et de verrouillage du stockage des identifiants"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Mots de passe"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Cryptage de l\'appareil"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Crypter les données sur l\'appareil"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Crypter les données sur l\'appareil"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Nécessite la création d\'un code PIN ou d\'un mot de passe pour déverrouiller l\'appareil."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Nécessite la création d\'un code PIN ou d\'un mot de passe pour déverrouiller l\'appareil."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Crypté"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Vous pouvez crypter vos comptes, vos paramètres, les applications que vous téléchargez et leurs données, vos supports et autres fichiers. Une fois votre téléphone crypté, vous ne pourrez le décrypter qu\'en réinitialisant la configuration usine. Toutes les données du téléphone seront effacées."\n\n"Le cryptage peut prendre jusqu\'à une heure. La batterie doit être chargée lors du démarrage du processus et le téléphone doit rester branché jusqu\'à la fin de celui-ci. Si toutefois vous l\'interrompez, vous perdrez certaines de vos données, voire la totalité."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Vous pouvez crypter vos comptes, vos paramètres, les applications que vous téléchargez et leurs données, vos supports et autres fichiers. Une fois votre téléphone crypté, vous ne pourrez le décrypter qu\'en réinitialisant la configuration usine. Toutes les données du téléphone seront effacées."\n\n"Le cryptage peut prendre jusqu\'à une heure. La batterie doit être chargée lors du démarrage du processus et le téléphone doit rester branché jusqu\'à la fin de celui-ci. Si toutefois vous l\'interrompez, vous perdrez certaines de vos données, voire la totalité."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Crypter la tablette"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Crypter le téléphone"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Valider le cryptage"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Crypter les données utilisateur ? Cette opération est irréversible et ne doit pas être interrompue afin d\'éviter toute perte de données. Le cryptage peut prendre jusqu\'à une heure."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Crypter les données utilisateur ? Cette opération est irréversible et ne doit pas être interrompue afin d\'éviter toute perte de données. Le cryptage peut prendre jusqu\'à une heure."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Cryptage en cours"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Réessayez dans ^1 secondes."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configurer écran verr."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurer écran verr."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Sécurité du verrouillage de l\'écran"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Verrouillage de l\'écran"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Modifier le verrouillage de l\'écran"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Modifier ou désactiver la sécurité : schéma, code PIN ou mot de passe"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Choisir une méthode pour verrouiller l\'écran"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Désactiver"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne jamais verrouiller l\'écran"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Désécuriser"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Déverrouiller l\'écran sans schéma, code PIN ni mot de passe"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne pas afficher l\'écran de verrouillage"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Aucune"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Désactiver la sécurité du verrouillage de l\'écran"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Schéma"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Exiger un schéma pour déverrouiller l\'écran"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Dessiner un schéma pour déverrouiller l\'écran"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Code PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Exiger PIN numérique pour déverrouiller écran"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Entrer un code PIN numérique pour déverrouiller l\'écran"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Mot de passe"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Exiger mot de passe pour déverrouiller écran"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Entrer un mot de passe pour déverrouiller l\'écran"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Désactivé par un administrateur distant"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Désactiver"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Désécuriser"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Sécurisé par un schéma"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Sécurisé par un code PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Sécurisé par mot de passe"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Désactiver le verrouillage de l\'écran"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Supprimer le schéma de déverrouillage"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Supprimer le code PIN de déverrouillage"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Mot de passe récent refusé par admin. périphérique"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Annuler"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Annuler"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Suivant"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administration du périphérique"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administrateurs du périphérique"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Afficher ou désactiver les administrateurs du périphérique"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Administrateurs"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Ajouter ou supprimer des administrateurs de périphérique"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Activer le Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Paramètres Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Paramètres Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gérer les connexions, configurer le nom et l\'identification de l\'appareil"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Demande d\'association Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Saisissez un code PIN pour effectuer l\'association avec \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Essayez 0000 ou 1234.) Il est possible que vous deviez saisir le même code PIN sur le périphérique Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Saisissez la clé d\'accès pour effectuer l\'association avec \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Pour associer votre appareil à <xliff:g id="DEVICE_NAME">%1$s</xliff:g>, vérifiez qu\'il affiche la clé d\'accès suivante : <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"souhaite effectuer l\'association."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Saisissez \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" sur \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" pour effectuer l\'association, puis appuyez sur Retour ou sur Entrée."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Se connecter"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Ne pas se connecter"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Périphérique Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Options…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Se connecter à…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimédia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Mains libres"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablette"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transfert"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Périphérique d\'entrée"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Partage de connexion"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sera déconnecté de l\'audio du support."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sera déconnecté de l\'audio en mains libres."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sera déconnecté du périphérique d\'entrée."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sera déconnecté du partage de connexion."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Options de <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Commandes du périphérique"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Se connecter"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utiliser pour les paramètres audio du téléphone"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Utiliser pour le transfert de fichiers"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utiliser comme entrée"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utiliser pour l\'accès à Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Paramètres de la station d\'accueil"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Utiliser station d\'accueil pour l\'audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Comme téléphone à haut-parleur"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Mémoriser ces paramètres"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Utiliser la communication en champ proche pour lire et échanger des tags"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Une erreur s\'est produite."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Activer le Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Paramètres Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Impossible de rechercher des réseaux."</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notification de réseau"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Me notifier lorsqu\'un réseau ouvert est disponible"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Règles de veille Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Indiquer quand basculer du Wi-Fi sur le réseau de données mobile"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Un problème est survenu lors du paramétrage de la politique de veille."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Ajouter un réseau Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Réseaux Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Rechercher"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modifier le réseau"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuration du réseau"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Tapez un code d\'accès depuis un point d\'accès"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuration WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuration d\'accès avec code WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Saisissez le code <xliff:g id="WPS_PIN">%1$s</xliff:g> du point d\'accès."</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"La configuration WPS est déjà en cours et peut prendre quelques instants."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Échec du démarrage du WPS. Veuillez réessayer."</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID du réseau"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sécurité"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensité du signal"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Retirer"</string>
<string name="wifi_save" msgid="3331121567988522826">"Enregistrer"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Annuler"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Une autre session WPS a été détectée. Veuillez réessayer dans quelques minutes."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Options avancées"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Politique de veille Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Indiquer quand basculer du Wi-Fi sur le réseau de données mobile"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Un problème est survenu lors du paramétrage de la politique de veille."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Plage de fréquences Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Définir la plage de fréquences"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Erreur de paramétrage de la plage de fréquences"</string>
@@ -514,7 +494,7 @@
<string name="wifi_dns2" msgid="1368601006824882659">"DNS 2"</string>
<string name="wifi_gateway" msgid="163914742461092086">"Passerelle"</string>
<string name="wifi_network_prefix_length" msgid="3028785234245085998">"Longueur du préfixe réseau"</string>
- <string name="wifi_tether_checkbox_text" msgid="6961605862058056788">"Point d\'accès Wi-Fi"</string>
+ <string name="wifi_tether_checkbox_text" msgid="6961605862058056788">"Point d\'accès Wi-Fi mobile"</string>
<string name="wifi_tether_enabled_subtext" msgid="8948641212931906143">"Point d\'accès Wi-Fi mobile <xliff:g id="NETWORK_SSID">%1$s</xliff:g> actif"</string>
<string name="wifi_tether_failed_subtext" msgid="2654888578056042315">"Erreur liée au point d\'accès Wi-Fi mobile"</string>
<string name="wifi_tether_settings_text" msgid="123573487844470195">"Paramètres du point d\'accès Wi-Fi mobile"</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Point d\'accès Wi-Fi mobile <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Son"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Écran"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Affichage"</string>
<string name="sound_settings" msgid="5007659014828162881">"Paramètres sonores"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Mode silencieux"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Aucun son, sauf pour le multimédia et le réveil"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Changer automatiquement d\'orientation lors de la rotation"</string>
<string name="brightness" msgid="2354961343555249270">"Luminosité"</string>
<string name="brightness_summary" msgid="838917350127550703">"Régler la luminosité de l\'écran"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Délai"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"L\'écran s\'éteint automatiquement au bout de <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>."</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Mise en veille de l\'écran"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Ajuster automatiquement la luminosité"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Paramètres de blocage carte SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Configurer blocage SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Non disponible"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"État"</string>
<string name="device_status" msgid="607405385799807324">"État"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"État de la batterie, état du réseau et autres informations"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Code IMEI, numéro de téléphone, signal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Numéro de téléphone, signal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Stockage"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Paramètres de stockage"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Désinstaller la mémoire de stockage USB, afficher l\'espace disponible"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Retirer la carte SD, afficher la mémoire disponible"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"Numéro de répertoire mobile"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mon numéro de téléphone"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mon numéro de téléphone"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Version PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Mémoire de stockage interne"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Mémoire de stockage USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Carte SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponible"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calcul en cours"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Applications"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Support"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espace disponible"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espace total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Utilisation des applications"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Utilisation des supports"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Démonter stockage partagé"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Désactiver la carte SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Désinstaller mémoire USB interne"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Insérer la carte SD à monter"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Connecter une mémoire de stockage USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Monter la carte SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Installer la mémoire de stockage USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Installer la mémoire USB interne"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Monter la carte SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Effacer la mémoire USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Effacer la carte SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Effacer les données de la mémoire de stockage USB interne (ex. : musique, photos)"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Effacer toutes les données de la carte SD (ex. : musique et photos)"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Effacer les données de la mémoire de stockage USB interne (ex. : musique, photos)"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Non disponible"</string>
<string name="read_only" msgid="6702420168629076340">" (Lecture seule)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Désinstaller la mémoire de stockage USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Cette action effacera toutes les données de la "<b>"mémoire de stockage interne"</b>" de votre tablette, y compris :"\n\n<li>"Votre compte Google"</li>\n<li>"Les données et les paramètres des applications et du système"</li>\n<li>"Les applications téléchargées"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Cette action effacera toutes les données de la "<b>"mémoire de stockage interne"</b>" de votre mobile, y compris :"\n\n<li>"Votre compte Google"</li>\n<li>"Les données et les paramètres des applications et du système"</li>\n<li>"Les applications téléchargées"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Vous êtes actuellement connecté aux comptes suivants :"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musique"</li>\n<li>"Photos"</li>\n<li>"Autres données utilisateur"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Pour supprimer également la musique, les photos et les autres données utilisateur, vous devez effacer la "<b>"mémoire de stockage USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Pour supprimer également de la musique, des images et d\'autres données utilisateur, la "<b>"carte SD"</b>" doit être effacée."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Pour supprimer également la musique, les photos et les autres données utilisateur, vous devez effacer la "<b>"mémoire de stockage USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Effacer la mémoire USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Effacer la carte SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Effacer toutes les données de la mémoire de stockage USB interne (ex. : musique, photos)"</string>
@@ -769,7 +749,7 @@
<string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"Partage de connexion"</string>
<string name="tether_settings_title_all" msgid="8356136101061143841">"Partage connexion/point accès mobile"</string>
<string name="tether_settings_summary_usb" product="tablet" msgid="785883365108362248">"Partager la connexion Internet de la tablette via un câble USB"</string>
- <string name="tether_settings_summary_usb" product="default" msgid="3562431455625637370">"Partager la connexion Internet de votre mobile via un câble USB"</string>
+ <string name="tether_settings_summary_usb" product="default" msgid="3562431455625637370">"Partagez la connexion Internet de votre mobile via un câble USB."</string>
<string name="tether_settings_summary_wifi" msgid="5474383125137372164">"Transformer sa connexion Internet en point d\'accès Wi-Fi mobile"</string>
<string name="tether_settings_summary_bluetooth" msgid="2407506656353819750">"Partager la connexion Internet via Bluetooth"</string>
<string name="tether_settings_summary_usb_wifi" product="tablet" msgid="3834674129575844910">"Partager la connexion Internet de la tablette via USB ou transformer l\'appareil en point d\'accès Wi-Fi"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utiliser le GPS assisté"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utiliser le serveur pour assister le GPS (désactiver pour réduire l\'utilisation du réseau)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utiliser le serveur pour assister le GPS (désactiver pour améliorer les performances du GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utiliser Ma position pour la recherche Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utiliser Ma position pour la recherche Google et les autres services Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Utilisation de Ma position pour améliorer les résultats de recherche Google et autres services Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Utiliser Ma position pour la recherche Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utiliser Ma position pour la recherche et les autres services Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Les résultats de recherche et les autres services Google sont améliorés via Ma position."</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"À propos de la tablette"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"À propos du téléphone"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Informations légales, état et version du logiciel"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Le mot de passe a été défini."</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Le code PIN a été défini."</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Le schéma a été défini."</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Écran de verrouillage"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Déverrouillage de l\'écran"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Modifier le schéma"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Modifier le code PIN de déverrouillage"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmer le schéma enregistré"</string>
@@ -870,9 +850,12 @@
<string name="next_button_label" msgid="8890792540116568321">"Suivant"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Sécurisation de votre tablette"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Sécurisation de votre téléphone"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protégez votre tablette contre toute utilisation non autorisée en créant un schéma personnel de déverrouillage de l\'écran. À l\'aide de votre doigt, reliez les points dans l\'ordre de votre choix sur l\'écran suivant. Vous devez relier au moins quatre points. "\n\n"Vous êtes prêt ? Appuyez sur \"Suivant\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protégez votre téléphone contre toute utilisation non autorisée en créant un schéma personnel de déverrouillage de l\'écran. "\n<font height="17">\n</font><b>"1"</b>" L\'écran suivant vous présente un exemple de schéma. "\n<font height="17">\n</font><b>"2"</b>" Lorsque vous êtes prêt, dessinez votre propre schéma de déverrouillage. Essayez-en plusieurs, mais veillez à relier au moins quatre points. "\n<font height="17">\n</font><b>"3"</b>" Reproduisez votre schéma pour confirmer votre choix. "\n<font height="17">\n</font><b>"Pour commencer, appuyez sur \"Suivant\""</b>". "\n<font height="3">\n</font>"Si vous ne souhaitez pas activer la protection, appuyez sur \"Annuler\"."</font></string>
- <string name="manageapplications_settings_title" msgid="5712405848153426706">"Gérer applications"</string>
+ <string name="manageapplications_settings_title" msgid="5712405848153426706">"Gérer les applications"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gérer et supprimer les applications installées"</string>
<string name="applications_settings" msgid="3736173521008476946">"Applications"</string>
<string name="applications_settings_summary" msgid="2714215108369119717">"Gérer les applications, configurer des raccourcis de lancement rapide"</string>
@@ -882,7 +865,7 @@
<string name="install_all_warning" product="tablet" msgid="8143969767997876735">"Votre tablette et vos données personnelles sont plus vulnérables face à des applications provenant de sources inconnues. En cas de dommage causé à votre tablette ou de perte de données découlant de l\'utilisation de telles applications, vous en acceptez l\'entière responsabilité."</string>
<string name="install_all_warning" product="default" msgid="1923717607319933741">"Votre téléphone et vos données personnelles sont très vulnérables face à des applications provenant de sources inconnues. Vous acceptez d\'être le seul responsable de tout dommage causé à votre téléphone ou de toute perte de données pouvant découler de l\'utilisation de telles applications."</string>
<string name="application_info_label" msgid="1150486628158409543">"Informations sur l\'application"</string>
- <string name="storage_label" msgid="8700867073480107253">"Stockage"</string>
+ <string name="storage_label" msgid="8700867073480107253">"Mémoire"</string>
<string name="auto_launch_label" msgid="3012617472833815382">"Lancer par défaut"</string>
<string name="permissions_label" msgid="2605296874922726203">"Autorisations"</string>
<string name="cache_header_label" msgid="1877197634162461830">"Cache"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Application"</string>
<string name="data_size_label" msgid="8679376373625710107">"Données"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Mémoire de stockage USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Carte SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Désinstaller"</string>
<string name="disable_text" msgid="6544054052049395202">"Désactiver"</string>
<string name="enable_text" msgid="9217362512327828987">"Activer"</string>
@@ -913,8 +894,8 @@
<string name="filter_dlg_title" msgid="6507663329723966854">"Options du filtre"</string>
<string name="filter_apps_all" msgid="5142129378749391876">"Toutes"</string>
<string name="filter_apps_third_party" msgid="7786348047690140979">"Téléchargées"</string>
- <string name="filter_apps_running" msgid="7767071454371350486">"En cours"</string>
- <string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"Stockage USB"</string>
+ <string name="filter_apps_running" msgid="7767071454371350486">"En cours d\'exécution"</string>
+ <string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"Mémoire de stockage USB"</string>
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"Sur la carte SD"</string>
<string name="disabled" msgid="9206776641295849915">"Désactivée"</string>
<string name="no_applications" msgid="5190227407135243904">"Aucune application"</string>
@@ -967,7 +948,7 @@
<!-- no translation found for service_client_name (4037193625611815517) -->
<skip />
<string name="service_background_processes" msgid="6844156253576174488">"<xliff:g id="MEMORY">%1$s</xliff:g> libre"</string>
- <string name="service_foreground_processes" msgid="7583975676795574276">"<xliff:g id="MEMORY">%1$s</xliff:g> utilisés"</string>
+ <string name="service_foreground_processes" msgid="7583975676795574276">"<xliff:g id="MEMORY">%1$s</xliff:g> utilisé"</string>
<string name="memory" msgid="6609961111091483458">"RAM"</string>
<!-- no translation found for service_process_name (4098932168654826656) -->
<skip />
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Arrêter le service système ?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Voulez-vous vraiment arrêter ce service système ? Si tel est le cas, certaines fonctionnalités risquent de ne plus fonctionner correctement tant que vous n\'aurez pas éteint, puis rallumé votre tablette."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Voulez-vous vraiment arrêter ce service système ? Si tel est le cas, certaines fonctionnalités risquent de ne plus fonctionner correctement tant que vous n\'aurez pas éteint, puis rallumé votre téléphone."</string>
- <string name="language_settings" msgid="5292716747264442359">"Langue et saisie"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Langue et saisie"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Par. régionaux et texte"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Paramètres de langue et clavier"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Paramètres de langue"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Paramètres du clavier"</string>
<string name="phone_language" msgid="1165758957501090679">"Sélectionner la langue"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Remplacement auto"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corriger les mots mal saisis"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Majuscules automatiques"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Majuscules auto"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Mettre une majuscule en début de phrase"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Ponctuation automatique"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Paramètres du clavier physique"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Raccourcis"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Saisie de texte"</string>
<string name="input_method" msgid="5434026103176856164">"Mode de saisie"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Mode de saisie actuel"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Sélection du mode de saisie"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatique"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Toujours afficher"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Toujours masquer"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configurer les modes de saisie"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Paramètres"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Modes de saisie actifs"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Utiliser la langue du système"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Paramètres <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Sélectionner modes de saisie actifs"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Paramètres du clavier intégré"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Clavier intégré"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Paramètres du clavier physique intégré"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi/temps"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi à temps"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Informations sur l\'historique"</string>
- <string name="details_title" msgid="3792801565213935385">"Informations sur l\'utilisation"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Infos détaillées sur l\'utilisation de la batterie"</string>
<string name="details_subtitle" msgid="32593908269911734">"Détails d\'utilisation"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajuster la consommation"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Modules inclus"</string>
@@ -1170,11 +1162,11 @@
<string name="recognizer_settings_summary" msgid="4472287934134546902">"Paramètres de \"<xliff:g id="RECOGNIZER_NAME">%s</xliff:g>\""</string>
<string name="tts_settings" msgid="8186971894801348327">"Paramètres de la synthèse vocale"</string>
<string name="tts_settings_title" msgid="4182348653053000933">"Synthèse vocale"</string>
- <string name="use_default_tts_settings_title" msgid="1577063839539732930">"Utiliser mes paramètres"</string>
- <string name="use_default_tts_settings_summary" msgid="4253502106159206276">"Remplacer les paramètres de l\'application par les paramètres ci-dessous"</string>
+ <string name="use_default_tts_settings_title" msgid="1577063839539732930">"Tjrs utiliser mes param."</string>
+ <string name="use_default_tts_settings_summary" msgid="4253502106159206276">"Les param. par défaut ci-dessous remplacent les param. de l\'application"</string>
<string name="tts_default_settings_section" msgid="5787915620218907443">"Paramètres par défaut"</string>
<string name="tts_default_synth_title" msgid="29467896463371992">"Moteur par défaut"</string>
- <string name="tts_default_synth_summary" msgid="6482936537135251690">"Définir le moteur de synthèse vocale à utiliser"</string>
+ <string name="tts_default_synth_summary" msgid="6482936537135251690">"Définit le moteur de synthèse vocale à utiliser."</string>
<string name="tts_default_rate_title" msgid="6030550998379310088">"Cadence"</string>
<string name="tts_default_rate_summary" msgid="4061815292287182801">"Vitesse à laquelle le texte est énoncé"</string>
<string name="tts_default_pitch_title" msgid="6135942113172488671">"Ton"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Échec de la négociation avec le serveur. Le serveur n\'est peut-être pas conforme au paramètre de cryptage. Voulez-vous vérifier le paramètre de cryptage ?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Ajouter un VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Ajouter un VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Informations sur le VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Ajouter le VPN \"<xliff:g id="NAME">%s</xliff:g>\""</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Détails du profil \"<xliff:g id="NAME">%s</xliff:g>\""</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configurer et gérer les réseaux privés virtuels (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(aucune modification)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(non défini)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Stockage des identifiants"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Stockage des identifiants"</string>
<string name="credentials_access" msgid="4843187230913860492">"Identifiants sécurisés"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Autoriser l\'accès des applications aux certificats sécurisés et identifiants"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Installer depuis mém. stock. USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Installer depuis la carte SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Installer les certificats depuis la mémoire de stockage USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Installer les certificats depuis la carte SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Définir le mot de passe"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Définir ou modifier le mot de passe pour le stockage des identifiants"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Effacer les identifiants"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Supprimer l\'ensemble du contenu et réinitialiser le mot de passe"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Saisir le mot de passe"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Saisir le mot de passe de stockage des identifiants"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Définir le mot de passe pour le stockage des identifiants. Il doit comporter au moins huit caractères."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Saisissez le mot de passe du stockage des identifiants."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installation depuis USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installer depuis la carte SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Installer certificats cryptés depuis mémoire USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installer les certificats cryptés depuis la carte SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Définir le mot de passe"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Définir/modifier le mot de passe de stockage des identifiants"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Effacer le stockage"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Effacer le contenu du stockage des identifiants et réinitialiser le mot de passe"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Voulez-vous vraiment supprimer tous les identifiants et réinitialiser le mot de passe du stockage des identifiants ?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Mot de passe actuel :"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nouveau mot de passe :"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmer le nouveau mot de passe :"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"L\'ensemble du contenu sera effacé et le mot de passe réinitialisé. Voulez-vous vraiment continuer ?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Définissez un mot de passe pour le stockage des identifiants (au moins 8 caractères)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Veuillez entrer le mot de passe approprié."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Entrez le mot de passe approprié. Il vous reste un essai avant que le stockage des identifiants ne soit effacé."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Entrez le mot de passe approprié. Il vous reste <xliff:g id="NUMBER">%1$d</xliff:g> essais avant que les identifiants stockés ne soient effacés."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Les mots de passe ne concordent pas."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Vous devez entrer un mot de passe et le confirmer."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Veuillez entrer le mot de passe."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Le mot de passe doit contenir au moins 8 caractères."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Mot de passe incorrect"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Mot de passe incorrect. Vous disposez d\'une tentative supplémentaire avant l\'effacement du stockage des identifiants."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Mot de passe incorrect. Vous disposez de <xliff:g id="NUMBER">%1$d</xliff:g> tentatives supplémentaires avant l\'effacement du stockage des identifiants."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Le stockage des identifiants est effacé."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Le stockage des identifiants est effacé."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Stockage des identifiants activé"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Stockage des identifiants désactivé"</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Système de fichiers cryptés"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Crypter les données utilisateur privées"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Activer le stockage des données utilisateur privées dans les systèmes de fichiers cryptés de ce périphérique"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Pour activer les systèmes de fichiers cryptés, vous devez disposer d\'un outil de nettoyage des données."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Pour désactiver des systèmes de fichiers cryptés, vous devez disposer d\'un outil de nettoyage des données."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Activer"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Désactiver"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Annuler"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"La modification apportée au mode Systèmes de fichiers cryptés a été annulée."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Avertissement relatif aux systèmes de fichiers cryptés"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Sonnerie d\'urgence"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Définir le comportement en cas d\'appel d\'urgence"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Confidentialité"</string>
@@ -1323,7 +1329,7 @@
<string name="auto_restore_title" msgid="5397528966329126506">"Restaurer automatiquement"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"Restaurer les paramètres ou autres données sauvegardées lorsqu\'une application est réinstallée"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Sauvegarder"</string>
- <string name="backup_erase_dialog_message" msgid="7766283133557587608">"Voulez-vous vraiment arrêter de sauvegarder vos mots de passe Wi-Fi, vos favoris ainsi que vos données et paramètres d\'application, et supprimer les copies correspondantes des serveurs Google ?"</string>
+ <string name="backup_erase_dialog_message" msgid="7766283133557587608">"Voulez-vous vraiment arrêter de sauvegarder vos mots de passe Wi-Fi, vos favoris ainsi que vos données et paramètres d\'application, et supprimer toutes les copies des serveurs Google ?"</string>
<string name="device_admin_settings_title" msgid="1335557832906433309">"Paramètres d\'administration du périphérique"</string>
<string name="active_device_admin_msg" msgid="6930903262612422111">"Administrateur du périphérique"</string>
<string name="remove_device_admin" msgid="3596845261596451437">"Désactiver"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Appels entrants"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notifications"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Commentaires"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configuration Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Se connecter au réseau Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Connexion au réseau Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Connecté au réseau Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Ajouter un réseau"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuration Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Non connecté"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Ajouter un réseau"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualiser la liste"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Enregistrer"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Annuler"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Analyse des réseaux..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Appuyez sur un réseau pour vous y connecter"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Touchez l\'écran pour sélectionner un réseau"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Se connecter à un réseau existant"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Connexion à un réseau non sécurisé"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Définissez la configuration du réseau"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Connexion en cours…"</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Passer à l\'étape suivante"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP non compatible"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Impossible de configurer une connexion Wi-Fi EAP lors de l\'installation. Vous pourrez le faire dans Paramètres, sous "<b>"Sans fil et réseaux"</b>", une fois l\'installation terminée."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"La connexion peut prendre quelques minutes."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Appuyez sur "<b>"Suivant"</b>" pour poursuivre la configuration."\n\n"Appuyez sur "<b>"Précédent"</b>" pour vous connecter à un autre réseau Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Impossible de configurer une connexion Wi-Fi EAP lors de l\'installation. Vous pourrez le faire dans Paramètres, sous Sans fil et réseaux, une fois l\'installation terminée."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Paramètres de synchronisation"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"La synchronisation rencontre des problèmes et sera bientôt rétablie."</string>
<string name="add_account_label" msgid="7811707265834013767">"Ajouter un compte"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synchronisation désactivée"</string>
<string name="sync_error" msgid="5060969083117872149">"Erreur de synchronisation"</string>
<string name="settings_backup" msgid="2274732978260797031">"Sauvegarder les paramètres"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Sauvegarder mes paramètres"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synchroniser maintenant"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Annuler la synchronisation"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Appuyer ici pour lancer la synchronisation maintenant<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Agenda"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contacts"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Bienvenue sur Google Sync !"</font>" "\n"Une solution Google pour synchroniser vos données et vous permettre d\'accéder à vos contacts, rendez-vous, etc. où que vous soyez."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Paramètres de synchronisation de l\'application"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Données et synchronisation"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Modifier le mot de passe"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Paramètres du compte"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Supprimer le compte"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Ajouter un compte"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Terminer"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Supprimer le compte"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Voulez-vous vraiment supprimer ce compte ? Les éléments suivants seront également supprimés du téléphone : messages, contacts et autres données."\n"Voulez-vous continuer ?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Voulez-vous vraiment supprimer ce compte? Les éléments suivants seront également supprimés du téléphone : messages, contacts et autres données. "\n"Voulez-vous continuer?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Des applications utilisent ce compte. Pour le supprimer, vous devez restaurer les valeurs par défaut de la tablette sous Paramètres > Confidentialité, ce qui a pour effet d\'effacer toutes vos données personnelles."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Des applications utilisent ce compte. Pour le supprimer, vous devez restaurer les valeurs par défaut du téléphone (cela efface toutes vos données personnelles) via l\'application Paramètres, sous Confidentialité."</string>
- <string name="provider_label" msgid="7724593781904508866">"Abonnements Push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synchroniser <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Impossible de procéder à la synchronisation manuelle."</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"La synchronisation de cet élément est actuellement désactivée. Pour modifier vos préférences, activez temporairement les données en arrière-plan et la synchronisation automatique."</string>
- <string name="enter_password" msgid="3268224850821675915">"Saisir le mot de passe pour décrypter le stockage"</string>
- <string name="try_again" msgid="5904121494468643129">"Incorrect. Merci de réessayer."</string>
- <string name="service_busy" msgid="225227519012409130">"Service indisponible, réessayez."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-hr/arrays.xml b/res/values-hr/arrays.xml
index 3065307..417e32d 100644
--- a/res/values-hr/arrays.xml
+++ b/res/values-hr/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Prikazan je dio animacija prozora"</item>
<item msgid="488968798204105119">"Prikazane su sve animacija prozora"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekundi"</item>
- <item msgid="8881760709354815449">"30 sekundi"</item>
- <item msgid="7589406073232279088">"1 minuta"</item>
- <item msgid="7001195990902244174">"2 minute"</item>
- <item msgid="7489864775127957179">"5 minuta"</item>
- <item msgid="2314124409517439288">"10 minuta"</item>
- <item msgid="6864027152847611413">"30 minuta"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"odmah"</item>
- <item msgid="6736512735606834431">"5 sekunda"</item>
- <item msgid="8044619388267891375">"15 sekunda"</item>
- <item msgid="1822002388249545488">"30 sekunda"</item>
- <item msgid="8538071621211916519">"1 min"</item>
- <item msgid="5663439580228932882">"2 minute"</item>
- <item msgid="49888496216106852">"5 minuta"</item>
- <item msgid="9002737361305019353">"10 minuta"</item>
- <item msgid="4322676235684793329">"30 minuta"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Jako sporo"</item>
<item msgid="2361722960903353554">"Sporo"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Odlično"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Kad se zaslon isključi"</item>
+ <item msgid="3804733751095821976">"Kad se zaslon isključi"</item>
<item msgid="1549288661423279207">"Nikad ako je priključeno"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nikada"</item>
+ <item msgid="1986753720941888596">"Nikad"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatski"</item>
diff --git a/res/values-hr/strings.xml b/res/values-hr/strings.xml
index 8d16ff1..db3dea7 100644
--- a/res/values-hr/strings.xml
+++ b/res/values-hr/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Skeniranje"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Zahtjev za Bluetooth uparivanje"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Zahtjev za uparivanje"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Odaberi uparivanje s uređajem <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Prikaži primljene datoteke"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Prikaži popis datoteka primljenih putem Bluetootha"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Alat za odabir Bluetooth uređaja"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Zatraženo je Bluetooth dopuštenje"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Aplikacija traži dozvolu za uključenje Bluetootha. Želite li to učiniti?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Aplikacija na tabletnom uređaju traži dozvolu da uključi Bluetooth i da tabletni uređaj učini vidljivim drugim uređajima na <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunda. Želite li to učiniti?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Aplikacija na vašem telefonu traži dopuštenje za uključivanje značajke Bluetooth i da vaš telefon učini vidljivim drugim Bluetooth uređajima na <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Želite li to dopustiti?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Uključivanje Bluetootha…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatsko povezivanje"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Postavke datuma i vremena"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13 h"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13 h"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Pokreni <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Račun:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy postavke"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Postavke proxyja"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Postavi globalni HTTP proxy i popise za isključivanje"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Očisti"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Onemogućavanje bežičnih veza…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Omogućavanje bežičnih veza…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Bežično povezivanje i mreže"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bežično povezivanje i mreže"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Postavke za bežični prijenos i mrežu"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Upravljanje značajkama Wi-Fi, Bluetooth, način rada u zrakoplovu, mobilne mreže i VPN-ovi"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming podataka"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Poveži se s podatkovnim uslugama u roamingu"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Odabir operatora"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Odaberite mrežnog operatera"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum i vrijeme"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Postavite datum i vrijeme"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Postavi datum, vrijeme, vremensku zonu i formate"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatski datum & vrijeme"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Upotrijebi vrijeme mreže"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Poredaj po vremenskoj zoni"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Vrijeme"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Privremeni prekid"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Zaključaj zaslon <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> nakon što se automatski isključi"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Zaključaj uređaj nakon privremenog prekida"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Prikaži vlasniku informacije o zaključanom zaslonu"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info o vlasniku"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Postavi Moju lokaciju, otključavanje zaslona, zaključavanje SIM kartice, zaključavanje spremnika za vjerodajnice"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Postavi Moju lokaciju, otključavanje zaslona, zaključavanje pohranjivanja vjerodajnica"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Zaporke"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Enkripcija uređaja"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Kriptiraj podatke na uređaju"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Kriptiraj podatke na uređaju"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Od vas se traži postavljanje PIN-a ili zaporke za otključavanje uređaja"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Od vas se traži postavljanje PIN-a ili zaporke za otključavanje uređaja"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Kriptirano"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Možete kriptirati svoje račune, postavke, preuzete aplikacije i njihove podatke, medijske i ostale datoteke. Nakon kriptiranja telefona, pored vraćanja na tvorničke postavke, dekriptirati ga možete i brisanjem svih podataka na telefonu."\n\n"Enkripcija traje i do jednog sata. Morate je započeti s napunjenom baterijom telefona i držati ga uključenim u struju do dovršetka kriptiranja. Ako prekinete postupak enkripcije, izgubit ćete dio ili sve svoje podatke."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Možete kriptirati svoje račune, postavke, preuzete aplikacije i njihove podatke, medijske i ostale datoteke. Nakon kriptiranja telefona, pored vraćanja na tvorničke postavke, dekriptirati ga možete i brisanjem svih podataka na telefonu."\n\n"Enkripcija traje i do jednog sata. Morate je započeti s napunjenom baterijom telefona i držati ga uključenim u struju do dovršetka kriptiranja. Ako prekinete postupak enkripcije, izgubit ćete dio ili sve svoje podatke."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Kriptiraj tablet uređaj"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Kriptiraj telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Potvrda enkripcije"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Kriptirati korisničke podatke? Tu operaciju nije moguće poništiti niti prekinuti bez gubitka podataka! Enkripcija može potrajati do jedan sat."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Kriptirati korisničke podatke? Tu operaciju nije moguće poništiti niti prekinuti bez gubitka podataka! Enkripcija može potrajati do jedan sat."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Kriptiranje"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Pokušajte ponovo za 1 s."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konf. zak. zaslona"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfiguracija zaključavanja zaslona"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Sigurnost otključavanja zaslona"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Postavi zaključavanje zaslona"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Promijeni zaključavanje zaslona"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Promijenite ili onemogućite sigurnosni uzorak, PIN ili zaporku"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Odaberite metodu za zaključavanje zaslona"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Isključeno"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nikada ne zaključavaj zaslon"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nesigurno"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Bez uzorka, PIN-a ili zap. za otklj. zaslona"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne prikazuj zaslon za zaključavanje"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ništa"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Onemogući sigurnost otključavanja zaslona"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Uzorak"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Potreban je uzorak za otključavanje zaslona"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Iscrtajte uzorak za otključavanje zaslona"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Zahtijeva numerički PIN za otključavanje zaslona"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Unesite numerički PIN za otključavanje zaslona"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Zaporka"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Potrebna je zaporka za otključavanje zaslona"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Unesite zaporku za otključavanje zaslona"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Onemogućio administrator udaljenog uređaja"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Isključeno"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nesigurno"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Osigurano uzorkom"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Osigurano PIN-om"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Osigurano zaporkom"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Isključi zaključavanje zaslona"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Ukloni uzorak za otključavanje"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Ukloni otključavanje PIN-a"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Administrator uređaja onemogućuje upotrebu nedavne zaporke"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"U redu"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Odustani"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Odustani"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Dalje"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administracija uređaja"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Administratori uređaja"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Administratori za prikaz ili deaktivaciju uređaja"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth postavke"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Upravljajte vezama, postavite uređaj i mogućnost otkrivanja"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Zahtjev za Bluetooth uparivanje"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Unesite PIN za uparivanje s uređajem \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Pokušajte unijeti 0000 ili 1234.) Možda ćete morati unijeti isti taj PIN na Bluetooth uređaj."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Unesite zaporku za uparivanje s uređajem \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Da biste se uparili s uređajem \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", potvrdite da prikazuje zaporku: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"želi izvršiti uparivanje."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Unesite \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" na \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" za uparivanje pa pritisnite gumb za povratak ili unos."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Upari"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nemoj upariti"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"bluetooth uređaj"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opcije…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Poveži se na..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Mediji"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tabletni uređaj"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Prijenos"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Ulazni uređaj"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Dijeljenje veze"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Uređaj <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bit će isključen sa zvuka medija."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Handsfree zvuk za uređaj <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bit će isključen."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Uređaj <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bit će isključen s ulaznog uređaja."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Uređaj <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bit će isključen iz dijeljena veze."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> opcije"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Koristi za telefonski zvuk"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Koristi za prijenos datoteke"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Upotrijebi za ulaz"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Upotrijebi za pristup internetu"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Postavke priključne stanice"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Koristi priključnu stanicu za zvuk"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Kao telefonski zvučnik"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Skeniranjem nije moguće pretraživanje mreža"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Mrežna obavijest"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Obavijesti me ako postoji otvorena mreža"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Pravila mirovanja za Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Navedite trenutak za prebacivanje sa značajke Wi-Fi na mobilne podatke"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Došlo je do problema u postavljanju pravila mirovanja."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Dodaj Wi-Fi mrežu"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi mreže"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Skeniraj"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Izmijeni mrežu"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Postavljanje mreže"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Unesi pin s lokacije pristupa"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Postavljanje WPS-a"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfiguracija WPS pin načina"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Unesite pin <xliff:g id="WPS_PIN">%1$s</xliff:g> na lokaciji pristupa"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS je već u tijeku i možda će završiti za manje od minute"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Pokretanje WPS-a nije uspjelo, pokušajte ponovno"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Mrežni SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sigurnost"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Jakost signala"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Zaboravi"</string>
<string name="wifi_save" msgid="3331121567988522826">"Spremi"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Odustani"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Otkrivena je još jedna WPS sesija, pokušajte ponovno za nekoliko minuta"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Napredno"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Pravila mirovanja značajke Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Navedite trenutak za prebacivanje sa značajke Wi-Fi na mobilne podatke"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Došlo je do problema u postavljanju pravila mirovanja."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi pojas frekvencije"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Odredi raspon frekvencije rada"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Problem pri postavljanju pojasa frekvencije."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> prijenosni Wi-Fi hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Zvuk"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Zaslon"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Prikaz"</string>
<string name="sound_settings" msgid="5007659014828162881">"Postavke zvuka"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Bešumni način"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Utišaj sve zvukove osim medija i alarma"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Promijeni orijentaciju automatski kod rotacije telefona"</string>
<string name="brightness" msgid="2354961343555249270">"Svjetlina"</string>
<string name="brightness_summary" msgid="838917350127550703">"Podesite svjetlinu zaslona"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Privremeni prekid"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Zaslon se isključuje automatski nakon <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Privremeni prekid rada zaslona"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatska svjetlina"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Postavke zaključavanja SIM kartice"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Postavite zaključavanje SIM kartice"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nije dostupno"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status baterije, mreže i ostale informacije"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Telefonski broj, signal itd."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonski broj, signal itd."</string>
<string name="storage_settings" msgid="4211799979832404953">"Pohranjivanje"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Postavke pohrane"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Isključi USB memoriju, prikaži dostupnu pohranu"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Isključi SD karticu, prikaži vidljivo mjesto za pohranu"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Moj telefonski broj"</string>
+ <string name="status_number" msgid="5123197324870153205">"Moj telefonski broj"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL verzija"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Unutarnja pohrana"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB memorija"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD kartica"</string>
- <string name="memory_available" msgid="5052397223077021181">"Dostupno"</string>
- <string name="memory_size" msgid="5458889090691922288">"Ukupno"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Izračun u tijeku..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplikacije"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Mediji"</string>
+ <string name="memory_available" msgid="418542433817289474">"Dostupan prostor"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Ukupno prostora"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Upotreba aplikacije"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Upotreba medija"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Isklj. dijeljenu pohranu"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Isključi SD karticu"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Isključi unutarnju USB memoriju"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Izbriši USB memoriju"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Izbriši karticu SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Briše sve podatke na unutarnjoj memoriji USB, poput glazbe ili fotografija"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Briše sve podatke na kartici SD, poput glazbe i fotografija"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Briše sve podatke na kartici SD, poput glazbe ili fotografija"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Nije dostupno"</string>
<string name="read_only" msgid="6702420168629076340">" (samo za čitanje)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Isključi USB memoriju"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"To će izbrisati sve podatke s "<b>"unutarnje pohrane"</b>" vašeg tabletnog uređaja, uključujući:"\n\n<li>"Vaš Google Račun"</li>\n<li>"Sistemske podatke i podatke aplikacije i postavke"</li>\n<li>"Preuzete aplikacije"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"To će izbrisati sve podatke s "<b>"unutarnje pohrane"</b>" vašeg telefona, uključujući:"\n\n<li>"Vaš Google Račun"</li>\n<li>"Sistemske podatke i podatke aplikacije i postavke"</li>\n<li>"Preuzete aplikacije"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Trenutačno ste prijavljeni na sljedeće račune:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Glazba"</li>\n<li>"Fotografije"</li>\n<li>"Ostali korisnički podaci"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Da biste također izbrisali glazbu, slike i ostale korisničke podatke, "<b>"memorija USB"</b>" treba biti izbrisana."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Da biste izbrisali glazbu, slike i ostale korisničke podatke, trebate izbrisati "<b>"karticu SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Da biste također izbrisali glazbu, slike i ostale korisničke podatke, "<b>"kartica SD"</b>" treba biti izbrisana."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Izbriši USB memoriju"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Izbriši karticu SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Izbriši sve podatke na unutarnjoj USB memoriji, poput glazbe ili fotografija."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Koristite potpomognuti GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Koristi poslužitelj za pomoć GPS-u (isključite za smanjenje mrežnog opterećenja)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Koristi poslužitelj za pomoć GPS-u (isključite za bolji rad GPS-a)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Upotrijebi lokaciju za Google Pretraživanje"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Upotrijebi lokaciju za Google Pretraživanje i ostale Google usluge"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Upotreba lokacije za poboljšanje rezultata Google Pretraživanja i ostalih Google usluga"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Upotrijebi lokaciju za Google pretraživanje"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Upotrijebi lokaciju za Google pretraživanje i ostale Google usluge"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Upotreba lokacije za poboljšanje Google rezultata pretraživanja i ostalih Google usluga"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"O tabletnom uređaju"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"O telefonu"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Prikaži pravne informacije, status, verziju softvera"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Zaporka je postavljena"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN je postavljen"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Uzorak je postavljen"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Zaključaj zaslon"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Otključavanje zaslona"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Izmijeni uzorak za otključavanje"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Promijeni PIN za otključavanje"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Potvrdi spremljeni uzorak"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Dalje"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Osiguravanje tabletnog uređaja"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Osiguravanje telefona"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Zaštitite svoje tabletno računalo od neovlaštene upotrebe stvaranjem osobnog uzorka za otključavanje zaslona. Prstom na zaslonu povežite točkice bilo kojim redoslijedom. Morate povezati barem četiri točkice. "\n\n"Jeste li spremni? Dodirnite Dalje."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Zaštitite svoj telefon od neovlaštene upotrebe stvaranjem osobnog uzorka za zaključavanje zaslona. "\n<font height="17">\n</font><b>"1"</b>" Na sljedećem zaslonu pratite stvaranje uzorka. "\n<font height="17">\n</font><b>"2"</b>" Ako ste spremni iscrtajte vlastiti uzorak. Eksperimentirajte s različitim uzorcima, ali povežite barem četiri točke. "\n<font height="17">\n</font><b>"3"</b>" Za potvrdu ponovno iscrtajte uzorak. "\n<font height="17">\n</font><b>"Jeste li spremni? Dotaknite “Dalje”"</b>". "\n<font height="3">\n</font>"Da biste telefon ostavili nezaštićen, dotaknite “Odustani”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Upravljanje aplikacijama"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Upravljanje i uklanjanje instaliranih aplikacija"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Ukupno"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplikacija"</string>
<string name="data_size_label" msgid="8679376373625710107">"Podaci"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Memorija USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD kartica"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Deinstaliraj"</string>
<string name="disable_text" msgid="6544054052049395202">"Onemogući"</string>
<string name="enable_text" msgid="9217362512327828987">"Omogući"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Zaustaviti sistemsku uslugu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Jeste li sigurni da želite zaustaviti ovu sistemsku uslugu? Ako to učinite, neke značajke vašeg tabletnog uređaja mogu prestati raditi ispravno dok ga ne isključite i ponovno ne uključite."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Jeste li sigurni da želite zaustaviti ovu sistemsku uslugu? Ako to učinite, neke značajke vašeg telefona mogu prestati raditi ispravno dok ga ne isključite i ponovno ne uključite."</string>
- <string name="language_settings" msgid="5292716747264442359">"Jezik i ulaz"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Jezik i ulaz"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Jezik i tipkovnica"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Postavke jezika i tipkovnice"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Postavke jezika"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Postavke tipkovnice"</string>
<string name="phone_language" msgid="1165758957501090679">"Odaberite jezik"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Prečaci"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Unos teksta"</string>
<string name="input_method" msgid="5434026103176856164">"Način ulaza"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Trenutačan način ulaza"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selektor načina ulaza"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatski"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Uvijek prikaži"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Uvijek sakrij"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfiguriraj načine ulaza"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Postavke"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktivni načini ulaza"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Upotrijebi jezik sustava"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> postavke"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Odabir aktivnih načina ulaza"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Upravljaj načinima ulaza"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Postavke zaslonske tipkovnice"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Ugrađena tipkovnica"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Postavke ugrađene, fizičke tipkovnice"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi na vrijeme"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi na vrijeme"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalji povijesti"</string>
- <string name="details_title" msgid="3792801565213935385">"Pojedinosti o upotrebi"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Pojedinosti o potrošnji baterije"</string>
<string name="details_subtitle" msgid="32593908269911734">"Pojedinosti o upotrebi"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Podesi potrošnju energije"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Uključeni paketi"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Poslužiteljski pregovori nisu uspjeli. Poslužitelj se možda ne slaže s vašom opcijom enkripcije. Želite li provjeriti svoju postavku enkripcije?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Dodaj VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Dodaj VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN detalji"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Dodaj <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> pojedinosti"</string>
<string name="vpns" msgid="3148141862835492816">"VPN-ovi"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Postavite i upravljajte virtualnim privatnim mrežama (VPN-ovima)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nepromijenjeno)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nije postavljeno)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Pohrana vjerodajnica"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Pohranjivanje vjerodajnica"</string>
<string name="credentials_access" msgid="4843187230913860492">"Korisnički sigurne vjerodajnice"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Aplikacijama omogući pristup sigurnim certifikatima i drugim vjerodajnicama"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instaliraj s USB memorije"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instaliraj sa SD kartice"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instaliraj kriptirane certifikate s USB memorije"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instaliraj certifikate sa SD kartice"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Postavi zaporku"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Postavite ili promijenite zaporku za pohranu vjerodajnica"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Izbriši vjerodajnice"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Ukloni sav sadržaj i poništi zaporku"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Unesite zaporku"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Unesite zaporku za pohranu vjerodajnica."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Postavite zaporku za pohranu vjerodajnica. Mora sadržavati najmanje 8 znakova."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Unesite zaporku za pohranu vjerodajnica."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instaliraj s memorije USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instaliraj sa SD kartice"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inst. kript. cert. s USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instaliraj kriptirane certifikate sa SD kartice"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Postavi zaporku"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Postavite ili promijenite zaporku za pohranjivanje zaporke"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Isprazni mjesto pohrane"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Isprazni cijeli sadržaj spremnika za vjerodajnice i poništi pripadajuće zaporke"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Jeste li sigurni da želite izbrisati sve vjerodajnice i poništiti zaporku za pohranjivanje vjerodajnica?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Trenutačna zaporka:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nova zaporka:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Potvrdite novu zaporku:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Sav će sadržaj biti uklonjen, a zaporka će biti poništena. Jeste li sigurni?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Postavite zaporku za pohranjivanje vjerodajnica (barem 8 znakova)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Unesite ispravnu zaporku."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Unesite ispravnu zaporku. Prije brisanja prostora za pohranu vjerodajnica imate još jedan pokušaj za unos ispravne zaporke."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Unesite ispravnu zaporku. Prije brisanja prostora za pohranu vjerodajnica imate još ovoliko pokušaja za unos ispravne zaporke: <xliff:g id="NUMBER">%1$d</xliff:g>."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Zaporke se ne podudaraju."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Morate unijeti i potvrditi zaporku."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Unesite zaporku."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Zaporka treba imati barem 8 znakova."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Pogrešna zaporka."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Pogrešna zaporka. Imate još jedan pokušaj prije brisanja pohrane vjerodajnica."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Pogrešna zaporka. Još imate ovoliko pokušaja prije brisanja pohrane vjerodajnica: <xliff:g id="NUMBER">%1$d</xliff:g>."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Pohrana vjerodajnica je izbrisana."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Prostor za pohranu vjerodajnica je izbrisan."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Pohranjivanje vjerodajnica je omogućeno."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Pohranjivanje vjerodajnica je onemogućeno."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Ton hitnog poziva"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Postavite način ponašanja za hitan poziv"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privatnost"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Dolazni pozivi"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Obavijesti"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Povratne informacije"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Postavljanje Wi-Fi mreže"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Povezivanje s Wi-Fi mrežom <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Povezivanje s Wi-Fi mrežom <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Povezano s Wi-Fi mrežom <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Dodavanje mreže"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi postavljanje"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nije povezan"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Dodaj mrežu"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Osvježi popis"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Spremi"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Odustani"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Skeniranje mreža..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dodirnite mrežu da biste se povezali s njom"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Spoji s postojećom mrežom"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Pov. s nesigurnom mrežom"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Unesite konfiguraciju mreže"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Povezivanje..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Produži na sljedeći korak"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP nije podržan"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Ne možete konfigurirati vezu EAP Wi-Fi tijekom postavljanja. Nakon postavljanja to možete učiniti u Postavkama, pod stavkom "<b>"Bežično povezivanje i mreže"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Povezivanje može potrajati nekoliko minuta..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Dodirnite "<b>"Dalje"</b>" za nastavak postavljanja."\n\n"Dodirnite "<b>"Natrag"</b>" za povezivanje s drugom Wi-Fi mrežom."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Ne možete konfigurirati vezu EAP Wi-Fi tijekom postavljanja. Nakon postavljanja, možete to učiniti u Postavkama, pod stavkom Bežično i mreže."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Sink. postavke"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Sinkronizacija trenutačno ima problema. Uskoro će nastaviti s radom."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Dodavanje računa"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Postavke opće sinkronizacije"</string>
<string name="background_data" msgid="5779592891375473817">"Pozadinski podaci"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Aplikacije mogu sink., slati i primati podatke bilo kada"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Pažnja"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Onemogućavanje pozadinskih podataka produljuje trajanje baterije i smanjuje upotrebu podataka. Neke aplikacije još uvijek mogu upotrebljavati pozadinsku podatkovnu mrežu."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Automatska sinkronizacija"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Aplikacije podatke sinkroniziraju automatski"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Upravljaj računima"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sink. uključena"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sink. ISKLJUČENA"</string>
<string name="sync_error" msgid="5060969083117872149">"Pogreška sink."</string>
<string name="settings_backup" msgid="2274732978260797031">"Postavke sigurnosne kopije"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Stvori sigurnosnu kopiju postavki"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sinkroniziraj sada"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Otkaži sinkronizaciju"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Dodirnite da biste odmah sinkronizirali<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalendar"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kontakti"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Dobro došli u Google sinkronizaciju!"</font>" "\n"Googleov pristup sinkronizaciji podataka za mogućnost pristupa kontaktima, sastancima i drugim stavkama s bilo kojeg mjesta."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Postavke sinkronizacije aplikacije"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Podaci i sinkronizacija"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Promijeni zaporku"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Postavke računa"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Brisanje računa"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Dodavanje računa"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Završi"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Brisanje računa"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Doista želite ukloniti ovaj račun? Uklanjanjem brišete i sve poruke, kontakte i ostale podatke iz telefona. "\n"Nastaviti?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Doista želite ukloniti ovaj račun? Uklanjanjem brišete i sve poruke, kontakte i ostale podatke iz telefona. "\n"Nastaviti?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Ovaj je račun obavezan za dio aplikacija. Možete ga ukloniti samo vraćanjem tabletnog uređaja na tvornički zadane postavke (time brišete sve osobne podatke). To možete učiniti u izborniku Privatnost, u aplikaciji Postavke."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Ovaj je račun obavezan za dio aplikacija. Možete ga ukloniti samo vraćanjem telefona na tvornički zadane postavke (time brišete sve osobne podatke). To možete učiniti u izborniku Privatnost, u aplikaciji Postavke."</string>
- <string name="provider_label" msgid="7724593781904508866">"Pokreni pretplate"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sinkroniziraj <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nije moguća ručna sinkronizacija"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Sinkronizacija za tu stavku trenutačno je onemogućena. Da biste promijenili svojstva, privremeno uključite pozadinske podatke i automatsku sinkronizaciju."</string>
- <string name="enter_password" msgid="3268224850821675915">"Unesite zaporku za dešifriranje pohrane"</string>
- <string name="try_again" msgid="5904121494468643129">"Pokušajte ponovno"</string>
- <string name="service_busy" msgid="225227519012409130">"Usluga je zauzeta, pokušajte ponovo"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-hu/arrays.xml b/res/values-hu/arrays.xml
index ecc6292..13f010c 100644
--- a/res/values-hu/arrays.xml
+++ b/res/values-hu/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Egyes ablakanimációk megjelenítése"</item>
<item msgid="488968798204105119">"Minden ablakanimáció megjelenítése"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 másodperc"</item>
- <item msgid="8881760709354815449">"30 másodperc"</item>
- <item msgid="7589406073232279088">"1 perc"</item>
- <item msgid="7001195990902244174">"2 perc"</item>
- <item msgid="7489864775127957179">"5 perc"</item>
- <item msgid="2314124409517439288">"10 perc"</item>
- <item msgid="6864027152847611413">"30 perc"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"azonnal"</item>
- <item msgid="6736512735606834431">"5 másodperc"</item>
- <item msgid="8044619388267891375">"15 másodperc"</item>
- <item msgid="1822002388249545488">"30 másodperc"</item>
- <item msgid="8538071621211916519">"1 perc"</item>
- <item msgid="5663439580228932882">"2 perc"</item>
- <item msgid="49888496216106852">"5 perc"</item>
- <item msgid="9002737361305019353">"10 perc"</item>
- <item msgid="4322676235684793329">"30 perc"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Nagyon lassú"</item>
<item msgid="2361722960903353554">"Lassú"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Kiváló"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Amikor a képernyő kikapcsol"</item>
+ <item msgid="3804733751095821976">"Amikor a képernyő kikapcsol"</item>
<item msgid="1549288661423279207">"Soha, ha töltőn van"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Soha"</item>
+ <item msgid="1986753720941888596">"Soha"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatikus"</item>
diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml
index e4dd4c5..33680a6 100644
--- a/res/values-hu/strings.xml
+++ b/res/values-hu/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Keresés"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth párosítási kérelem"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Párosítási kérelem"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Válassza ki a párosításhoz a következő eszközzel: <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Beérkező fájlok megjelenítése"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Bluetooth-on érkezett fájlok listájának mutatása."</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth-eszközválasztó"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth engedélykérés"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Egy alkalmazás engedélyt kér a Bluetooth bekapcsolására. Megadja az engedélyt?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Egy alkalmazás engedélyt kér arra, hogy táblagépét <xliff:g id="TIMEOUT">%1$d</xliff:g> másodpercre felfedezhetővé tegye más Bluetooth-eszközök számára. Engedélyezi ezt?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Az egyik alkalmazás engedélyt kér arra, hogy <xliff:g id="TIMEOUT">%1$d</xliff:g> másodpercre felderíthetővé tegye telefonját más eszközök számára. Engedélyezi ezt?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"A Bluetooth bekapcsolása..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatikus csatlakozás"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Dátum és idő beállításai"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"du. 1:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g> indítása"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Fiók:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxybeállítások"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxybeállítások"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"A globális HTTP proxy- és kivétellisták beállítása"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Törlés"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Vezeték nélküli kapcsolatok letiltása..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Vezeték nélküli kapcsolat engedélyezése..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Vezeték nélküli és hálózatok"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Vezeték nélküli és egyéb hálózatok"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Vezeték nélküli és hálózati beállítások"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"A Wi-Fi, a Bluetooth, a repülőgép mód, a mobilhálózatok és a VPN-ek kezelése"</string>
<string name="roaming" msgid="3596055926335478572">"Adatbarangolás"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Csatlakozás adatszolgáltatásokhoz barangolás során"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Szolgáltatóválasztás"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Mobilszolgáltató választása"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Dátum és idő"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Dátum és idő beállítása"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Dátum, idő, időzóna és formátumok beállítása"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatikus dátum és idő"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Hálózat által megadott idő használata"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Rendezés időzóna szerint"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Dátum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Idő"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Időtúllépés"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Képernyő lezárása, miután <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> eltelt a képernyő automatikus kikapcsolása után"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Eszköz lezárása ennyi idő után"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Tulajdonosi adatok megjelenítése a lezáró képernyőn"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Tulajdonosi adatok"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Saját pozíció beállítása, képernyőzár feloldása, SIM-kártya zárolása, hitelesítési adatok tárolójának zárolása"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Saját pozíció beállítása, képernyőzár feloldása, hitelesítési adatok tárolójának zárolása"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Jelszavak"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Eszköz titkosítása"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Adatok titkosítása az eszközön"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Adatok titkosítása az eszközön"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Használata esetén be kell állítani egy, az eszköz feloldására szolgáló PIN kódot vagy jelszavat"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Használata esetén be kell állítani egy, az eszköz feloldására szolgáló PIN kódot vagy jelszavat"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Titkosítva"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Titkosíthatja fiókjait, beállításait, letöltött alkalmazásait a kapcsolódó adatokkal együtt, valamint média- és egyéb fájljait. Telefonja titkosítása a titkosítását követően csak akkor szüntethető meg, ha visszaállítja a gyári beállításokat, amivel a telefonján szereplő minden adat törlődik."\n\n"A titkosítás akár egy órát is igénybe vehet. Feltöltött akkumulátorral kezdje meg a műveletet, és telefonját tartsa csatlakoztatva a titkosítás befejeződéséig. Ha megszakítja a titkosítás folyamatát, akkor adatainak egy része vagy teljes egésze elveszik."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Titkosíthatja fiókjait, beállításait, letöltött alkalmazásait a kapcsolódó adatokkal együtt, valamint média- és egyéb fájljait. Telefonja titkosítása a titkosítását követően csak akkor szüntethető meg, ha visszaállítja a gyári beállításokat, amivel a telefonján szereplő minden adat törlődik."\n\n"A titkosítás akár egy órát is igénybe vehet. Feltöltött akkumulátorral kezdje meg a műveletet, és telefonját tartsa csatlakoztatva a titkosítás befejeződéséig. Ha megszakítja a titkosítás folyamatát, akkor adatainak egy része vagy teljes egésze elveszik."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Táblagép titkosítása"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Telefon titkosítása"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Titkosítás megerősítése"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Titkosítja a felhasználói adatokat? A művelet nem vonható vissza, és nem szakítható meg adatveszteség nélkül. A titkosítás akár egy órát is igénybe vehet."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Titkosítja a felhasználói adatokat? A művelet nem vonható vissza, és nem szakítható meg adatveszteség nélkül. A titkosítás akár egy órát is igénybe vehet."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Titkosítás"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Próbálja újra ^1 másodperc múlva."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Zárolás beállítása"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Zárolás beállítása"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Képernyőfeloldás módja"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Képernyőzár beállítása"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Képernyőzár módosítása"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Minta, PIN-kód és jelszavas védelem módosítása és kikapcsolása"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Válasszon módszert a képernyő lezárásához"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Ki"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Soha ne zárja le a képernyőt"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nem biztosított"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Nem kell minta, PIN vagy jelszó a képernyő feloldásához"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne jelenjen meg a zárolási képernyő"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nincs"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"A képernyőzár-feloldási védelem kikapcsolása"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Minta"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Minta kell a képernyő feloldásához"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Rajzolja le a mintát a képernyőzár feloldásához"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN-kód"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Numerikus PIN kell a képernyő feloldásához"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Adjon meg egy számokból álló PIN-kódot a képernyőzár feloldásához"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Jelszó"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Jelszó kell a képernyő feloldásához"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Adjon meg egy jelszót a képernyőzár feloldásához"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"A távoli eszköz rendszergazdája kikapcsolta"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Ki"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nem biztosított"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Mintával biztosítva"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"PIN kóddal biztosítva"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Jelszóval biztosítva"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Képernyőzár kikapcsolása"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Feloldási minta törlése"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Feloldó PIN-kód törlése"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Az eszköz rendszergazdája nem engedi nemrég használt jelszó használatát"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Mégse"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Mégse"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Tovább"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Eszközfelügyelet"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Eszköz-rendszergazdák"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Az eszköz rendszergazdáinak megtekintése vagy deaktiválása"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth beállítások"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Kapcsolatok kezelése, eszközök nevének és felderíthetőségének beállítása"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth párosítási kérelem"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Írja be a PIN kódot \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eszköz párosításához. (Próbálkozzon a 0000 vagy az 1234 kombinációval.) Lehet, hogy ugyanezt a PIN kódot meg kell adnia a Bluetooth eszközön is."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Írja be az azonosítókulcsot \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eszköz párosításához."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"\"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eszköz párosításához győződjön meg róla, hogy az megjeleníti az azonosítókulcsot: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"párosítási kérelmet küldött."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"A párosításhoz \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" eszközön írja be, hogy \"<xliff:g id="PASSKEY">%2$s</xliff:g>\", majd nyomja meg az Entert."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Párosítás"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Ne legyen párosítva"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"bluetooth eszköz"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Beállítások…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Csatlakozás a következőhöz..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Média"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Kihangosító"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Táblagép"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Átvitel"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Beviteli eszköz"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Megosztás"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> leválasztásra kerül a hordozóeszköz hangkimenetéről."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> leválasztásra kerül a kihangosító hangkimenetéről."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> leválasztásra kerül a beviteli eszközről."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> leválasztásra kerül a megosztásról."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> beállításai"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Felhasználás a telefon hangjához"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Felhasználás fájlátvitelre"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Használat beviteli eszközként"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Használat internetelérésre"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Dokkolási beállítások"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Dokkoló használata a hanghoz"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Telefonhangszóróként"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Nem lehet hálózatokat keresni"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Hálózati értesítés"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Értesítést kérek az elérhető nyitott hálózatokról"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi alvás irányelve"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Adja meg, mikor legyen váltás Wi-Fi-ről mobil adatokra"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Hiba történt az alvás üzemmód irányelvének beállításánál."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Wi-Fi hálózat hozzáadása"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi hálózatok"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Keresés"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Hálózat módosítása"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Hálózat beállítása"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Írja be a hozzáférési pont PIN kódját"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS beállítása"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN módszer - konfiguráció"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"<xliff:g id="WPS_PIN">%1$s</xliff:g> PIN megadása a hozzáférési ponton"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"A WPS beállítása folyamatban van, és néhány tíz másodperc múlva befejeződik"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Nem sikerült a WPS elindítása, kérjük, próbálja újra."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Hálózati SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Biztonság"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Jelerősség"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Elfelejt"</string>
<string name="wifi_save" msgid="3331121567988522826">"Mentés"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Mégse"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Másik WPS programfolyamat észlelve; kérjük, próbálja újra pár perc múlva"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Speciális"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi alvás irányelve"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Adja meg, mikor legyen váltás Wi-Fi-ről mobil adatokra"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Probléma volt az alvás üzemmód irányelvének beállításával."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi frekvenciasáv"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Adja meg a működési frekvenciatartományt"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Hiba történt a frekvenciasáv beállítása során."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> hordozható Wi-Fi hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Hang"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Képernyő"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Megjelenítés"</string>
<string name="sound_settings" msgid="5007659014828162881">"Hangbeállítások"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Néma üzemmód"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Minden hang elnémítása a médiafájloké és az ébresztéseké kivételével"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Tájolás automatikus váltása a telefon elfordításakor"</string>
<string name="brightness" msgid="2354961343555249270">"Fényerő"</string>
<string name="brightness_summary" msgid="838917350127550703">"A képernyő fényerejének beállítása"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Időtúllépés"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"A képernyő <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> után automatikusan kikapcsol"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Képernyő elsötétedése"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatikus fényerő"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM-kártya lezárási beállításai"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIM-kártya zárolásának beállítása"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nem érhető el"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Állapot"</string>
<string name="device_status" msgid="607405385799807324">"Állapot"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Az eszköz akkumulátorának és a hálózatnak az állapota, valamint egyéb információk"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI-szám, telefonszám, jel stb."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonszám, jel stb."</string>
<string name="storage_settings" msgid="4211799979832404953">"Tárhely"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Tárolóhely beállításai"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USB-tár leválasztása, és az elérhető tárhely megtekintése"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD-kártya leválasztása, a rendelkezésre álló tárhely megtekintése"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Saját telefonszámom"</string>
+ <string name="status_number" msgid="5123197324870153205">"Saját telefonszámom"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL verzió"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Belső tárhely"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-tár"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-kártya"</string>
- <string name="memory_available" msgid="5052397223077021181">"Elérhető"</string>
- <string name="memory_size" msgid="5458889090691922288">"Összesen"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Számítás..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Alkalmazások"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Média"</string>
+ <string name="memory_available" msgid="418542433817289474">"Rendelkezésre álló hely"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Összes hely"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Alkalmazások használata"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Médiahasználat"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Megosztott tárh. levál."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SD-kártya leválasztása"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"A belső USB-tár leválasztása"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Ez törli az összes adatot táblagépe "<b>"belső tárhelyéről"</b>", ideértve:"\n\n<li>"az Ön Google Fiókját"</li>\n<li>"a rendszer- és alkalmazásadatokat és -beállításokat"</li>\n<li>"a letöltött alkalmazásokat"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Ez törli az összes adatot telefonja "<b>"belső tárhelyéről"</b>", ideértve:"\n\n<li>"az Ön Google Fiókját"</li>\n<li>"a rendszer- és alkalmazásadatokat és -beállításokat"</li>\n<li>"a letöltött alkalmazásokat"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Jelenleg a következő fiókokba van bejelentkezve:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Zene"</li>\n<li>"Fotók"</li>\n<li>"Más felhasználói adatok"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"A zenék, képek és más felhasználói adatok törléséhez az "<b>"USB-tárat"</b>" is törölnie kell."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"A zenék, képek és más felhasználói adatok törléséhez az "<b>"SD-kártyát"</b>" is törölnie kell."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"A zenék, képek és más felhasználói adatok törléséhez az "<b>"USB-tárat"</b>" is törölnie kell."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USB-tár törlése"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SD-kártya törlése"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Minden adat, például zenék és képek törlése a belső USB-tárról."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Támogatott GPS használata"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Szerver használata a GPS mellett (a hálózati forgalom csökkentéséhez ne jelölje be)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Szerver használata a GPS mellett (a GPS teljesítményének növeléséhez ne jelölje be)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Hely használata Google-keresésekhez"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Hely használata a Google-kereséshez és más Google-szolgáltatásokhoz"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"A Google keresési találatok és más Google-szolgáltatások javítása helyadat használatával."</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Hely használata Google-keresésekhez"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Hely használata a Google-kereséshez és más Google-szolgáltatásokhoz"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"A helyadat használatával a Google keresési találatok más Google-szolgáltatások javítása."</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"A táblagépről"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"A telefonról"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Jogi információk, állapot, szoftververzió megtekintése"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"A jelszó beállítva"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"A PIN-kód beállítva"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"A minta beállítva"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Képernyő lezárása"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Képernyő feloldása"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Feloldási minta módosítása"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"A feloldó PIN-kód módosítása"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Erősítse meg az elmentett mintát"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Tovább"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"A táblagép védelme"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"A telefon védelme"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Védje meg táblagépét a jogosulatlan használattól egy személyes képernyőfeloldási minta létrehozásával. Ujjával tetszőleges sorrendben kösse össze a pontokat a következő képernyőn. Legalább négy pontot össze kell kötnie. "\n\n" Készen áll? Érintse meg a \"Tovább\" gombot."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Védje meg telefonját a jogosulatlan használattól egy személyes képernyőzár-feloldási minta létrehozásával. "\n<font height="17">\n</font><b>"1"</b>" A következő képernyőn nézze meg a példaként felrajzolt mintát. "\n<font height="17">\n</font><b>"2"</b>" Amikor készen áll, rajzolja meg a saját feloldási mintáját. Nyugodtan kísérletezzen a különböző mintákkal, ám mindig kapcsoljon össze legalább négy pontot. "\n<font height="17">\n</font><b>"3"</b>" Rajzolja újra a mintát a megerősítéshez. "\n<font height="17">\n</font><b>"Készen áll? Érintse meg a “Tovább” gombot"</b>". "\n<font height="3">\n</font>"Amennyiben védtelenül kívánja hagyni telefonját, nyomja meg a \"Mégse\" gombot."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Alkalmazások kezelése"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"A telepített alkalmazások kezelése és eltávolítása"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Összesen"</string>
<string name="application_size_label" msgid="5055196275624686382">"Alkalmazás"</string>
<string name="data_size_label" msgid="8679376373625710107">"Adatok"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-tár"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kártya"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Eltávolítás"</string>
<string name="disable_text" msgid="6544054052049395202">"Letiltás"</string>
<string name="enable_text" msgid="9217362512327828987">"Engedélyezés"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Leállítja a rendszerszolgáltatásokat?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Biztosan leállítja ezt a rendszerszolgáltatást? Ha igen, táblagépe egyes funkciói nem fognak megfelelően működni, amíg ki, majd újra be nem kapcsolja."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Biztosan leállítja ezt a rendszerszolgáltatást? Ha igen, telefonja egyes funkciói nem fognak megfelelően működni, amíg ki, majd újra be nem kapcsolja."</string>
- <string name="language_settings" msgid="5292716747264442359">"Nyelv és bevitel"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Nyelv és bevitel"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Hely és szöveg"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Nyelv és billentyűzet beállításai"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Nyelvi beállítások"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Billentyűzetbeállítások"</string>
<string name="phone_language" msgid="1165758957501090679">"Nyelv kiválasztása"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Parancsikonok"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Szöveges bevitel"</string>
<string name="input_method" msgid="5434026103176856164">"Beviteli mód"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Jelenlegi beviteli mód"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Bevitelimód-választó"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatikus"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mindig látszik"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Mindig rejtve"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Beviteli módok konfigurálása"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Beállítások"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktív beviteli módok"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"A rendszer nyelvének használata"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> beállításai"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Aktív beviteli módok kiválasztása"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Beviteli módok kezelése"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Képernyőbillentyűzet beállításai"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Beépített billentyűzet"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Beépített, fizikai billentyűzet beállításai"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi időben"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi időben"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Előzmények részletei"</string>
- <string name="details_title" msgid="3792801565213935385">"Használat részletei"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Akkumulátorhasználat részletei"</string>
<string name="details_subtitle" msgid="32593908269911734">"Használat részletei"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Az energiafelhasználás beállítása"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Mellékelt csomagok"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Sikertelen egyeztetés a szerverrel. Lehet, hogy az nem fogadja el a titkosítási beállításait. Ellenőrzi a beállításokat?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPN hozzáadása"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPN hozzáadása"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN részletei"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g> hálózat hozzáadása"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> részletei"</string>
<string name="vpns" msgid="3148141862835492816">"VPN-ek"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Virtuális magánhálózatok (VPN) beállítása és kezelése"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nem változott)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nincs beállítva)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Hitelesítési adatok tárolója"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Hitelesítési adatok tárolója"</string>
<string name="credentials_access" msgid="4843187230913860492">"Biztonságos hitelesítő adatok használata"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Az alkalmazások hozzáférhetnek a biztonsági tanúsítványokhoz és más hitelesítési adatokhoz"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Telepítés USB-tárról"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Telepítés az SD-kártyáról"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Tanúsítványok telepítése USB-tárról"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Tanúsítványok telepítése az SD-kártyáról"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Jelszó beállítása"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"A hitelesítési adatok tárolója jelszavának beállítása vagy cseréje"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Hitelesítési adatok törlése"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Minden tartalom törlése és a jelszó visszaállítása"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Jelszó megadása"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Adja meg a hitelesítési adatok tárolójának jelszavát."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Állítsa be a hitelesítési adatok tárolójának jelszavát. Legalább 8 karakter hosszúnak kell lennie."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Adja meg a hitelesítési adatok tárolójának jelszavát."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Telepítés USB-tárról"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Telepítés az SD-kártyáról"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Titkosított tanúsítványok telepítése USB-tárról"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Titkosított tanúsítványok telepítése az SD-kártyáról"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Jelszó beállítása"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"A hitelesítési adatok tárolója jelszavának beállítása és módosítása"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Tároló ürítése"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"A hitelesítési adatok tárolója teljes tartalmának kiürítése és jelszavának visszaállítása"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Biztosan törli az összes hitelesítési adatot és visszaállítja a hitelesítési adatok tárolójának jelszavát?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Jelenlegi jelszó:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Új jelszó:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Új jelszó megerősítése"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Minden tartalom eltávolításra kerül, és a jelszó visszaáll. Biztos benne?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Adjon meg egy jelszót a hitelesítési adatok tárolója számára (legalább 8 karakter)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Adja meg a helyes jelszót."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Kérjük, adja meg a helyes jelszót. Még egy alkalommal próbálkozhat, aztán a rendszer törli a hitelesítési adatok tárolóját."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Kérjük, adja meg a helyes jelszót. Még <xliff:g id="NUMBER">%1$d</xliff:g> alkalommal próbálkozhat, aztán a rendszer törli a hitelesítési adatok tárolóját."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"A jelszavak nem egyeznek."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Be kell írnia egy jelszót és meg kell erősítenie azt."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Adja meg a jelszót."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"A jelszónak legalább 8 karakter hosszúnak kell lennie."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Helytelen jelszó."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Helytelen jelszó. Már csak egy lehetősége van, mielőtt a hitelesítési adatok tárolója törlődik."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Helytelen jelszó. <xliff:g id="NUMBER">%1$d</xliff:g> további lehetősége van, mielőtt a hitelesítési adatok tárolóját töröljük."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Hit. adatok tárolója üres."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"A hitelesítési adatok tárolója kiürítve."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"A hitelesítési adatok tárolója engedélyezve van."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"A hitelesítési adatok tárolója le van tiltva."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Segélyhívás hangja"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Viselkedés beállítása segélyhívás kezdeményezésekor"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Adatvédelem"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Beérkező hívások"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Értesítések"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Visszajelzés"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi beállítása"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Csatlakozás <xliff:g id="NETWORK_NAME">%s</xliff:g> Wi-Fi hálózathoz"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Csatlakozás <xliff:g id="NETWORK_NAME">%s</xliff:g> Wi-Fi hálózathoz..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Csatlakozva <xliff:g id="NETWORK_NAME">%s</xliff:g> Wi-Fi hálózathoz"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Hálózat hozzáadása"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi beállítása"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nincs csatlakozva:"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Hálózat hozzáadása"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Lista frissítése"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Mentés"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Mégse"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Hálózatok keresése..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Érintsen meg egy hálózatot a csatlakozáshoz"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Csatlakozás meglévő hálózathoz"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Csatl. nem biztonságos hálózathoz"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Hálózati konfiguráció megadása"</string>
@@ -1364,9 +1370,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Kapcsolódás..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Tovább a következő lépésre"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Az EAP nem támogatott"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Nem lehet konfigurálni az EAP Wi-Fi-kapcsolatot a telepítés során. A telepítés után ezt a Beállítások menü "<b>"Vezeték nélküli és egyéb Hálózatok"</b>" pontjában teheti meg."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"A kapcsolódás igénybe vehet pár percet..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Érintse meg a "<b>"Következő"</b>" lehetőséget a telepítés folytatásához."\n\n"Érintse meg a "<b>"Vissza"</b>" lehetőséget egy másik Wi-Fi-hálózathoz való csatlakozáshoz."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Nem lehet konfigurálni az EAP Wi-Fi kapcsolatot a telepítés során. A telepítés után ezt a Beállítások menü Vezeték nélküli és egyéb hálózatok pontjában teheti meg."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Szinkronizálási beállítások"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"A szinkronizálással problémák vannak. Hamarosan helyreáll."</string>
<string name="add_account_label" msgid="7811707265834013767">"Fiók hozzáadása"</string>
@@ -1382,32 +1386,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Szinkr. KIKAPCSOLVA"</string>
<string name="sync_error" msgid="5060969083117872149">"Szinkronizálási hiba"</string>
<string name="settings_backup" msgid="2274732978260797031">"Biztonsági mentés beállításai"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Biztonsági másolat készítése a beállításaimról"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Szinkronizálás most"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Szinkronizálás felfüggesztése"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Érintse meg az azonnali szinkronizáláshoz<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Naptár"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Partnerek"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Üdvözli a Google Sync!"</font>" "\n"Az adatok Google-féle szinkronizálása lehetővé teszi, hogy bárhonnan hozzáférjen címtárához, találkozóihoz stb."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Alkalmazásszinkronizálási beállítások"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Adatok és szinkronizálás"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Jelszó módosítása"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Fiókbeállítások"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Fiók törlése"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Fiók hozzáadása"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Befejezés"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Fiók törlése"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Valóban el szeretné távolítani ezt a fiókot? Eltávolításával törli a táblaszámítógépről az összes hozzá tartozó üzenetet, névjegyet és egyéb adatot. "\n"Folytatja?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Valóban el szeretné távolítani ezt a fiókot? Eltávolításával törli a telefonról az összes hozzá tartozó üzenetet, névjegyet és egyéb adatot. "\n" Folytatja?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Erre a fiókra szüksége van egyes alkalmazásoknak. Csak úgy távolíthatja el, hogy visszaállítja a táblagép alapértelmezett gyári beállításait (amivel törli az összes személyes adatát). Ezt a Beállítások alkalmazás Adatvédelem részében teheti meg."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Erre a fiókra szüksége van egyes alkalmazásoknak. Csak úgy távolíthatja el, hogy visszaállítja a telefon alapértelmezett gyári beállításait (amivel törli az összes személyes adatát). Ezt a Beállítások alkalmazás Adatvédelem részében teheti meg."</string>
- <string name="provider_label" msgid="7724593781904508866">"Feliratkozások továbbítása"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"<xliff:g id="AUTHORITY">%s</xliff:g> szinkronizálása"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nem lehet kézi vezérléssel szinkronizálni"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Ennek az elemnek a szinkronizálása jelenleg le van tiltva. Preferenciái módosításához ideiglenesen kapcsolja be a háttéradatokat és az automatikus szinkronizálást."</string>
- <string name="enter_password" msgid="3268224850821675915">"Írja be a jelszót a tárhely titkosításának feloldásához"</string>
- <string name="try_again" msgid="5904121494468643129">"Sajnáljuk, próbálja újra"</string>
- <string name="service_busy" msgid="225227519012409130">"A szolgáltatás elfoglalt, próbálja újra"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-in/arrays.xml b/res/values-in/arrays.xml
index 738df2a..5dffbe3 100644
--- a/res/values-in/arrays.xml
+++ b/res/values-in/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Sebagian animasi jendela ditampilkan"</item>
<item msgid="488968798204105119">"Semua animasi jendela ditampilkan"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 detik"</item>
- <item msgid="8881760709354815449">"30 detik"</item>
- <item msgid="7589406073232279088">"1 menit"</item>
- <item msgid="7001195990902244174">"2 menit"</item>
- <item msgid="7489864775127957179">"5 menit"</item>
- <item msgid="2314124409517439288">"10 menit"</item>
- <item msgid="6864027152847611413">"30 menit"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"segera"</item>
- <item msgid="6736512735606834431">"5 detik"</item>
- <item msgid="8044619388267891375">"15 detik"</item>
- <item msgid="1822002388249545488">"30 detik"</item>
- <item msgid="8538071621211916519">"1 menit"</item>
- <item msgid="5663439580228932882">"2 menit"</item>
- <item msgid="49888496216106852">"5 menit"</item>
- <item msgid="9002737361305019353">"10 menit"</item>
- <item msgid="4322676235684793329">"30 menit"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Sangat lambat"</item>
<item msgid="2361722960903353554">"Lambat"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Luar biasa"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Ketika layar mati"</item>
+ <item msgid="3804733751095821976">"Ketika layar mati"</item>
<item msgid="1549288661423279207">"Tidak pernah ketika tersambung"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Tidak pernah"</item>
+ <item msgid="1986753720941888596">"Tidak pernah"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Otomatis"</item>
diff --git a/res/values-in/strings.xml b/res/values-in/strings.xml
index 8a73527..adcf547 100644
--- a/res/values-in/strings.xml
+++ b/res/values-in/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Memindai"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Permintaan penyandingan bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Permintaan penyandingan"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Pilih untuk disandingkan dengan <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Tampilkan berkas yang diterima"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Tampilkan daftar berkas yang diterima melalui Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Pemilih perangkat bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Permintaan izin bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Aplikasi meminta izin untuk menghidupkan Bluetooth. Anda ingin melakukan ini?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Aplikasi di tablet Anda meminta izin untuk mengaktifkan Bluetooth dan membuat tablet Anda dapat ditemukan oleh perangkat lain selama <xliff:g id="TIMEOUT">%1$d</xliff:g> detik. Anda ingin melakukan ini?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Aplikasi pada ponsel Anda meminta izin untuk mengaktifkan Bluetooth dan untuk membuat ponsel Anda dapat ditemukan oleh perangkat lain selama <xliff:g id="TIMEOUT">%1$d</xliff:g> detik. Apakah Anda ingin melakukannya?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Menghidupkan Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Sambung otomatis"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Setelan tanggal & waktu"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1.00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13.00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Mulai <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Akun:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Setelan proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Setelan Proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Setel proxy HTTP global dan daftar pengecualian"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Bersihkan"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Menonaktifkan sambungan nirkabel..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Aktifkan sambungan nirkabel..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Jaringan & nirkabel"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Jaringan & nirkabel"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Setelan jaringan & nirkabel"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Kelola Wi-Fi, Bluetooth, mode pesawat, jaringan seluler, & VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Data roaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Sambungkan ke layanan data ketika roaming"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Pilihan operator"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Pilih operator jaringan"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Tanggal & waktu"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Setel tanggal dan waktu"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Setel tanggal, waktu, zona waktu, & format"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Tanggal & waktu otomatis"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Gunakan waktu yang disediakan jaringan"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sortir berdasarkan zona waktu"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Tanggal"</string>
<string name="time_picker_title" msgid="483460752287255019">"Waktu"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Waktu tunggu"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Kunci layar <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> setelah layar mati secara otomatis"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Mengunci perangkat setelah waktu tunggu"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Tampilkan info pemilik pada layar pengunci"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info pemilik"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Setel Lokasiku, pembuka kunci layar, kunci kartu SIM, kunci penyimpanan kredensial"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Setel Lokasiku, pembuka kunci layar, kunci penyimpanan kredensial"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Sandi"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Enkripsi perangkat"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Mengenkripsi data di perangkat"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Mengenkripsi data di perangkat"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Anda wajib menyetel pin buka kunci atau sandi perangkat"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Anda wajib menyetel pin buka kunci atau sandi perangkat"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Dienkripsi"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Anda dapat mengenkripsi akun, setelan, aplikasi yang diunduh dan datanya, media, serta berkas lainnya Setelah Anda mengenkripsi ponsel, Anda tidak dapat membatalkan enkripsi kecuali dengan menyetel ulang ke setelan pabrik, yang menghapus semua data di ponsel Anda."\n\n"Enkripsi memakan waktu sampai satu jam. Anda harus memulainya dengan baterai yang sudah diisi dayanya dan terus terpasang dengan ponsel hingga enkripsi selesai. Jika menyela proses enkripsi, Anda akan kehilangan sebagian atau seluruh data."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Anda dapat mengenkripsi akun, setelan, aplikasi yang diunduh dan datanya, media, serta berkas lainnya Setelah Anda mengenkripsi ponsel, Anda tidak dapat membatalkan enkripsi kecuali dengan menyetel ulang ke setelan pabrik, yang menghapus semua data di ponsel Anda."\n\n"Enkripsi memakan waktu sampai satu jam. Anda harus memulainya dengan baterai yang sudah diisi dayanya dan terus terpasang dengan ponsel hingga enkripsi selesai. Jika menyela proses enkripsi, Anda akan kehilangan sebagian atau seluruh data."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Enkripsi tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Enkripsi ponsel"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Konfirmasi enkripsi"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Enkripsi data pengguna? Operasi ini tidak dapat dibatalkan dan tidak boleh disela karena data akan hilang! Enkripsi memakan waktu sampai satu jam."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Enkripsi data pengguna? Operasi ini tidak dapat dibatalkan dan tidak boleh disela karena data akan hilang! Enkripsi memakan waktu sampai satu jam."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Mengenkripsi"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Coba lagi dalam ^1 detik."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Mengonfigurasi layar kunci"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Mengonfigurasi layar kunci"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Keamanan pembuka kunci layar"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Siapkan kunci layar"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Ubah kunci layar"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Ubah atau nonaktifkan pola, PIN, atau sandi keamanan"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Pilih metode untuk mengunci layar"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Mati"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Jangan mengunci layar"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Tidak diamankan"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Tidak memerlukan pola, PIN, atau sandi untuk membuka kunci layar"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Tidak mengaktifkan layar kunci"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Tak Satu Pun"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Nonaktifkan keamanan pembuka kunci layar"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Pola"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Membutuhkan pola untuk membuka kunci layar"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Buat pola untuk membuka kunci layar"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Perlu PIN numerik untuk membuka kunci layar"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Masukkan PIN angka untuk membuka kunci layar"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Sandi"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Membutuhkan sandi untuk membuka kunci layar"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Masukkan sandi untuk membuka kunci layar"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Dinonaktifkan oleh administrator perangkat jarak jauh"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Mati"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Tidak diamankan"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Diamankan dengan pola"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Diamankan dengan PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Diamankan dengan sandi"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Matikan kunci layar"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Hapus pola pembuka kunci"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Hapus PIN pembuka kunci"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Administrator perangkat tidak membolehkan penggunaan sandi saat ini"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Batal"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Batal"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Selanjutnya"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administrasi perangkat"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Administrator perangkat"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Lihat atau nonaktifkan administrator perangkat"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Setelan bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Kelola sambungan, setel nama perangkat & dapat ditemukan"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Permintaan penyandingan bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Masukkan PIN untuk menyandingkan dengan \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Coba 0000 atau 1234) Anda mungkin harus memasukkan PIN yang sama ke perangkat Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Masukkan passkey untuk menyandingkan dengan \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Untuk menyandingkan dengan \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", konfirmasikan bahwa ponsel menampilkan kode sandi: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"ingin menyandingkan."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Masukkan \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" pada \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" untuk menyandingkan diikuti dengan return atau enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Pasangan"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Jangan Sandingkan"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"perangkat bluetooth"</string>
@@ -406,14 +381,15 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opsi…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Sambungkan ke…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transfer"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Perangkat Masukan"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Menambatkan"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dilepas sambungannya dari audio media."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dilepas sambungannya dari audio handsfree."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dilepas sambungannya dari perangkat masukan."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dilepas sambungannya dari penambatan."</string>
+ <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dinonaktifkan dari audio media."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dinonaktifkan dari perangkat masukan."</string>
+ <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> akan dinonaktifkan dari menambatkan."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> opsi"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Tindakan perangkat"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Sambungkan"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Gunakan untuk audio ponsel"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Gunakan untuk transfer berkas"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Gunakan untuk masukan"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Digunakan untuk akses internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Setelan Dok"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Gunakan dok untuk audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Sebagai pengeras suara telepon"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Tidak dapat memindai jaringan"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Pemberitahuan jaringan"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Beri tahu saya ketika ada jaringan yang tersedia"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Kebijakan tidur Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Tentukan saat beralih dari Wi-Fi ke data seluler"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Terjadi masalah saat menyetel kebijakan tidur."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Tambahkan jaringan Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Jaringan Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Pindai"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Ubah jaringan"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Penyiapan Jaringan"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Masukkan pin dari titik akses"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Penyiapan WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfigurasi metode pin WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Masukkan pin <xliff:g id="WPS_PIN">%1$s</xliff:g> pada titik akses"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS sudah berjalan dan mungkin perlu waktu puluhan detik untuk diselesaikan"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Gagal memulai WPS, coba lagi"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID jaringan"</string>
<string name="wifi_security" msgid="6603611185592956936">"Keamanan"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Kekuatan sinyal"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Lupakan"</string>
<string name="wifi_save" msgid="3331121567988522826">"Simpan"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Batal"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Sesi WPS lainnya terdeteksi, coba lagi dalam beberapa menit"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Lanjutan"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Kebijakan tidur Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Tentukan saat beralih dari Wi-Fi ke data seluler"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Terjadi masalah saat menyetel kebijakan tidur."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Pita frekuensi Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Tentukan rentang frekuensi operasi"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Ada masalah saat menyetel pita frekuensi."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> hotspot Wi-Fi portabel"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Suara"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Layar"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Tampilan"</string>
<string name="sound_settings" msgid="5007659014828162881">"Setelan suara"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Mode senyap"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Senyapkan semua suara kecuali media & alarm"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Berganti orientasi secara otomatis ketika memutar ponsel"</string>
<string name="brightness" msgid="2354961343555249270">"Kecerahan"</string>
<string name="brightness_summary" msgid="838917350127550703">"Sesuaikan kecerahan layar"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Waktu tunggu"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Layar mati secara otomatis setelah <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Waktu tunggu layar"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Kecerahan otomatis"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Setelan kunci kartu SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Siapkan kunci kartu SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Tidak tersedia."</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status baterai, jaringan, dan informasi lainnya"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Nomor telepon, sinyal, dan sebagainya."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Nomor telepon, sinyal, dan sebagainya."</string>
<string name="storage_settings" msgid="4211799979832404953">"Penyimpanan"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Setelan penyimpanan"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Melepas penyimpanan USB, melihat penyimpanan yang tersedia"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Lepaskan kartu SD, lihat penyimpanan yang tersedia"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Nomor teleponku"</string>
+ <string name="status_number" msgid="5123197324870153205">"Nomor teleponku"</string>
<string name="status_min_number" msgid="3519504522179420597">"MENIT"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versi PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Penyimpanan internal"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Penyimpanan USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Kartu SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Tersedia"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Menghitung..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplikasi"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Ruang tersedia"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Total ruang"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Penggunaan oleh aplikasi"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Penggunaan oleh media"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Lepas penyimpanan bersama"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Lepaskan kartu SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Lepas penyimpanan USB internal"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Ini akan menghapus semua data dari "<b>"penyimpanan internal"</b>" tablet Anda, termasuk:"\n\n<li>"Akun Google Anda"</li>\n<li>"Data dan setelan sistem dan aplikasi"</li>\n<li>"Aplikasi yang diunduh"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Ini akan menghapus semua data dari "<b>"penyimpanan internal"</b>" ponsel Anda, termasuk:"\n\n<li>"Akun Google Anda"</li>\n<li>"Data dan setelan sistem dan aplikasi"</li>\n<li>"Aplikasi yang diunduh"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Saat ini Anda telah masuk ke akun berikut ini:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musik"</li>\n<li>"Foto"</li>\n<li>"Data pengguna lainnya"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Untuk menghapus musik, gambar, dan data pengguna lainnya, "<b>"penyimpanan USB"</b>" perlu dihapus."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Selain itu, untuk menghapus musik, gambar, dan data pengguna lainnya, "<b>"kartu SD"</b>" perlu dihapus."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Untuk menghapus musik, gambar, dan data pengguna lainnya, "<b>"kartu SD"</b>" perlu dihapus."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Hapus penyimpanan USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Hapus kartu SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Hapus semua data di penyimpanan USB internal, seperti musik atau foto."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Gunakan GPS berbantuan"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Gunakan server untuk membantu GPS (hapus centang untuk mengurangi penggunaan jaringan)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Gunakan server untuk membantu GPS (hapus centang untuk memperbaiki kinerja GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Gunakan lokasi untuk Google Penelusuran"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Gunakan lokasi untuk Google Penelusuran dan layanan Google lainnya"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokasi digunakan untuk meningkatkan hasil Google Penelusuran dan layanan Google lainnya"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Gunakan lokasi untuk penelusuran Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Gunakan lokasi untuk penelusuran Google dan layanan Google lainnya"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokasi digunakan untuk meningkatkan hasil penelusuran Google dan layanan Google lainnya"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Tentang tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Tentang ponsel"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Lihat info legal, status, versi perangkat lunak"</string>
@@ -836,11 +810,11 @@
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"Konfirmasi PIN Anda"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"Sandi tidak cocok"</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"PIN tidak cocok"</string>
- <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"Singkap pilihan"</string>
+ <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"Buka kunci pilihan"</string>
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Sandi telah ditetapkan"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN telah ditetapkan"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Pola telah ditetapkan"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Layar pengunci"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Pembuka kunci layar"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Ubah pola pembuka kunci"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Ubah PIN pembuka kunci"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Konfirmasi pola tersimpan"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Berikutnya"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Mengamankan tablet Anda"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Mengamankan ponsel Anda"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Lindungi tablet Anda dari penggunaan yang tidak sah dengan membuat pola pembuka kunci layar pribadi. Gunakan jari Anda untuk menghubungkan titik-titik dengan sembarang urutan di layar berikutnya. Anda paling tidak harus menghubungkan empat titik. "\n"Siap memulai?"\n" Sentuh \"Selanjutnya\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Lindungi ponsel Anda dari penggunaan tanpa izin dengan membuat suatu pola pembuka kunci pribadi. "\n<font height="17">\n</font><b>"1"</b>" Pada layar selanjutnya, perhatikan ketika pola contoh dibuat. "\n<font height="17">\n</font><b>"2"</b>" Lalu, buat pola pembuka kunci Anda sendiri. Coba berbagai pola berbeda, tetapi sambungkan paling tidak empat titik. "\n<font height="17">\n</font><b>"3"</b>" Buat lagi pola Anda untuk mengonfirmasi. "\n<font height="17">\n</font><b>"Siap untuk memulai? Sentuh “Selanjutnya”"</b>". "\n<font height="3">\n</font>"Untuk membiarkan ponsel Anda tanpa perlindungan, sentuh \"Batalkan”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Kelola aplikasi"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Mengelola dan menghapus aplikasi terpasang"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplikasi"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Penyimpanan USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Kartu SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Copot pemasangan"</string>
<string name="disable_text" msgid="6544054052049395202">"Nonaktifkan"</string>
<string name="enable_text" msgid="9217362512327828987">"Aktifkan"</string>
@@ -991,15 +966,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Hentikan layanan sistem?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Anda yakin ingin menghentikan layanan sistem ini? Jika melakukannya, beberapa fitur tablet Anda dapat berhenti berfungsi dengan benar hingga Anda mematikan dan menghidupkannya lagi."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Anda yakin ingin menghentikan layanan sistem ini? Jika melakukannya, beberapa fitur ponsel Anda dapat berhenti berfungsi dengan benar hingga Anda mematikan dan menghidupkannya lagi."</string>
- <string name="language_settings" msgid="5292716747264442359">"Bahasa & masukan"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Bahasa & masukan"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Bahasa & keyboard"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Bahasa &mp; setelan keyboard"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Setelan bahasa"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Setelan keyboard"</string>
<string name="phone_language" msgid="1165758957501090679">"Pilih bahasa"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Penggantian otomatis"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Perbaiki kata yang salah eja"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Huruf besar otomatis"</string>
+ <string name="auto_caps" msgid="6379232078052591265">"Kapitalisasi otomatis"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Besarkan huruf pertama pada kalimat"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Beri tanda baca otomatis"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Setelan keyboard fisik"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Pintasan"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Masukan teks"</string>
<string name="input_method" msgid="5434026103176856164">"Metode masukan"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Metode masukan saat ini"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Pemilih metode masukan"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Otomatis"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Selalu tampilkan"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Selalu sembunyikan"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurasikan metode masukan"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Setelan"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Metode masukan aktif"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Gunakan bahasa sistem"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> setelan"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Pilih metode masukan aktif"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Kelola Metode Masukan"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Setelan keyboard layar"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Keyboard internal"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Setelan keyboard fisik internal"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi berdasarkan waktu"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi berdasarkan waktu"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detail riwayat"</string>
- <string name="details_title" msgid="3792801565213935385">"Gunakan detail"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detail penggunaan baterai"</string>
<string name="details_subtitle" msgid="32593908269911734">"Gunakan detail"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Sesuaikan penggunaan daya"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Termasuk paket"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Negosiasi server gagal. Server mungkin tidak setuju dengan opsi enkripsi Anda. Apakah Anda ingin memeriksa setelan enkripsi?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Tambahkan VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Tambahkan VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detail VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Tambahkan VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> detail"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Siapkan & kelola VPN"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(tidak diubah)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(tidak disetel)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Penyimpanan kredensial"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Penyimpanan kredensial"</string>
<string name="credentials_access" msgid="4843187230913860492">"Gunakan kredensial aman"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Izinkan aplikasi mengakses sertifikat aman dan kredensial lainnya"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Memasang dari penyimpanan USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Pasang dari kartu SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Pasang sertifikat dari penyimpanan USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Pasang sertifikat dari kartu SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Setel sandi"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Setel atau ubah sandi untuk penyimpanan kredensial"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Hapus kredensial"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Hapus semua konten dan setel ulang sandi"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Masukkan sandi"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Masukkan sandi untuk penyimpanan kredensial."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Setel sandi untuk penyimpanan kredensial. Paling tidak 8 karakter."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Masukkan sandi penyimpanan kredensial."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Memasang dari penyimpanan USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Pasang dari kartu SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Memasang sertifikat dienkripsi dari penyimpanan USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Pasang sertifikat terenkripsi dari kartu SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Setel sandi"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Setel atau ubah sandi penyimpanan kredensial"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Hapus penyimpanan"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Hapus penyimpanan kredensial dari semua konten dan setel ulang sandinya"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Apakah Anda ingin menghapus semua kredensial dan menyetel ulang sandi penyimpanan kredensial?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Sandi saat ini:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Sandi baru:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Konfirmasi sandi baru:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Semua konten akan dihapus, dan sandi akan disetel ulang. Yakin dengan hal ini?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Setel sandi untuk penyimpanan kredensial (paling tidak 8 karakter)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Harap masukkan sandi yang tepat."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Harap masukkan sandi yang tepat. Anda dapat mencoba sekali lagi untuk memasukkan sandi sebelum penyimpanan kredensial dihapus."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Harap masukkan sandi yang tepat. Anda dapat mencoba <xliff:g id="NUMBER">%1$d</xliff:g> lagi untuk memasukkan sandi sebelum penyimpanan kredensial dihapus."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Sandi tidak cocok."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Anda harus memasukkan dan mengonfirmasi sandi."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Harap masukkan sandi."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Sandi minimal terdiri dari 8 karakter."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Sandi salah."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Sandi salah. Anda memiliki satu kesempatan sekali lagi sebelum penyimpanan kredensial dihapus."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Sandi salah. Anda memiliki <xliff:g id="NUMBER">%1$d</xliff:g> kesempatan lagi sebelum penyimpanan kredensial dihapus."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Penyimpanan kredensial dihapus."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Penyimpanan kredensial dihapus."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Penyimpanan kredensial diaktifkan."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Penyimpanan kredensial dinonaktifkan."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Nada darurat"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Setel perilaku ketika panggilan darurat dilakukan"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privasi"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Panggilan masuk"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Pemberitahuan"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Umpan balik"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Penyiapan Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Sambungkan ke jaringan Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Menyambung ke jaringan Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Tersambung ke jaringan Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Tambahkan jaringan"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Penyiapan WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Tidak terhubung"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Tambahkan jaringan"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Perbarui daftar"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Simpan"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Batal"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Memindai jaringan..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Sentuh jaringan untuk menyambung ke jaringan itu"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Sambungkan ke jaringan yang ada"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Tersambung ke jaringan tidak aman"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Masukkan konfigurasi jaringan"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Menyambung..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Lanjut ke langkah berikutnya"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP tidak didukung"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Anda tidak dapat mengonfigurasi koneksi Wi-Fi EAP selama penyiapan. Setelah penyiapan, Anda dapat melakukannya di Setelan, pada bagian "<b>"Jaringan & nirkabel"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Menyambungkan membutuhkan waktu beberapa menit..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Sentuh "<b>"Berikutnya"</b>" untuk melanjutkan penyiapan. "\n\n"Sentuh "<b>"Kembali"</b>" untuk menyambung dengan jaringan Wi-Fi lainnya."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Anda tidak dapat mengonfigurasi koneksi Wi-Fi EAP selama penyiapan. Setelah penyiapan, Anda dapat melakukannya dalam Setelan, di bagian Nirkabel & Jaringan."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Setelan sinkronisasi"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Saat ini sinkronisasi mengalami masalah. Sinkronisasi akan segera kembali."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Tambahkan akun"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Setelan sinkronisasi umum"</string>
<string name="background_data" msgid="5779592891375473817">"Data latar belakang"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Aplikasi dapat menyinkronkan, mengirimkan, dan menerima data kapan pun"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Perhatian"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Menonaktifkan data latar belakang memperpanjang masa pakai baterai dan menurunkan penggunaan data. Beberapa aplikasi masih dapat menggunakan sambungan data latar belakang."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Sinkronisasi otomatis"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Aplikasi menyinkronkan data secara otomatis"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Mengelola akun"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sinkronisasi AKTIF"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sinkronisasi NONAKTIF:"</string>
<string name="sync_error" msgid="5060969083117872149">"Galat sinkronisasi"</string>
<string name="settings_backup" msgid="2274732978260797031">"Setelan cadangan"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Cadangkan setelan saya"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sinkronisasi sekarang"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Batalkan sinkronisasi"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Sentuh untuk menyinkronkan sekarang<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalender"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kenalan"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Selamat datang di Google sync!"</font>\n" Pendekatan Google untuk menyinkronkan data guna membolehkan akses ke kenalan, janji temu, dan lain-lain dari mana saja."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Setelan sinkronisasi aplikasi"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data & sinkronisasi"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Ubah sandi"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Setelan akun"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Hapus akun"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Tambah akun"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Selesai"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Hapus akun"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Yakin ingin menghapus akun ini? Menghapusnya juga akan menghapus semua pesan di dalamnya, kenalan, dan data lain dari tablet. "\n"Lanjutkan?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Yakin ingin menghapus akun ini? Menghapusnya juga akan menghapus semua pesan di dalamnya, kenalan, dan data lain dari ponsel. "\n"Lanjutkan?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Akun ini diperlukan oleh beberapa aplikasi. Anda hanya dapat menghapusnya dengan menyetel ulang tablet ke setelan bawaan pabrik (yang menghapus semua data pribadi Anda). Anda dapat melakukannya di aplikasi Setelan, pada bagian Privasi."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Akun ini diperlukan oleh beberapa aplikasi. Anda hanya dapat menghapusnya dengan menyetel ulang ponsel ke setelan bawaan pabrik (yang menghapus semua data pribadi Anda). Anda dapat melakukannya di aplikasi Setelan, pada bagian Privasi."</string>
- <string name="provider_label" msgid="7724593781904508866">"Langganan push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sinkronisasikan <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Tidak dapat menyinkronkan secara manual"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Saat ini sinkronisasi untuk item ini dinonaktifkan. Untuk mengubah preferensi Anda, hidupkan sinkronisasi otomatis dan data latar belakang untuk sementara."</string>
- <string name="enter_password" msgid="3268224850821675915">"Masukkan sandi untuk mendekripsi penyimpanan"</string>
- <string name="try_again" msgid="5904121494468643129">"Maaf, coba sekali lagi"</string>
- <string name="service_busy" msgid="225227519012409130">"Layanan sibuk, coba lagi"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-it/arrays.xml b/res/values-it/arrays.xml
index 2cdc97a..7f699ce 100644
--- a/res/values-it/arrays.xml
+++ b/res/values-it/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Vengono visualizzate alcune animazioni delle finestre"</item>
<item msgid="488968798204105119">"Vengono visualizzate tutte le animazioni delle finestre"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 secondi"</item>
- <item msgid="8881760709354815449">"30 secondi"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minuti"</item>
- <item msgid="7489864775127957179">"5 minuti"</item>
- <item msgid="2314124409517439288">"10 minuti"</item>
- <item msgid="6864027152847611413">"30 minuti"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"immediatamente"</item>
- <item msgid="6736512735606834431">"5 secondi"</item>
- <item msgid="8044619388267891375">"15 secondi"</item>
- <item msgid="1822002388249545488">"30 secondi"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minuti"</item>
- <item msgid="49888496216106852">"5 minuti"</item>
- <item msgid="9002737361305019353">"10 minuti"</item>
- <item msgid="4322676235684793329">"30 minuti"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Molto lenta"</item>
<item msgid="2361722960903353554">"Lenta"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Eccellente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Quando lo schermo si disattiva"</item>
+ <item msgid="3804733751095821976">"Quando lo schermo si disattiva"</item>
<item msgid="1549288661423279207">"Mai quando collegato"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Mai"</item>
+ <item msgid="1986753720941888596">"Mai"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatica"</item>
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
index 2b36d46..c2e4c27 100644
--- a/res/values-it/strings.xml
+++ b/res/values-it/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Scarica"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Sovratensione"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Errore sconosciuto"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Minimo"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Rilevabile"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Rilevabile per <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> secondi..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Ricerca"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Richiesta accoppiamento Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Richiesta accoppiamento"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Seleziona per accoppiare <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Mostra file ricevuti"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Mostra elenco di file ricevuti tramite Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selettore dispositivo Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Richiesta autorizzazione Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Un\'applicazione chiede l\'autorizzazione per attivare Bluetooth. Procedere?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Un\'applicazione sul tuo tablet chiede l\'autorizzazione per attivare Bluetooth e rendere il tuo tablet rilevabile da altri dispositivi per <xliff:g id="TIMEOUT">%1$d</xliff:g> secondi. Procedere?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Un\'applicazione sul tuo telefono chiede l\'autorizzazione per attivare Bluetooth e rendere il tuo telefono rilevabile da altri dispositivi per <xliff:g id="TIMEOUT">%1$d</xliff:g> secondi. Procedere?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Attivazione Bluetooth in corso…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Connessione automatica"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Impostazioni data e ora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Inizia <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Account:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Impostazioni proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Impostazioni proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Imposta il proxy HTTP globale e gli elenchi di esclusioni"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Cancella"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Porta"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Annulla"</string>
<string name="settings_label" msgid="1626402585530130914">"Impostazioni"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Impostazioni"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Seleziona scorciatoia impostazioni"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Impostazioni"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Modalità aereo"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Disattiva tutte le connessioni wireless"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Disattivazione connessioni wireless..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Attivazione connessioni wireless..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Wireless e reti"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Wireless e reti"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Impostazioni wireless e reti"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Gestisci Wi-Fi, Bluetooth, modalità aereo, reti mobili e VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming dati"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Connessione a servizi di dati in roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Selezione operatore"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Seleziona un operatore di rete"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data e ora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Imposta data e ora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Imposta data, ora, fuso orario e formati"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Data e ora automatiche"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utilizza l\'ora fornita dalla rete"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ordina per fuso orario"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Ora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timeout"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Blocca schermo <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> dopo lo spegnimento automatico dello schermo"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Blocca dispositivo dopo timeout"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostra info proprietario su blocco schermo"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info proprietario"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Imposta La mia posizione, sblocco schermo, blocco SIM, blocco cred."</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Imposta La mia posizione, sblocco schermo, blocco archivio credenziali"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Password"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Crittografia dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Esegui crittografia dei dati sul dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Esegui crittografia dei dati sul dispositivo"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Richiede di impostare un PIN o una password di sblocco dispositivo"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Richiede di impostare un PIN o una password di sblocco dispositivo"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Crittografato"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Puoi crittografare account, impostazioni, applicazioni scaricate e i relativi dati, file multimediali e altri file. Una volta crittografato il telefono, non è possibile decrittografarlo se non eseguendo un ripristino dati di fabbrica, cancellando tutti i dati sul telefono."\n\n"L\'operazione richiede fino a un\'ora. Devi iniziare con una batteria carica e tenere il telefono collegato fino al termine. Se interrompi il processo di crittografia, perderai alcuni o tutti i tuoi dati."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Puoi crittografare account, impostazioni, applicazioni scaricate e i relativi dati, file multimediali e altri file. Una volta crittografato il telefono, non è possibile decrittografarlo se non eseguendo un ripristino dati di fabbrica, cancellando tutti i dati sul telefono."\n\n"L\'operazione richiede fino a un\'ora. Devi iniziare con una batteria carica e tenere il telefono collegato fino al termine. Se interrompi il processo di crittografia, perderai alcuni o tutti i tuoi dati."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Esegui crittografia tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Esegui crittografia telefono"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Conferma crittografia"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Crittografare i dati dell\'utente? Questa operazione non è reversibile e non può essere interrotta senza perdita di dati. L\'operazione può richiedere fino a un\'ora."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Crittografare i dati dell\'utente? Questa operazione non è reversibile e non può essere interrotta senza perdita di dati. L\'operazione può richiedere fino a un\'ora."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Crittografia"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Riprova fra ^1 secondi."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Configura blocco schermo"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configura blocco schermo"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Protezione sblocco schermo"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Imposta blocco schermo"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Cambia blocco schermo"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Cambia o disattiva protez. tramite sequenza, PIN o password"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Scegli un metodo per bloccare lo schermo"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Non attivo"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Non bloccare mai lo schermo"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Non protetto"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Non occorrono sequenza, PIN o password per sbloccare lo schermo"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Non mostrare il blocco schermo"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nessuna"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Disattiva protez. sblocco schermo"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Sequenza"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Richiedi una sequenza per sbloccare lo schermo"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Inserisci sequenza per sbloccare schermo"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Richiedi PIN numerico per sbloccare lo schermo"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Inserisci PIN num. per sbloccare schermo"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Password"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Richiedi password per sbloccare lo schermo"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Inserisci password per sbloccare schermo"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Disabilitata da ammin dispositivo remoto"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Off"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Non protetto"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Protetto con sequenza"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Protetto con PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Protetto con password"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Disattiva blocco schermo"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Rimuovi sequenza di sblocco"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Rimuovi PIN di sblocco"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"L\'amministratore del dispositivo non consente l\'utilizzo di una password recente"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Annulla"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Annulla"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Avanti"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Amministrazione dispositivo"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Amministratori dispositivo"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Visualizza o disattiva amministratori dispositivo"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Seleziona gli amministratori dispositivo"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Aggiungi o rimuovi amministratori dispositivo"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Attiva Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Impostazioni Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Impostazioni Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gestisci le connessioni, imposta il nome e la rilevabilità del dispositivo"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Richiesta accoppiamento Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Inserisci il PIN per effettuare l\'accoppiamento con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". Prova 0000 o 1234. Potrebbe essere necessario inserire lo stesso PIN sul dispositivo Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Inserisci passkey per eseguire accoppiamento con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Per eseguire l\'accoppiamento con \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", conferma che è visualizzata la passkey: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"chiede di eseguire l\'accoppiamento."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Immetti \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" in \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" per eseguire l\'accoppiamento e premi Invio."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Accoppia"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Non accoppiare"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositivo Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opzioni..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Connessione a…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimediali"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Vivavoce"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Trasferisci"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositivo di input"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> verrà disconnesso dall\'audio multimediale."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> verrà disconnesso dall\'audio vivavoce."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> verrà disconnesso dal dispositivo di input."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> verrà disconnesso dal tethering."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opzioni <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Azioni dispositivo"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Connetti"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Usa per audio telefono"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Usa per trasferimento file"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utilizza per l\'input"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Usa per accesso Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Impostazioni dock"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Usa dock per audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Come vivavoce"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Ricorda impostazioni"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Usa Near Field Communication per leggere e scambiare tag"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Si è verificato un errore."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Attiva Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Impostazioni Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Impossibile cercare le reti"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notifica rete"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Avvisa quando è disponibile una rete aperta"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Criteri di sospensione Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Specifica quando passare da Wi-Fi a dati cellulare"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Errore durante l\'impostazione dei criteri di sospensione."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Aggiungi rete Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Reti Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scansione"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modifica rete"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configurazione rete"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Inserisci il PIN del punto di accesso"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Impostazione WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configurazione metodo PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Inserisci il PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> sul punto di accesso"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS già in corso. Il completamento potrebbe richiedere qualche decina di secondi."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Impossibile avviare WPS. Riprova."</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID rete"</string>
<string name="wifi_security" msgid="6603611185592956936">"Protezione"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensità segnale"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Elimina"</string>
<string name="wifi_save" msgid="3331121567988522826">"Salva"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Annulla"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Rilevata un\'altra sessione WPS. Riprova tra alcuni minuti."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avanzate"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Sospensione Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Specifica quando passare da Wi-Fi a dati cellulare"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Errore durante l\'impostazione dei criteri di sospensione."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda di frequenza Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Specifica campo di frequenza di funzionamento"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Errore di impostazione della banda di frequenza."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Hotspot Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> portatile"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"HotspotAndroid"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Audio"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Schermo"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Display"</string>
<string name="sound_settings" msgid="5007659014828162881">"Impostazioni audio"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Modalità silenziosa"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Disattiva tutti i suoni eccetto quelli multimediali e gli allarmi"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Cambia automatic. l\'orientamento quando il cell. viene ruotato"</string>
<string name="brightness" msgid="2354961343555249270">"Luminosità"</string>
<string name="brightness_summary" msgid="838917350127550703">"Regola la luminosità dello schermo"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timeout"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Lo schermo si spegne automaticamente dopo <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Timeout schermo"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Luminosità automatica"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Impostazioni blocco SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Impostazioni blocco SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Non disponibile"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Stato"</string>
<string name="device_status" msgid="607405385799807324">"Stato"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Stato delle batteria, della rete e altre informazioni"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, numero di telefono, segnale ecc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Numero di telefono, segnale ecc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Memoria"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Impostazioni di archiviazione"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Smonta l\'archivio USB, visualizza lo spazio di archiviazione disponibile"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Smonta la scheda SD, visualizza spazio di archiviazione disponibile"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Il mio numero di telefono"</string>
+ <string name="status_number" msgid="5123197324870153205">"Il mio numero di telefono"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versione PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Archivio interno"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Archivio USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Scheda SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponibile"</string>
- <string name="memory_size" msgid="5458889090691922288">"Totale"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calcolo in corso..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Applicazioni"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Spazio disponibile"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Spazio totale"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Utilizzo applicazioni"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Utilizzo elementi multimediali"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Smonta archivio condiviso"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Smonta scheda SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Smonta archivio USB interno"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Inserisci una scheda SD da montare"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Monta archivio USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Installa scheda SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Monta archivio USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Monta archivio USB interno"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Installa la scheda SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Cancella archivio USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Cancella scheda SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Cancella i dati nell\'archivio USB interno, come musica e foto"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Cancella tutti i dati sulla scheda SD, come musica e foto"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Cancella i dati nell\'archivio USB interno, come musica e foto"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Non disponibile"</string>
<string name="read_only" msgid="6702420168629076340">" (Sola lettura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Smonta archivio USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Questa operazione cancellerà tutti i dati dall\'"<b>"archivio interno"</b>" del Tablet PC, compresi:"\n\n<li>"L\'account Google"</li>\n<li>"I dati e le impostazioni di sistema e delle applicazioni"</li>\n<li>"Le applicazioni scaricate"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Questa operazione cancellerà tutti i dati dall\'"<b>"archivio interno"</b>" del telefono, compresi:"\n\n<li>"L\'account Google"</li>\n<li>"I dati e le impostazioni di sistema e delle applicazioni"</li>\n<li>"Le applicazioni scaricate"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Al momento sei collegato ai seguenti account:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musica"</li>\n<li>"Foto"</li>\n<li>"Altri dati utente"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Per cancellare anche musica, foto e altri dati dell\'utente, è necessario cancellare i dati dell\'"<b>"archivio USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Per cancellare anche musica, foto e altri dati dell\'utente, deve essere cancellata la "<b>"scheda SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Per cancellare anche musica, foto e altri dati dell\'utente, è necessario cancellare i dati dell\'"<b>"archivio USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Cancella archivio USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Cancella scheda SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Cancella i dati nell\'archivio USB interno, come musica o foto."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilizza GPS assistito"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilizza il server per assistere il GPS (deseleziona per ridurre l\'utilizzo della rete)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilizza il server per assistere il GPS (deseleziona per migliorare le prestazioni GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Usa posizione per Ricerca Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usa la posizione per Ricerca Google e per altri servizi Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Posizione utilizzata per migliorare i risultati di Google Ricerca e altri servizi Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Usa posizione per Ricerca Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usa la posizione per Ricerca Google e per altri servizi Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Posizione in uso per migliorare i risultati di ricerca di Google e altri servizi Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Informazioni sul tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Info sul telefono"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Visualizza informazioni legali, stato, versione del software"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Password impostata"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN impostato"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Sequenza impostata"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Blocco schermo"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Sblocco schermo"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Cambia sequenza sblocco"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Cambia PIN di sblocco"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Conferma sequenza salvata"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Avanti"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Protezione del tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Protezione del telefono"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Proteggi il tuo tablet dall\'uso non autorizzato creando una sequenza di sblocco personale. Usa il dito per collegare i puntini in qualsiasi ordine nella schermata successiva. Devi collegare almeno quattro puntini. "\n\n"Sei pronto per iniziare? Tocca \"Avanti\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Proteggi il telefono dall\'uso non autorizzato creando una sequenza di sblocco dello schermo personale. "\n<font height="17">\n</font><b>"1"</b>" Nella schermata successiva, osserva la creazione di una sequenza di esempio. "\n<font height="17">\n</font><b>"2"</b>" Quando sei pronto, crea la tua sequenza di sblocco personale. Prova diverse sequenze collegando sempre almeno quattro punti. "\n<font height="17">\n</font><b>"3"</b>" Inserisci di nuovo la sequenza per confermare. "\n<font height="17">\n</font><b>"Pronto per iniziare? Tocca \"Avanti\""</b>". "\n<font height="3">\n</font>"Se non desideri proteggere il telefono, tocca \"Annulla\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Gestisci applicazioni"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gestisci e rimuovi applicazioni installate"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Totale"</string>
<string name="application_size_label" msgid="5055196275624686382">"Applicazione"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dati"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Archivio USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Scheda SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Disinstalla"</string>
<string name="disable_text" msgid="6544054052049395202">"Disattiva"</string>
<string name="enable_text" msgid="9217362512327828987">"Attiva"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Interrompere il servizio di sistema?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Interrompere questo servizio di sistema? Tale operazione potrebbe comportare anomalie in alcune funzioni del tablet fino ai successivi spegnimento e riaccensione."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Interrompere questo servizio di sistema? Tale operazione potrebbe comportare anomalie in alcune funzioni del telefono fino ai successivi spegnimento e riaccensione."</string>
- <string name="language_settings" msgid="5292716747264442359">"Lingua e immissione"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Lingua e immissione"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Lingua e testo"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Impostazioni lingua e tastiera"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Impostazioni lingua"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Impostazioni tastiera"</string>
<string name="phone_language" msgid="1165758957501090679">"Seleziona lingua"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Sostituzione automatica"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corregge le parole con errori di ortografia"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Maiuscole automatiche"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Maiuscola automatica"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Usa la maiuscola a inizio frase"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Punteggiat. automatica"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Impostazioni tastiera fisica"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Scorciatoie"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Inserimento testo"</string>
<string name="input_method" msgid="5434026103176856164">"Metodo inserimento"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Metodo di immissione corrente"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selettore metodo di immissione"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatico"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostra sempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Nascondi sempre"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configura metodi di input"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Impostazioni"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Metodi di immissione attivi"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Usa lingua di sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Impostazioni di <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Seleziona metodi immissione attivi"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Impostazioni tastiera sullo schermo"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Impostazioni tastiera incorporate"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Impostazioni tastiera fisica incorporate"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Tempo accensione Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Tempo accensione Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Dettagli cronologia"</string>
- <string name="details_title" msgid="3792801565213935385">"Dettagli di utilizzo"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Dettagli utilizzo batteria"</string>
<string name="details_subtitle" msgid="32593908269911734">"Dettagli di utilizzo"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Regola consumo alimentazione"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Pacchetti inclusi"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Negoziazione con il server non riuscita. È possibile che il server non accetti la tua opzione di crittografia. Controllare l\'impostazione di crittografia?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Aggiungi VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Aggiungi VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Dettagli VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Aggiungi VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Dettagli <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,34 +1278,47 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configura e gestisci le reti private virtuali (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(invariato)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(non impostato)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Archivio credenziali"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Archivio credenziali"</string>
<string name="credentials_access" msgid="4843187230913860492">"Usa credenziali protez."</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Consenti accesso applicazioni a certificati protezione e altre credenziali"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Installa da archivio USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Installa da scheda SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Installa certificati da archivio USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Installa certificati da scheda SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Imposta password"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Imposta o modifica la password dell\'archivio di credenziali"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Cancella credenziali"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Rimuovi tutti i contenuti e reimposta la password"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Inserisci password"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Inserisci la password per l\'archivio di credenziali."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Imposta la password per l\'archivio di credenziali. Deve essere formata da almeno 8 caratteri."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Inserisci la password dell\'archivio di credenziali."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installa da archivio USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installa da scheda SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Installa certificati crittografati da arch. USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installa certificati crittografati da scheda SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Imposta password"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Imposta o modifica la password dell\'archivio di credenziali"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Cancella archivio"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Cancella tutti i contenuti dall\'archivio di credenziali e reimposta la relativa password"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Eliminare tutte le credenziali e reimpostare la password dell\'archivio di credenziali?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Password attuale:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nuova password:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Conferma nuova password:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Tutti i contenuti verranno rimossi e la password reimpostata. Procedere?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Imposta una password per l\'archivio di credenziali (almeno 8 caratteri)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Inserisci la password corretta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Inserisci la password corretta. Hai a disposizione un altro tentativo per inserirla, dopodiché l\'archivio di credenziali verrà cancellato."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Inserisci la password corretta. Hai a disposizione altri <xliff:g id="NUMBER">%1$d</xliff:g> tentativi per inserirla, dopodiché l\'archivio di credenziali verrà cancellato."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Le password non corrispondono."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Devi inserire una password e confermarla."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Inserisci la password."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"La password deve essere formata da almeno 8 caratteri."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Password errata."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Password non corretta. Hai un\'altra possibilità prima che l\'archivio credenziali venga cancellato."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Password non corretta. Hai altre <xliff:g id="NUMBER">%1$d</xliff:g> possibilità prima che l\'archivio credenziali venga cancellato."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Archivio credenziali cancellato."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"L\'archivio di credenziali è cancellato."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"L\'archivio di credenziali è attivo."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"L\'archivio di credenziali non è attivo."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"File system crittografato"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Crittografa dati privati utente"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Abilita l\'archiviazione dei file system crittografati per i dati privati dell\'utente in questo dispositivo"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Per l\'attivazione dei file system crittografati è necessaria la cancellazione dei dati del dispositivo."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Per la disattivazione dei file system crittografati è necessaria la cancellazione dei dati del dispositivo."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Attiva"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Disattiva"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Annulla"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Modifica della modalità dei file system crittografati annullata."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Avviso file system crittografati."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tono chiamate emergenza"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Imposta il comportamento in caso di chiamata di emergenza"</string>
- <string name="privacy_settings" msgid="9206631214140954954">"Backup e ripristino"</string>
+ <string name="privacy_settings" msgid="9206631214140954954">"Privacy"</string>
<string name="privacy_settings_title" msgid="1987089301293213705">"Impostazioni privacy"</string>
<string name="backup_section_title" msgid="8856083167469467588">"Backup e ripristino"</string>
<string name="personal_data_section_title" msgid="7815209034443782061">"Dati personali"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Chiamate in arrivo"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notifiche"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Commenti"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Impostazione Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Connetti alla rete Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Connessione alla rete Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g> in corso..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Connesso alla rete Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Aggiungi una rete"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configurazione Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Non connesso"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Aggiungi rete"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Aggiorna elenco"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Salva"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Annulla"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Scansione reti in corso..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tocca una rete per collegarti"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tocca per selezionare la rete"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Connetti a rete esistente"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Collegati a rete non protetta"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Inserisci configurazione di rete"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Connessione in corso..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Procedi al passaggio successivo"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP non supportato"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Non è possibile configurare una connessione Wi-Fi EAP durante la configurazione. Dopo la configurazione, puoi farlo in Impostazioni, "<b>"Wireless e reti"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"La connessione può richiedere qualche minuto..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Tocca "<b>"Avanti"</b>" per continuare con la configurazione."\n\n"Tocca "<b>"Indietro"</b>" per connetterti a un\'altra rete Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Non è possibile configurare una connessione Wi-Fi EAP durante la configurazione. Dopo la configurazione, puoi farlo in Impostazioni, Wireless e reti."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Impostazioni di sincronizzazione"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"La sincronizzazione presenta dei problemi. L\'operazione verrà presto ripristinata."</string>
<string name="add_account_label" msgid="7811707265834013767">"Aggiungi account"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"La sincronizzazione non è attiva"</string>
<string name="sync_error" msgid="5060969083117872149">"Errore sincronizz."</string>
<string name="settings_backup" msgid="2274732978260797031">"Impostazioni di backup"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Esegui backup impostazioni"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizza ora"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Annulla sincronizzazione"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tocca per sincronizzare ora <xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Calendario"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contatti"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Benvenuto in Google Sync."</font>" "\n"L\'approccio di Google alla sincronizzazione di dati per consentirti l\'accesso ai tuoi contatti, appuntamenti e altro ancora, ovunque tu sia."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Impostazioni sincronizzazione applicazioni"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dati e sincronizzazione"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Cambia password"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Impostazioni account"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Rimuovi account"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Aggiungi un account"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Fine"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Rimuovi account"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Rimuovere questo account? La rimozione elimina dal tablet anche tutti i relativi messaggi, contatti e altri dati. "\n"Continuare?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Rimuovere questo account? La rimozione elimina dal telefono anche tutti i relativi messaggi, contatti e altri dati. "\n"Continuare?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"L\'account è richiesto da alcune applicazioni. Puoi rimuoverlo solo ripristinando le impostazioni predefinite di fabbrica del tablet (questa operazione elimina tutti i dati personali). Per procedere vai a \"Impostazioni\" nella sezione \"Privacy\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"L\'account è richiesto da alcune applicazioni. Puoi rimuoverlo solo ripristinando le impostazioni predefinite di fabbrica del telefono (questa operazione elimina tutti i dati personali). Per procedere vai a \"Impostazioni\" nella sezione \"Privacy\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"Sottoscrizioni push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronizza <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Impossibile sincronizzare manualmente"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"La sincronizzazione per questo elemento è attualmente disabilitata. Per modificare la preferenza, attiva temporaneamente i dati in background e la sincronizzazione automatica."</string>
- <string name="enter_password" msgid="3268224850821675915">"Inserisci password per decrittografare archivio"</string>
- <string name="try_again" msgid="5904121494468643129">"Riprova"</string>
- <string name="service_busy" msgid="225227519012409130">"Servizio occupato, riprova"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-iw/arrays.xml b/res/values-iw/arrays.xml
index 1d54704..2101384 100644
--- a/res/values-iw/arrays.xml
+++ b/res/values-iw/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"חלק מהנפשות החלון מוצגות"</item>
<item msgid="488968798204105119">"כל הנפשות החלון מוצגות"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 שניות"</item>
- <item msgid="8881760709354815449">"שניות"</item>
- <item msgid="7589406073232279088">"דקה אחת"</item>
- <item msgid="7001195990902244174">"2 דקות"</item>
- <item msgid="7489864775127957179">"5 דקות"</item>
- <item msgid="2314124409517439288">"10 דקות"</item>
- <item msgid="6864027152847611413">"30 דקות"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"מיד"</item>
- <item msgid="6736512735606834431">"5 שניות"</item>
- <item msgid="8044619388267891375">"15 שניות"</item>
- <item msgid="1822002388249545488">"30 שניות"</item>
- <item msgid="8538071621211916519">"דקה אחת"</item>
- <item msgid="5663439580228932882">"2 דקות"</item>
- <item msgid="49888496216106852">"5 דקות"</item>
- <item msgid="9002737361305019353">"10 דקות"</item>
- <item msgid="4322676235684793329">"30 דקות"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"איטי מאוד"</item>
<item msgid="2361722960903353554">"לאט"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"מצוין"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"כאשר המסך נכבה"</item>
+ <item msgid="3804733751095821976">"כאשר המסך כבוי"</item>
<item msgid="1549288661423279207">"לעולם לא כאשר מחובר"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"לעולם לא"</item>
+ <item msgid="1986753720941888596">"אף פעם"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"רכב"</item>
diff --git a/res/values-iw/strings.xml b/res/values-iw/strings.xml
index ec5163c..82c4b87 100644
--- a/res/values-iw/strings.xml
+++ b/res/values-iw/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"סורק"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"בקשת התאמה של Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"בקשת התאמה"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"בחר כדי להתאים עם<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"הצג קבצים שהתקבלו"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"הצג את רשימת הקבצים שהתקבלו דרך Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"בוחר התקני Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"בקשת הרשאה של Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"יישום מבקש הרשאה להפעיל Bluetooth. האם ברצונך לעשות זאת?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"יישום בטבלט מבקש הרשאה להפעיל Bluetooth ולהפוך את הטבלט לגלוי אחרים למשך <xliff:g id="TIMEOUT">%1$d</xliff:g> שניות. האם ברצונך לבצע זאת?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"יישום בטלפון מבקש הרשאה להפעיל Bluetooth ולהפוך את הטלפון לגלוי להתקנים אחרים למשך <xliff:g id="TIMEOUT">%1$d</xliff:g> שניות. האם ברצונך לבצע פעולות אלה?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"מפעיל Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"חיבור אוטומטי"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"הגדרות תאריך ושעה"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"הפעל את <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"חשבון:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"הגדרות שרת proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"הגדרות שרת proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"הגדר את שרת proxy הגלובלי של HTTP ורשימות אי הכללה"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"נקה"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"יציאה"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"משבית חיבורים אלחוטיים..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"מאפשר חיבורים אלחוטיים..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"אלחוטי ורשתות"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"אלחוטי ורשתות"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"הגדרות רשת אלחוטית ורשת"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"ניהול Wi-Fi, Bluetooth, מצב טיסה, רשתות סלולריות ו-VPN"</string>
<string name="roaming" msgid="3596055926335478572">"נדידת נתונים"</string>
<string name="roaming_enable" msgid="3737380951525303961">"התחבר אל שירותי נתונים בעת נדידה"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"בחירת מפעיל"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"בחר מפעיל רשת"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"תאריך ושעה"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"הגדרת תאריך ושעה"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"הגדרת תאריך, שעה, אזור זמן ותבניות"</string>
<string name="date_time_auto" msgid="7076906458515908345">"תאריך ושעה אוטומטיים"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"השתמש בשעה המסופקת על ידי הרשת"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"מיין לפי אזור זמן"</string>
<string name="date_picker_title" msgid="1338210036394128512">"תאריך"</string>
<string name="time_picker_title" msgid="483460752287255019">"שעה"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"זמן קצוב לתפוגה"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"נעל את המסך <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> לאחר הכיבוי האוטומטי של המסך"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"נעל את ההתקן אחרי זמן קצוב לתפוגה"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"הצג פרטי בעלים בנעילת מסך"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"פרטי בעלים"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"הגדר את \'המיקום שלי\', ביטול נעילת צג, נעילת כרטיס SIM, נעילת אחסון אישורים"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"הגדר את \'המיקום שלי\', ביטול נעילת מסך, נעילת אחסון אישורים"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"סיסמאות"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"הצפנת התקן"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"הצפן נתונים בהתקן"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"הצפן נתונים בהתקן"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"אתה נדרש להגדיר PIN או סיסמה לביטול נעילת התקן"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"אתה נדרש להגדיר PIN או סיסמה לביטול נעילת התקן"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"מוצפן"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"תוכל להצפין את החשבונות וההגדרות שלך, היישומים שהורדת והנתונים, המדיה וקבצים אחרים שלהם. לאחר שתצפין את הטלפון שלך, לא תוכל לבטל את ההצפנה אלא אם תבצע איפוס נתוני יצרן, שימחק את כל הנתונים בטלפון."\n\n"ההצפנה אורכת עד שעה. עליך להתחיל בהצפנה עם סוללה מלאה ולהשאיר את הטלפון מחובר עד להשלמת ההצפנה. אם תפסיק את תהליך ההצפנה, תאבד חלק מהנתונים שלך, או את כולם."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"תוכל להצפין את החשבונות וההגדרות שלך, היישומים שהורדת והנתונים, המדיה וקבצים אחרים שלהם. לאחר שתצפין את הטלפון שלך, לא תוכל לבטל את ההצפנה אלא אם תבצע איפוס נתוני יצרן, שימחק את כל הנתונים בטלפון."\n\n"ההצפנה אורכת עד שעה. עליך להתחיל בהצפנה עם סוללה מלאה ולהשאיר את הטלפון מחובר עד להשלמת ההצפנה. אם תפסיק את תהליך ההצפנה, תאבד חלק מהנתונים שלך, או את כולם."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"הצפן טבלט"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"הצפן טלפון"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"אשר הצפנה"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"האם להצפין נתוני משתמש? פעולה זו היא בלתי הפיכה והפסקה של הפעולה תגרום לאובדן נתונים! ההצפנה עשויה להימשך עד שעה."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"האם להצפין נתוני משתמש? פעולה זו היא בלתי הפיכה והפסקה של הפעולה תגרום לאובדן נתונים! ההצפנה עשויה להימשך עד שעה."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"מצפין"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"נסה שוב בעוד ^1 שניות."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"הגדר נעילת מסך"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"הגדר נעילת מסך"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"אבטחת ביטול נעילה של המסך"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"הגדר נעילת מסך"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"שנה נעילת מסך"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"שנה או השבת אבטחת דפוס, PIN או סיסמה"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"בחר שיטה לנעילת המסך"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"כבוי"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"לעולם אל תנעל את המסך"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"לא מאובטח"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"אל תדרוש קו, PIN או סיסמה לביטול נעילת המסך"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"אל תציג את נעילת המסך"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"ללא"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"השבת אבטחת ביטול נעילה של המסך"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"דפוס"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"דרוש דפוס לביטול נעילת המסך"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"צייר דפוס לביטול נעילת המסך"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"דרוש PIN מספרי לביטול נעילת המסך"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"הזן PIN מספרי כדי לבטל את נעילת המסך"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"סיסמה"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"דרושה סיסמה לביטול נעילת המסך"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"הזן סיסמה לביטל נעילת המסך"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"הושבת על ידי מנהל מערכת מרוחק של התקן"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"כבוי"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"לא מאובטח"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"מאובטח עם קו"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"מאובטח עם PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"מאובטח עם סיסמה"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"כיבוי נעילת מסך"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"הסר קו ביטול נעילה"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"הסר PIN של ביטול נעילה"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"מנהל ההתקן אינו מאפשר שימוש בסיסמה שהיתה בשימוש לאחרונה"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"אישור"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"ביטול"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"ביטול"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"הבא"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"ניהול התקנים"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"מנהלי התקנים"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"הצג או השבת מנהלי התקנים"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"הגדרות Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"ניהול חיבורים, הגדרת שם התקן ויכולת גילוי"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"בקשת התאמה של Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"הזן PIN כדי להתאים עם \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (נסה להזין 0000 או 1234.) ייתכן שתצטרך להזין את אותו PIN בהתקן ה-Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"הזן סיסמה כדי להתאים עם \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"כדי להתאים עם \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", אשר שהוא מופיע עם הסיסמה: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"רוצה להתאים."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"הזן \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" ב-\"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" כדי להתאים, ולאחר מכן לחץ על Return או על Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"התאם"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"אל תתאם"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"התקן Bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"אפשרויות…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"התחבר אל…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"מדיה"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"דיבורית"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"טבלט"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"העבר"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"התקן קלט"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"קשירה"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ינותק מהאודיו של המדיה."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ינותק מהאודיו של הדיבורית."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ינותק מהתקן הקלט."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ינותק מהקשירה."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> אפשרויות"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"השתמש עבור אודיו של הטלפון"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"השתמש להעברת קבצים"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"שימוש בקלט"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"השתמש עבור גישה לאינטרנט"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"הגדרות עגינה"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"שימוש בעגינה לאודיו"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"כדיבורית"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"אין אפשרות לסרוק כדי לחפש רשתות"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"התראת רשת"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"הודע לי כשיש רשת פתוחה זמינה"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"מדיניות שינה של Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"ציין מתי לעבור מ-Wi-Fi לנתונים להתקנים ניידים"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"היתה בעיה בהגדרת מדיניות שינה."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"הוסף רשת Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"רשתות Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"סרוק"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"שנה רשת"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"הגדרות רשת"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"הזן PIN מנקודת גישה"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"הגדרת WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"תצורה של שיטת הצמדת WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"הזן את <xliff:g id="WPS_PIN">%1$s</xliff:g> של PIN בנקודת הגישה"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS כבר מתבצע ועשוי להימשך כמה עשרות שניות עד שיסתיים"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"הפעלת WPS נכשלה, נסה שוב"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID של הרשת"</string>
<string name="wifi_security" msgid="6603611185592956936">"אבטחה"</string>
<string name="wifi_signal" msgid="5514120261628065287">"עוצמת אות"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"שכח"</string>
<string name="wifi_save" msgid="3331121567988522826">"שמור"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"ביטול"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"זוהתה הפעלת WPS נוספת, נסה שוב בעוד מספר דקות"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"מתקדם"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"מדיניות שינה של Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"ציין מתי לעבור מ-Wi-Fi לנתונים להתקנים ניידים"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"אירעה בעיה בהגדרת מדיניות שינה."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"תדר Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"ציין את טווח התדר של פעולה"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"הייתה בעיה בהשגת התדר."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"נקודה חמה ניידת של Wi-Fi של <xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"קול"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"מסך"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"תצוגה"</string>
<string name="sound_settings" msgid="5007659014828162881">"הגדרות קול"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"מצב שקט"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"השתק את כל הצלילים פרט למדיה והתראות"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"שנה כיוון באופן אוטומטי בעת סיבוב הטלפון"</string>
<string name="brightness" msgid="2354961343555249270">"בהירות"</string>
<string name="brightness_summary" msgid="838917350127550703">"התאמת בהירות המסך"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"זמן קצוב לתפוגה"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"המסך נכבה אוטומטית לאחר <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"זמן קצוב לתפוגה של המסך"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"בהירות אוטומטית"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"הגדרות נעילת כרטיס SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"הגדרת נעילת כרטיס SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">" לא זמין"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"מצב"</string>
<string name="device_status" msgid="607405385799807324">"מצב"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"סטטוס הסוללה, הרשת ומידע אחר"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, מספר טלפון, אות וכולי."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"מספר טלפון, אות וכדומה"</string>
<string name="storage_settings" msgid="4211799979832404953">"שטח אחסון"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"הגדרות אחסון"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"בטל טעינת אמצעי אחסון מסוג USB, הצג אמצעי אחסון זמין"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"ביטול טעינת כרטיס SD, הצגת שטח האחסון הזמין"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"מספר הטלפון שלי"</string>
+ <string name="status_number" msgid="5123197324870153205">"מספר הטלפון שלי"</string>
<string name="status_min_number" msgid="3519504522179420597">"דקות"</string>
<string name="status_prl_version" msgid="8499039751817386529">"גרסת PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"אחסון פנימי"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"אמצעי אחסון מסוג USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"כרטיס SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"זמין"</string>
- <string name="memory_size" msgid="5458889090691922288">"סך הכל"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"מחשב..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"יישומים"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"מדיה"</string>
+ <string name="memory_available" msgid="418542433817289474">"שטח אחסון זמין"</string>
+ <string name="memory_size" msgid="6629067715017232195">"סך הכל שטח"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"שימוש ביישומים"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"שימוש במדיה"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"בטל טעינת אחסון משותף"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"ביטול טעינת כרטיס SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"בטל טעינה של אמצעי אחסון פנימי מסוג USB"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"מחק אמצעי אחסון מסוג USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"מחק כרטיס SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"מוחק את כל הנתונים שבאמצעי האחסון הפנימי מסוג USB, כגון מוסיקה או תמונות."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"מוחק את כל הנתונים בכרטיס ה-SD, כגון מוסיקה ותמונות."</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"מוחק את כל הנתונים שבכרטיס ה-SD, כגון מוסיקה או תמונות."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"לא זמין"</string>
<string name="read_only" msgid="6702420168629076340">" (לקריאה בלבד)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"בטל טעינת אמצעי אחסון מסוג USB"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"פעולה זו תמחק את כל הנתונים מ"<b>"האחסון הפנימי"</b>" של הטבלט, כולל:"\n\n<li>"חשבון Google שברשותך"</li>\n<li>"הגדרות מערכת ונתוני יישומים"</li>\n<li>"יישומים שהורדו"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"פעולה זו תמחק את כל הנתונים מ"<b>"האחסון הפנימי"</b>" של הטלפון, כולל:"\n\n<li>"חשבון Google שברשותך"</li>\n<li>"הגדרות מערכת ונתוני יישומים"</li>\n<li>"יישומים שהורדו"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"אתה מחובר כעת לחשבונות הבאים:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"מוסיקה"</li>\n<li>"תמונות"</li>\n<li>"נתוני משתמש אחרים"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"כדי לנקות גם מוסיקה, תמונות ונתונים אחרים, יש למחוק את "<b>"אמצעי האחסון מסוג USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"כדי לנקות גם מוסיקה, תמונות ונתוני משתמש אחרים, יש למחוק את "<b>"כרטיס ה-SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"כדי לנקות מוסיקה, תמונות ונתונים אחרים, יש למחוק את "<b>"כרטיס ה-SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"מחק אמצעי אחסון מסוג USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"מחק כרטיס SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"מחק את כל הנתונים שבאמצעי האחסון הפנימי מסוג USB, כגון מוסיקה או תמונות."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"השתמש ב-Assisted GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"השתמש בשרת כדי לסייע ל-GPS (הסר את הסימון כדי לצמצם את השימוש ברשת)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"השתמש בשרת כדי לסייע ל-GPS (הסר את הסימון כדי לשפר את ביצועי GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"השתמש במיקום עבור \'חיפוש Google\'"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"השתמש במיקום עבור \'חיפוש Google\' ושירותים אחרים של Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"מיקום המשמש לשיפור תוצאות \'חיפוש Google\' ושירותים אחרים של Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"השתמש במיקום עבור חיפוש ב-Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"השתמש במיקום עבור תוצאות החיפוש של Google ושירותים אחרים של Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"מיקום המשמש לשיפור תוצאות החיפוש של Google ושירותים אחרים של Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"אודות הטבלט"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"אודות הטלפון"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"הצג מידע משפטי, מצב, גרסת תוכנה"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"הסיסמה הוגדרה"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN הוגדר"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"הוגדר קו"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"נעל מסך"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"ביטול נעילת הצג"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"שנה את קו ביטול הנעילה"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"שנה PIN של ביטול נעילה"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"אשר קו שנשמר"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"הבא"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"אבטחת הטבלט"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"אבטחת הטלפון"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"הגן על הטבלט שלך מפני שימוש לא מורשה על ידי יצירת קו ביטול נעילה אישי למסך. השתמש באצבע כדי לחבר את הנקודות בכל סדר שתבחר במסך הבא. עליך לחבר ארבע נקודות לפחות. "\n\n"מוכן להתחיל? גע ב\"הבא\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"הגן על הטלפון מפני שימוש לא מורשה על ידי יצירת קו ביטול נעילה אישי במסך. "\n<font height="17">\n</font><b>"1"</b>" במסך הבא, צפה בשרטוט קו לדוגמה. "\n<font height="17">\n</font><b>"2"</b>" כשתהיה מוכן, צייר קו ביטול נעילה משלך. נסה קווים שונים אך חבר ארבע נקודות לפחות. "\n<font height="17">\n</font><b>"3"</b>" צייר שוב את הקו כדי לאשר. "\n<font height="17">\n</font><b>"מוכן להתחיל? גע ב\'הבא\'"</b>". "\n<font height="3">\n</font>"כדי להשאיר את הטלפון ללא הגנה, גע ב\'ביטול\'."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"נהל יישומים"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"נהל והסר יישומים שהותקנו"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"סך הכל"</string>
<string name="application_size_label" msgid="5055196275624686382">"יישום"</string>
<string name="data_size_label" msgid="8679376373625710107">"נתונים"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"אמצעי אחסון מסוג USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"כרטיס SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"הסר התקנה"</string>
<string name="disable_text" msgid="6544054052049395202">"השבת"</string>
<string name="enable_text" msgid="9217362512327828987">"הפוך לפעיל"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"להפסיק שירות מערכת?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"האם אתה בטוח שברצונך להפסיק שירות מערכת זה? אם תעשה כן, חלק מהתכונות בטבלט עלולות להפסיק לפעול כראוי עד שתכבה ותדליק אותו שוב."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"האם אתה בטוח שברצונך להפסיק שירות מערכת זה? אם תעשה כן, חלק מהתכונות בטלפון עלולות להפסיק לפעול כראוי עד שתכבה ותדליק אותו שוב."</string>
- <string name="language_settings" msgid="5292716747264442359">"שפה וקלט"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"שפה וקלט"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"אזור וטקסט"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"הגדרות שפה ומקלדת"</string>
<string name="language_settings_category" msgid="2288258489940617043">"הגדרות שפה"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"הגדרות מקלדת"</string>
<string name="phone_language" msgid="1165758957501090679">"בחר שפה"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"קיצורי דרך"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"קלט טקסט"</string>
<string name="input_method" msgid="5434026103176856164">"שיטת קלט"</string>
- <string name="current_input_method" msgid="2146807723398303917">"שיטת קלט נוכחית"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"בורר שיטות קלט"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"אוטומטי"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"הצג תמיד"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"הסתר תמיד"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"הגדר שיטות קלט"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"הגדרות"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"שיטות קלט פעילות"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"השתמש בשפת המערכת"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"הגדרות <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"בחר שיטות קלט פעילות"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"נהל שיטות קלט"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"הגדרות מקלדת על המסך"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"מקלדת מובנית"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"הגדרות מקלדת מובנית, פיזית"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi בזמן"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi בזמן"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"פרטי היסטוריה"</string>
- <string name="details_title" msgid="3792801565213935385">"פרטי שימוש"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"פרטי צריכת סוללה"</string>
<string name="details_subtitle" msgid="32593908269911734">"פרטי שימוש"</string>
<string name="controls_subtitle" msgid="390468421138288702">"התאמת צריכת הסוללה"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"חבילות כלולות"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"משא ומתן של השרת נכשל. ייתכן שהשרת לא מסכים לשיטת ההצפנה שלך. האם ברצונך לבדוק את הגדרת ההצפנה?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"הוסף VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"הוסף VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"פרטי VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"הוסף את ה-VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"פרטים על <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"פרופילי VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"הגדרה וניהול של רשתות פרטיות וירטואליות (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(ללא שינוי)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(לא הוגדר)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"אחסון אישורים"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"אחסון אישורים"</string>
<string name="credentials_access" msgid="4843187230913860492">"שימוש באישורים מאובטחים"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"אפשר ליישומים לגשת לאישורים מאובטחים ואישורים אחרים"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"התקן מאמצעי אחסון מסוג USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"התקן מכרטיס SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"התקן אישורים מהתקן אחסון מסוג USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"התקן אישורים מכרטיס SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"הגדרת סיסמה"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"הגדר או שנה את הסיסמה עבור אחסון האישורים"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"נקה אישורים"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"הסר את כל התוכן ואפס את הסיסמה"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"הזן סיסמה"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"הזן את הסיסמה עבור אחסון האישורים."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"הגדר את הסיסמה עבור אחסון האישורים. הסיסמה חייבת להכיל לפחות 8 תווים."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"הזן את סיסמת אחסון האישורים."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"התקן מאמצעי אחסון מסוג USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"התקן מכרטיס SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"התקן אישורים מוצפנים מהתקן אחסון מסוג USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"התקן אישורים מוצפנים מכרטיס SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"הגדרת סיסמה"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"הגדר או שנה את סיסמת אחסון האישורים"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"נקה את האחסון"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"ניקוי אחסון אישורים מכל התכנים ואיפוס הסיסמה"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"האם אתה בטוח שברצונך למחוק את כל האישורים ולאפס את סיסמת אחסון האישורים?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"הסיסמה הנוכחית:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"סיסמה חדשה:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"אשר את הסיסמה החדשה:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"כל התוכן יימחק והסיסמה תתאפס. האם אתה בטוח לגבי פעולה זו?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"הגדר סיסמה לאחסון האישורים (8 תווים לפחות)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"הזן את הסיסמה הנכונה."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"הזן את הסיסמה הנכונה. לרשותך עוד ניסיון אחד להזין את הסיסמה הנכונה לפני שאחסון האישורים יימחק."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"הזן את הסיסמה הנכונה. לרשותך עוד <xliff:g id="NUMBER">%1$d</xliff:g> ניסיונות להזין את הסיסמה הנכונה לפני שאחסון האישורים יימחק."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"הסיסמאות לא תואמות."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"עליך להזין ולאשר סיסמה."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"הזן את הסיסמה."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"אורך הסיסמה חייב להיות 8 תווים לפחות."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"סיסמה שגויה."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"סיסמה שגויה. יש לך עוד ניסיון אחד לפני שאחסון האישורים יימחק."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"סיסמה שגויה. יש לך <xliff:g id="NUMBER">%1$d</xliff:g> ניסיונות נוספים לפני שאחסון האישורים יימחק."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"אחסון האישורים נמחק."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"אחסון האישורים נמחק."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"אחסון האישורים מופעל."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"אחסון אישורים מושבת."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"צליל חירום"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"הגדר אופן פעולה בעת ביצוע שיחת חירום"</string>
<string name="privacy_settings" msgid="9206631214140954954">"פרטיות"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"שיחות נכנסות"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"התראות"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"משוב"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"הגדרת Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"התחבר לרשת Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"מתחבר לרשת Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"מחובר לרשת Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"הוסף רשת"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"הגדרת WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"לא מחובר"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"הוסף רשת"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"רענן רשימה"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"שמור"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"ביטול"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"סורק רשתות..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"גע ברשת כדי להתחבר אליה"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"התחבר לרשת קיימת"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"התחבר לרשת לא מאובטחת"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"הזן תצורת רשת"</string>
@@ -1364,9 +1370,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"מתחבר..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"המשך לשלב הבא"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP לא נתמך"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"לא ניתן להגדיר חיבור Wi-Fi של EAP במהלך ההתקנה. לאחר ההתקנה, תוכל להגדיר את החיבור ב\'הגדרות\', בקטע "<b>"אלחוטי ורשתות"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"ההתחברות עשויה להימשך מספר דקות..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"גע באפשרות "<b>"הבא"</b>" כדי להמשיך בהתקנה."\n\n"גע באפשרות "<b>"הקודם"</b>" כדי להתחבר לרשת Wi-Fi אחרת."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"אינך יכול להגדיר חיבור Wi-Fi EAP במהלך ההתקנה. לאחר ההתקנה, תוכל להגדיר את החיבור ב\'הגדרות\', בקטע \'אלחוטי ורשתות\'."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"הגדרות סנכרון"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"הסינכרון נתקל בבעיות. הוא יחזור לפעולה תוך זמן קצר."</string>
<string name="add_account_label" msgid="7811707265834013767">"הוסף חשבון"</string>
@@ -1382,32 +1386,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"סנכרון כבוי"</string>
<string name="sync_error" msgid="5060969083117872149">"שגיאת סנכרון"</string>
<string name="settings_backup" msgid="2274732978260797031">"הגדרות גיבוי"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"גבה את ההגדרות שלי"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"סנכרן כעת"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"בטל סינכרון"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"גע כדי לסנכרן כעת<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"לוח שנה"</string>
<string name="sync_contacts" msgid="9174914394377828043">"אנשי קשר"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"ברוכים הבאים אל Google sync!"</font>" "\n"גישה של Google לסינכרון נתונים כדי לאפשר גישה לאנשי הקשר, הפגישות ועוד מכל מקום שבו אתה נמצא."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"הגדרות סינכרון יישומים"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"נתונים וסינכרון"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"שנה סיסמה"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"הגדרות חשבון"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"הסר חשבון"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"הוסף חשבון"</string>
- <string name="finish_button_label" msgid="481587707657751116">"סיום"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"הסרת חשבון"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"האם אתה באמת רוצה להסיר חשבון זה? הסרת החשבון תמחק גם את כל ההודעות, אנשי הקשר ונתונים אחרים הכלולים בו מהטבלט. "\n"להמשיך?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"האם אתה באמת רוצה להסיר את החשבון הזה? הסרת החשבון תמחק גם את כל ההודעות, אנשי הקשר ונתונים אחרים הכלולים בו מהטלפון. "\n"להמשיך?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"חשבון זה נדרש על ידי יישומים מסוימים. תוכל להסיר אותו רק על ידי איפוס הטבלט להגדרות ברירת המחדל של היצרן (פעולה שתמחק את כל הנתונים האישיים). תוכל לעשות זאת ב\'הגדרות היישום\', מתחת ל\'פרטיות\'."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"חשבון זה נדרש על ידי יישומים מסוימים. תוכל להסיר אותו רק על ידי איפוס הטלפון להגדרות ברירת המחדל של היצרן (פעולה שתמחק את כל הנתונים האישיים). תוכל לעשות זאת ב\'הגדרות יישום\', מתחת ל\'פרטיות\'."</string>
- <string name="provider_label" msgid="7724593781904508866">"מנויי Push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"סינכרון <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"אין אפשרות לסינכרון ידני"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"סינכרון עבור פריט זה מושבת כעת. כדי לשנות את ההעדפה, הפעל באופן זמני נתוני רקע וסינכרון אוטומטי."</string>
- <string name="enter_password" msgid="3268224850821675915">"הזן סיסמה כדי לפענח את הצפנת האחסון"</string>
- <string name="try_again" msgid="5904121494468643129">"מצטערים, נסה שוב"</string>
- <string name="service_busy" msgid="225227519012409130">"השירות לא פנוי, נסה שוב"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-ja/arrays.xml b/res/values-ja/arrays.xml
index 5047fed..74e0a45 100644
--- a/res/values-ja/arrays.xml
+++ b/res/values-ja/arrays.xml
@@ -36,29 +36,11 @@
</string-array>
<string-array name="animations_summaries">
<item msgid="4569165952409350897">"ウィンドウアニメーションを表示しない"</item>
- <item msgid="4460915688877708508">"一部のウィンドウアニメーションを表示する"</item>
- <item msgid="488968798204105119">"すべてのウィンドウアニメーションを表示"</item>
+ <item msgid="4460915688877708508">"ウィンドウアニメーションの一部を表示"</item>
+ <item msgid="488968798204105119">"ウィンドウアニメーションをすべて表示"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15秒"</item>
- <item msgid="8881760709354815449">"30秒"</item>
- <item msgid="7589406073232279088">"1分"</item>
- <item msgid="7001195990902244174">"2分"</item>
- <item msgid="7489864775127957179">"5分"</item>
- <item msgid="2314124409517439288">"10分"</item>
- <item msgid="6864027152847611413">"30分"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"今すぐ"</item>
- <item msgid="6736512735606834431">"5秒"</item>
- <item msgid="8044619388267891375">"15秒"</item>
- <item msgid="1822002388249545488">"30秒"</item>
- <item msgid="8538071621211916519">"1分"</item>
- <item msgid="5663439580228932882">"2分"</item>
- <item msgid="49888496216106852">"5分"</item>
- <item msgid="9002737361305019353">"10分"</item>
- <item msgid="4322676235684793329">"30分"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"非常に遅い"</item>
<item msgid="2361722960903353554">"遅い"</item>
@@ -99,7 +81,7 @@
<item msgid="355508996603873860">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>に接続中..."</item>
<item msgid="554971459996405634">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>による認証中..."</item>
<item msgid="7928343808033020343">"IPアドレスを<xliff:g id="NETWORK_NAME">%1$s</xliff:g>から取得中..."</item>
- <item msgid="8937994881315223448">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>に接続しました"</item>
+ <item msgid="8937994881315223448">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>に接続されました"</item>
<item msgid="1330262655415760617">"保留中"</item>
<item msgid="7698638434317271902">"<xliff:g id="NETWORK_NAME">%1$s</xliff:g>から切断中..."</item>
<item msgid="197508606402264311">"切断されました"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"非常に強い"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"画面がOFFになったとき"</item>
+ <item msgid="3804733751095821976">"画面がOFFになったとき"</item>
<item msgid="1549288661423279207">"電源接続時はスリープにしない"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"スリープにしない"</item>
+ <item msgid="1986753720941888596">"スリープにしない"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"自動"</item>
@@ -182,7 +164,7 @@
<string-array name="vibrate_entries">
<item msgid="3388952299521009213">"常に使用"</item>
<item msgid="6293147072807231256">"なし"</item>
- <item msgid="1276641209451816572">"マナーモードがオンのときのみ"</item>
- <item msgid="8418930333779132418">"マナーモードがオフのときのみ"</item>
+ <item msgid="1276641209451816572">"マナーモードでのみ"</item>
+ <item msgid="8418930333779132418">"マナーモードのときのみ"</item>
</string-array>
</resources>
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
index 9160d5c..e6c636b 100644
--- a/res/values-ja/strings.xml
+++ b/res/values-ja/strings.xml
@@ -75,7 +75,7 @@
<string name="battery_info_status_charging_usb" msgid="4059070156126770959">"(USB)"</string>
<string name="battery_info_status_discharging" msgid="6222697503392774475">"放電中"</string>
<string name="battery_info_status_not_charging" msgid="2820070506621483576">"充電していません"</string>
- <string name="battery_info_status_full" msgid="2824614753861462808">"100%"</string>
+ <string name="battery_info_status_full" msgid="2824614753861462808">"満充電"</string>
<string name="battery_info_power_unplugged" msgid="5987246575519551081">"電池使用時間:"</string>
<string name="battery_info_power_ac" msgid="6808516193001604634">"AC"</string>
<string name="battery_info_power_usb" msgid="8012931702516331797">"USB"</string>
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"残量なし"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"過電圧"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"不明なエラー"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"低温"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"検出可能"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"<xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g>秒間検出可能..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"スキャン中"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetoothペア設定リクエスト"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"ペア設定リクエスト"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>のペアとして設定"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"受信済みファイルの表示"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Bluetoothで受信したファイルのリストを表示する"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth端末の選択"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth許可リクエスト"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"アプリケーションがBluetoothをONにする許可をリクエストしています。許可しますか?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"アプリケーションが、BluetoothをONにしてこのタブレットを<xliff:g id="TIMEOUT">%1$d</xliff:g>秒間他のデバイスから検出できるようにする許可をリクエストしています。許可しますか?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"アプリケーションが、BluetoothをONにしてこの端末を<xliff:g id="TIMEOUT">%1$d</xliff:g>秒間他の端末から検出できるようにする許可をリクエストしています。許可しますか?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"BluetoothをONにしています..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"自動接続"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"日付と時刻"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 PM"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g>を開始"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"アカウント:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"プロキシ設定"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"プロキシ設定"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"グローバルHTTPプロキシと除外リストを設定する"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"消去"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"ポート"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"キャンセル"</string>
<string name="settings_label" msgid="1626402585530130914">"設定"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"設定"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"設定をショートカットとして選択"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"設定"</string>
<string name="airplane_mode" msgid="8837269988154128601">"機内モード"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"ワイヤレス接続をすべて無効にする"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"ワイヤレス接続を無効にしています..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"ワイヤレス接続を有効にしています..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"無線とネットワーク"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"無線とネットワーク"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"ワイヤレスとネットワークの設定"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Wi-Fi、Bluetooth、機内モード、モバイルネットワーク、VPNの設定"</string>
<string name="roaming" msgid="3596055926335478572">"データローミング"</string>
<string name="roaming_enable" msgid="3737380951525303961">"ローミング中にデータサービスに接続します"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"オペレーターの選択"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"ネットワークオペレーターを選択します"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"日付と時刻"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"日時の設定"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"日付、時刻、タイムゾーンの設定"</string>
<string name="date_time_auto" msgid="7076906458515908345">"日付と時刻の自動設定"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"ネットワークから提供された時刻を使用します"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"タイムゾーン順"</string>
<string name="date_picker_title" msgid="1338210036394128512">"日付"</string>
<string name="time_picker_title" msgid="483460752287255019">"時間"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"タイムアウト"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"画面が自動的にOFFになってから<xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>後に画面をロックする"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"タイムアウト後に端末をロック"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"ロック画面に所有者情報を表示"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"所有者情報"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"現在地、画面ロック、SIMカードロック、認証情報ストレージのロック"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"現在地、画面のロック解除、認証情報ストレージのロックを設定します"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"パスワード"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"端末の暗号化"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"デバイス内データを暗号化"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"デバイス内データを暗号化"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"端末のロック解除PINまたはパスワードの設定が必要です"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"端末のロック解除PINまたはパスワードの設定が必要です"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"暗号化されています"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"アカウント、設定、ダウンロード済みアプリケーションとそのデータ、メディア、その他のファイルを暗号化できます。携帯端末を暗号化すると、その後はデータを初期化して端末内の全データを削除しない限り暗号化を解除できません。"\n\n"暗号化の処理には最大で1時間かかることがあります。暗号化を開始する前に電池に充電し、暗号化が完了するまで携帯端末を電源に接続しておく必要があります。暗号化処理が途中で中断されると、データの一部または全部が失われます。"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"アカウント、設定、ダウンロード済みアプリケーションとそのデータ、メディア、その他のファイルを暗号化できます。携帯端末を暗号化すると、その後はデータを初期化して端末内の全データを削除しない限り暗号化を解除できません。"\n\n"暗号化の処理には最大で1時間かかることがあります。暗号化を開始する前に電池に充電し、暗号化が完了するまで携帯端末を電源に接続しておく必要があります。暗号化処理が途中で中断されると、データの一部または全部が失われます。"</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"タブレットを暗号化"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"携帯端末を暗号化"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"暗号化の確認"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"ユーザーデータを暗号化しますか?この操作は取り消すことができません。処理を途中で中断するとデータが失われます。暗号化の処理には最大で1時間かかることがあります。"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"ユーザーデータを暗号化しますか?この操作は取り消すことができません。処理を途中で中断するとデータが失われます。暗号化の処理には最大で1時間かかることがあります。"</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"暗号化しています"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"^1秒後にやり直してください。"</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"画面ロックの設定"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"画面ロックの設定"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"画面のロック解除セキュリティ"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"画面ロックの設定"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"画面ロックの変更"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"パターン、PIN、パスワードセキュリティを変更または無効にする"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"画面をロックする方法を選択する"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"OFF"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"画面をロックしない"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"保護しない"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"解除にパターン、PIN、パスワードを必要としない"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"ロック画面を表示しない"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"なし"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"画面のロック解除セキュリティを無効にする"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"パターン"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"画面ロックをパターンで解除する"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"パターンの入力で画面ロックを解除する"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"画面ロックを数値PINで解除する"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"数値PINの入力で画面ロックを解除する"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"パスワード"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"画面ロックをパスワードで解除する"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"パスワードの入力で画面ロックを解除する"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"リモートの端末管理者が無効にしました"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"OFF"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"保護されていません"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"パターンで保護されています"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"PINで保護されています"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"パスワードで保護されています"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"画面ロックをOFFにする"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"ロック解除パターンを削除"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"ロック解除PINを削除"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"最近使用されたパスワードは使用できません"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"キャンセル"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"キャンセル"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"次へ"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"デバイス管理"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"端末管理者"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"端末管理者を表示または無効にする"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"デバイス管理者を選択"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"デバイス管理者を追加または削除する"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"BluetoothをONにする"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth設定"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth設定"</string>
- <string name="bluetooth_settings_summary" msgid="2091062709530570462">"接続、端末名、検出の許可を設定する"</string>
+ <string name="bluetooth_settings_summary" msgid="2091062709530570462">"端末の名前、接続や検出設定"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetoothのペア設定リクエスト"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」とペア設定するPINを入力してください(0000か1234を試してください)。Bluetoothデバイスと同じPINの入力が必要になる場合があります。"</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」とペア設定するためのパスキーを入力してください。"</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」とペア設定するには、パスキー:<xliff:g id="PASSKEY">%2$s</xliff:g>が表示されていることを確認してください。"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"がペア設定をリクエストしています。"</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"ペア設定する「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」で「<xliff:g id="PASSKEY">%2$s</xliff:g>」と入力して、ReturnかEnterを押してください。"</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"ペア設定する"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"ペア設定しない"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth端末"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"オプション..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"接続先..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"メディア"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"ハンズフリー"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"タブレット"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"転送"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"入力デバイス"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"テザリング"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>はメディアの音声から切断されます。"</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>はハンズフリー音声デバイスから切断されます。"</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>は入力デバイスから切断されます。"</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>はテザリングから切断されます。"</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>オプション"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"デバイスの動作"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"接続"</string>
@@ -431,20 +411,23 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"携帯電話の音声に使用"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"ファイル転送に使用"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"入力に使用"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"インターネットアクセスに使用する"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"ドックの設定"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"音声にドックを使用"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"スピーカーフォン"</string>
<string name="bluetooth_dock_settings_a2dp" msgid="8791004998846630574">"音楽とメディア"</string>
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"設定を保存"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
- <string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"タグの読み取りと交換にNFCを使用する"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"エラーが発生しました。"</string>
+ <string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"タグの読み取りと交換にNFCを使用"</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Wi-FiをONにする"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi設定"</string>
<string name="wifi_settings_category" msgid="2810363951104753710">"Wi-Fi設定"</string>
- <string name="wifi_settings_summary" msgid="668767638556052820">"ワイヤレスアクセスポイントを設定する"</string>
+ <string name="wifi_settings_summary" msgid="668767638556052820">"ワイヤレスアクセスポイントの設定"</string>
<string name="wifi_starting" msgid="6710266609710860129">"ONにしています..."</string>
<string name="wifi_stopping" msgid="5952909472548218348">"OFFにしています..."</string>
<string name="wifi_error" msgid="3207971103917128179">"エラー"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"ネットワークをスキャンできません"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"ネットワークの通知"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"オープンネットワークが利用可能なときに通知する"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fiのスリープ設定"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Wi-Fiをスリープに切り替えるタイミング"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"スリープポリシーの設定で問題が発生しました。"</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Wi-Fiネットワークを追加"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fiネットワーク"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"スキャン"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"ネットワークを変更"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"ネットワーク設定"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"アクセスポイントに記載のPINを入力してください"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS設定"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPSピン方式の設定"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"アクセスポイントのピン<xliff:g id="WPS_PIN">%1$s</xliff:g>を入力"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPSの設定が進行中です。完了まで数十秒かかることがあります。"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPSを開始できませんでした。もう一度お試しください。"</string>
<string name="wifi_ssid" msgid="641393708309146745">"ネットワークSSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"セキュリティ"</string>
<string name="wifi_signal" msgid="5514120261628065287">"電波強度"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"切断"</string>
<string name="wifi_save" msgid="3331121567988522826">"保存"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"キャンセル"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"別のWPSセッションが検出されました。数秒後にもう一度お試しください。"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"詳細設定"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fiのスリープ設定"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Wi-Fiをスリープに切り替えるタイミング"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"スリープポリシーの設定で問題が発生しました。"</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi周波数帯域"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"使用する周波数帯域を指定する"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"周波数帯域の設定中に問題が発生しました。"</string>
@@ -524,10 +504,10 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>ポータブルWi-Fiアクセスポイント"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"音"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"画面"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"表示"</string>
<string name="sound_settings" msgid="5007659014828162881">"音の設定"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"マナーモード"</string>
- <string name="silent_mode_summary" msgid="3309650676072917899">"音楽、動画メディア、アラーム以外は消音する"</string>
+ <string name="silent_mode_summary" msgid="3309650676072917899">"音楽、動画メディア、アラーム以外は消音"</string>
<string name="silent_mode_incl_alarm_summary" msgid="2088830834182228458">"音楽と動画メディア以外は消音"</string>
<string name="ringtone_title" msgid="7037881886694206550">"通話着信音"</string>
<string name="ringtone_summary" msgid="2630023412632683493"></string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"画面の向きに合わせて縦横表示を切り替える"</string>
<string name="brightness" msgid="2354961343555249270">"画面の明るさ"</string>
<string name="brightness_summary" msgid="838917350127550703">"画面の明るさを調整する"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"タイムアウト"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"画面を<xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>後に自動的にOFFにする"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"バックライト消灯"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"明るさを自動調整"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIMカードロック設定"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIMカードロック設定"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"該当なし"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"端末の状態"</string>
<string name="device_status" msgid="607405385799807324">"端末の状態"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"電池やネットワークなどの情報のステータス"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"電池残量、電話番号、ネットワークなど"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"電話番号、電波状態など"</string>
<string name="storage_settings" msgid="4211799979832404953">"ストレージ"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"ストレージの設定"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USBストレージのマウントを解除し、使用できるストレージを表示"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SDカードの取り外し、空き容量の表示"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"電話番号"</string>
+ <string name="status_number" msgid="5123197324870153205">"電話番号"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRLバージョン"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"内部ストレージ"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USBストレージ"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SDカード"</string>
- <string name="memory_available" msgid="5052397223077021181">"空き容量"</string>
- <string name="memory_size" msgid="5458889090691922288">"合計容量"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"計算中..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"アプリケーション"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"メディア"</string>
+ <string name="memory_available" msgid="418542433817289474">"空き容量"</string>
+ <string name="memory_size" msgid="6629067715017232195">"合計容量"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"アプリケーションの使用状況"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"メディアの使用状況"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"共有ストレージのマウントを解除"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SDカードのマウント解除"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"内部USBストレージのマウント解除"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"マウントするSDカードを挿入"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"USBストレージをマウント"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"SDカードをマウント"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"USBストレージをマウント"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"内部USBストレージのマウント"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"SDカードをマウント"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"USBストレージ内データを消去"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"SDカード内データを消去"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"内部USBストレージ内の全データ(音楽、写真など)の消去"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"SDカード内の全データ(音楽、写真など)の消去"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"内部USBストレージ内の全データ(音楽、写真など)の消去"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"使用不可"</string>
<string name="read_only" msgid="6702420168629076340">" (読み取り専用)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"USBストレージのマウント解除"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"この操作を行うと、以下のデータを含む"<b>"内部ストレージ"</b>"の全データが消去されます:"\n\n<li>"Googleアカウント"</li>\n<li>"システムやアプリケーションのデータと設定"</li>\n<li>"ダウンロードしたアプリケーション"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"この操作を行うと、以下のデータを含む"<b>"内部ストレージ"</b>"の全データが消去されます:"\n\n<li>"Googleアカウント"</li>\n<li>"システムやアプリケーションのデータと設定"</li>\n<li>"ダウンロードしたアプリケーション"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"以下のアカウントにログインしています:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"音楽"</li>\n<li>"画像"</li>\n<li>"他のユーザーデータ"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"音楽、写真、その他のユーザーデータも消去する場合は"<b>"USBストレージ"</b>"を消去する必要があります。"</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"音楽、写真などのユーザーデータも消去するためには、"<b>"SDカード"</b>"を消去する必要があります。"</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"音楽、写真、その他のユーザーデータも消去する場合は"<b>"USBストレージ"</b>"を消去する必要があります。"</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USBストレージ内データの消去"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SDカード内データを消去"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"内部USBストレージ内の全データ(音楽、写真など)を消去します。"</string>
@@ -796,7 +776,7 @@
<string name="bluetooth_untether_blank" msgid="2871192409329334813">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>のテザリングを解除します。"</string>
<string name="tethering_help_button_text" msgid="656117495547173630">"ヘルプ"</string>
<string name="network_settings_title" msgid="7967552516440151852">"モバイルネットワーク"</string>
- <string name="network_settings_summary" msgid="5149750850846813553">"ローミング、ネットワーク、APNを設定する"</string>
+ <string name="network_settings_summary" msgid="5149750850846813553">"ローミング、ネットワーク、APN設定"</string>
<string name="location_title" msgid="1029961368397484576">"現在地"</string>
<string name="location_network_based" msgid="8815705866861993344">"無線ネットワークを使用"</string>
<string name="location_networks_disabled" msgid="2708968452901433980">"無線ネットワーク使用のアプリケーション(地図など)で位置を表示する"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"A-GPSを使用"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"サーバーでGPSを補助します(OFFにするとネットワーク使用率が減少します)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"サーバーでGPSを補助します(OFFにするとGPS性能が向上します)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Google検索に位置情報を使用する"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"現在地情報をGoogleの検索やサービスで利用する"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"現在地情報をGoogleの検索結果やサービスの向上に利用する"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"現在地情報をGoogle検索に利用する"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"現在地情報をGoogleの検索やサービスで利用する"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"現在地をGoogleの検索結果やサービスの向上に利用する"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"タブレット情報"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"端末情報"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"規約、ステータス、ソフトウェアバージョン"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"パスワードが設定されました"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PINが設定されました"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"パターンが設定されました"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"画面のロック"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"画面のロック解除"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"パターンの変更"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"ロック解除PINを変更"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"現在のパターンを入力"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"次へ"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"タブレットの保護"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"携帯電話の保護"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"秘密の画面ロック解除パターンを作成してタブレットを不正使用から守ります。次の画面で指を使って点を好きな順序で結んでください。4つ以上の点を結ぶ必要があります。"\n\n"準備ができたら[次へ]をタップしてください。"</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"画面ロックの解除パターンを作成して携帯電話の不正使用を防ぐことができます。 "\n<font height="17">\n</font><b>"1"</b>" 次の画面に示すパターン作成の例を参考にしてください。"\n<font height="17">\n</font><b>"2"</b>" ロック解除パターンを決めたら、そのパターンを指でなぞって描きます。さまざまなパターンを作成できますが、最低4つの点を結んでください。"\n<font height="17">\n</font><b>"3"</b>" 確認のためもう一度そのパターンを入力します。"\n<font height="17">\n</font><b>"[次へ]をタップすると次に進みます"</b>"。"\n<font height="3">\n</font>"パターンロックを設定しない場合は[キャンセル]を選択してください。"</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"アプリケーションの管理"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"インストール済みアプリケーションを管理/削除する"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"合計"</string>
<string name="application_size_label" msgid="5055196275624686382">"アプリケーション"</string>
<string name="data_size_label" msgid="8679376373625710107">"データ"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USBストレージ"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SDカード"</string>
<string name="uninstall_text" msgid="3644892466144802466">"アンインストール"</string>
<string name="disable_text" msgid="6544054052049395202">"無効にする"</string>
<string name="enable_text" msgid="9217362512327828987">"有効にする"</string>
@@ -987,19 +968,19 @@
<string name="service_manage_description" msgid="7050092269951613102">"<xliff:g id="CLIENT_NAME">%1$s</xliff:g>: 現在使用中です。管理するには[設定]をタップしてください。"</string>
<string name="main_running_process_description" msgid="929204645380391397">"使用中のメインプロセスです。"</string>
<string name="process_service_in_use_description" msgid="8993335064403217080">"サービス<xliff:g id="COMP_NAME">%1$s</xliff:g>は使用中です。"</string>
- <string name="process_provider_in_use_description" msgid="5586603325677678940">"<xliff:g id="COMP_NAME">%1$s</xliff:g>プロバイダは使用中です。"</string>
+ <string name="process_provider_in_use_description" msgid="5586603325677678940">"プロバイダ<xliff:g id="COMP_NAME">%1$s</xliff:g>は使用中です。"</string>
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"システムサービスを停止しますか?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"このシステムサービスを停止してもよろしいですか?停止すると、電源を一旦OFFにして再度ONにするまで、タブレットの一部の機能が正常に動作しなくなる場合があります。"</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"このシステムサービスを停止してよろしいですか?停止すると、電源を一旦OFFにして再度ONにするまで、端末の一部の機能が正常に動作しなくなる場合があります。"</string>
- <string name="language_settings" msgid="5292716747264442359">"言語と入力"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"言語と入力"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"地域/言語 & 文字入力"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"言語とキーボードの設定"</string>
<string name="language_settings_category" msgid="2288258489940617043">"言語設定"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"キーボード設定"</string>
<string name="phone_language" msgid="1165758957501090679">"言語を選択"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"自動修正"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"入力間違いを自動修正する"</string>
- <string name="auto_caps" msgid="6379232078052591265">"自動大文字変換"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"自動大文字変換"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"英字入力で文頭文字を大文字にする"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"ピリオド自動挿入"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"キーボードの設定"</string>
@@ -1035,15 +1016,22 @@
<string name="input_method" msgid="5434026103176856164">"入力方法"</string>
<string name="current_input_method" msgid="2146807723398303917">"現在の入力方法"</string>
<string name="input_method_selector" msgid="4311213129681430709">"入力方法選択オプション"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"自動"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"常に表示"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"常に非表示"</string>
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
<string name="configure_input_method" msgid="7773992829158322455">"入力方法の設定"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"設定"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"有効な入力方法"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"システムの言語を使用"</string>
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g>の設定"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"有効な入力方法を選択"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"画面キーボードの設定"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"端末内蔵キーボード"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"端末内蔵物理キーボードの設定"</string>
@@ -1088,7 +1076,7 @@
<string name="accessibility_power_button_ends_call" msgid="7698764194501089533">"電源ボタンで通話を終了する"</string>
<string name="accessibility_power_button_ends_call_summary" msgid="8878097632186291462">"画面をOFFにするのではなく電源ボタンを押して通話を終了する"</string>
<string name="power_usage_summary_title" msgid="5180282911164282324">"電池使用量"</string>
- <string name="power_usage_summary" msgid="7237084831082848168">"電池の使用状況"</string>
+ <string name="power_usage_summary" msgid="7237084831082848168">"電池を使用している操作"</string>
<string name="power_usage_not_available" msgid="3583407442633768046">"電池使用量データなし"</string>
<string name="battery_since_unplugged" msgid="338073389740738437">"電池使用時間"</string>
<string name="battery_since_reset" msgid="7464546661121187045">"リセット後の電池使用量"</string>
@@ -1106,8 +1094,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-FiをONにしている時間"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-FiをONにしている時間"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"履歴の詳細"</string>
- <string name="details_title" msgid="3792801565213935385">"使用状況の詳細"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"電池使用量の詳細"</string>
<string name="details_subtitle" msgid="32593908269911734">"詳細を使用"</string>
<string name="controls_subtitle" msgid="390468421138288702">"消費電力の調整"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"含まれているパッケージ"</string>
@@ -1242,7 +1231,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"サーバーとのネゴシエーションに失敗しました。サーバーが暗号化オプションに同意しない場合があります。暗号化設定を確認しますか?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPNの追加"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPNの追加"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPNの詳細"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g> VPNを追加"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g>の詳細"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1282,34 +1272,47 @@
<string name="vpn_is_enabled" msgid="1266304230417098877">"<xliff:g id="OPTION">%s</xliff:g>は有効です"</string>
<string name="vpn_is_disabled" msgid="2013622485867806167">"<xliff:g id="OPTION">%s</xliff:g>は無効です"</string>
<string name="vpn_settings_title" msgid="7327468307909556719">"VPN設定"</string>
- <string name="vpn_settings_summary" msgid="8849924181594963972">"VPNを設定および管理する"</string>
+ <string name="vpn_settings_summary" msgid="8849924181594963972">"VPNの設定と管理"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(変更なし)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(未設定)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"認証情報ストレージ"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"認証情報ストレージ"</string>
<string name="credentials_access" msgid="4843187230913860492">"安全な認証情報の使用"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"安全な証明書と他の認証情報へのアクセスをアプリケーションに許可する"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"USBストレージからインストール"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"SDカードからインストール"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"USBストレージから証明書をインストールする"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"証明書をSDカードからインストールする"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"パスワードの設定"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"認証ストレージのパスワードを設定または変更する"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"認証ストレージの消去"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"すべてのコンテンツを削除してパスワードをリセットする"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"パスワードを入力する"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"認証ストレージのパスワードを入力してください。"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"認証情報ストレージのパスワードを設定します。パスワードは8文字以上で指定します。"</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"認証情報ストレージパスワードを入力します。"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"USBストレージからのインストール"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"SDカードからインストール"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"USBストレージから暗号化された証明書をインストール"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"暗号化された証明書をSDカードからインストールする"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"パスワードの設定"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"認証情報ストレージパスワードを設定または変更する"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"ストレージの消去"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"認証情報ストレージのすべてのコンテンツを消去してパスワードをリセットする"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"すべての認証情報を削除して認証情報ストレージパスワードをリセットしてもよろしいですか?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"現在のパスワード:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"新しいパスワード:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"新しいパスワードの確認:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"コンテンツはすべて削除され、パスワードはリセットされます。操作を実行してもよろしいですか?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"認証情報ストレージのパスワードを設定します(8文字以上)。"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"正しいパスワードを入力してください。"</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"正しいパスワードを入力してください。パスワードの入力にもう1回失敗すると、認証情報ストレージが消去されます。"</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"正しいパスワードを入力してください。パスワードの入力にあと<xliff:g id="NUMBER">%1$d</xliff:g>回失敗すると、認証情報ストレージが消去されます。"</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"パスワードが一致しません。"</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"パスワードを入力して確認する必要があります。"</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"パスワードを入力してください。"</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"パスワードを8文字以上で入力してください。"</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"パスワードが正しくありません。"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"パスワードが正しくありません。あと1回失敗すると、認証情報ストレージが消去されます。"</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"パスワードが正しくありません。あと<xliff:g id="NUMBER">%1$d</xliff:g>回失敗すると、認証情報ストレージが消去されます。"</string>
- <string name="credentials_erased" msgid="2907836028586342969">"認証情報ストレージを消去"</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"認証情報ストレージが消去されました。"</string>
<string name="credentials_enabled" msgid="7588607413349978930">"認証情報ストレージが有効になりました。"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"認証情報ストレージが無効になりました。"</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"暗号化ファイルシステム"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"個人データの暗号化"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"この携帯電話の個人データを格納するために暗号化ファイルシステムを有効にする"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"暗号化ファイルシステムを有効にするには、携帯電話データの消去が必要です。"</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"暗号化ファイルシステムを無効にするには、携帯電話データの消去が必要です。"</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"有効にする"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"無効にする"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"キャンセル"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"暗号化ファイルシステムのモードの変更がキャンセルされました。"</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"暗号化ファイルシステムの警告。"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"緊急時の音"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"緊急通報時の動作を設定します"</string>
<string name="privacy_settings" msgid="9206631214140954954">"プライバシー"</string>
@@ -1339,11 +1342,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"着信"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"通知"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"フィードバック"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi設定"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Wi-Fiネットワーク「<xliff:g id="NETWORK_NAME">%s</xliff:g>」に接続"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Wi-Fiネットワーク「<xliff:g id="NETWORK_NAME">%s</xliff:g>」に接続中..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Wi-Fiネットワーク「<xliff:g id="NETWORK_NAME">%s</xliff:g>」に接続しました"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"ネットワークの追加"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fiセットアップ"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"接続されていません"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"ネットワークを追加"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"リストを更新"</string>
@@ -1356,7 +1355,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"保存"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"キャンセル"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"ネットワークをスキャン中..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"接続するネットワークをタップしてください"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"タップしてネットワークを選択します"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"既存ネットワークに接続"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"保護されていないネットワークに接続"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"ネットワーク設定を入力してください"</string>
@@ -1364,9 +1363,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"接続中..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"次の手順に進む"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAPはサポートされていません"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"設定時にはEAP Wi-Fi接続を設定できません。設定の完了後に[設定]の["<b>"無線とネットワーク"</b>"]で設定することができます。"</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"接続には数分かかることがあります..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"設定を続けるには["<b>"次へ"</b>"]をタップします。"\n\n"別のWi-Fiネットワークに接続するには["<b>"戻る"</b>"]をタップします。"</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"設定時にはEAP Wi-Fi接続を設定できません。設定の完了後に[設定]の[無線とネットワーク]で設定することができます。"</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"同期設定"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"現在同期で問題が発生しています。しばらくお待ちください。"</string>
<string name="add_account_label" msgid="7811707265834013767">"アカウントを追加"</string>
@@ -1382,32 +1379,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"同期OFF"</string>
<string name="sync_error" msgid="5060969083117872149">"同期エラー"</string>
<string name="settings_backup" msgid="2274732978260797031">"設定をバックアップ"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"設定をバックアップ"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"今すぐ同期"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"同期をキャンセル"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"タップして今すぐ同期<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"カレンダー"</string>
<string name="sync_contacts" msgid="9174914394377828043">"連絡先"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Google Syncへようこそ"</font>\n"このサービスを使用すると、データを同期してどこからでも連絡先や予定などにアクセスできます。"</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"アプリケーションの同期設定"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"データと同期"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"パスワードを変更"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"アカウントの設定"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"アカウントを削除"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"アカウントの追加"</string>
- <string name="finish_button_label" msgid="481587707657751116">"完了"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"アカウントの削除"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"このアカウントを削除してもよろしいですか?削除すると、メール、連絡先などのすべてのデータもタブレットから削除されます。"\n"続けますか?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"このアカウントを削除してもよろしいですか?削除すると、メール、連絡先などのすべてのデータも端末から削除されます。"\n"続けますか?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"一部のアプリケーションではこのアカウントが必要です。アカウントを削除するには、タブレットを出荷時設定にリセットする必要があります(個人データはすべて削除されます)。リセットは、[設定]アプリケーションの[プライバシー]で行います。"</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"一部のアプリケーションではこのアカウントが必要です。アカウントを削除するには、端末を出荷時設定にリセットする必要があります(個人データはすべて削除されます)。リセットは、[設定]アプリケーションの[プライバシー]で行います。"</string>
- <string name="provider_label" msgid="7724593781904508866">"プッシュ型登録"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"<xliff:g id="AUTHORITY">%s</xliff:g>を同期"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"手動では同期できません"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"このアイテムの同期は現在無効になっています。設定を変更するには、バックグラウンドデータと自動同期を一時的にONにします。"</string>
- <string name="enter_password" msgid="3268224850821675915">"ストレージの暗号化を解除するパスワードを入力してください"</string>
- <string name="try_again" msgid="5904121494468643129">"もう一度お試しください"</string>
- <string name="service_busy" msgid="225227519012409130">"サービスはビジーです。もう一度お試しください。"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-ko/arrays.xml b/res/values-ko/arrays.xml
index 4e633da..13e4d45 100644
--- a/res/values-ko/arrays.xml
+++ b/res/values-ko/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"일부 창 애니메이션이 표시됩니다."</item>
<item msgid="488968798204105119">"모든 창 애니메이션이 표시됨"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15초"</item>
- <item msgid="8881760709354815449">"30초"</item>
- <item msgid="7589406073232279088">"1분"</item>
- <item msgid="7001195990902244174">"2분"</item>
- <item msgid="7489864775127957179">"5분"</item>
- <item msgid="2314124409517439288">"10분"</item>
- <item msgid="6864027152847611413">"30분"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"즉시"</item>
- <item msgid="6736512735606834431">"5초"</item>
- <item msgid="8044619388267891375">"15초"</item>
- <item msgid="1822002388249545488">"30초"</item>
- <item msgid="8538071621211916519">"1분"</item>
- <item msgid="5663439580228932882">"2분"</item>
- <item msgid="49888496216106852">"5분"</item>
- <item msgid="9002737361305019353">"10분"</item>
- <item msgid="4322676235684793329">"30분"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"매우 느림"</item>
<item msgid="2361722960903353554">"느림"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"우수함"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"화면이 꺼질 때"</item>
+ <item msgid="3804733751095821976">"화면이 꺼질 때"</item>
<item msgid="1549288661423279207">"전원에 연결되었을 때는 절전 모드로 전환되지 않음"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"선택 안함"</item>
+ <item msgid="1986753720941888596">"절전 모드로 전환 안함"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"자동"</item>
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
index de6845c..b9191a6 100644
--- a/res/values-ko/strings.xml
+++ b/res/values-ko/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"방전됨"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"과전압"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"알 수 없는 오류"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"부족함"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"검색 가능"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"<xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g>초 동안 검색 가능..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"검색 중"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth 페어링 요청"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"페어링 요청"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>와(과) 페어링하려면 선택"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"받은 파일 표시"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"블루투스를 통해 받은 파일 목록 표시"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth 장치 선택기"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"블루투스 권한 요청"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"애플리케이션에서 블루투스 사용 권한을 요청하고 있습니다. 사용하시겠습니까?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"태블릿의 애플리케이션이 블루투스 사용 및 <xliff:g id="TIMEOUT">%1$d</xliff:g>초 동안 다른 장치에서 사용자의 태블릿을 찾을 수 있는 권한을 요청하고 있습니다. 사용하시겠습니까?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"휴대전화의 애플리케이션에서 블루투스 사용 및 <xliff:g id="TIMEOUT">%1$d</xliff:g>초 동안 다른 장치에서 사용자의 휴대전화를 찾을 수 있는 권한을 요청하고 있습니다. 사용하시겠습니까?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"블루투스 켜는 중..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"자동 연결"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"날짜 및 시간 설정"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 PM"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g> 시작"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"계정:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"프록시 설정"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"프록시 설정"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"전체 HTTP 프록시 및 제외목록 설정"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"지우기"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"포트"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"취소"</string>
<string name="settings_label" msgid="1626402585530130914">"설정"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"설정"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"설정 바로가기 선택"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"설정"</string>
<string name="airplane_mode" msgid="8837269988154128601">"비행기 모드"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"모든 무선 연결 사용 안함"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"무선 연결을 끊는 중..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"무선 연결 사용 중..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"무선 및 네트워크"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"무선 및 네트워크 설정"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"무선 및 네트워크 설정"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Wi-Fi, 블루투스, 비행기 모드, 모바일 네트워크 및 VPN 관리"</string>
<string name="roaming" msgid="3596055926335478572">"데이터 로밍"</string>
<string name="roaming_enable" msgid="3737380951525303961">"로밍 시 데이터 서비스에 연결"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"운영자 선택"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"네트워크 운영자 선택"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"날짜 및 시간"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"날짜 및 시간 설정"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"날짜, 시간, 표준시간대 및 형식 설정"</string>
<string name="date_time_auto" msgid="7076906458515908345">"날짜/시간 자동설정"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"인터넷 시간 사용"</string>
@@ -252,11 +252,12 @@
<string name="date_time_set_date" msgid="7021491668550232105">"날짜 설정"</string>
<string name="date_time_date_format" msgid="436706100255870967">"날짜형식 선택"</string>
<string name="zone_list_menu_sort_alphabetically" msgid="5683377702671088588">"가나다순으로 정렬"</string>
- <string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"시간대순 정렬"</string>
+ <string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"시간대별 정렬"</string>
<string name="date_picker_title" msgid="1338210036394128512">"날짜"</string>
<string name="time_picker_title" msgid="483460752287255019">"시간"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"시간제한"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"화면이 자동으로 꺼지고 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> 후에 화면 잠금"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"시간 초과 후 기기 잠금"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"화면 잠금에 소유자 정보 표시"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"소유자 정보"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"내 위치, 화면 잠금해제, SIM 카드 잠금, 자격증명 저장소 잠금 설정"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"내 위치, 화면 잠금해제, 자격증명 저장소 잠금 설정"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"비밀번호"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"기기 암호화"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"기기 데이터 암호화"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"기기 데이터 암호화"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"기기 잠금해제 PIN 또는 비밀번호를 설정해야 합니다."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"기기 잠금해제 PIN 또는 비밀번호를 설정해야 합니다."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"암호화됨"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"계정, 설정, 다운로드된 애플리케이션과 데이터, 미디어 및 기타 파일을 암호화할 수 있습니다. 휴대전화를 암호화하면 기본값 데이터 재설정을 수행하여 휴대전화의 모든 데이터를 삭제해야만 암호화를 해제할 수 있습니다."\n\n"암호화에는 최대 1시간이 걸릴 수 있습니다. 충전된 배터리로 암호화를 시작하고 완료될 때까지 전화의 전원 연결을 해제하지 않아야 합니다. 암호화 프로세스를 중단하면 데이터 일부 또는 전부를 잃게 됩니다."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"계정, 설정, 다운로드된 애플리케이션과 데이터, 미디어 및 기타 파일을 암호화할 수 있습니다. 휴대전화를 암호화하면 기본값 데이터 재설정을 수행하여 휴대전화의 모든 데이터를 삭제해야만 암호화를 해제할 수 있습니다."\n\n"암호화에는 최대 1시간이 걸릴 수 있습니다. 충전된 배터리로 암호화를 시작하고 완료될 때까지 전화의 전원 연결을 해제하지 않아야 합니다. 암호화 프로세스를 중단하면 데이터 일부 또는 전부를 잃게 됩니다."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"태블릿 암호화"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"휴대전화 암호화"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"암호화 확인"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"사용자 데이터를 암호화하시겠습니까? 이 작업은 되돌릴 수 없으며 중단하면 데이터를 잃게 됩니다. 암호화에는 최대 1시간이 걸릴 수 있습니다."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"사용자 데이터를 암호화하시겠습니까? 이 작업은 되돌릴 수 없으며 중단하면 데이터를 잃게 됩니다. 암호화에는 최대 1시간이 걸릴 수 있습니다."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"암호화 중"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"^1초 후에 다시 시도하세요."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"화면 잠금 구성"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"화면 잠금 구성"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"화면 잠금해제 보안"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"화면 잠금 설정"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"화면 잠금 변경"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"패턴, PIN 또는 비밀번호 보안을 변경하거나 사용 중지"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"화면을 잠그는 방법을 선택합니다."</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"사용 안함"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"화면 잠금 안함"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"화면 잠금 안함"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"화면을 잠금해제할 때 패턴, PIN 또는 비밀번호 요구 안함"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"잠금 화면 표시 안함"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"선택 안함"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"화면 잠금해제 보안 사용 중지"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"패턴"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"화면 잠금을 해제하려면 패턴이 필요합니다."</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"패턴을 그려 화면 잠금 해제"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"화면 잠금을 해제하려면 숫자 PIN이 필요합니다."</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"숫자 PIN을 입력하여 화면 잠금 해제"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"비밀번호"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"화면 잠금을 해제하려면 비밀번호가 필요합니다."</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"비밀번호 입력하여 화면 잠금 해제"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"원격 기기 관리자가 사용 중지함"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"사용 안함"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"화면 잠금 안함"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"패턴으로 보안"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"PIN으로 보안"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"비밀번호로 보안"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"화면 잠금 사용 안함"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"잠금해제 패턴 삭제"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"잠금해제 PIN 삭제"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"장치 관리자가 최근 비밀번호 사용을 허용하지 않습니다."</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"확인"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"취소"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"취소"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"다음"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"기기 관리"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"기기 관리자"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"기기 관리자 보기 또는 비활성화"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"기기 관리자 선택"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"기기 관리자 추가 또는 삭제"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Bluetooth 켜기"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth 설정"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth 설정"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"연결 관리, 장치 이름 및 검색 가능 여부 설정"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth 페어링 요청"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"\'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'와(과) 페어링하려면 PIN을 입력하세요. 0000 또는 1234을 사용해 보세요. 블루투스 기기에서 동일한 PIN을 입력해야 할 수 있습니다."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"\'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'와(과) 페어링하려면 연결 코드를 입력하세요."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"\'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'와(과) 페어링하려면 다음 패스키가 표시 중인지 확인합니다. <xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"에서 페어링하고자 합니다."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"페어링하려면 \'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'에서 \'<xliff:g id="PASSKEY">%2$s</xliff:g>\'를 입력하고 Enter 키를 누르세요."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"페어링"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"페어링 안함"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"블루투스 장치"</string>
@@ -397,7 +373,7 @@
<string name="bluetooth_preference_find_nearby_title" msgid="5087410003465463318">"주변 기기 찾기"</string>
<string name="bluetooth_preference_device_settings" msgid="907776049862799122">"기기 설정"</string>
<string name="bluetooth_preference_paired_devices" msgid="1970524193086791964">"페어링된 기기"</string>
- <string name="bluetooth_preference_found_devices" msgid="3133019331974936204">"감지된 기기"</string>
+ <string name="bluetooth_preference_found_devices" msgid="3133019331974936204">"기기 감지"</string>
<string name="bluetooth_device_context_connect" msgid="3997659895003244941">"연결"</string>
<string name="bluetooth_device_context_disconnect" msgid="8220072022970148683">"연결 끊기"</string>
<string name="bluetooth_device_context_pair_connect" msgid="7611522504813927727">"페어링 및 연결"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"옵션..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"연결..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"미디어"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"핸즈프리"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"태블릿"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"전송"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"입력 장치"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"테더링"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>와(과) 미디어 오디오의 연결이 끊어집니다."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>와(과) 핸즈프리 오디오의 연결이 끊어집니다."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>와(과) 입력 장치의 연결이 끊어집니다."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>의 테더링 연결이 끊어집니다."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> 옵션"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"기기 작동"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"연결"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"휴대전화 오디오에 사용"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"파일 전송에 사용"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"입력에 사용"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"인터넷 액세스에 사용"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"도크 설정"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"오디오에 도크 사용"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"스피커폰으로 사용"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"설정 기억"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"NFC(Near Field Communication)를 사용하여 태그를 읽고 교환합니다."</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"오류가 발생했습니다."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Wi-Fi 켜기"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi 설정"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"네트워크를 검색할 수 없습니다."</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"네트워크 알림"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"개방형 네트워크를 사용할 수 있을 때 알림"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi 절전 정책"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Wi-Fi에서 모바일 데이터로 전환될 때 표시"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"절전 정책을 설정하는 동안 문제가 발행했습니다."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Wi-Fi 네트워크 추가"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi 네트워크"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"검색"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"네트워크 수정"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"네트워크 설정"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"액세스 포인트에서 PIN 입력"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS 설정"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS 핀 방식 설정"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"액세스 포인트에 <xliff:g id="WPS_PIN">%1$s</xliff:g> 핀 입력"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS가 이미 진행 중이며 완료하는 데 몇 십 초 걸릴 수 있습니다."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS를 시작하지 못했습니다. 다시 시도해 주세요."</string>
<string name="wifi_ssid" msgid="641393708309146745">"네트워크 SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"보안"</string>
<string name="wifi_signal" msgid="5514120261628065287">"신호 강도"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"저장 안함"</string>
<string name="wifi_save" msgid="3331121567988522826">"저장"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"취소"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"다른 WPS 세션이 발견되었습니다. 잠시 후 다시 시도해 주세요."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"고급"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi 절전 정책"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Wi-Fi에서 모바일 데이터로 전환될 때 표시"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"절전 정책을 설정하는 동안 문제가 발행했습니다."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi 주파수 대역"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"작업에 대한 주파수 범위 지정"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"주파수 대역을 설정하는 동안 문제가 발생했습니다."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> 휴대용 Wi-Fi 핫스팟"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"소리"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"화면"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"디스플레이"</string>
<string name="sound_settings" msgid="5007659014828162881">"소리 설정"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"무음 모드"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"미디어 & 알람을 제외한 모든 소리를 무음 모드로 전환"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"휴대전화 회전 시 자동으로 방향 바꾸기"</string>
<string name="brightness" msgid="2354961343555249270">"밝기"</string>
<string name="brightness_summary" msgid="838917350127550703">"화면 밝기 조정"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"시간제한"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"<xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> 후에 화면이 자동으로 꺼짐"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"화면 시간제한"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"자동 밝기"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM 카드 잠금 설정"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIM 카드 잠금 설정"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"표시할 수 없음"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"상태"</string>
<string name="device_status" msgid="607405385799807324">"상태"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"배터리 상태, 네트워크 및 기타 정보"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, 전화번호, 신호 등"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"전화번호, 신호 등"</string>
<string name="storage_settings" msgid="4211799979832404953">"저장소"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"저장소 설정"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USB 저장소를 마운트 해제하고 사용 가능한 저장공간을 봅니다."</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD 카드 마운트 해제, 사용 가능한 저장공간 보기"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"내 휴대전화 번호"</string>
+ <string name="status_number" msgid="5123197324870153205">"내 휴대전화 번호"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL 버전"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"내부 저장소"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB 저장소"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD 카드"</string>
- <string name="memory_available" msgid="5052397223077021181">"사용 가능"</string>
- <string name="memory_size" msgid="5458889090691922288">"전체"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"계산 중..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"애플리케이션"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"미디어"</string>
+ <string name="memory_available" msgid="418542433817289474">"사용 가능한 저장공간"</string>
+ <string name="memory_size" msgid="6629067715017232195">"총 공간"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"애플리케이션 사용량"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"미디어 사용량"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"공유 저장장치 마운트 해제"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SD 카드 마운트 해제"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"내부 USB 저장소 마운트 해제"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"마운트할 SD 카드 삽입"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"USB 저장소 마운트"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"SD 카드 마운트"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"USB 저장소 마운트"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"내부 USB 저장소 마운트"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"SD 카드 마운트"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"USB 저장소 지우기"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"SD 카드 지우기"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"내부 USB 저장소에 있는 모든 데이터(예: 음악 및 사진)를 지웁니다."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"SD 카드에 있는 모든 데이터(예: 음악 및 사진) 지우기"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"내부 USB 저장소에 있는 모든 데이터(예: 음악 및 사진)를 지웁니다."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"사용할 수 없음"</string>
<string name="read_only" msgid="6702420168629076340">" (읽기전용)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"USB 저장소 마운트 해제"</string>
@@ -724,29 +705,28 @@
<string name="error_mcc_not3" msgid="4560171714156251661">"MCC 필드는 3자리 숫자여야 합니다."</string>
<string name="error_mnc_not23" msgid="8418177072458379439">"MNC 필드는 2~ 3자리 숫자여야 합니다."</string>
<string name="restore_default_apn" msgid="2724583218635739913">"기본 APN 설정 복원 중"</string>
- <string name="menu_restore" msgid="8260067415075573273">"초기화"</string>
- <string name="restore_default_apn_completed" msgid="3990449939234957281">"기본 APN 설정을 초기화했습니다."</string>
- <string name="master_clear_title" msgid="5907939616087039756">"공장 초기화"</string>
+ <string name="menu_restore" msgid="8260067415075573273">"기본값으로 재설정"</string>
+ <string name="restore_default_apn_completed" msgid="3990449939234957281">"기본 APN 설정을 재설정했습니다."</string>
+ <string name="master_clear_title" msgid="5907939616087039756">"기본값 데이터 재설정"</string>
<string name="master_clear_summary" product="tablet" msgid="4036344100254678429">"태블릿의 모든 데이터 지우기"</string>
<string name="master_clear_summary" product="default" msgid="4986154238001088492">"휴대전화의 모든 데이터 지우기"</string>
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"이렇게 하면 태블릿의 "<b>"내부 저장소"</b>"("\n\n<li>"Google 계정"</li>\n<li>"시스템과 애플리케이션 데이터 및 설정"</li>\n<li>"다운로드된 애플리케이션"</li>" 포함)에서 모든 데이터가 삭제됩니다."</string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"이렇게 하면 휴대전화의 "<b>"내부 저장소"</b>"("\n\n<li>"Google 계정"</li>\n<li>"시스템과 애플리케이션 데이터 및 설정"</li>\n<li>"다운로드된 애플리케이션"</li>" 포함)에서 모든 데이터가 삭제됩니다."</string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"현재 다음 계정에 로그인함:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"음악"</li>\n<li>"사진"</li>\n<li>"기타 사용자 데이터"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"음악이나 사진, 기타 사용자 데이터도 지우려면 "<b>"USB 저장소"</b>"를 삭제해야 합니다."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"음악과 그림 및 기타 사용자 데이터도 삭제하려면 "<b>"SD 카드"</b>"를 지워야 합니다."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"음악이나 사진, 기타 사용자 데이터도 지우려면 "<b>"USB 저장소"</b>"를 삭제해야 합니다."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USB 저장소 지우기"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SD 카드 지우기"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"내부 USB 저장소에 있는 모든 데이터(예: 음악 또는 사진)를 지웁니다."</string>
<string name="erase_external_storage_description" product="default" msgid="46603515218075174">"SD 카드에 있는 모든 데이터(예: 음악 또는 사진)를 지웁니다."</string>
- <string name="master_clear_button_text" product="tablet" msgid="3130786116528304116">"태블릿 초기화"</string>
- <string name="master_clear_button_text" product="default" msgid="7550632653343157971">"휴대전화 초기화"</string>
+ <string name="master_clear_button_text" product="tablet" msgid="3130786116528304116">"태블릿 재설정"</string>
+ <string name="master_clear_button_text" product="default" msgid="7550632653343157971">"휴대전화 재설정"</string>
<string name="master_clear_final_desc" msgid="6917971132484622696">"모든 개인 정보와 다운로드한 애플리케이션을 삭제하시겠습니까? 수행한 작업은 취소할 수 없습니다."</string>
<string name="master_clear_final_button_text" msgid="5390908019019242910">"모두 지우기"</string>
<string name="master_clear_gesture_prompt" msgid="1428645764883536750">"잠금해제 패턴을 그리세요."</string>
- <string name="master_clear_gesture_explanation" msgid="2234954758550554549">"공장 초기화를 실행하려면 잠금해제 패턴을 그려야 합니다."</string>
+ <string name="master_clear_gesture_explanation" msgid="2234954758550554549">"기본값 데이터 재설정을 확인하려면 잠금해제 패턴을 그려야 합니다."</string>
<string name="master_clear_failed" msgid="8655202125010189406">"시스템 지우기 서비스를 사용할 수 없어 재설정을 수행하지 못했습니다."</string>
- <string name="master_clear_confirm_title" msgid="4845794266129586839">"초기화 확인"</string>
+ <string name="master_clear_confirm_title" msgid="4845794266129586839">"재설정 확인"</string>
<string name="media_format_title" product="nosdcard" msgid="3999653431422767156">"USB 저장소 지우기"</string>
<string name="media_format_title" product="default" msgid="4427528440306787972">"SD 카드 지우기"</string>
<string name="media_format_summary" product="nosdcard" msgid="776603298628082065">"USB 저장소의 모든 데이터 지우기"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"GPS 도우미 사용"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"서버를 사용하여 GPS 보조(네트워크 사용량을 줄이려면 선택 취소)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"서버를 사용하여 GPS 보조(GPS 성능을 개선하려면 선택 취소)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Google 검색에 위치 사용"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Google 검색 및 기타 Google 서비스에 위치 사용"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Google 검색결과 및 기타 Google 서비스를 개선하는 데 위치가 사용됩니다."</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Google 검색에 위치 사용"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Google 검색 및 기타 Google 서비스에 위치 사용"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Google 검색결과 및 기타 Google 서비스 개선을 위해 위치 사용"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"태블릿 정보"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"휴대전화 정보"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"법률 정보, 상태, 소프트웨어 버전 보기"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"비밀번호가 설정되었습니다."</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN이 설정되었습니다."</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"패턴이 설정되었습니다."</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"화면 잠금"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"화면 잠금 해제"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"잠금해제 패턴 변경"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"잠금해제 PIN 변경"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"저장된 패턴 확인"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"다음"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"태블릿 보안 설정"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"휴대전화 보안 설정"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"나만의 화면 잠금해제 패턴을 만들어서 인증되지 않은 사람이 태블릿을 사용하지 못하게 할 수 있습니다. 다음 화면에서 원하는 순서로 점을 연결하세요. 최소한 4개의 점을 연결해야 합니다. "\n" "\n"시작할 준비가 되었으면 \'다음\'을 터치합니다."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"나만의 화면 잠금해제 패턴을 만들어서 인증되지 않은 사람이 전화를 사용하지 못하게 하세요. "\n<font height="17">\n</font><b>"1"</b>" 다음 화면에서 패턴 예가 그려지는 것을 보세요. "\n<font height="17">\n</font><b>"2"</b>" 준비가 되었으면 나만의 잠금해제 패턴을 그리세요. 다른 패턴으로 실험해 볼 수 있으나 최소한 4개의 점을 연결해야 합니다. "\n<font height="17">\n</font><b>"3"</b>" 확인을 위해 패턴을 다시 그립니다. "\n<font height="17">\n</font><b>"시작할 준비가 되었으면 \'다음\'을 터치합니다"</b>". "\n<font height="3">\n</font>"인증되지 않은 사람도 전화를 사용할 수 있게 하려면 \'취소\'를 터치하세요."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"애플리케이션 관리"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"설치된 애플리케이션 관리 및 제거"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"전체"</string>
<string name="application_size_label" msgid="5055196275624686382">"애플리케이션"</string>
<string name="data_size_label" msgid="8679376373625710107">"데이터"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB 저장소"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD 카드"</string>
<string name="uninstall_text" msgid="3644892466144802466">"제거"</string>
<string name="disable_text" msgid="6544054052049395202">"사용 안함"</string>
<string name="enable_text" msgid="9217362512327828987">"사용"</string>
@@ -904,15 +885,15 @@
<string name="auto_launch_disable_text" msgid="7800385822185540166">"기본값이 설정되지 않았습니다."</string>
<string name="clear_activities" msgid="7408923511535174430">"기본 작업 지우기"</string>
<string name="unknown" msgid="1592123443519355854">"알 수 없음"</string>
- <string name="sort_order_alpha" msgid="1410278099123670628">"이름순 정렬"</string>
- <string name="sort_order_size" msgid="7024513286636502362">"크기순 정렬"</string>
+ <string name="sort_order_alpha" msgid="1410278099123670628">"이름별 정렬"</string>
+ <string name="sort_order_size" msgid="7024513286636502362">"크기별 정렬"</string>
<string name="show_running_services" msgid="5736278767975544570">"실행 중인 서비스 표시"</string>
<string name="show_background_processes" msgid="2009840211972293429">"캐시된 프로세스 표시"</string>
<string name="manage_space_text" msgid="8852711522447794676">"공간 관리"</string>
<string name="filter" msgid="2018011724373033887">"필터"</string>
<string name="filter_dlg_title" msgid="6507663329723966854">"필터 옵션 선택"</string>
<string name="filter_apps_all" msgid="5142129378749391876">"모두"</string>
- <string name="filter_apps_third_party" msgid="7786348047690140979">"다운로드"</string>
+ <string name="filter_apps_third_party" msgid="7786348047690140979">"다운로드됨"</string>
<string name="filter_apps_running" msgid="7767071454371350486">"실행 중"</string>
<string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"USB 저장소"</string>
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"SD 카드"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"시스템 서비스를 중지하시겠습니까?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"이 시스템 서비스를 중지하시겠습니까? 중지하면 태블릿의 일부 기능이 올바르게 작동되지 않을 수 있으며 전원을 껐다 켜야 합니다."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"이 시스템 서비스를 중지하시겠습니까? 중지하면 휴대전화의 일부 기능이 올바르게 작동되지 않을 수 있으며 전원을 껐다 켜야 합니다."</string>
- <string name="language_settings" msgid="5292716747264442359">"언어 및 키보드 설정"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"언어 및 키보드 설정"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"로케일 및 텍스트"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"언어 및 키보드 설정"</string>
<string name="language_settings_category" msgid="2288258489940617043">"언어 설정"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"키보드 설정"</string>
<string name="phone_language" msgid="1165758957501090679">"언어 선택"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"자동 바꾸기"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"오타 교정"</string>
- <string name="auto_caps" msgid="6379232078052591265">"자동 대문자화"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"자동 대문자 변환"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"문장의 첫 글자를 대문자로"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"자동 구두점 입력"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"물리적 키보드 설정"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"바로가기"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"텍스트 입력"</string>
<string name="input_method" msgid="5434026103176856164">"입력 방법"</string>
- <string name="current_input_method" msgid="2146807723398303917">"현재 입력 방법"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"입력 방법 선택기"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"자동"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"항상 표시"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"항상 숨기기"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"입력 방법 구성"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"설정"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"입력 방법"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"시스템 언어 사용"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> 설정"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"입력 방법 선택"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"화면 키보드 설정"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"내장 키보드"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"내장 물리적 키보드 설정"</string>
@@ -1091,7 +1082,7 @@
<string name="power_usage_summary" msgid="7237084831082848168">"배터리를 사용한 항목"</string>
<string name="power_usage_not_available" msgid="3583407442633768046">"배터리 사용 데이터가 없습니다."</string>
<string name="battery_since_unplugged" msgid="338073389740738437">"플러그를 뽑은 이후 배터리 전원 사용"</string>
- <string name="battery_since_reset" msgid="7464546661121187045">"초기화 이후 배터리 사용"</string>
+ <string name="battery_since_reset" msgid="7464546661121187045">"재설정 이후 배터리 사용"</string>
<string name="battery_stats_on_battery" msgid="4970762168505236033">"배터리 사용 시간: <xliff:g id="TIME">%1$s</xliff:g>"</string>
<string name="battery_stats_duration" msgid="7464501326709469282">"플러그를 뽑은 후 <xliff:g id="TIME">%1$s</xliff:g>"</string>
<string name="battery_stats_charging_label" msgid="4223311142875178785">"충전 중"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi 사용 시간"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi 사용 시간"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"기록 세부정보"</string>
- <string name="details_title" msgid="3792801565213935385">"사용 세부정보"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"배터리 사용 세부정보"</string>
<string name="details_subtitle" msgid="32593908269911734">"사용 세부정보"</string>
<string name="controls_subtitle" msgid="390468421138288702">"전원 사용 조절"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"포함된 패키지"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"서버 교섭에 실패했습니다. 서버가 암호화 옵션에 동의하지 않기 때문인 것 같습니다. 암호화 설정을 확인하시겠습니까?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPN 추가"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPN 추가"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN 세부정보"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g> VPN 추가"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> 세부정보"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"VPN 설정 및 관리"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(변경 안함)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(설정 안함)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"자격증명 저장소"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"자격증명 저장소"</string>
<string name="credentials_access" msgid="4843187230913860492">"보안 자격증명 사용"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"애플리케이션이 보안 인증서 및 다른 자격증명에 액세스 허용"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"USB 저장소에서 설치"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"SD 카드에서 설치"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"USB 저장소에서 인증서 설치"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"SD 카드에서 인증서 설치"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"비밀번호 설정"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"자격증명 저장소에 대한 비밀번호 설정 또는 변경"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"자격증명 삭제"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"콘텐츠를 모두 삭제하고 비밀번호 재설정"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"비밀번호 입력"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"자격증명 저장소에 대한 비밀번호를 입력하세요."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"자격증명 저장소에 대한 비밀번호를 설정하세요. 8자 이상이어야 합니다."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"자격증명 저장소 비밀번호를 입력하세요."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"USB 저장소에서 설치"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"SD 카드에서 설치"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"USB 저장소에서 암호화된 인증서 설치"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"SD 카드에서 암호화된 인증서 설치"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"비밀번호 설정"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"자격증명 저장소 비밀번호를 설정하거나 변경"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"저장소 삭제"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"모든 콘텐츠의 자격증명 저장소 삭제 및 비밀번호 재설정"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"모든 자격증명을 삭제하고 자격증명 저장소 비밀번호를 재설정하시겠습니까?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"현재 비밀번호:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"새 비밀번호:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"새 비밀번호 확인:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"콘텐츠가 모두 삭제되고 비밀번호가 재설정됩니다. 계속하시겠습니까?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"자격증명 저장소를 위한 비밀번호(8자 이상)를 설정합니다."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"정확한 비밀번호를 입력하세요."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"정확한 비밀번호를 입력하세요. 한 번 더 비밀번호를 잘못 입력하면 자격증명 저장 내용이 삭제됩니다"</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"정확한 비밀번호를 입력하세요. 앞으로 <xliff:g id="NUMBER">%1$d</xliff:g>회 이상 비밀번호를 잘못 입력하면 자격증명 저장 내용이 삭제됩니다."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"비밀번호가 일치하지 않습니다."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"비밀번호를 입력하고 확인해야 합니다."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"비밀번호를 입력하세요."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"비밀번호는 8자 이상이어야 합니다."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"비밀번호가 잘못되었습니다."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"비밀번호가 잘못되었습니다. 한 번 더 실패하면 자격증명 저장소가 지워집니다."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"비밀번호가 잘못되었습니다. <xliff:g id="NUMBER">%1$d</xliff:g>번 더 실패하면 자격증명 저장소가 지워집니다."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"자격증명 저장소가 삭제되었습니다."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"자격증명 저장소가 삭제되었습니다."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"자격증명 저장소를 사용합니다."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"자격증명 저장소를 사용 중지했습니다."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"암호화된 파일 시스템"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"비공개 사용자 데이터 암호화"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"기기의 비공개 사용자 데이터에 대해 암호화된 파일 시스템 저장소 사용"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"암호화된 파일 시스템을 사용하려면 기기 데이터를 지워야 합니다."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"암호화된 파일 시스템의 사용을 중지하려면 기기 데이터를 지워야 합니다."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"사용"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"사용 중지"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"취소"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"암호화된 파일 시스템 모드 변경이 취소되었습니다."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"암호화된 파일 시스템 경고"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"긴급 신호음"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"긴급 통화 중 동작 설정"</string>
<string name="privacy_settings" msgid="9206631214140954954">"개인정보 보호"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"수신전화"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"알림"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"반응"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi 설정"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Wi-Fi 네트워크 <xliff:g id="NETWORK_NAME">%s</xliff:g>에 연결"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Wi-Fi 네트워크 <xliff:g id="NETWORK_NAME">%s</xliff:g>에 연결 중..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Wi-Fi 네트워크 <xliff:g id="NETWORK_NAME">%s</xliff:g>에 연결됨"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"네트워크 추가"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi 설정"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"연결되지 않음"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"네트워크 추가"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"목록 새로고침"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"저장"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"취소"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"네트워크 검색 중…"</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"연결하려면 네트워크를 터치하세요."</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"네트워크를 선택하려면 터치합니다."</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"기존 네트워크에 연결"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"보안되지 않은 네트워크에 연결"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"네트워크 구성 입력"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"연결 중..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"다음 단계로 넘어가기"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP 지원 안함"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"설정하는 동안 EAP Wi-Fi 연결을 구성할 수 없습니다. 설정이 완료되면 \'설정\'의 "<b>"무선 및 네트워크"</b>"에서 연결을 구성할 수 있습니다."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"연결에 몇 분 정도 걸릴 수 있습니다."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"설정을 계속하려면 "<b>"다음"</b>"을 터치하세요."\n\n"다른 Wi-Fi 네트워크에 연결하려면 "<b>"뒤로"</b>"를 터치하세요."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"설정하는 동안 EAP Wi-Fi 연결을 구성할 수 없습니다. 설정이 완료되면 \'설정\'의 무선 및 네트워크에서 연결을 구성할 수 있습니다."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"동기화 설정"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"현재 동기화에 문제가 발생했습니다. 잠시 후에 다시 실행됩니다."</string>
<string name="add_account_label" msgid="7811707265834013767">"계정 추가"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"동기화 사용 안함"</string>
<string name="sync_error" msgid="5060969083117872149">"동기화 오류"</string>
<string name="settings_backup" msgid="2274732978260797031">"설정 백업"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"내 설정 백업"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"지금 동기화"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"동기화 취소"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"지금 동기화하려면 터치<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"캘린더"</string>
<string name="sync_contacts" msgid="9174914394377828043">"연락처"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Google 동기화에 오신 것을 환영합니다."</font>" "\n"Google 동기화는 사용자가 어디에서든지 연락처, 일정 등에 액세스할 수 있도록 데이터를 동기화하는 Google 서비스입니다."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"애플리케이션 동기화 설정"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"데이터 및 동기화"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"비밀번호 변경"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"계정 설정"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"계정 삭제"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"계정 추가"</string>
- <string name="finish_button_label" msgid="481587707657751116">"마침"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"계정 삭제"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"계정을 삭제하시겠습니까? 삭제하면 휴대전화의 메시지, 연락처 및 다른 데이터가 모두 지워집니다. "\n"계속하시겠습니까?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"계정을 삭제하시겠습니까? 삭제하면 휴대전화의 메시지, 연락처 및 다른 데이터가 모두 지워집니다. "\n"계속하시겠습니까?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"일부 애플리케이션의 경우 이 계정이 필요합니다. 태블릿을 공장 초기화해야 계정을 삭제할 수 있으며 이 경우 모든 개인 데이터가 삭제됩니다. \'개인정보 보호\' 아래의 \'설정\' 애플리케이션에서 재설정할 수 있습니다."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"일부 애플리케이션의 경우 이 계정이 필요합니다. 휴대전화를 공장 초기화해야 계정을 삭제할 수 있으며 이 경우 모든 개인 데이터가 삭제됩니다. \'개인정보 보호\' 아래의 \'설정\' 애플리케이션에서 재설정할 수 있습니다."</string>
- <string name="provider_label" msgid="7724593781904508866">"구독정보 푸시"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"<xliff:g id="AUTHORITY">%s</xliff:g> 동기화"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"수동으로 동기화할 수 없음"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"현재 이 항목에 대해 동기화를 사용할 수 없습니다. 환경설정을 변경하려면 백그라운드 데이터 및 자동 동기화를 일시적으로 사용하도록 설정하세요."</string>
- <string name="enter_password" msgid="3268224850821675915">"저장소 암호를 해독하려면 비밀번호를 입력하세요."</string>
- <string name="try_again" msgid="5904121494468643129">"죄송합니다. 다시 시도해 주세요."</string>
- <string name="service_busy" msgid="225227519012409130">"서비스를 사용할 수 없습니다. 다시 시도해 주세요."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-lt/arrays.xml b/res/values-lt/arrays.xml
index 1f690a1..32912c3 100644
--- a/res/values-lt/arrays.xml
+++ b/res/values-lt/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Rodomos kai kurios lango animacijos"</item>
<item msgid="488968798204105119">"Rodoma visa lango animacija"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sek."</item>
- <item msgid="8881760709354815449">"30 sek."</item>
- <item msgid="7589406073232279088">"1 min."</item>
- <item msgid="7001195990902244174">"2 min."</item>
- <item msgid="7489864775127957179">"5 min."</item>
- <item msgid="2314124409517439288">"10 min."</item>
- <item msgid="6864027152847611413">"30 min."</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"nedelsiant"</item>
- <item msgid="6736512735606834431">"5 sek."</item>
- <item msgid="8044619388267891375">"15 sek."</item>
- <item msgid="1822002388249545488">"30 sek."</item>
- <item msgid="8538071621211916519">"1 min."</item>
- <item msgid="5663439580228932882">"2 min."</item>
- <item msgid="49888496216106852">"5 min."</item>
- <item msgid="9002737361305019353">"10 min."</item>
- <item msgid="4322676235684793329">"30 min."</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Labai lėtas"</item>
<item msgid="2361722960903353554">"Lėtas"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Puiki"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Kai išsijungia ekranas"</item>
+ <item msgid="3804733751095821976">"Kai išsijungia ekranas"</item>
<item msgid="1549288661423279207">"Niekada, kai įjungtas į lizdą"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Niekada"</item>
+ <item msgid="1986753720941888596">"Niekada"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automobiliai"</item>
diff --git a/res/values-lt/strings.xml b/res/values-lt/strings.xml
index 9a864cd..a5512fb 100644
--- a/res/values-lt/strings.xml
+++ b/res/values-lt/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Nuskaitoma"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"„Bluetooth“ susiejimo užklausa"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Susiejimo užklausa"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Pasirinkti susieti su „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Rodyti gautus failus"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Rodyti per „Bluetooth“ gautų failų sąrašą"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"„Bluetooth“ įrenginio išrinkimo priemonė"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"„Bluetooth“ leidimo užklausa"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Pateikta programos užklausa dėl leidimo įjungti „Bluetooth“. Ar norite tai atlikti?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Pateikta planšetinio kompiuterio programos užklausa leisti įjungti „Bluetooth“ ir <xliff:g id="TIMEOUT">%1$d</xliff:g> sek. kitiems įrenginiams surasti jūsų planšetinį kompiuterį. Ar norite tai atlikti?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Telefone esanti programa prašo leidimo įjungti „Bluetooth“ ir padaryti telefoną randamą kitų įrenginių·<xliff:g id="TIMEOUT">%1$d</xliff:g> sek. Ar norite tai atlikti?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Įjungiamas „Bluetooth“..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatinis prijungimas"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Datos ir laiko nustatymai"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Pradėti <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Paskyra:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Tarpinio serverio nustatymai"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Tarpinio serverio nustatymai"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Nustatyti bendrąjį HTTP tarpinį serverį ir išimčių sąrašus"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Išvalyti"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Prievadas"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Išjungiami bevieliai ryšiai..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Įgalinami bevieliai ryšiai..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Bevielis ryšys ir tinklai"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bevielis ryšys ir tinklai"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bevielio ryšio ir tinklo nustatymai"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Valdyti „Wi-Fi“, „Bluetooth“, lėktuvo režimą, mobilius tinklus, ir VPT"</string>
<string name="roaming" msgid="3596055926335478572">"Tarptinklinis duomenų ryšys"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Veikiant tarptinkliniam ryšiui, prisijungti prie duomenų paslaugų"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Operatoriaus pasirinkimas"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Pasirinkite tinklo operatorių"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data ir laikas"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Nustatyti datą ir laiką"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Nustatyti datą, laiką, laiko zoną ir formatus"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatinė data ir laikas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Naudoti tinklo pateiktą laiką"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Rūšiuoti pagal laiko zoną"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Laikas"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Baigėsi laikas"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Užrakinti ekraną <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>, kai ekranas automatiškai išsijungia"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Užrakinti įrenginį pasibaigus laikui"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Rodyti savininko informaciją užrakinimo ekrane"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Savininko informac."</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Nustatyti mano vietą, ekrano atrakinimą, SIM kortelės užraktą, įgaliojimų saugyklos užraktą"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Nustatyti mano vietą, ekrano atrakinimą, įgaliojimų saugyklos užraktą"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Slaptažodžiai"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Įrenginio šifravimas"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Šifruoti įrenginio duomenis"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Šifruoti įrenginio duomenis"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Reikia, kad nustatytumėte įrenginio atrakinimo PIN kodą arba slaptažodį"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Reikia, kad nustatytumėte įrenginio atrakinimo PIN kodą arba slaptažodį"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Šifruotas"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Galite šifruoti paskyras, nustatymus, atsisiųstas programas ir jų duomenis, mediją ir kitus failus. Užšifravę planšetinį kompiuterį, šifravimą panaikinti galėsite tik atlikę gamyklinių duomenų nustatymą iš naujo, ištrindami visus planšetinio kompiuterio duomenis."\n\n"Šifravimas trunka iki valandos. Pradedant šifravimą akumuliatorius turi būti įkrautas ir telefoną reikia laikyti įjungtą į tinklą, kol šifravimas bus užbaigtas. Jei nutrauksite šifravimo procesą, prarasite dalį duomenų ar visus duomenis."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Galite šifruoti paskyras, nustatymus, atsisiųstas programas ir jų duomenis, mediją ir kitus failus. Užšifravę planšetinį kompiuterį, šifravimą panaikinti galėsite tik atlikę gamyklinių duomenų nustatymą iš naujo, ištrindami visus planšetinio kompiuterio duomenis."\n\n"Šifravimas trunka iki valandos. Pradedant šifravimą akumuliatorius turi būti įkrautas ir telefoną reikia laikyti įjungtą į tinklą, kol šifravimas bus užbaigtas. Jei nutrauksite šifravimo procesą, prarasite dalį duomenų ar visus duomenis."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Šifruoti planšetinį kompiuterį"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Šifruoti telefoną"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Patvirtinti šifravimą"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Šifruoti naudotojo duomenis? Šios operacijos anuliuoti negalima, o ją nutraukus bus prarasti duomenys! Šifravimas gali trukti iki valandos."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Šifruoti naudotojo duomenis? Šios operacijos anuliuoti negalima, o ją nutraukus bus prarasti duomenys! Šifravimas gali trukti iki valandos."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Šifruojama"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Bandyti dar kartą po ^1 sek."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfig. užrak. ekraną"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfig. užrak. ekraną"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Ekrano atrakinimo sauga"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Nustatyti ekrano užraktą"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Keisti ekrano užraktą"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Keisti ar išjungti modelio, PIN kodo ar slaptažodžio saugą"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Pasirinkite ekrano užrakinimo metodą"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Išjungta"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Niekada neužrakinti ekrano"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Neapsaugoti"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Ekr. atrak. nereik. model., PIN k. ar slapt."</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nerodyti užrakinimo ekrano"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nėra"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Išjungti ekrano atrakinimo saugą"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Modelis"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Ekranui atrakinti reikia modelio"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Nustatyti modelį, kad būtų atrakintas ekranas"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ekranui atrakinti reikia skaitinio PIN k."</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Įveskite skaitinį PIN kodą, kad būtų atrakintas ekranas"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Slaptažodis"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ekranui atrakinti reikia slaptažodžio"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Įveskite slaptažodį, kad būtų atrakintas ekranas"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Neleidžia nuotolinio įrenginio administratorius"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Išjungta"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Neapsaugoti"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Apsaugota taikant modelį"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Apsaugota taikant PIN kodą"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Apsaugota taikant slaptažodį"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Išjungti ekrano užraktą"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Pašalinti atrakinimo modelį"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Pašalinti atrakinimo PIN kodą"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Įrenginio administratorius neleidžia naudoti pastarojo slaptažodžio"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Gerai"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Atšaukti"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Atšaukti"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Kitas"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Įrenginio administravimas"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Įrenginio administratoriai"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Žiūrėti arba išaktyvinti įrenginio administratorius"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"„Bluetooth“ nustatymai"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Valdyti ryšius, nustatyti įrenginio pavadinimą ir atrandamumą"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"„Bluetooth“ susiejimo užklausa"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Įveskite PIN kodą, kad susietumėte su „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“. (Pabandykite įvesti 0000 arba 1234.) Tą patį PIN kodą gali reikėti įvesti „Bluetooth“ įrenginyje."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Įveskite prieigos raktą, kad būtų susieta su „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Jei norite susieti su „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“, patvirtinkite, kad jame rodomas prieigos raktas: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" nori susisieti."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Kad susietumėte pakartotinai ar pirmą kartą, „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ įveskite „<xliff:g id="PASSKEY">%2$s</xliff:g>“."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Susieti"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nesusieti"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"„Bluetooth“ įrenginys"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Parinktys…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Prijungti prie..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Medija"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Laisvų rankų įranga"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Planšetinis kompiuteris"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Persiuntimas"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Įvesties įrenginys"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Susiejimas"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"„<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ bus atjungtas nuo medijos garso."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"„<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ bus atjungtas nuo laisvų rankų įrangos garso."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"„<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ bus atjungtas nuo įvesties įrenginio."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"„<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ bus atjungtas nuo susiejimo."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> parinktys"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Naudoti telefono garso įrašui"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Naudoti failų perkėlimui"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Naudoti įvedant"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Naudoti interneto prieigai"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Doko nustatymai"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Naudoti doką garsui"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Kaip kalbėtojo telefonas"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Neįmanoma nuskaityti tinklų"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Tinklo įspėjimas"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Pranešti, kai bus galimas atviras tinklas"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"„Wi-Fi“ miego režimo politika"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Nurodyti, kada perjungti iš „Wi-Fi“ į mobilius duomenis"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Nustatant miego režimo politiką iškilo problema."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Pridėti „Wi-Fi“ tinklą"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"„Wi-Fi“ tinklai"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Nuskaityti"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Keisti tinklą"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Tinklo sąranka"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Įvesti PIN kodą iš prieigos taško"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS sąranka"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN metodo konfigūracija"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Prieigos taške įveskite PIN kodą <xliff:g id="WPS_PIN">%1$s</xliff:g>"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS jau vykdoma ir gali praeiti keliasdešimt sekundžių, kol bus užbaigta"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Nepavyko pradėti WPS; bandykite dar kartą"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Tinklo SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sauga"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signalo stiprumas"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Pamiršti"</string>
<string name="wifi_save" msgid="3331121567988522826">"Išsaugoti"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Atšaukti"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Aptikta kita WPS sesija; po kelių minučių bandykite iš naujo"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Išplėstinis"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"„Wi-Fi“ miego režimo politika"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Nurodyti, kada perjungti iš „Wi-Fi“ į mobilius duomenis"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Nustatant miego režimo politiką iškilo problema."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"„Wi-Fi“ dažnių juosta"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Nurodyti veikimo dažnumą"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Nustatant dažnių juostą iškilo problema."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> perkeliama „Wi-Fi“ aktyvioji sritis"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"„AndroidHotspot“"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Garsas"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Ekranas"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Pateiktis"</string>
<string name="sound_settings" msgid="5007659014828162881">"Garso nustatymai"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tylus režimas"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Nutildyti visus garsus, išskyrus mediją ir signalus"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Perjungti padėtį automatiškai, kai sukamas telefonas"</string>
<string name="brightness" msgid="2354961343555249270">"Ryškumas"</string>
<string name="brightness_summary" msgid="838917350127550703">"Reguliuoti ekrano ryškumą"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Baigėsi laikas"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Ekranas automatiškai išsijungia po <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Ekrano skirtasis laikas"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatinis ryškumas"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM kortelės užrakto nustatymai"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Nustatyti SIM kortelės užraktą"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Negalima"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Būsena"</string>
<string name="device_status" msgid="607405385799807324">"Būsena"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Akumuliatoriaus, tinklo būsena ir kita informacija"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Telefono numeris, signalas ir kt."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefono numeris, signalas ir kt."</string>
<string name="storage_settings" msgid="4211799979832404953">"Atmintinė"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Atmintinės nustatymai"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Atjungti USB atmintinę, žiūrėti pasiekiamą atmintinę"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Išimti SD kortelę, žiūrėti galimą saugyklą"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mano telefono numeris"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mano telefono numeris"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN."</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL versija"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Vidinė atmint."</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB atmintinė"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD kortelė"</string>
- <string name="memory_available" msgid="5052397223077021181">"Pasiekiama"</string>
- <string name="memory_size" msgid="5458889090691922288">"Iš viso"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Skaičiuojama..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Programos"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medija"</string>
+ <string name="memory_available" msgid="418542433817289474">"Galima vieta"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Visa vieta"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Programų naudojimas"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Medijos naudojimas"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Atjung. bendrin. atmint."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Išimti SD kortelę"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Atjungti vidinę USB atmintinę"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Taip bus ištrinti visi duomenys iš planšetinio kompiuterio "<b>"vidinės atmintinės"</b>", įskaitant:"\n\n<li>"„Google“ paskyrą"</li>\n<li>"Sistemos ir programos duomenis bei nustatymus"</li>\n<li>"Atsisiųstas programas"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Taip bus ištrinti visi duomenys iš telefono "<b>"vidinės atmintinės"</b>", įskaitant:"\n\n<li>"„Google“ paskyrą"</li>\n<li>"Sistemos ir programos duomenis bei nustatymus"</li>\n<li>"Atsisiųstas programas"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Šiuo metu esate prisijungę prie šių paskyrų:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Muzika"</li>\n<li>"Nuotraukos"</li>\n<li>"Kiti naudotojo duomenys"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Norint išvalyti ir muzikos failus, paveikslėlius bei kitus naudotojo duomenis, reikia ištrinti "<b>"USB atmintinę"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Norint taip pat išvalyti muzikos failus, paveikslėlius ir kitus naudotojo duomenis, reikia ištrinti "<b>"SD kortelę"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Norint išvalyti ir muzikos failus, paveikslėlius bei kitus naudotojo duomenis, reikia ištrinti "<b>"SD kortelę"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Ištrinti USB atmintinę"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Ištrinti SD kortelę"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Ištrinti visus vidinės USB atmintinės duomenis, pvz., muzikos failus ar nuotraukas."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Naudoti pagalbos GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Naudoti serverį norint padėti GPS (panaikinkite žymėjimą, jei norite sumažinti tinklo naudojimą)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Naudoti serverį norint padėti GPS (panaikinkite žymėjimą, jei norite patobulinti GPS našumą)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Naudoti vietą „Google“ paieškoje"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Naudoti vietą „Google“ paieškoje ir kitose „Google“ paslaugose"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Vieta, naudojama „Google“ paieškos rezultatams ir kitoms „Google“ paslaugoms patobulinti"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Naudoti vietą „Google“ paieškoje"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Naudoti vietą „Google“ paieškoje ir kitose „Google“ paslaugose"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Vieta, naudojama „Google“ paieškos rezultatams ir kitoms „Google“ paslaugoms patobulinti"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Apie planšetinį kompiuterį"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Apie telefoną"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Žiūrėti teisinę informaciją, būseną, programinės įrangos versiją"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Slaptažodis nustatytas"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN kodas nustatytas"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Modelis nustatytas"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Užrakinti ekraną"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Ekrano atrakinimas"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Keisti atrakinimo modelį"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Pakeisti atrakinimo PIN kodą"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Patvirtinti išsaugotą modelį"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Kitas"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Planšetinio kompiuterio saugumo užtikrinimas"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Telefono apsaugojimas"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Apsaugokite planšetinį kompiuterį nuo neteisėto naudojimo sukurdami asmeninį ekrano atrakinimo modelį. Pirštu bet kokia tvarka sujunkite taškus kitame ekrane. Reikia sujungti bent keturis taškus. "\n\n"Pasiruošę pradėti? Palieskite „Kitas“."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Apsaugokite savo telefoną nuo neteisėto naudojimo sukurdami asmeninį ekrano atrakinimo modelį. "\n<font height="17">\n</font><b>"1"</b>" Kitame ekrane žiūrėkite, kaip nustatomas pavyzdinis modelis. "\n<font height="17">\n</font><b>"2"</b>" Kai būsite pasiruošę, nustatykite savo asmeninį atrakinimo modelį. Eksperimentuokite su skirtingais modeliais, bet sujunkite bent keturis taškus. "\n<font height="17">\n</font><b>"3"</b>" Iš naujo nustatykite modelį, kad patvirtintumėte. "\n<font height="17">\n</font><b>"Esate pasirengę pradėti? Palieskite „Kitas“"</b>". "\n<font height="3">\n</font>"Jei norite palikti telefoną neapsaugotą, palieskite „Atšaukti“."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Valdyti programas"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Valdyti ir pašalinti įdiegtas programas"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Iš viso"</string>
<string name="application_size_label" msgid="5055196275624686382">"Programa"</string>
<string name="data_size_label" msgid="8679376373625710107">"Duomenys"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB atmintinė"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD kortelė"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Pašalinti"</string>
<string name="disable_text" msgid="6544054052049395202">"Neleisti"</string>
<string name="enable_text" msgid="9217362512327828987">"Įgalinti"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Sustabdyti sistemos aptarnavimą?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Ar tikrai norite sustabdyti šį sistemos aptarnavimą? Jei sustabdysite, kai kurios planšetinio kompiuterio funkcijos gali tinkamai nebeveikti, kol jį išjungsite ir vėl įjungsite."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Ar tikrai norite sustabdyti šį sistemos aptarnavimą? Jei sustabdysite, kai kurios telefono funkcijos gali tinkamai nebeveikti, kol jį išjungsite ir vėl įjungsite."</string>
- <string name="language_settings" msgid="5292716747264442359">"Kalba ir įvestis"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Kalba ir įvestis"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Kalba ir klaviatūra"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Kalbos ir klaviatūros nustatymai"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Kalbos nustatymai"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Klaviatūros nustatymai"</string>
<string name="phone_language" msgid="1165758957501090679">"Pasirinkti kalbą"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Spartieji klavišai"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Teksto įvestis"</string>
<string name="input_method" msgid="5434026103176856164">"Įvesties metodas"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Dabartinis įvesties metodas"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Įvesties metodo pasirink. priemonė"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatinis"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Visada rodyti"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Visada slėpti"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigūruoti įvesties metodus"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Nustatymai"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktyvūs įvesties metodai"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Naudoti sistemos kalbą"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> nustatymai"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Pasirink. aktyvius įvesties metodus"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Valdyti įvesties metodus"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ekraninės klaviatūros nustatymai"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Integruota klaviatūra"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Integruotos, fizinės klaviatūros nustatymai"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"„Wi-Fi“ laiku"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"„Wi-Fi“ laiku"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Išsami istorijos informacija"</string>
- <string name="details_title" msgid="3792801565213935385">"Išsami naudojimo informacija"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Išsami akumuliatoriaus naudojimo informacija"</string>
<string name="details_subtitle" msgid="32593908269911734">"Išsami naudojimo informacija"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Reguliuoti maitinimo naudojimą"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Įtraukti paketai"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Nepavyko serverio derybos. Serveris gali nesutikti su jūsų šifravimo parinktimi. Ar norite patikrinti savo šifravimo nustatymą?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Pridėti VPT"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Pridėti VPT"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Išsami VPT informacija"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Pridėti <xliff:g id="NAME">%s</xliff:g> VPT"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> išsami informacija"</string>
<string name="vpns" msgid="3148141862835492816">"VPT"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Nustatyti ir valdyti virtualius privačius tinklus (VPT)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nepakeista)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nenustatyta)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Įgaliojimų atmintinė"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Įgaliojimų saugykla"</string>
<string name="credentials_access" msgid="4843187230913860492">"Naudoti saugius įgaliojimus"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Leisti programoms pasiekti saugius sertifikatus ir kitus įgaliojimus"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Įdiegti iš USB atmintinės"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Įdiegti iš SD kortelės"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Įdiegti sertifikatus iš USB atmintinės"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Įdiegti sertifikatus iš SD kortelės"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Nustatyti slaptažodį"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Nustatyti arba pakeisti įgaliojimų atmintinės slaptažodį"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Valyti įgaliojimus"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Pašalinti visą turinį ir iš naujo nustatyti slaptažodį"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Įveskite slaptažodį"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Įvesti įgaliojimų atmintinės slaptažodį."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Nustatyti įgaliojimų atmintinės slaptažodį. Jis turi būti sudarytas mažiausiai iš 8 simbolių."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Įveskite įgaliojimų saugyklos slaptažodį."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Įdiegti iš USB atmintinės"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Įdiegti iš SD kortelės"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Įdieg. šifr. sertif. iš USB atm."</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Įdiegti šifruotus sertifikatus iš SD kortelės"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Nustatyti slaptažodį"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Nustatyti ar pakeisti įgaliojimų saugyklos slaptažodį"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Išvalyti saugyklą"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Išvalyti visą įgaliojimų saugyklos turinį ir iš naujo nustatyti jos slaptažodį"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Ar tikrai norite ištrinti visus įgaliojimas ir iš naujo nustatyti kredencialų saugyklos slaptažodį?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Dabartinis slaptažodis:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Naujas slaptažodis:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Patvirtinti naują slaptažodį:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Visas turinys bus pašalintas ir slaptažodis nustatytas iš naujo. Ar tikrai norite tai atlikti?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Nustatykite įgaliojimų saugyklos slaptažodį (mažiausiai 8 simboliai)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Įveskite teisingą slaptažodį."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Įveskite teisingą slaptažodį. Turite dar vieną bandymą įvesti teisingą slaptažodį prieš tai, kai bus ištrinta įgaliojimų saugykla."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Įveskite teisingą slaptažodį. Turite <xliff:g id="NUMBER">%1$d</xliff:g> bandymus (-ų) įvesti teisingą slaptažodį prieš tai, kai bus ištrinta įgaliojimų saugykla."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Slaptažodžiai neatitinka."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Turite įvesti ir patvirtinti slaptažodį:"</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Įveskite slaptažodį."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Slaptažodį turi sudaryti mažiausiai 8 simboliai."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Neteisingas slaptažodis."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Neteisingas slaptažodis. Dar galite bandyti vieną kartą, paskui įgaliojimų atmintinė bus ištrinta."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Neteisingas slaptažodis. Dar galite bandyti <xliff:g id="NUMBER">%1$d</xliff:g> k., paskui įgaliojimų atmintinė bus ištrinta."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Įgaliojimų atmintinė ištrinta."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Įgaliojimų saugykla ištrinta."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Įgaliojimų saugykla įgalinta."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Įgaliojimas saugykla išjungta."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Pagalbos tonas"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Nustatyti elgesį, kai skambinama pagalbos numeriu"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privatumas"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Gaunami skambučiai"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Įspėjimai"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Atsiliepimai"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"„Wi-Fi“ sąranka"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Prisijungti prie „Wi-Fi“ tinklo „<xliff:g id="NETWORK_NAME">%s</xliff:g>“"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Prisijungiama prie „Wi-Fi“ tinklo „<xliff:g id="NETWORK_NAME">%s</xliff:g>“..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Prisijungta prie „Wi-Fi“ tinklo „<xliff:g id="NETWORK_NAME">%s</xliff:g>“"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Pridėti tinklą"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"„WiFi“ sąranka"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Neprijungta"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Pridėti tinklą"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Atnaujinti sąrašą"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Išsaugoti"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Atšaukti"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Nuskaitomi tinklai..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Palieskite tinklą, kad prie jo prisijungtumėte"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Prisijungti prie esamo tinklo"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Prisijungti prie neapsaugoto tinklo"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Įvesti tinklo konfigūraciją"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Jungiama..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Pereiti prie kito veiksmo"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP nepalaikomas"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Negalite konfigūruoti EAP „WI-Fi“ ryšio, kai vykdoma sąranka. Po sąrankos tai galite atlikti apsilankę „Nustatymuose“, skiltyje "<b>"Belaidis ryšys ir tinklai"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Prisijungimas gali užtrukti kelias minutes..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Jei norite tęsti sąranką, palieskite "<b>"Kitas"</b>"."\n\n"Jei norite prisijungti prie kito „Wi-Fi“ tinklo, palieskite "<b>"Atgal"</b>"."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Negalite konfigūruoti EAP, kai vykdoma „WI-Fi“ ryšio sąranka. Po sąrankos tai galite padaryti „Nustatymuose“, srityje „Belaidis ryšys ir tinklai“."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Sinchronizavimo nustatymai"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Šiuo metu iškilo sinchronizavimo problemų. Greitai jis vėl veiks."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Pridėti paskyrą"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Bendrieji sinchron. nustatymai"</string>
<string name="background_data" msgid="5779592891375473817">"Foniniai duomenys"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Programos gali bet kada sinchron., siųsti ir gauti duomenis"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Dėmesio"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Neleidžiant foninių duomenų pailgėja akumuliatoriaus naudojimo trukmė ir sumažėja duomenų naudojimas. Kai kurios programos vis tiek gali naudoti foninių duomenų perdavimą."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Automatinis sinchronizavimas"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Programų duomenys sinchronizuojami automatiškai"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Valdyti paskyras"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sinchroniz. įjungtas"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sinchron. IŠJUNGTAS"</string>
<string name="sync_error" msgid="5060969083117872149">"Sinchronizav. klaida"</string>
<string name="settings_backup" msgid="2274732978260797031">"Atsarginės kopijos kūrimo nustatymai"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Kurti atsarginę nustatymų kopiją"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sinchronizuoti dabar"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Atšaukti sinchronizavimą"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Palieskite, kad būtų dabar sinchronizuojama<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalendorius"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kontaktai"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Sveiki! Tai – „Google“ sinchronizavimas!"</font>" "\n"Tai „Google“ duomenų sinchronizavimo metodas, leidžiantis jums pasiekti kontaktus, susitikimus ir dar daugiau nesvarbu, kur būtumėte."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Programos sinchronizavimo nustatymai"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Duomenys ir sinchronizavimas"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Keisti slaptažodį"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Paskyros nustatymai"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Pašalinti paskyrą"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Pridėti paskyrą"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Užbaigti"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Pašalinti paskyrą"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Ar tikrai norite pašalinti šią paskyrą? Ją pašalinus bus ištrinti visi pranešimai, kontaktai ir kiti planšetinio kompiuterio duomenys. "\n"Tęsti?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Ar tikrai norite pašalinti šią paskyrą? Ją pašalinus bus ištrinti visi pranešimai, kontaktai ir kiti telefono duomenys. "\n"Tęsti?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Ši paskyra reikalinga kelioms programoms. Pašalinti ją galite tik iš naujo nustatydami numatytuosius gamyklinius planšetinio kompiuterio nustatymus (ištrinami visi asmeniniai duomenys). Tai galite atlikti „Nustatymų“ programos „Privatumo“ skiltyje."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Ši paskyra reikalinga kelioms programoms. Pašalinti ją galite tik iš naujo nustatydami numatytuosius gamyklinius telefono nustatymus (ištrinami visi asmeniniai duomenys). Tai galite atlikti „Nustatymų“ programos „Privatumo“ skiltyje."</string>
- <string name="provider_label" msgid="7724593781904508866">"Paspauskite „Prenumeratos“"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"„<xliff:g id="AUTHORITY">%s</xliff:g>“ sinchronizavimas"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Negalima sinchronizuoti rankiniu būdu"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Šiuo metu šio elemento sinchronizavimas neleidžiamas. Jei norite pakeisti nuostatą, laikinai įjunkite fono duomenis ir automatinį sinchronizavimą."</string>
- <string name="enter_password" msgid="3268224850821675915">"Kad iššifruotumėte atmintinę, įveskite slaptažodį"</string>
- <string name="try_again" msgid="5904121494468643129">"Apgailestaujame, bandykite dar kartą"</string>
- <string name="service_busy" msgid="225227519012409130">"Paslauga užimta, bandykite dar kartą"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-lv/arrays.xml b/res/values-lv/arrays.xml
index aabf6f0..10f90b2 100644
--- a/res/values-lv/arrays.xml
+++ b/res/values-lv/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Ir redzamas dažas loga animācijas"</item>
<item msgid="488968798204105119">"IR redzamas visas loga animācijas"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekundes"</item>
- <item msgid="8881760709354815449">"30 sekundes"</item>
- <item msgid="7589406073232279088">"1 minūte"</item>
- <item msgid="7001195990902244174">"2 minūtes"</item>
- <item msgid="7489864775127957179">"5 minūtes"</item>
- <item msgid="2314124409517439288">"10 minūtes"</item>
- <item msgid="6864027152847611413">"30 minūtes"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"nekavējoties"</item>
- <item msgid="6736512735606834431">"5 sekundes"</item>
- <item msgid="8044619388267891375">"15 sekundes"</item>
- <item msgid="1822002388249545488">"30 sekundes"</item>
- <item msgid="8538071621211916519">"1 minūte"</item>
- <item msgid="5663439580228932882">"2 minūtes"</item>
- <item msgid="49888496216106852">"5 minūtes"</item>
- <item msgid="9002737361305019353">"10 minūtes"</item>
- <item msgid="4322676235684793329">"30 minūtes"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Ļoti lēni"</item>
<item msgid="2361722960903353554">"Lēni"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Teicami"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Kad ekrāns izslēdzas"</item>
+ <item msgid="3804733751095821976">"Kad ekrāns izslēdzas"</item>
<item msgid="1549288661423279207">"Nekad, ja ir pievienots"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nekad"</item>
+ <item msgid="1986753720941888596">"Nekad"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automātiski"</item>
diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml
index 0d9c715..226750b 100644
--- a/res/values-lv/strings.xml
+++ b/res/values-lv/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Notiek skenēšana"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth pāra izveidošanas pieprasījums"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Pāra izveides pieprasījums"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Atlasīt, lai izveidotu savienojumu pārī ar <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Saņemto failu rādīšana"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Rādīt sarakstu ar failiem, kas saņemti, izmantojot Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth ierīces atlasītājs"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth atļaujas pieprasījums"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Lietojumprogramma pieprasa atļauju ieslēgt Bluetooth. Vai vēlaties to darīt?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Lietojumprogramma jūsu planšetdatorā pieprasa atļauju ieslēgt Bluetooth un padarīt planšetdatoru atrodamu ar citām ierīcēm <xliff:g id="TIMEOUT">%1$d</xliff:g> sekundes. Vai vēlaties to darīt?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Jūsu tālruņa lietojumprogramma pieprasa atļauju ieslēgt Bluetooth un padarīt jūsu tālruni atklājamu citām ierīcēm <xliff:g id="TIMEOUT">%1$d</xliff:g> sekundes. Vai vēlaties to darīt?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Notiek Bluetooth ieslēgšana…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automātiska savienošana"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Datuma un laika iestatījumi"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13.00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13.00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Sākt <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konts:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Starpniekservera iestatījumi"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Starpniekservera iestatījumi"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Iestatiet globālo HTTP starpniekserveri un izslēgšanas sarakstus"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Notīrīt"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Ports"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Notiek bezvadu savienojumu atvienošana..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Notiek bezvadu savienojumu iespējošana..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Bezvadu pakalpojums un tīkli"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bezvadu pakalpojums un tīkli"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bezvadu un tīkla iestatījumi"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Wi-Fi, Bluetooth, lidojuma režīma, mobilo sakaru tīklu un VPN pārvaldība"</string>
<string name="roaming" msgid="3596055926335478572">"Datu viesabonēšana"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Viesabonēšanas laikā izveidot savienojumu ar datu pakalpojumiem"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Operatora atlase"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Atlasīt tīkla operatoru"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datums un laiks"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Datuma un laika iestatīšana"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Datuma, laika, laika joslas un formātu iestatīšana"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Autom. datums un laiks"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Izmantot tīkla nodrošināto laiku"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Kārtot pēc laika joslas"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datums"</string>
<string name="time_picker_title" msgid="483460752287255019">"Laiks"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Noildze"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloķēt ekrānu <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> pēc ekrāna automātiskās izslēgšanās"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloķēt ierīci pēc noildzes"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Rādīt informāciju par īpašnieku bloķētā ekrānā"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Inf. par īpašnieku"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Manas atrašanās vietas, ekrāna atbloķēšanas, SIM kartes bloķēšanas, akreditācijas datu krātuves bloķēšanas iestatīšana"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Manas atrašanās vietas, ekrāna atbloķēšanas, akreditācijas datu krātuves bloķēšanas iestatīšana"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Paroles"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Ierīces šifrēšana"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Datu šifrēšana ierīcē"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Datu šifrēšana ierīcē"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Jāiestata ierīces atbloķēšanas PIN kods vai parole."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Jāiestata ierīces atbloķēšanas PIN kods vai parole."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Šifrēts"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Varat šifrēt savus kontus, iestatījumus, lejupielādētās lietojumprogrammas un to datus, kā arī multividi un citus failus. Kad tālrunis ir šifrēts, to var atšifrēt, tikai veicot atiestatīšanu uz rūpnīcas datiem, dzēšot visus tālrunī esošos datus."\n\n"Šifrēšana var ilgt pat stundu. Vispirms ir jāuzlādē akumulators, un tālrunim ir jābūt pievienotam barošanas avotam, līdz šifrēšana būs pabeigta. Ja šifrēšanas process tiks pārtraukts, zaudēsiet daļu no datiem vai visus datus."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Varat šifrēt savus kontus, iestatījumus, lejupielādētās lietojumprogrammas un to datus, kā arī multividi un citus failus. Kad tālrunis ir šifrēts, to var atšifrēt, tikai veicot atiestatīšanu uz rūpnīcas datiem, dzēšot visus tālrunī esošos datus."\n\n"Šifrēšana var ilgt pat stundu. Vispirms ir jāuzlādē akumulators, un tālrunim ir jābūt pievienotam barošanas avotam, līdz šifrēšana būs pabeigta. Ja šifrēšanas process tiks pārtraukts, zaudēsiet daļu no datiem vai visus datus."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Šifrēt planšetdatoru"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Šifrēt tālruni"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Šifrēšanas apstiprinājums"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Vai šifrēt lietotāja datus? Šo darbību nevarēs atcelt, un, to pārtraucot, var tikt zaudēti dati. Šifrēšana var ilgt pat stundu."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Vai šifrēt lietotāja datus? Šo darbību nevarēs atcelt, un, to pārtraucot, var tikt zaudēti dati. Šifrēšana var ilgt pat stundu."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Šifrēšana"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Mēģiniet vēlreiz pēc ^1 sekundes(-ēm)."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfigurēt bloķ. ekr."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurēt bloķ. ekr."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Ekrāna atbloķēšanas drošība"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ekrāna bloķēšanas iestatīšana"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Ekrāna bloķēšanas maiņa"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Kombinācijas, PIN koda vai paroles drošības maiņa vai atspējošana"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Izvēlieties ekrāna bloķēšanas veidu"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Izslēgt"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nekad nebloķēt ekrānu"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nedrošs"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Nepiepr.kombin.,PIN vai paroli,lai atbl. ekr."</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nerādīt bloķēto ekrānu"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nav"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Atspējot ekrāna atbloķēšanas drošību"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Kombinācija"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Pieprasīt kombināciju, lai atbloķētu ekrānu"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Ekrāna atbloķēšanas kombinācijas zīmēšana"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Pieprasīt ciparu PIN, lai atbloķētu ekrānu"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ievadīt ciparu PIN kodu, lai atbloķētu ekrānu"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Parole"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Pieprasīt paroli, lai atbloķētu ekrānu"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ievadīt paroli, lai atbloķētu ekrānu"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Atspējoja attālās ierīces administrators"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Izslēgts"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nedrošs"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Aizsargāts ar kombināciju"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Aizsargāts ar PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Aizsargāts ar paroli"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Izslēgt ekrāna bloķēšanu"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Noņemt atbloķēšanas kombināciju"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Noņemt atbloķēšanas PIN"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Ierīces administrators neļauj izmantot nesenu paroli"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Labi"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Atcelt"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Atcelt"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Tālāk"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Ierīces administrācija"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Ierīces administratori"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Skatiet vai deaktivizējiet ierīces administratorus"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth iestatījumi"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Savienojumu pārvaldība, ierīces nosaukuma un atklājamības iestatīšana"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth pāra izveidošanas pieprasījums"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Ievadiet PIN, lai izveidotu savienojumu pārī ar <xliff:g id="DEVICE_NAME">%1$s</xliff:g> (pamēģiniet ievadīt 0000 vai 1234.) Iespējams, Bluetooth ierīcē būs jāievada tas pats PIN kods."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Ievadiet piekļuves atslēgu, lai izveidotu savienojumu pārī ar <xliff:g id="DEVICE_NAME">%1$s</xliff:g>."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Lai izveidot pāri ar <xliff:g id="DEVICE_NAME">%1$s</xliff:g>, pārliecinieties, ka ir redzama ieejas atslēga <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"vēlas izveidot pāri."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Ievadiet “<xliff:g id="PASSKEY">%2$s</xliff:g>” ierīcē <xliff:g id="DEVICE_NAME">%1$s</xliff:g>, lai izveidotu savienojumu pārī, pēc tam izpildot atgriešanas vai apstiprināšanas darbību."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Izveidot pāri"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Neveidot pāri"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"bluetooth ierīce"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Iespējas…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Savienot ar..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multivide"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Brīvroku"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Planšetdators"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Pārsūtīt"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Ievades ierīce"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Saistīšana"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Ierīce <xliff:g id="DEVICE_NAME">%1$s</xliff:g> tiks atvienota no datu nesēja audio."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Ierīce <xliff:g id="DEVICE_NAME">%1$s</xliff:g> tiks atvienota no brīvroku audio."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Ierīce <xliff:g id="DEVICE_NAME">%1$s</xliff:g> tiks atvienota no ievades ierīces."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Ierīce <xliff:g id="DEVICE_NAME">%1$s</xliff:g> tiks atvienota no saistīšanas."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> opcijas"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Izmantot tālruņa skaņai"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Izmantot faila pārsūtīšanai"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Izmantot ievadei"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Izmantot, lai piekļūtu internetam"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Doka iestatījumi"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Audio pakalpojumam izmantot doku"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Kā mikrofons ar skaļruni"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Nav iespējams meklēt tīklus"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Tīkla paziņojums"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Informēt mani, kad ir pieejams atvērts tīkls"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi miega politika"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Norādīt, kad pārslēgt no Wi-Fi uz mobilajiem datiem"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Iestatot miega politiku, radās problēma."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Pievienot Wi-Fi tīklu"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi tīkli"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Skenēt"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Pārveidot tīklu"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Tīkla iestatīšana"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Ievadīt PIN no piekļuves punkta"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS iestatīšana"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN metodes konfigurācija"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Ievadiet PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> piekļuves punktā"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS jau tiek apstrādāts, un apstrāde var ilgt vairākus desmitus sekunžu."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Neizdevās palaist WPS. Lūdzu, mēģiniet vēlreiz."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Tīkla SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Drošība"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signāla stiprums"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Neiegaumēt"</string>
<string name="wifi_save" msgid="3331121567988522826">"Saglabāt"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Atcelt"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Ir noteikta cita WPS sesija. Pēc dažām minūtēm mēģiniet vēlreiz."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Papildu"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi miega politika"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Norādīt, kad pārslēgt no Wi-Fi uz mobilajiem datiem"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Iestatot miega politiku, radās problēma."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi frekvences josla"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Norādiet darbības frekvences diapazonu"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Iestatot frekvences joslu, radās problēma."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> pārnēsājams Wi-Fi tīklājs"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Skaņa"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Demonstrēt ekrānā"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Displejs"</string>
<string name="sound_settings" msgid="5007659014828162881">"Skaņas iestatījumi"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Klusuma režīms"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Atslēgt visas skaņas, izņemot multividi un signālus"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Automātiski pārslēgt orientāciju, kad tālrunis tiek pagriezts"</string>
<string name="brightness" msgid="2354961343555249270">"Spilgtums"</string>
<string name="brightness_summary" msgid="838917350127550703">"Noregulēt ekrāna spilgtumu"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Noildze"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Ekrāns automātiski izslēdzas pēc šāda laika: <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Ekrāna taimauts"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automātisks spilgtums"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM kartes bloķēšanas iestatījumi"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Iestatīt SIM kartes bloķēšanu"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nav pieejams"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Statuss"</string>
<string name="device_status" msgid="607405385799807324">"Statuss"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Akumulatora un tīkla statuss, kā arī cita informācija"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Tālruņa numurs, signāls u.c."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Tālruņa numurs, signāls u.c."</string>
<string name="storage_settings" msgid="4211799979832404953">"Krātuve"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Krātuves iestatījumi"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Atvienojiet USB krātuvi, skatiet pieejamo krātuvi"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD kartes atvienošana, pieejamās krātuves skatīšana"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mans tālruņa numurs"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mans tālruņa numurs"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL versija"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Iekšējā krātuve"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB krātuve"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD karte"</string>
- <string name="memory_available" msgid="5052397223077021181">"Pieejama"</string>
- <string name="memory_size" msgid="5458889090691922288">"Kopā"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Notiek aprēķināšana..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Lietojumprogrammas"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Multivide"</string>
+ <string name="memory_available" msgid="418542433817289474">"Pieejamā vieta"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Kopējā vieta"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Lietojumprogrammu lietojums"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Datu nesēja lietojums"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Atvienot kopīgoto krātuvi"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Atvienot SD karti"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Atvienojiet iekš. USB krātuvi"</string>
@@ -671,12 +646,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Ievietot SD karti uzstādīšanai"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Uzstādīt USB krātuvi"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Pievienot SD karti"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Uzstādīt USB atmiņu"</string>
+ <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Uzstādīt USB krātuvi"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Pievienot SD karti"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Dzēst USB krātuvi"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Dzēst SD karti"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Dzēst visus iekšējā USB krātuvē saglabātos datus, piem., mūziku vai fotoattēlus."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Dzēš visus SD kartē saglabātos datus, piemēram, mūzikas failus un fotoattēlus."</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Dzēst visus SD kartē saglabātos datus, piemēram, mūziku un fotoattēlus."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Nepieejams"</string>
<string name="read_only" msgid="6702420168629076340">" (Tikai lasāms)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Atvienot USB krātuvi"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Šādi tiks dzēsti visi planšetdatora "<b>"iekšējās krātuves"</b>" dati, tostarp:"\n\n<li>"Google konts;"</li>\n<li>"sistēmas un lietojumprogrammu dati un iestatījumi;"</li>\n<li>"lejupielādētās lietojumprogrammas."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Šādi tiks dzēsti visi dati no jūsu tālruņa "<b>"iekšējās krātuves"</b>", tostarp:"\n\n<li>"Google konts;"</li>\n<li>"sistēmas un lietojumprogrammu dati un iestatījumi;"</li>\n<li>"lejupielādētās lietojumprogrammas."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Pašlaik esat pierakstījies šādos kontos:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Mūzika"</li>\n<li>"Fotoattēli"</li>\n<li>"Citi lietotāja dati"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Lai notīrītu arī mūziku, attēlus un citus lietotāja datus, ir jāizdzēš "<b>"USB krātuve"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Lai notīrītu arī mūzikas failus, attēlus un citus lietotāja datus, ir jāizdzēš "<b>"SD kartes"</b>" informācija."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Lai notīrītu arī mūziku, attēlus un citus lietotāja datus, ir jāizdzēš "<b>"SD karte"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Dzēst USB krātuvi"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Dzēst SD karti"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Dzēst visus iekšējā USB krātuvē saglabātos datus, piemēram, mūziku vai fotoattēlus."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Izmantot atbalstīto GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Izmantot serveri, lai atbalstītu GPS (noņemiet atzīmi, lai samazinātu tīkla lietojumu)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Izmantot serveri GPS atbalstam (noņemiet atzīmi, lai uzlabotu GPS veiktspēju)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Izmantot atrašanās vietu Google meklēšanas rezultātos"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Izmantot atrašanās vietu Google meklēšanas rezultātos un citos Google pakalpojumos"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Atrašanās vieta, kas tiek izmantota, lai uzlabotu Google meklēšanas rezultātus un citus Google pak."</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Izmantot atrašanās vietu Google meklēšanas rezultātos"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Izmantot manu atrašanās vietu Google meklēšanas rezultātos un citos Google pakalpojumos"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Atrašanās vieta, kas tiek izmantota, lai uzlabotu Google meklēšanas rezultātus un citus Google pak."</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Par planšetdatoru"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Par tālruni"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Skatīt juridisko informāciju, statusu, programmatūras versiju"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Parole ir iestatīta"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN kods ir iestatīts"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Kombinācija ir iestatīta"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloķēt ekrānu"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Ekrāna atbloķēšana"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Atbloķēšanas kombinācijas maiņa"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Mainīt atbloķēšanas PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Apstiprināt saglabāto kombināciju"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Tālāk"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Planšetdatora drošība"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Tālruņa nodrošināšana"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Aizsargājiet savu planšetdatoru no neatļautas izmantošanas, izveidojot personisku ekrāna atbloķēšanas kombināciju. Ar pirkstu savienojiet nākamajā ekrānā redzamos punktus jebkurā secībā. Jums ir jāsavieno vismaz četri punkti."\n\n"Vai esat gatavs sākt? Pieskarieties Tālāk."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Aizsargājiet tālruni no neautorizētas lietošanas, izveidojot personīgo ekrāna atbloķēšanas kombināciju. "\n<font height="17">\n</font><b>"1"</b>" Nākamajā ekrānā skatiet, kā tiek zīmēts kombinācijas piemērs. "\n<font height="17">\n</font><b>"2"</b>" Kad esat gatavs, zīmējiet pats savu personīgo atbloķēšanas kombināciju. Eksperimentējiet ar dažādām kombinācijām, taču savienojiet vismaz četrus punktus. "\n<font height="17">\n</font><b>"3"</b>" Vēlreiz zīmējiet kombināciju, lai apstiprinātu. "\n<font height="17">\n</font><b>"Vai esat gatavs sākt? Pieskarieties Tālāk"</b>". "\n<font height="3">\n</font>"Lai tālrunim nelietotu aizsardzību, pieskarieties Atcelt."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Lietojumprogrammu pārvaldība"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Instalēto lietojumprogrammu pārvaldība un noņemšana"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Kopā"</string>
<string name="application_size_label" msgid="5055196275624686382">"Lietojumprogramma"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dati"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB atmiņa"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD karte"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Atinstalēt"</string>
<string name="disable_text" msgid="6544054052049395202">"Atspējot"</string>
<string name="enable_text" msgid="9217362512327828987">"Iespējot"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Vai apturēt sistēmas pakalpojumu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Vai tiešām vēlaties apturēt šī sistēmas pakalpojuma darbību? Ja tas tiks izdarīts, dažas planšetdatora funkcijas, iespējams, vairs nedarbosies pareizi līdz brīdim, kad planšetdators tiks izslēgts un atkal ieslēgts."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Vai tiešām vēlaties apturēt šī sistēmas pakalpojuma darbību? Ja tas tiks izdarīts, dažas tālruņa funkcijas, iespējams, vairs nedarbosies pareizi līdz brīdim, kad tālrunis tiks izslēgts un atkal ieslēgts."</string>
- <string name="language_settings" msgid="5292716747264442359">"Valodas ievade"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Valodas ievade"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Valoda un tastatūra"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Valodas un tastatūras iestatījumi"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Valodas iestatījumi"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Tastatūras iestatījumi"</string>
<string name="phone_language" msgid="1165758957501090679">"Atlasīt valodu"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Saīsnes"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Teksta ievade"</string>
<string name="input_method" msgid="5434026103176856164">"Ievades metode"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Pašreizējā ievades metode"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Ievades metodes atlasītājs"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automātiski"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vienmēr rādīt"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Vienmēr slēpt"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurēt ievades metodes"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Iestatījumi"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktīvās ievades metodes"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Izmantot sistēmas valodu"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> iestatījumi"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Aktīvo ievades metožu atlasīšana"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Ievades metožu pārvaldība"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ekrāntastatūras iestatījumi"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Iebūvētā tastatūra"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Iebūvētas, fiziskas tastatūras iestatījumi"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi uz laiku"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi uz laiku"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Vēstures dati"</string>
- <string name="details_title" msgid="3792801565213935385">"Lietojuma dati"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Informācija par akumulatora patēriņu"</string>
<string name="details_subtitle" msgid="32593908269911734">"Izmantot detaļas"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Noregulēt strāvas patēriņu"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Iekļautās pakotnes"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Servera saskaņošana neizdevās. Iespējams, serveris neatbilst šifrējuma opcijai. Vai vēlaties pārbaudīt šifrējuma iestatījumu?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Pievienot VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Pievienot VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN dati"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Pievienot <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> details"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Virtuālo privāto tīklu (VPN) iestatīšana un pārvaldība"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(bez izmaiņām)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nav iestatīta)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Akreditācijas datu krātuve"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Akreditācijas datu krātuve"</string>
<string name="credentials_access" msgid="4843187230913860492">"Izmantot drošos akreditācijas datus"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Ļaut lietojumprogrammām piekļūt drošajiem sertifikātiem un citiem akreditācijas datiem"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalēt no USB atmiņas"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalēt no SD kartes"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalēt sertifikātus no USB atmiņas"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalēt sertifikātus no SD kartes"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Iestatīt paroli"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Iestatīt vai mainīt akreditācijas datu krātuves paroli"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Akreditācijas datu notīrīšana"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Noņemt visu saturu un atiestatīt paroli"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Paroles ievadīšana"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Ievadiet akreditācijas datu krātuves paroli."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Iestatiet akreditācijas datu krātuves paroli. Tai jābūt vismaz 8 rakstzīmes garai."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Ievadiet akreditācijas datu krātuves paroli."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalēt no USB krātuves"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalēt no SD kartes"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inst. šifr. sert. no USB kr."</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalēt šifrētus sertifikātus no SD kartes"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Iestatīt paroli"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Iestatīt vai mainīt akreditācijas datu krātuves paroli"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Notīrīt krātuvi"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Notīrīt visa satura akreditācijas datu krātuvi un atiestatīt tās paroli"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Vai tiešām vēlaties dzēst visus akreditācijas datus un atiestatīt akreditācijas datu krātuves paroli?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Pašreizējā parole:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Jaunā parole:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Apstipriniet jauno paroli:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Tiks noņemts viss saturs, un tiks atiestatīta parole. Vai tiešām vēlaties veikt šo darbību?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Iestatiet paroli akreditācijas datu krātuvei (vismaz 8 rakstzīmes)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Lūdzu, ievadiet pareizo paroli."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Lūdzu, ievadiet pareizu paroli. Jums ir vēl viens mēģinājums ievadīt pareizu paroli, līdz akreditācijas datu krātuve tiks izdzēsta."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Lūdzu, ievadiet pareizu paroli. Jums ir vēl <xliff:g id="NUMBER">%1$d</xliff:g> mēģinājumi ievadīt pareizu paroli, līdz akreditācijas datu krātuve tiks izdzēsta."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Paroles nav vienādas."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Nepieciešams ievadīt un apstiprināt paroli."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Lūdzu, ievadiet paroli."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Parolē jābūt vismaz astoņām rakstzīmēm."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Nepareiza parole."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Nepareiza parole. Varat vēl mēģināt vienu reizi, pirms tiek izdzēsta akreditācijas datu krātuve."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Nepareiza parole. Varat vēl mēģināt <xliff:g id="NUMBER">%1$d</xliff:g> reizes, pirms tiek izdzēsta akreditācijas datu krātuve."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Akreditācijas datu krātuve ir izdzēsta."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Akreditācijas datu krātuve ir dzēsta."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Akreditācijas datu krātuve ir iespējota."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Akreditācijas datu krātuve ir atspējota."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Ārkārtas signāls"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Iestatīt uzvedību, kad tiek veikts ārkārtas zvans"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Konfidencialitāte"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Ienākošie zvani"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Paziņojumi"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Atsauksmes"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi iestatīšana"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Izveidot savienojumu ar Wi-Fi tīklu <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Notiek savienojuma izveide ar Wi-Fi tīklu <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Ir izveidots savienojums ar Wi-Fi tīklu <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Pievienot tīklu"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi iestatīšana"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Savienojums nav izveidots"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Pievienot tīklu"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Atsvaidzināt sarakstu"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Saglabāt"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Atcelt"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Notiek tīklu skenēšana..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Pieskarieties tīklam, lai izveidotu ar to savienojumu."</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Izveidot savienojumu ar esošu tīklu"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Izveidot savien. ar nedrošu tīklu"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Ievadiet tīkla konfigurāciju"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Notiek savienojuma izveide..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Pārejiet pie nākamās darbības"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP netiek atbalstīts."</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Iestatīšanas laikā nevar konfigurēt WiFi savienojumu protokolam EAP. Pēc iestatīšanas konfigurēšanu var veikt sadaļas Iestatījumi apakšsadaļā "<b>"Bezvadu & tīkli"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Savienojuma izveide var ilgt dažas minūtes..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Lai turpinātu iestatīšanu, pieskarieties "<b>"Tālāk"</b>"."\n\n"Lai izveidotu savienojumu ar citu WiFi tīklu, pieskarieties "<b>"Atpakaļ"</b>"."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Iestatīšanas laikā nevar konfigurēt Wi-Fi savienojumu protokolam EAP. Pēc iestatīšanas konfigurēšanu var veikt sadaļas Bezvadu sakari un tīkli apakšsadaļā Iestatījumi."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Sinhronizācijas iestatījumi"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Pašreiz ir sinhronizācijas problēmas. Drīz šī darbība atkal būs pieejama."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Pievienot kontu"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Visp. sinhronizācijas iestat."</string>
<string name="background_data" msgid="5779592891375473817">"Fona dati"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Lietojumpr. var sinhr., sūtīt un saņemt datus jebkurā brīdī"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Uzmanību!"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Atspējojot fona datus, tiek paildzināts akumulatora darbības mūža ilgums un samazināts datu lietojums. Dažās lietojumprogrammās joprojām var tikt izmantots fona datu savienojums."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Automātiska sinhronizācija"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Lietojumprogrammas automātiski sinhronizē datus"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Kontu pārvaldība"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sinhr. ir IESLĒGTA"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sinhr. ir IZSLĒGTA"</string>
<string name="sync_error" msgid="5060969083117872149">"Sinhroniz. kļūda"</string>
<string name="settings_backup" msgid="2274732978260797031">"Dublēšanas iestatījumi"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Iestatījumu dublēšana"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sinhronizēt tūlīt"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Atcelt sinhronizāciju"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Pieskarieties, lai sinhronizētu tūlīt<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalendārs"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kontaktpersonas"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Laipni lūdzam Google sinhronizācijā!"</font>" "\n"Tā ir Google pieeja datu sinhronizācijai, kas ļauj piekļūt kontaktpersonām, darba uzdevumiem un citiem datiem no jebkuras vietas."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Lietojumprogrammas sinhronizācijas iestatījumi"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dati un sinhronizācija"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Mainīt paroli"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Konta iestatījumi"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Noņemt kontu"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Pievienot kontu"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Pabeigt"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Noņemt kontu"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Vai tiešām vēlaties noņemt šo kontu? Noņemot to, no planšetdatora tiks dzēsti arī visi šajā kontā esošie ziņojumi, kontaktpersonas un citi dati. "\n" Vai vēlaties turpināt?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Vai tiešām vēlaties noņemt šo kontu? Noņemot to, no tālruņa tiks dzēsti arī visi šajā kontā esošie ziņojumi, kontaktpersonas un citi dati. "\n" Vai vēlaties turpināt?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Dažu lietojumprogrammu izmantošanai ir nepieciešams šis konts. To var noņemt, tikai atiestatot planšetdatoru uz rūpnīcas noklusējuma iestatījumiem (šādi tiek dzēsti visi jūsu personiskie dati). To var izdarīt sadaļas Konfidencialitāte pieteikumā Iestatījumi."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Dažu lietojumprogrammu izmantošanai ir nepieciešams šis konts. To var noņemt, tikai atiestatot tālruni uz rūpnīcas noklusējuma iestatījumiem (šādi tiek dzēsti visi jūsu personiskie dati). To var izdarīt sadaļas Konfidencialitāte pieteikumā Iestatījumi."</string>
- <string name="provider_label" msgid="7724593781904508866">"Pārcelt abonementus"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sinhronizācija: <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nevar manuāli sinhronizēt"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Pašlaik šī vienuma sinhronizācija ir atspējota. Lai mainītu preferenci, pagaidām ieslēdziet fona datus un automātisko sinhronizāciju."</string>
- <string name="enter_password" msgid="3268224850821675915">"Ievadiet paroli, lai atšifrētu atmiņu."</string>
- <string name="try_again" msgid="5904121494468643129">"Mēģiniet vēlreiz"</string>
- <string name="service_busy" msgid="225227519012409130">"Pakalpojums ir aizņemts, mēģiniet vēlreiz."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-nb/arrays.xml b/res/values-nb/arrays.xml
index ddedc82..4cfa9fd 100644
--- a/res/values-nb/arrays.xml
+++ b/res/values-nb/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Noen vindusanimasjoner vises"</item>
<item msgid="488968798204105119">"Alle vindusanimasjoner vises"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekunder"</item>
- <item msgid="8881760709354815449">"30 sekunder"</item>
- <item msgid="7589406073232279088">"1 minutt"</item>
- <item msgid="7001195990902244174">"2 minutter"</item>
- <item msgid="7489864775127957179">"5 minutter"</item>
- <item msgid="2314124409517439288">"10 minutter"</item>
- <item msgid="6864027152847611413">"30 minutter"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"umiddelbart"</item>
- <item msgid="6736512735606834431">"5 sekunder"</item>
- <item msgid="8044619388267891375">"15 sekunder"</item>
- <item msgid="1822002388249545488">"30 sekunder"</item>
- <item msgid="8538071621211916519">"1 minutt"</item>
- <item msgid="5663439580228932882">"2 minutter"</item>
- <item msgid="49888496216106852">"5 minutter"</item>
- <item msgid="9002737361305019353">"10 minutter"</item>
- <item msgid="4322676235684793329">"30 minutter"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Svært langsom"</item>
<item msgid="2361722960903353554">"Langsom"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Utmerket"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Når skjermen slås av"</item>
+ <item msgid="3804733751095821976">"Når skjermen slås av"</item>
<item msgid="1549288661423279207">"Aldri når tilkoblet"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Aldri"</item>
+ <item msgid="1986753720941888596">"Aldri"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatisk"</item>
diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml
index 42c8b6d..ba8922a 100644
--- a/res/values-nb/strings.xml
+++ b/res/values-nb/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Dødt"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Overspenning"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Ukjent feil"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Kald"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Synlig"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Synlig i <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> sekunder…"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Søker"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Paringsforespørsel for Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Paringsforespørsel"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Velg å pare med <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Vis mottatte filer"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Vis liste over filer mottatt via Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooths enhetsvelger"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth-tillatelse"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Et program på nettbrettet spør om tillatelse til å slå på Bluetooth. Ønsker du å gjøre dette?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Et program på nettbrettet ber om tillatelse til å aktivere Bluetooth og gjøre nettbrettet synlig for andre enheter i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Ønsker du å gjøre dette?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"En applikasjon på telefonen spør om tillatelse til å slå på Bluetooth og gjøre telefonen synlig for andre enheter i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Ønsker du å gjøre dette?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Aktiverer Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatisk tilkobling"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Innstillinger for dato og tid"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 ettermiddag"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Start <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konto:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Mellomtjenerinnstillinger"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Mellomtjenerinnstillinger"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Angi global HTTP-mellomtjener og eksklusjonslister"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Tøm"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Avbryt"</string>
<string name="settings_label" msgid="1626402585530130914">"Innstillinger"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Innstillinger"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Velg snarvei for innstillinger"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Innstillinger"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Flymodus"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Slå av alle trådløse tilkoblinger"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Slår av trådløse tilkoblinger…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Slår på trådløse tilkoblinger…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Trådløst og nettverk"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Trådløst og nettverk"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Innstillinger for trådløst og nettverk"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Trådløse nett, Bluetooth, flymodus, mobile nettverk, VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Dataroaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Koble til datatjenester ved roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Operatør"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Velg en nettverksoperatør"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Dato og tid"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Angi dato og klokkeslett"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Sett dato, tid, tidssone og formater"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Auto. dato og klokkeslett"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Bruk nettverkets eget klokkeslett"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sorter etter tidssone"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Dato"</string>
<string name="time_picker_title" msgid="483460752287255019">"Tid"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tidsavbrudd"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Lås skjermen <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> når skjermen slås av automatisk"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Lås enhet etter tidsavbrudd"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Vis eierinformasjon på låseskjermen"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Eierinformasjon"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Plassering, skjermlås, SIM-kort-lås"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Angi Min posisjon, lås opp skjerm, lås påloggingsopplysninger"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Passord"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Enhetskryptering"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Krypter data på enheten"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Krypter data på enheten"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Krever at du angir en personlig opplåsingskode eler passord for enheten"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Krever at du angir en personlig opplåsingskode eler passord for enheten"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Kryptert"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Du kan kryptere dine kontoer, innstillinger, nedlastede programmer og tilknyttede data, medieinnhold og andre filer. Når du har kryptert telefonen, kan du ikke dekryptere det uten å gjennomføre en tilbakestilling til fabrikkstandard, noe som sletter alle data på telefonen."\n\n"Kryptering tar inntil én time. Batteriet må være ladet, og telefonen må være tilkoblet strøm inntil krypteringen er fullført. Hvis du forstyrrer krypteringsprosessen, mister du deler av eller alle dataene."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Du kan kryptere dine kontoer, innstillinger, nedlastede programmer og tilknyttede data, medieinnhold og andre filer. Når du har kryptert telefonen, kan du ikke dekryptere det uten å gjennomføre en tilbakestilling til fabrikkstandard, noe som sletter alle data på telefonen."\n\n"Kryptering tar inntil én time. Batteriet må være ladet, og telefonen må være tilkoblet strøm inntil krypteringen er fullført. Hvis du forstyrrer krypteringsprosessen, mister du deler av eller alle dataene."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Krypter nettbrett"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Krypter telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Bekreft kryptering"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Vil du kryptere brukerdata? Denne handlingen er ikke reversibel, og kan ikke forstyrres uten tap av data! Krypteringen kan ta inntil én time."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Vil du kryptere brukerdata? Denne handlingen er ikke reversibel, og kan ikke forstyrres uten tap av data! Krypteringen kan ta inntil én time."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Kryptering"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Prøv på nytt om ^1 sekunder."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfigurere låseskjermen"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurer låseskjermen"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Opplåsing av skjerm"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurer skjermlås"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Endring av skjermlås"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Endre eller deaktiver mønster, personlig kode eller passordsikkerhet"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Velg en metode for å låse skjermen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Av"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Lås aldri skjermen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Usikker"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Krever ikke mønster, PIN eller passord for å låse opp skjermen"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ikke vis låseskjermen"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ingen"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Deaktiver opplåsing av skjerm"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Mønster"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Krever mønster for å låse opp skjermen"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Tegn mønsteret som skal brukes for å låse opp skjermen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Personlig kode"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Krever numerisk PIN-kode for å låse opp skjermen"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Skriv inn den numeriske koden som skal brukes for å låse opp skjermen"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Passord"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Krever passord for å låse opp skjermen"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Skriv inn passordet som skal brukes for å låse opp skjermen"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Deaktivert av ekstern enhetsadministrator"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Av"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Usikker"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Sikret med mønster"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Sikret med PIN-kode"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Sikret med passord"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Slå av skjermlås"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Fjern opplåsingsmønster"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Fjern PIN-koden for opplåsing"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Enhetens administrator tillater ikke bruk av et nylig brukt passord"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Avbryt"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Avbryt"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Neste"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Enhetsadministrasjon"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Enhetsadministratorer"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Vis eller deaktiver enhetsadministratorer"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Velg enhetsadministratorer"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Legg til eller fjern enhetsadministratorer"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Slå på Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth-innstillinger"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth-innstillinger"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Tilkoblinger, enhetsnavn og synlighet"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth-paringsforespørsel"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Oppgi personlig kode for å pare med «<xliff:g id="DEVICE_NAME">%1$s</xliff:g>». (Prøv 0000 eller 1234.) Det kan hende at du må oppgi samme kode på Bluetooth-enheten."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Skriv inn passord for å pare med «<xliff:g id="DEVICE_NAME">%1$s</xliff:g>»."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Hvis du vil pare med «<xliff:g id="DEVICE_NAME">%1$s</xliff:g>», må du kontrollere at enheten viser passordet: <xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"ønsker å pare."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Skriv inn <xliff:g id="PASSKEY">%2$s</xliff:g> på <xliff:g id="DEVICE_NAME">%1$s</xliff:g> for å pare. Trykk så på retur eller Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Paring"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Ikke par"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-enhet"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Innstillinger…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Koble til…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Håndfri"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Nettbrett"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Overfør"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Inndataenhet"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tilknytning"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kobles fra medielyd."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kobles fra håndfrilyd."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kobles fra inndataenheten."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kobles fra tilknytning."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Innstillinger for <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Enhetshandlinger"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Koble til"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Bruk for telefonlyd"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Bruk til filoverføring"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Bruk for inndata"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Bruk for Internett-tilgang"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Innstillinger for forankringsstasjon"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Bruk forankring til lyd"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Som høyttalertelefon"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Husk innstillinger"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Bruk NFC-teknologi for å lese og utveksle koder"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Det oppstod en feil."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Trådløst nett"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Slå på trådløst nett"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Trådløsinnstillinger"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Kan ikke søke etter nettverk"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Varsling om nettverk"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Varsle når et åpent nettverk er tilgjengelig"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Regler for hvilemodus for Wi-Fi-nettverk"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Spesifiser når telefonen skal bytte fra trådløsnett til mobiltelefonidata"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Det oppsto et problem med reglene for dvalemodus."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Legg til Wi-Fi-nettverk"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Trådløse nettverk"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Skann"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Endre nettverk"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Nettverksinnstillinger"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Angi kode fra tilgangspunkt"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS-konfigurasjon"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Metode for konfigurering av WPS-kode"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Angi koden <xliff:g id="WPS_PIN">%1$s</xliff:g> i tilgangspunktet"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS pågår allerede, og kan ta noen titalls sekunder å fullføre"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Kan ikke starte WPS, prøv på nytt"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID for nettverket"</string>
<string name="wifi_security" msgid="6603611185592956936">"Sikkerhet"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signalstyrke"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Slett"</string>
<string name="wifi_save" msgid="3331121567988522826">"Lagre"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Avbryt"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"En annen WPS-økt er oppdaget. Prøv på nytt om noen minutter"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avansert"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Soveinnstillinger for trådløst nett"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Spesifiser når telefonen skal bytte fra trådløsnett til mobiltelefonidata"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Det oppsto et problem under setting av soveinnstilling."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi-frekvensbånd"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Angi operasjonens frekvensområde"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Det oppsto et problem med frekvensbåndet."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> flyttbar trådløs sone"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Lyd"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Skjerm"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Skjerm"</string>
<string name="sound_settings" msgid="5007659014828162881">"Lydinnstillinger"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Stillemodus"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Kutt all lyd utenom medieprogrammer og alarmer"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Bytt orientering automatisk når telefonen blir snudd"</string>
<string name="brightness" msgid="2354961343555249270">"Lysstyrke"</string>
<string name="brightness_summary" msgid="838917350127550703">"Juster skjermens lysstyrke"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tidsavbrudd"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Skjermen slås automatisk av etter <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Skjermsparer"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatisk lysstyrke"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Innstillinger for SIM-kort-lås"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Sett opp SIM-kort-lås"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Ikke tilgjengelig"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status for batteri, nettverk og annen informasjon"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, telefonnummer, signal, osv."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonnummer, signalstyrke, osv."</string>
<string name="storage_settings" msgid="4211799979832404953">"Lagring"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Innstillinger for lagring"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Koble fra USB-lagring og vis tilgjengelig lagringsplass"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Avmonter minnekort, vis ledig plass"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Telefonnummer"</string>
+ <string name="status_number" msgid="5123197324870153205">"Telefonnummer"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-versjon"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Intern lagring"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-lagring"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Minnekort"</string>
- <string name="memory_available" msgid="5052397223077021181">"Tilgjengelig"</string>
- <string name="memory_size" msgid="5458889090691922288">"Totalt"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Beregner …"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Programmer"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medier"</string>
+ <string name="memory_available" msgid="418542433817289474">"Tilgjengelig plass"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Total plass"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Bruk av programmet"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Mediebruk"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Koble fra delt lagring"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Avmonter/løs ut minnekort"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Koble fra intern USB-lagring"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Sett inn et minnekort for å koble til"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Koble til USB-lagring"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Koble til minnekort"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Koble til USB-lagring"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Koble fra intern USB-lagring"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Koble til minnekortet"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Slett USB-lagring"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Slett SD-kort"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Sletter intern USB-lagring, som musikk og bilder"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Sletter alle data på SD-kortet, for eksempel musikk og bilder"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Sletter intern USB-lagring, som musikk og bilder"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Ikke tilgjengelig"</string>
<string name="read_only" msgid="6702420168629076340">" (skrivebeskyttet)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Koble fra USB-lagring"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Denne handlingen vil slette alle data fra tavlens"<b>"interne lagringsplass"</b>", inkludert:"\n\n<li>"Google-kontoen din"</li>\n<li>"Innstillinger og data for system og programmer"</li>\n<li>"Nedlastede programmer"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Denne handlingen vil slette alle data fra telefonens"<b>"interne lagringsplass"</b>", inkludert:"\n\n<li>"Google-kontoen din"</li>\n<li>"Innstillinger og data for system og programmer"</li>\n<li>"Nedlastede programmer"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Du er for øyeblikket pålogget følgende kontoer:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musikk"</li>\n<li>"Bilder"</li>\n<li>"Andre brukerdata"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"For i tillegg å slette musikk, bilder og andre brukerdata, må "<b>"USB-lagringen"</b>" tømmes."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Hvis du også vil fjerne musikk, bilder og andre brukerdata, må "<b>"SD-kortet"</b>" slettes."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"For i tillegg å slette musikk, bilder og andre brukerdata, må "<b>"USB-lagringen"</b>" tømmes."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Slett USB-lagring"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Slett SD-kort"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Slett all intern USB-lagring, som for eksempel musikk eller bilder."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Aktiver GPS med hjelp"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Bruk tjener til å hjelpe GPS (opphev for å redusere nettverksbruken)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Bruk tjeneren til å hjelpe GPS (velg for å forbedre GPS-ytelsen)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Bruk posisjon til Google-søk"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Bruk posisjon til Google-søk og andre Google-tjenester"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Posisjon brukt til å forbedre Google-søkeresultater og andre Google-tjenester"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Bruk posisjon i Google Søk"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Bruk posisjonen din for bedre søk og andre tjenester"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Min posisjon brukes til å forbedre søkeresultater og andre tjenester"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Om nettbrettet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Om telefonen"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Vis juridisk informasjon, status og programvareversjon"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Passordet er angitt"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN-kode er angitt"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Mønster er angitt"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Lås skjerm"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Opplåsing av skjerm"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Opplåsingsmønster"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Endre PIN-kode for opplåsning"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Bekreft lagret mønster"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Neste"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Slik sikrer du nettbrettet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Sikring av telefonen"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Beskytt nettbrettet mot uautorisert bruk ved å opprette et personlig skjermopplåsingsmønster. Bruk fingeren til koble sammen prikkene i en hvilken som helst rekkefølge på neste skjermbilde. Du må koble sammen minst fire prikker. "\n\n"Klar til å begynne? Berør Neste."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Beskytt telefonen fra uautorisert bruk ved å lage et personlig opplåsingsmønster for skjermen. "\n<font height="17">\n</font><b>"1"</b>" På den neste skjermen, se på mens et eksempelmønster blir tegnet. "\n<font height="17">\n</font><b>"2"</b>" Når du er klar, tegn ditt eget personlige opplåsingsmønster. Prøv med forskjellige mønster, men tegn over minst fire prikker. "\n<font height="17">\n</font><b>"3"</b>" Tegn mønsteret på nytt for å bekrefte. "\n<font height="17">\n</font><b>"Klar? Velg «neste»."</b>" "\n<font height="3">\n</font>"For å la telefonen forbli ubeskyttet, velg «Avbryt»."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Installerte applikasjoner"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Hold orden på og fjern installerte applikasjoner"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Totalt"</string>
<string name="application_size_label" msgid="5055196275624686382">"Applikasjon"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-lagring"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kort"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Avinstaller"</string>
<string name="disable_text" msgid="6544054052049395202">"Deaktiver"</string>
<string name="enable_text" msgid="9217362512327828987">"Aktiver"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Vil du stoppe systemtjenesten?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Er du sikker på at du vil stoppe denne systemtjenesten? I så fall kan det hende at enkelte funksjoner på nettbrettet kan slutte å fungere slik de skal, inntil du slår telefonen av og på igjen."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Er du sikker på at du vil stoppe denne systemtjenesten? I så fall kan det hende at enkelte funksjoner på telefonen kan slutte å fungere slik de skal, inntil du slår telefonen av og på igjen."</string>
- <string name="language_settings" msgid="5292716747264442359">"Språk og inndata"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Språk og inndata"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Språk og tekst"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Språk og tastatur"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Språkinnstillinger"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Tastaturinnstillinger"</string>
<string name="phone_language" msgid="1165758957501090679">"Velg språk"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Automatisk erstatting"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Rett opp stavefeil"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Automatisk stor forbokstav"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Stor forbokstav"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Start setninger automatisk med stor bokstav"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Autopunktum"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Innstillinger for fysisk tastatur"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Snarveier"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Skriving av tekst"</string>
<string name="input_method" msgid="5434026103176856164">"Inndatametode"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Nåværende inndatametode"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Valg av inndatametode"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatisk"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vis alltid"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Skjul alltid"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurer inndatametoder"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Innstillinger"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktive inndatametoder"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Bruk systemspråk"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Innstillinger for <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Velg aktive inndatametoder"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Innstillinger for skjermtastatur"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Innebygd tastatur"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Innstillinger for innebygd tastatur"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi on time"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi on time"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Logg detaljer"</string>
- <string name="details_title" msgid="3792801565213935385">"Bruksdetaljer"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detaljert batteribrukinformasjon"</string>
<string name="details_subtitle" msgid="32593908269911734">"Bruksdetaljer"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Juster strømforbruk"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Pakker"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Tjenerforhandling mislyktes. Det kan hende at tjeneren ikke er enig i krypteringsalternativet ditt. Vil du kontrollere krypteringsinnstillingene?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Legg til VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Legg til VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN-detaljer"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Legg til <xliff:g id="NAME">%s</xliff:g>-VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detaljer om <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Sett opp og vedlikehold virtuelle private nettverk (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(uendret)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ikke satt)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Legitimasjonslager"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Akkreditivlager"</string>
<string name="credentials_access" msgid="4843187230913860492">"Bruk sikre akkreditiver"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Gir applikasjoner tilgang til sikre sertifikater og andre akkreditiver"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Installer fra USB-lagring"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Installer fra SD-kort"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Installer sertifikater fra USB-lagring"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Installer sertifikater fra SD-kort"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Velg passord"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Angi eller endre passordet for legitimasjonslageret"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Tøm legitimasjonslageret"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Fjern alt innhold og tilbakestill passordet"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Velg passord"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Skriv inn passordet for legitimasjonslagring."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Angi et passord for legitimasjonslageret. Det må inneholde minst åtte tegn."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Skriv inn passordet for akkreditivlageret"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installer fra USB-lagr."</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installer fra minnekort"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inst. sert. fra USB-lagr."</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installer krypterte sertifikater fra minnekort"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Velg passord"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Velg eller endre passord for akkreditivlageret"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Tøm lager"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Tøm akkreditivlageret for alt innhold, og tilbakestill passordet"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Er du sikker på at du ønsker å slette alle akkreditiver og tilbakestille passordet for akkreditivlageret?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Nåværende passord:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nytt passord:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Bekreft nytt passord:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Alt innholdet fjernes, og passordet tilbakestilles. Er du sikker?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Velg et passord for akkreditivlageret (minst åtte tegn)"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Galt passord. Prøv igjen."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Skriv inn passordet. Du har ett forsøk igjen før akkreditivlageret blir tømt."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Skriv inn passordet. Du har <xliff:g id="NUMBER">%1$d</xliff:g> forsøk igjen før akkreditivlageret blir tømt."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Passordene stemmer ikke overens."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Du må skrive inn og bekrefte et passord."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Skriv inn passordet."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Passordet må bestå av minst åtte tegn."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Feil passord."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Feil passord. Du har ett forsøk til før legitimasjonslageret slettes."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Feil passord. Du har <xliff:g id="NUMBER">%1$d</xliff:g> flere forsøk før legitimasjonslageret slettes."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Legitimasjonslageret ble tømt."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Akkreditivlageret ble tømt."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Akkreditivlageret er aktivert."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Akkreditivlageret er deaktivert."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Kryptert filsystem"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Krypter private brukerdata"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Aktiver lagring av krypterte filer for private brukerdata på denne enheten"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Aktivering av krypterte filsystemer krever en fullstendig datarensing."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Deaktivering av krypterte filsystemer krever en fullstendig datarensing."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Aktiver"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Deaktiver"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Avbryt"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Endring av modus for kryptert filsystem er avbrutt."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Advarsel om kryptert filsystem."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Nødtone"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Velg oppførsel når en nødsamtale opprettes"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Personvern"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Innkommende anrop"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Varsler"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Tilbakemelding"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi-konfigurering"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Koble til Wi-Fi-nettverk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Kobler til Wi-Fi-nettverk <xliff:g id="NETWORK_NAME">%s</xliff:g> ..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Koblet til et Wi-Fi-nettverk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Legg til et nettverk"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi-oppsett"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Ikke tilkoblet"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Legg til nettverk"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Oppdater liste"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Lagre"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Avbryt"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Skanner nettverk ..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Trykk på et nettverk for å koble til det"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Trykk for å velge nettverk"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Koble til eksisterende nettverk"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Koble til usikret nettverk"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Angi nettverkskonfigurasjon"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Kobler til ..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Gå videre til neste trinn"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP støttes ikke"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Du kan ikke konfigurere en EAP Wi-Fi-tilkobling under installasjonen. Etter installasjonen, kan dette gjøres i Innstillinger under "<b>"Trådløst og nettverk"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Tilkoblingen kan ta noen minutter."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Trykk på "<b>"Neste"</b>" for å fortsette oppsettet."\n\n"Trykk på "<b>"Tilbake"</b>" for å koble til et annet trådløst nettverk."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Du kan ikke konfigurere en EAP Wi-Fi-tilkobling under installasjonen. Etter installasjonen, kan dette gjøres i Innstillinger under Trådløst og nettverk."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synkroniseringsinnstillinger"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Det er midlertidige problemer med synkroniseringen. Vent litt."</string>
<string name="add_account_label" msgid="7811707265834013767">"Legg til konto"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synkronisering er av"</string>
<string name="sync_error" msgid="5060969083117872149">"Synkroniseringsfeil"</string>
<string name="settings_backup" msgid="2274732978260797031">"Sikkerhetskopier innstillinger"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Sikkerhetskopier innstillingene"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synkroniser nå"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Avbryt synkronisering"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Berør for å synkronisere nå<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Kalender"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kontakter"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Velkommen til Google-synkronisering!"</font>\n"Synkroniser på Google-vis, slik at du har tilgang til dine kontakter, avtaler og mer – uansett hvor du befinner deg."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Innstillinger for programsynkronisering"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data og synkronisering"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Endre passord"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Kontoinnstillinger"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Fjern konto"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Legg til en konto"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Fullfør"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Fjern konto"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Er du sikker på at du vil fjerne denne kontoen? Hvis du fjerner den, fjernes samtidig alle data som er tilknyttet kontoen. "\n"Vil du fortsette?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Er du sikker på at du vil fjerne denne kontoen? Hvis du fjerner den, fjernes samtidig alle data som er tilknyttet kontoen. "\n"Vil du fortsette?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Denne kontoen er påkrevd av ett eller flere programmer. Du kan kun fjerne den ved å tilbakestille nettbrettet til fabrikkstandard (dette sletter alle personlige data). Dette gjør du under Innstillinger og Personvern."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Denne kontoen er påkrevd av ett eller flere programmer. Du kan kun fjerne den ved å tilbakestille telefonen til fabrikkstandard (dette sletter alle personlige data). Dette gjør du under Innstillinger og Personvern."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push-abonnementer"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synkroniser <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Kan ikke synkronisere manuelt"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synkronisering for disse dataene er deaktivert. For å bytte innstillinger, slå på bakgrunnsdata og automatisk synkronisering midlertidig."</string>
- <string name="enter_password" msgid="3268224850821675915">"Oppgi passord for å dekryptere lagring"</string>
- <string name="try_again" msgid="5904121494468643129">"Prøv på nytt"</string>
- <string name="service_busy" msgid="225227519012409130">"Tjenesten er opptatt, prøv på nytt"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-nl/arrays.xml b/res/values-nl/arrays.xml
index 0c87251..73ea23a 100644
--- a/res/values-nl/arrays.xml
+++ b/res/values-nl/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Er worden een paar vensteranimaties weergegeven"</item>
<item msgid="488968798204105119">"Alle vensteranimaties worden weergegeven"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 seconden"</item>
- <item msgid="8881760709354815449">"30 seconden"</item>
- <item msgid="7589406073232279088">"1 minuut"</item>
- <item msgid="7001195990902244174">"2 minuten"</item>
- <item msgid="7489864775127957179">"5 minuten"</item>
- <item msgid="2314124409517439288">"10 minuten"</item>
- <item msgid="6864027152847611413">"30 minuten"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"onmiddellijk"</item>
- <item msgid="6736512735606834431">"5 seconden"</item>
- <item msgid="8044619388267891375">"15 seconden"</item>
- <item msgid="1822002388249545488">"30 seconden"</item>
- <item msgid="8538071621211916519">"1 minuut"</item>
- <item msgid="5663439580228932882">"2 minuten"</item>
- <item msgid="49888496216106852">"5 minuten"</item>
- <item msgid="9002737361305019353">"10 minuten"</item>
- <item msgid="4322676235684793329">"30 minuten"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Zeer langzaam"</item>
<item msgid="2361722960903353554">"Langzaam"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Uitstekend"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Wanneer scherm wordt uitgeschakeld"</item>
+ <item msgid="3804733751095821976">"Wanneer scherm wordt uitgeschakeld"</item>
<item msgid="1549288661423279207">"Nooit indien aangesloten"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nooit"</item>
+ <item msgid="1986753720941888596">"Nooit"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatisch"</item>
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
index f0c51cb..a5c74e9 100644
--- a/res/values-nl/strings.xml
+++ b/res/values-nl/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Versleten"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Overspanning"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Onbekende fout"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Koud"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Kan worden gevonden"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Kan gedurende <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> seconden worden gevonden…"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Scannen"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth-koppelingsverzoek"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Koppelingsverzoek"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Selecteer dit om te koppelen met <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Ontvangen bestanden weergeven"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Lijst met via Bluetooth ontvangen bestanden weergeven"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Apparaatkiezer van Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Machtigingsverzoek voor Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Een toepassing vraagt toestemming Bluetooth in te schakelen. Wilt u dit toestaan?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Een toepassing op uw tablet vraagt toestemming Bluetooth in te schakelen en uw tablet <xliff:g id="TIMEOUT">%1$d</xliff:g> seconden zichtbaar te maken voor andere apparaten. Wilt u dit toestaan?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Een toepassing probeert Bluetooth in te schakelen en uw telefoon <xliff:g id="TIMEOUT">%1$d</xliff:g> seconden zichtbaar te maken voor andere apparaten. Wilt u dit toestaan?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Bluetooth inschakelen…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automatisch verbinding maken"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Datum- en tijdinstellingen"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00 uur"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"01:00:00 PM"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g> starten"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Account:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxyinstellingen"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxyinstellingen"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Algemene HTTP-proxy en uitsluitingslijsten instellen"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Wissen"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Poort"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Annuleren"</string>
<string name="settings_label" msgid="1626402585530130914">"Instellingen"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Instellingen"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Snelkoppeling voor instellingen selecteren"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Instellingen"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Vliegmodus"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Alle draadloze verbindingen uitschakelen"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Draadloze verbindingen uitschakelen..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Draadloze verbindingen inschakelen..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Draadloos en netwerken"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Draadloos en netwerken"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Draadloze en netwerkinstellingen"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Wi-Fi, Bluetooth, vliegmodus, mobiele netwerken en VPN\'s beheren"</string>
<string name="roaming" msgid="3596055926335478572">"Gegevensroaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Verbinding maken met gegevensservices tijdens roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Operator selecteren"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Een mobiele provider selecteren"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum en tijd"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Datum en tijd instellen"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Datum, tijd, tijdzone en notaties instellen"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Autom. tijd en datum"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Netwerktijd gebruiken"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sorteren op tijdzone"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Tijd"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Time-out"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Scherm vergrendelen <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> nadat het scherm automatisch is uitgeschakeld"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Apparaat vergrendelen na time-out"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Eigenaarsgegevens weergeven op vergrendeld scherm"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Eigenaarsgegevens"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Mijn locatie\', schermontgrendeling, SIM- en referentieopslagvergrendeling instellen"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"\'Mijn locatie\' instellen, scherm ontgrendelen, opslag van referenties vergrendelen"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Wachtwoorden"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Apparaatcodering"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Gegevens op het apparaat coderen"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Gegevens op het apparaat coderen"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"U moet een PIN-code of wachtwoord instellen om het apparaat te ontgrendelen"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"U moet een PIN-code of wachtwoord instellen om het apparaat te ontgrendelen"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Gecodeerd"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"U kunt uw accounts, instellingen, gedownloade toepassingen en de bijbehorende gegevens, media en andere bestanden coderen (encrypten). Zodra u uw telefoon codeert, kunt u deze codering alleen ongedaan maken door het apparaat terug te zetten op de fabrieksinstellingen, waardoor alle gegevens op uw telefoon worden gewist."\n\n"Het coderen kan een uur duren. U moet beginnen met een opgeladen accu en uw telefoon hebben aangesloten op de oplader totdat de codering is voltooid. Als u het coderingsproces onderbreekt, kunt u uw gegevens gedeeltelijk of volledig kwijtraken."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"U kunt uw accounts, instellingen, gedownloade toepassingen en de bijbehorende gegevens, media en andere bestanden coderen (encrypten). Zodra u uw telefoon codeert, kunt u deze codering alleen ongedaan maken door het apparaat terug te zetten op de fabrieksinstellingen, waardoor alle gegevens op uw telefoon worden gewist."\n\n"Het coderen kan een uur duren. U moet beginnen met een opgeladen accu en uw telefoon hebben aangesloten op de oplader totdat de codering is voltooid. Als u het coderingsproces onderbreekt, kunt u uw gegevens gedeeltelijk of volledig kwijtraken."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Tablet coderen"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Telefoon coderen"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Codering bevestigen"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Wilt u uw gebruikersgegevens coderen? Deze bewerking kan niet worden teruggedraaid en kan niet zonder gegevensverlies worden onderbroken! Het coderen van uw gegevens kan een uur duren."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Wilt u uw gebruikersgegevens coderen? Deze bewerking kan niet worden teruggedraaid en kan niet zonder gegevensverlies worden onderbroken! Het coderen van uw gegevens kan een uur duren."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Coderen"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Probeer het over ^1 seconden opnieuw."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Vergr. scherm inst."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Vergr. scherm inst."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Beveiliging voor schermontgrendeling"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Schermvergrendeling instellen"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Schermvergrendeling wijzigen"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Beveiliging via patroon, PIN of wachtwoord wijzigen of uitschakelen"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Kies een methode voor schermvergrendeling"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Uit"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Scherm nooit vergrendelen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Niet-beveiligd"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Geen patroon, PIN of wachtwoord voor ontgr."</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Het vergrendelingsscherm niet weergeven"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Geen"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Beveiliging van schermontgrendeling uitschakelen"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Patroon"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Patroon vereist voor schermontgrendeling"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Patroon tekenen om het scherm te ontgrendelen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Numerieke PIN-code vereist voor schermontgr."</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Numerieke PIN-code opgeven om het scherm te ontgrendelen"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Wachtwoord"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Wachtwoord vereist voor schermontgrendeling"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Wachtwoord opgeven om het scherm te ontgrendelen"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Uitgeschakeld door externe apparaatbeheerder"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Uitgeschakeld"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Niet-beveiligd"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Beveiligd met patroon"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Beveiligd met een PIN-code"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Beveiligd met wachtwoord"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Schermvergrendeling uitschakelen"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Ontgrendelingspatroon verwijderen"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"PIN-code voor ontgrendelen verwijderen"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Apparaatbeheerder staat gebruik van een recent wachtwoord niet toe"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Annuleren"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Annuleren"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Volgende"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Apparaatbeheer"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Apparaatbeheerders"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Apparaatbeheerders weergeven of uitschakelen"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Apparaatbeheerders kiezen"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Apparaatbeheerders toevoegen of verwijderen"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Bluetooth inschakelen"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth-instellingen"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth-instellingen"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Verbindingen beheren, apparaatnaam en vindbaarheid instellen"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth-koppelingsverzoek"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Geef de PIN-code op om te koppelen met \'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'. (Probeer 0000 of 1234.) U moet dezelfde PIN-code wellicht opgeven op het Bluetooth-apparaat."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Geef de toegangscode op om te koppelen met \'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\'."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Als u wilt koppelen met \'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\', moet u bevestigen dat deze toegangscode wordt weergegeven: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"wil koppelen."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Geef \'<xliff:g id="PASSKEY">%2$s</xliff:g>\' op \'<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\' op gevolgd door Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Koppelen"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Niet koppelen"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-apparaat"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opties..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Verbinding maken met…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Overdracht"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Invoerapparaat"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wordt ontkoppeld van audio van medium."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wordt ontkoppeld van handsfree audio."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wordt ontkoppeld van het invoerapparaat."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> wordt ontkoppeld van tethering."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opties voor <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Acties van apparaat"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Verbinden"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Gebruiken voor audio van telefoon"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Gebruiken voor bestandsoverdracht"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Gebruiken voor invoer"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Gebruik voor internettoegang"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Instellingen voor dockstation"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Dockstation gebruiken voor audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Als luidsprekertelefoon"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Instellingen onthouden"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Near Field Communication gebruiken om tags te lezen en uit te wisselen"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Er is een fout opgetreden."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Wi-Fi inschakelen"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi-instellingen"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Kan niet scannen naar netwerken"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Netwerkmelding"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Melden wanneer een open netwerk beschikbaar is"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi-slaapbeleid"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Overschakelen opgeven van Wi-Fi naar mobiele gegevens"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Er is een probleem opgetreden bij het instellen van het slaapbeleid."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Wi-Fi-netwerk toevoegen"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi-netwerken"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scannen"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Netwerk aanpassen"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Netwerkinstelling"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"PIN opgeven via toegangspunt"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS instellen"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS-PIN-configuratiemethode"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Voer de PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> in bij het toegangspunt"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS wordt al uitgevoerd en het voltooien kan even duren"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Kan WPS niet starten, probeer het opnieuw"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID van netwerk"</string>
<string name="wifi_security" msgid="6603611185592956936">"Beveiliging"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signaalsterkte"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Vergeten"</string>
<string name="wifi_save" msgid="3331121567988522826">"Opslaan"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Annuleren"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Er is nog een WPS-sessie gedetecteerd. Probeer het over een paar minuten opnieuw"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Geavanceerd"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi-slaapbeleid"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Overschakelen opgeven van Wi-Fi naar mobiele gegevens"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Er is een probleem opgetreden bij het instellen van het slaapbeleid."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi-frequentieband"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Het frequentiebereik voor gebruik opgeven"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Probleem bij instellen van het frequentiebeleid."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> draagbare Wi-Fi-hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Geluid"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Scherm"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Weergave"</string>
<string name="sound_settings" msgid="5007659014828162881">"Geluidsinstellingen"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Stille modus"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Alle geluiden dempen, behalve media en alarmen"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Stand automatisch wijzigen als telefoon wordt gedraaid"</string>
<string name="brightness" msgid="2354961343555249270">"Helderheid"</string>
<string name="brightness_summary" msgid="838917350127550703">"Helderheid van het scherm aanpassen"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Time-out"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Het scherm wordt automatisch uitgeschakeld na <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Time-out scherm"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatische helderheid"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Instellingen SIM-kaartvergrendeling"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIM-vergrendeling instellen"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Niet beschikbaar"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status van de accu, het netwerk en andere gegevens"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI-nummer, telefoonnummer, signaal, enzovoort"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefoonnummer, signaal, enzovoort"</string>
<string name="storage_settings" msgid="4211799979832404953">"Opslagruimte"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Instellingen voor opslag"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USB-opslag ontkoppelen, beschikbare opslag weergeven"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD-kaart ontkoppelen, beschikbare opslagruimte weergeven"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mijn telefoonnummer"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mijn telefoonnummer"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-versie"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Interne opslag"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-opslag"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-kaart"</string>
- <string name="memory_available" msgid="5052397223077021181">"Beschikbaar"</string>
- <string name="memory_size" msgid="5458889090691922288">"Totaal"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Berekenen…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Toepassingen"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Beschikbare ruimte"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Totale ruimte"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Gebruik door toepassingen"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Mediagebruik"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Gedeelde opslag ontkoppelen"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SD-kaart ontkoppelen"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Interne USB-opslag ontkoppelen"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Plaats een SD-kaart om deze te koppelen"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"USB-opslag koppelen"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"SD-kaart koppelen"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"USB-opslag koppelen"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Interne USB-opslag koppelen"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"De SD-kaart koppelen"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"USB-opslag wissen"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"SD-kaart wissen"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Wist alle gegevens in de interne USB-opslag, zoals muziek en foto\'s"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Hiermee worden alle gegevens op de SD-kaart gewist, zoals muziek en foto\'s"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Wist alle gegevens in de interne USB-opslag, zoals muziek en foto\'s"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Niet beschikbaar"</string>
<string name="read_only" msgid="6702420168629076340">" (Alleen-lezen)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"USB-opslag ontkoppelen"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Hiermee worden alle gegevens in de "<b>"interne opslag"</b>" van uw tablet gewist, waaronder:"\n\n<li>"Uw Google-account"</li>\n<li>"Gegevens en instellingen van het systeem en de toepassingen"</li>\n<li>"Gedownloade toepassingen"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Hiermee worden alle gegevens in de "<b>"interne opslag"</b>" van uw telefoon gewist, waaronder:"\n\n<li>"Uw Google-account"</li>\n<li>"Gegevens en instellingen van het systeem en de toepassingen"</li>\n<li>"Gedownloade toepassingen"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"U bent momenteel aangemeld bij de volgende accounts:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Muziek"</li>\n<li>"Foto\'s"</li>\n<li>"Andere gebruikersgegevens"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Als u ook muziek, foto\'s en andere gebruikersgegevens wilt wissen, moet de "<b>"USB-opslag"</b>" worden gewist."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Als u ook muziek, foto\'s en andere gebruikersgegevens wilt wissen, moet de "<b>"SD-kaart"</b>" worden gewist."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Als u ook muziek, foto\'s en andere gebruikersgegevens wilt wissen, moet de "<b>"USB-opslag"</b>" worden gewist."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USB-opslag wissen"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SD-kaart wissen"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Alle gegevens in de interne USB-opslag wissen, zoals muziek en foto\'s."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Ondersteunde GPS gebruiken"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Server gebruiken ter ondersteuning van GPS (uitschakelen om het netwerkgebruik te beperken)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Server gebruiken ter ondersteuning van GPS (uitschakelen om GPS-prestaties te verbeteren)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Locatie gebruiken voor Google Zoeken"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Locatie gebruiken voor Google Zoeken en andere Google-services"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Locatie gebruikt om de zoekresultaten van Google en andere Google-services te verbeteren"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Locatie gebruiken voor Google Zoeken"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Locatie gebruiken voor Google Zoeken en andere Google-services"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Locatie wordt gebruikt om Google-zoekresultaten en andere Google-services te verbeteren"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Over tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Over de telefoon"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Juridische info, status, softwareversie weergeven"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Wachtwoord is ingesteld"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN-code is ingesteld"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Patroon is ingesteld"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Scherm vergrendelen"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Scherm ontgrendelen"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Ontgrendelingspatroon wijzigen"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"PIN-code voor ontgrendelen wijzigen"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Opgeslagen patroon bevestigen"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Volgende"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Uw tablet beveiligen"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Uw telefoon beveiligen"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Beveilig uw tablet tegen ongeoorloofd gebruik door een persoonlijk schermontgrendelingspatroon in te stellen. Gebruik op het volgende scherm uw vinger om de punten met elkaar te verbinden. U moet minimaal vier punten met elkaar verbinden. "\n\n"Bent u er klaar voor? Raak \'Volgende\' aan."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Beveilig uw telefoon tegen ongeoorloofd gebruik door het instellen van een persoonlijk schermdeblokkeringspatroon. "\n<font height="17">\n</font><b>"1"</b>" Op het volgende scherm ziet u hoe een voorbeeldpatroon wordt getekend. "\n<font height="17">\n</font><b>"2"</b>" Teken uw eigen persoonlijke deblokkeringspatroon als het voorbeeld is voltooid. U kunt verschillende patronen uitproberen, maar u moet minimaal vier punten met elkaar verbinden. "\n<font height="17">\n</font><b>"3"</b>" Teken uw patroon nogmaals ter bevestiging. "\n<font height="17">\n</font><b>"Bent u er klaar voor? Selecteer \'Volgende\'"</b>". "\n<font height="3">\n</font>"Als u uw telefoon niet wilt beveiligen, selecteert u \'Annuleren\'."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Toepassingen beheren"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Geïnstalleerde toepassingen beheren en verwijderen"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Totaal"</string>
<string name="application_size_label" msgid="5055196275624686382">"Toepassing"</string>
<string name="data_size_label" msgid="8679376373625710107">"Gegevens"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-opslag"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kaart"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Verwijderen"</string>
<string name="disable_text" msgid="6544054052049395202">"Uitschakelen"</string>
<string name="enable_text" msgid="9217362512327828987">"Inschakelen"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Systeemservice stoppen?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Weet u zeker dat u deze systeemservice wilt stoppen? Als u dit doet, werken bepaalde functies van uw tablet mogelijk pas weer correct nadat u de tablet heeft uitgeschakeld en weer ingeschakeld."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Weet u zeker dat u deze systeemservice wilt stoppen? Als u dit doet, werken bepaalde functies van uw telefoon mogelijk pas weer correct nadat u de telefoon heeft uitgeschakeld en weer ingeschakeld."</string>
- <string name="language_settings" msgid="5292716747264442359">"Taal en invoer"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Taal en invoer"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Landinstelling en tekst"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Taal- en toetsenbordinstellingen"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Taalinstellingen"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Toetsenbordinstellingen"</string>
<string name="phone_language" msgid="1165758957501090679">"Taal selecteren"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Automatisch vervangen"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corrigeer verkeerd getypte woorden"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Automatisch hoofdlettergebruik"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Automatische hoofdletters"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Eerste letters in zinnen met hoofdletter"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Automatische interpunctie"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Instellingen voor vast toetsenbord"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Sneltoetsen"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Tekstinvoer"</string>
<string name="input_method" msgid="5434026103176856164">"Invoermethode"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Huidige invoermethode"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selectie voor invoermethode"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatisch"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Altijd weergeven"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Altijd verbergen"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Invoermethoden configureren"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Instellingen"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Actieve invoermethoden"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Systeemtaal gebruiken"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Instellingen voor <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Actieve invoermeth. selecteren"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Instellingen voor schermtoetsenbord"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Geïntegreerd toetsenbord"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Geïntegreerde, fysieke toetsenbordinstellingen"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi op tijd"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi op tijd"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Geschiedenisdetails"</string>
- <string name="details_title" msgid="3792801565213935385">"Gebruiksdetails"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Details over accugebruik"</string>
<string name="details_subtitle" msgid="32593908269911734">"Gebruiksdetails"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Energieverbruik aanpassen"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Bijgeleverde pakketten"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Het contact met de server is mislukt. De server gaat wellicht niet akkoord met uw optie voor codering. Wilt u de instelling voor de codering controleren?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPN toevoegen"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPN toevoegen"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN-details"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"VPN \'<xliff:g id="NAME">%s</xliff:g>\' toevoegen"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Details voor <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN\'s"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"VPN\'s (Virtual Private Networks) instellen en beheren"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(ongewijzigd)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(niet ingesteld)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Opslag van referenties"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Opslag van referenties"</string>
<string name="credentials_access" msgid="4843187230913860492">"Beveiligingsreferenties"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Toepassingen mogen veilige certificaten en andere referenties openen"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Installeren uit USB-opslag"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Installeren van SD-kaart"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Certificaten van USB-opslag installeren"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Certificaten installeren vanaf SD-kaart"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Wachtwoord instellen"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Het wachtwoord voor de opslag van referenties instellen of wijzigen"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Referenties wissen"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Alle inhoud verwijderen en het wachtwoord opnieuw instellen"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Voer het wachtwoord in"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Geef het wachtwoord voor de opslag van referenties op."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Stel het wachtwoord voor de opslag van referenties in. Het wachtwoord moet bestaan uit ten minste acht tekens."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Geef het wachtwoord voor de opslag van referenties op."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installeren uit USB-opslag"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installeren van SD-kaart"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Gecodeerde certificaten van USB-opslag installeren"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Gecodeerde certificaten installeren vanaf SD-kaart"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Wachtwoord instellen"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Het wachtwoord voor de opslag van referenties instellen"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Opslag wissen"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Referentieopslag voor inhoud wissen en wachtwoord opnieuw instellen"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Weet u zeker dat u alle referenties wilt verwijderen en het wachtwoord voor de opslag van referenties opnieuw wilt instellen?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Huidig wachtwoord:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nieuw wachtwoord:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Nieuw wachtwoord bevestigen:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Alle inhoud wordt verwijderd en het wachtwoord wordt opnieuw ingesteld. Weet u het zeker?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Geef een wachtwoord op voor opslag van referenties (minimaal 8 tekens)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Voer het juiste wachtwoord in."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Voer het juiste wachtwoord in. U kunt nog één keer proberen het juiste wachtwoord in te voeren voordat de opgeslagen referenties worden verwijderd."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Voer het juiste wachtwoord in. U kunt nog <xliff:g id="NUMBER">%1$d</xliff:g> keer proberen om het juiste wachtwoord in te voeren voordat de opgeslagen referenties worden verwijderd."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"De wachtwoorden komen niet overeen."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"U moet een wachtwoord invoeren en bevestigen."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Voer het wachtwoord in."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Het wachtwoord moet uit ten minste 8 tekens bestaan."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Onjuist wachtwoord."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Onjuist wachtwoord. U heeft nog één poging voordat de opslag van referenties wordt gewist."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Onjuist wachtwoord. U heeft nog <xliff:g id="NUMBER">%1$d</xliff:g> pogingen voordat de opslag van referenties wordt gewist."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Opslag van referenties is gewist."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"De opslag van referenties is gewist."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"De opslag van referenties is ingeschakeld."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"De opslag van referenties is uitgeschakeld."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Gecodeerde bestandssysteem"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Persoonlijke gebruikersgegevens coderen"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Gecodeerde bestandssysteemopslag voor persoonlijke gebruikersgegevens inschakelen op dit apparaat"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Voor het inschakelen van gecodeerde bestandssystemen is het wissen van apparaatgegevens vereist."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Voor het uitschakelen van gecodeerde bestandssystemen is het wissen van apparaatgegevens vereist."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Inschakelen"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Uitschakelen"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Annuleren"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Het wijzigen van de gecodeerde bestandssysteemmodus is geannuleerd."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Waarschuwing voor gecodeerde bestandssystemen."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Toon voor noodoproep"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Gedrag bij noodoproepen instellen"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacy"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Inkomende oproepen"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Meldingen"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Instellen van Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Verbinding maken met Wi-Fi-netwerk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Verbinding maken met Wi-Fi-netwerk <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Verbonden met een Wi-Fi-netwerk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Een netwerk toevoegen"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi-instelling"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Geen verbinding"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Netwerk toevoegen"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Lijst vernieuwen"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Opslaan"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Annuleren"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Netwerken scannen..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Raak een netwerk aan om hiermee verbinding te maken"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Raak aan om netwerk te selecteren"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Verbinding maken met bestaand netwerk"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Verbinden met onbeveiligd netwerk"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Netwerkconfiguratie invoeren"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Verbinding maken..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Doorgaan naar de volgende stap"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP wordt niet ondersteund"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"U kunt geen Wi-Fi-verbinding van het type EAP configureren tijdens de configuratie. Na de configuratie kunt u dit doen via \'Instellingen\', bij "<b>"Draadloos en netwerken"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Verbinding maken kan enkele minuten duren..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Raak "<b>"Volgende"</b>" aan om door te gaan met de configuratie."\n\n"Raak "<b>"Terug"</b>" aan om verbinding te maken met een ander Wi-Fi-netwerk."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"U kunt geen Wi-Fi-verbinding van het type EAP configureren tijdens de installatie. Na de installatie kunt u dit doen via \'Instellingen\', onder \'Draadloos en Netwerken\'."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synchronisatie-instellingen"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Er zijn momenteel problemen met de synchronisatie. Synchronisatie wordt snel opnieuw uitgevoerd."</string>
<string name="add_account_label" msgid="7811707265834013767">"Account toevoegen"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synchroniseren UIT"</string>
<string name="sync_error" msgid="5060969083117872149">"Synchronisatiefout"</string>
<string name="settings_backup" msgid="2274732978260797031">"Back-up van instellingen maken"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Back-up maken van mijn instellingen"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Nu synchroniseren"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Synchronisatie annuleren"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Aanraken om nu te synchroniseren<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Agenda"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contacten"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Welkom bij Google Sync!"</font>" "\n"Een benadering van Google voor de synchronisatie van gegevens, zodat u altijd en overal toegang heeft tot uw contacten, afspraken en nog veel meer."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Synchronisatie-instellingen van de toepassing"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Gegevens en synchronisatie"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Wachtwoord wijzigen"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Accountinstellingen"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Account verwijderen"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Een account toevoegen"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Voltooien"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Account verwijderen"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Wilt u dit account echt verwijderen? Als u het account verwijdert, worden ook alle berichten, contacten en andere gegevens van de telefoon verwijderd. "\n"Doorgaan?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Wilt u dit account echt verwijderen? Als u het account verwijdert, worden ook alle berichten, contacten en andere gegevens van de telefoon verwijderd. "\n"Doorgaan?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Dit account is vereist voor sommige toepassingen. U kunt het account alleen verwijderen door de tablet te herstellen naar de fabrieksinstellingen (al uw persoonlijke gegevens worden gewist). U kunt dit doen via de toepassing Instellingen, bij \'Privacy\'."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Dit account is vereist voor sommige toepassingen. U kunt het account alleen verwijderen door de telefoon te herstellen naar de fabrieksinstellingen (al uw persoonlijke gegevens worden gewist). U kunt dit doen via de toepassing Instellingen, bij \'Privacy\'."</string>
- <string name="provider_label" msgid="7724593781904508866">"Abonnementen doorvoeren"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"<xliff:g id="AUTHORITY">%s</xliff:g> synchroniseren"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Kan niet handmatig synchroniseren"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synchroniseren is op dit moment uitgeschakeld voor dit item. Als u uw voorkeuren wilt wijzigen, schakelt u achtergrondgegevens en automatisch synchroniseren tijdelijk in."</string>
- <string name="enter_password" msgid="3268224850821675915">"Geef een wachtwoord op om de opslag te decoderen"</string>
- <string name="try_again" msgid="5904121494468643129">"Probeer het opnieuw"</string>
- <string name="service_busy" msgid="225227519012409130">"Service bezet, probeer het opnieuw"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-pl/arrays.xml b/res/values-pl/arrays.xml
index 7c3c783..1195873 100644
--- a/res/values-pl/arrays.xml
+++ b/res/values-pl/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Niektóre animacje okien są wyświetlane"</item>
<item msgid="488968798204105119">"Wszystkie animacje okien są wyświetlane"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekund"</item>
- <item msgid="8881760709354815449">"30 sekund"</item>
- <item msgid="7589406073232279088">"1 minuta"</item>
- <item msgid="7001195990902244174">"2 minuty"</item>
- <item msgid="7489864775127957179">"5 min"</item>
- <item msgid="2314124409517439288">"10 min"</item>
- <item msgid="6864027152847611413">"30 min"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"natychmiast"</item>
- <item msgid="6736512735606834431">"5 sekund"</item>
- <item msgid="8044619388267891375">"15 sekund"</item>
- <item msgid="1822002388249545488">"30 sekund"</item>
- <item msgid="8538071621211916519">"1 minuta"</item>
- <item msgid="5663439580228932882">"2 minuty"</item>
- <item msgid="49888496216106852">"5 min"</item>
- <item msgid="9002737361305019353">"10 min"</item>
- <item msgid="4322676235684793329">"30 min"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Bardzo wolno"</item>
<item msgid="2361722960903353554">"Wolno"</item>
@@ -74,8 +56,8 @@
<item msgid="4699640516390840297">"Bardzo wysokie"</item>
</string-array>
<string-array name="tts_lang_entries">
- <item msgid="478030717868306353">"angielski (USA)"</item>
- <item msgid="5192284521396794598">"angielski (UK)"</item>
+ <item msgid="478030717868306353">"angielski (Stany Zjednoczone)"</item>
+ <item msgid="5192284521396794598">"angielski (Wielka Brytania)"</item>
<item msgid="3000262452051711991">"francuski"</item>
<item msgid="9214080387341763401">"niemiecki"</item>
<item msgid="5972100016440094433">"włoski"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Doskonała"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Po wyłączeniu ekranu"</item>
+ <item msgid="3804733751095821976">"Po wyłączeniu ekranu"</item>
<item msgid="1549288661423279207">"Nigdy, gdy podłączony"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nigdy"</item>
+ <item msgid="1986753720941888596">"Nigdy"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatyczna"</item>
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
index b137bfe..fc2bff7 100644
--- a/res/values-pl/strings.xml
+++ b/res/values-pl/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Rozładowana"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Przepięcie"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Nieznany błąd"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Zimna"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Wykrywalny"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Wykrywalny przez <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> s …"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Przeszukiwanie"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Żądanie parowania Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Żądanie parowania"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Wybierz, aby sparować z urządzeniem <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Pokazuj odebrane pliki"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Pokazuj listę plików odebranych za pomocą Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selektor urządzenia Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Prośba o pozwolenie na włączenie modułu Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Aplikacja prosi o pozwolenie na włączenie modułu Bluetooth. Czy chcesz na to zezwolić?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Aplikacja w tablecie prosi o pozwolenie na włączenie modułu Bluetooth i ustawienie tabletu jako wykrywalnego przez inne urządzenia na czas <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Czy chcesz na to zezwolić?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Aplikacja w telefonie prosi o pozwolenie na włączenie modułu Bluetooth i ustawienie telefonu jako wykrywalnego przez inne urządzenia na czas <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Czy chcesz na to zezwolić?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Trwa włączanie modułu Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Połącz automatycznie"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Ustawienia daty i godziny"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 (po południu)"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Rozpocznij <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konto:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Ustawienia serwera proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Ustawienia serwera proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Ustaw globalny serwer proxy HTTP i listę wykluczeń"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Wyczyść"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Anuluj"</string>
<string name="settings_label" msgid="1626402585530130914">"Ustawienia"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Ustawienia"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Wybierz skrót do ustawień"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Ustawienia"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Tryb samolotowy"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Wyłącz wszystkie połączenia bezprzewodowe"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Wyłączanie połączeń bezprzewodowych..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Włączanie połączeń bezprzewodowych..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Sieci zwykłe i bezprzewodowe"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Sieci zwykłe i bezprzewodowe"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Ustawienia sieci zwykłej i bezprzewodowej"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Zarządzaj połączeniami Wi-Fi i Bluetooth, trybem samolotowym, sieciami komórkowymi i VPN."</string>
<string name="roaming" msgid="3596055926335478572">"Dane w roamingu"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Połącz z usługami transmisji danych w roamingu"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Wybór operatora"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Wybierz operatora sieci"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data i godzina"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Ustaw datę i godzinę"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Ustaw format daty, godziny i strefę czasową"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatyczna data i godzina"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Użyj czasu podanego przez sieć"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sortuj według strefy czasowej"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Godzina"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Czas oczekiwania"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Zablokuj ekran po <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> od automatycznego wyłączenia ekranu"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Blokuj urządzenie po czasie oczekiwania"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Pokaż informacje o właścicielu na ekranie blokady"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Informacje o właścicielu"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Ustaw funkcję Moja lokalizacja, odblokowywanie ekranu, blokadę karty SIM, blokadę magazynu danych logowania."</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Ustaw funkcję Moja lokalizacja, odblokowywanie ekranu, blokadę magazynu danych uwierzytelniania"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Hasła"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Szyfrowanie urządzenia"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Zaszyfruj dane na urządzeniu"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Zaszyfruj dane na urządzeniu"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Wymaga ustawienia kodu PIN lub hasła do odblokowania urządzenia"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Wymaga ustawienia kodu PIN lub hasła do odblokowania urządzenia"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Zaszyfrowane"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Możesz zaszyfrować swoje konta, ustawienia, pobrane aplikacje wraz z danymi, pliki multimedialne i inne pliki. Po zaszyfrowaniu telefonu jedynym sposobem na jego odszyfrowanie jest przywrócenie danych fabrycznych, co jest równoznaczne z usunięciem z telefonu wszystkich danych."\n\n"Proces szyfrowania może trwać do godziny. Przed rozpoczęciem upewnij się, że bateria jest naładowana, a w trakcie szyfrowania nie odłączaj telefonu od zasilania. Przerwanie procesu szyfrowania spowoduje utratę części lub wszystkich danych."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Możesz zaszyfrować swoje konta, ustawienia, pobrane aplikacje wraz z danymi, pliki multimedialne i inne pliki. Po zaszyfrowaniu telefonu jedynym sposobem na jego odszyfrowanie jest przywrócenie danych fabrycznych, co jest równoznaczne z usunięciem z telefonu wszystkich danych."\n\n"Proces szyfrowania może trwać do godziny. Przed rozpoczęciem upewnij się, że bateria jest naładowana, a w trakcie szyfrowania nie odłączaj telefonu od zasilania. Przerwanie procesu szyfrowania spowoduje utratę części lub wszystkich danych."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Zaszyfruj tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Zaszyfruj telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Potwierdź szyfrowanie"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Zaszyfrować dane użytkownika? Ta operacja jest nieodwracalna, a jej przerwanie grozi utratą danych! Proces szyfrowania może trwać do godziny."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Zaszyfrować dane użytkownika? Ta operacja jest nieodwracalna, a jej przerwanie grozi utratą danych! Proces szyfrowania może trwać do godziny."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Szyfrowanie"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Spróbuj ponownie za ^1 s."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfiguruj blokadę ekranu"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfiguruj blokadę ekranu"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Zabezpieczenie ekranu"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ustaw blokadę ekranu"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Zmień ustawienia blokady ekranu"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Zmień lub wyłącz zabezpieczenie ekranu (wzór, PIN lub hasło)"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Wybierz sposób blokowania ekranu"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Wyłączone"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nigdy nie blokuj ekranu"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Brak zabezpieczenia"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Nie wymagaj wzoru, kodu PIN ani hasła do odblokowania ekranu"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nie pokazuj ekranu blokowania"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Brak"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Wyłącz zabezpieczenie ekranu"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Wzór"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Wymagaj wzoru do odblokowania ekranu"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Narysuj wzór do odblokowania ekran"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Kod PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Wymagaj kodu PIN do odblokowania ekranu"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Wpisz kod PIN do odblokowania ekranu"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Hasło"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Wymagaj hasła do odblokowania ekranu"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Wpisz hasło do odblokowania ekranu"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Wyłączone przez zdalnego administratora urządzenia"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Wyłącz"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Brak zabezpieczenia"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Zabezpieczenie wzorem"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Zabezpieczenie kodem PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Zabezpieczenie hasłem"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Wyłącz blokadę ekranu"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Usuń wzór odblokowania"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Usuń kod PIN odblokowania"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Administrator urządzenia nie zezwala na używanie poprzedniego hasła"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Anuluj"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Anuluj"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Dalej"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administracja urządzeniem"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administratorzy urządzenia"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Wyświetl lub dezaktywuj administratorów urządzenia"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Wybierz administratorów"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Dodaj lub usuń administratorów urządzenia"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Włącz Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Ustawienia Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Ustawienia Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Zarządzaj połączeniami, ustaw nazwę urządzenia i możliwość wykrycia"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Prośba o utworzenie powiązania Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Wprowadź kod PIN, aby sparować z urządzeniem „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”. (Wypróbuj 0000 lub 1234). Konieczne może być wprowadzenie tego samego kodu PIN na urządzeniu Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Wpisz klucz, aby sparować z urządzeniem „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Aby powiązać z „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”, potwierdź, że przedstawiony został klucz: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"Urządzenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"chce utworzyć powiązanie."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Wpisz kod „<xliff:g id="PASSKEY">%2$s</xliff:g>” na urządzeniu „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>” do sparowania, a następnie naciśnij Return lub Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Powiąż"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nie wykonuj powiązania"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"urządzenie Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opcje…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Połącz z siecią…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimedia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Zestaw głośnomówiący"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transfer"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Urządzenie wejściowe"</string>
- <string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Urządzenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g> zostanie odłączone od funkcji audio multimediów."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Urządzenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g> zostanie odłączone od zestawu głośnomówiącego."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> zostanie odłączony od urządzenia wejściowego."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Urządzenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g> zostanie odłączone."</string>
+ <string name="bluetooth_profile_pan" msgid="4225813400648547154">"Powiązanie"</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opcje urządzenia <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Czynności na urządzeniu"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Połącz"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Użyj dla funkcji audio telefonu"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Użyj do transferu plików"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Użyj do wprowadzania"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Użyj na potrzeby dostępu do internetu"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Ustawienia podstawki"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Używaj podstawki na potrzeby dźwięku"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Jako telefon w trybie głośnika"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Zapamiętaj ustawienia"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"Komunikacja NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Używaj komunikacji Near Field Communication do odczytywania i wymiany tagów"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Wystąpił błąd."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Włącz Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Ustawienia Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Nie można skanować w poszukiwaniu sieci"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Powiadomienie o sieci"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Powiadom mnie, gdy będę w zasięgu otwartej sieci"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Zasada usypiania Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Określ, kiedy przełączyć Wi-Fi na komórkowe połączenie danych"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Wystąpił problem podczas ustawiania zasad usypiania."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Dodaj sieć Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Sieci Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Skanuj"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modyfikuj sieć"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Konfiguracja sieci"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Wpisz kod PIN z punktu dostępu"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Konfiguracja WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfiguracja metody z kodem PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Wprowadź kod PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> w punkcie dostępu"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Konfigurowanie WPS jest już w toku i może potrwać kilkadziesiąt sekund"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Nie udało się uruchomić WPS. Spróbuj ponownie."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Identyfikator SSID sieci"</string>
<string name="wifi_security" msgid="6603611185592956936">"Zabezpieczenia"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Siła sygnału"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Zapomnij"</string>
<string name="wifi_save" msgid="3331121567988522826">"Zapisz"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Anuluj"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Wykryto inną sesję WPS. Spróbuj ponownie za kilka minut."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Zaawansowane"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Zasady usypiania Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Określ, kiedy przełączyć Wi-Fi na komórkowe połączenie danych"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Wystąpił problem podczas ustawiania zasad usypiania."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Pasmo częstotliwości sieci Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Określ używany zakres częstotliwości"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Wystąpił problem podczas ustawiania częstotliwości."</string>
@@ -514,17 +494,17 @@
<string name="wifi_dns2" msgid="1368601006824882659">"DNS 2"</string>
<string name="wifi_gateway" msgid="163914742461092086">"Brama"</string>
<string name="wifi_network_prefix_length" msgid="3028785234245085998">"Długość przedrostka sieci"</string>
- <string name="wifi_tether_checkbox_text" msgid="6961605862058056788">"Przenośny punkt Wi-Fi"</string>
+ <string name="wifi_tether_checkbox_text" msgid="6961605862058056788">"Przenośny punkt dostępu Wi-Fi"</string>
<string name="wifi_tether_enabled_subtext" msgid="8948641212931906143">"Przenośny punkt dostępu <xliff:g id="NETWORK_SSID">%1$s</xliff:g> jest aktywny"</string>
<string name="wifi_tether_failed_subtext" msgid="2654888578056042315">"Błąd przenośnego punktu dostępu Wi-Fi"</string>
- <string name="wifi_tether_settings_text" msgid="123573487844470195">"Ustawienia punktów Wi-Fi"</string>
- <string name="wifi_tether_settings_subtext" msgid="8064755682383367008">"Konfiguruj przenośne punkty dostępu Wi-Fi"</string>
- <string name="wifi_tether_settings_title" msgid="3749063216348284432">"Ustawienia punktów Wi-Fi"</string>
- <string name="wifi_tether_configure_ap_text" msgid="3474995108398156258">"Skonfiguruj punkt Wi-Fi"</string>
- <string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Przenośny punkt Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
+ <string name="wifi_tether_settings_text" msgid="123573487844470195">"Ustawienia przenośnych punktów dostępu Wi-Fi"</string>
+ <string name="wifi_tether_settings_subtext" msgid="8064755682383367008">"Skonfiguruj przenośne punkty dostępu Wi-Fi i zarządzaj nimi"</string>
+ <string name="wifi_tether_settings_title" msgid="3749063216348284432">"Ustawienia przenośnych punktów dostępu Wi-Fi"</string>
+ <string name="wifi_tether_configure_ap_text" msgid="3474995108398156258">"Skonfiguruj punkt dostępu Wi-Fi"</string>
+ <string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Przenośny punkt dostępu Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Punkt dostępu Android"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Dźwięk"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Ekran"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Wyświetlacz"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ustawienia dźwięku"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tryb cichy"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Wycisz wszystkie dźwięki z wyjątkiem multimediów i alarmów"</string>
@@ -554,8 +534,8 @@
<string name="dtmf_tone_enable_summary_on" msgid="3028201873989887327">"Odtwarzaj dźwięki podczas wybierania numeru"</string>
<string name="dtmf_tone_enable_summary_off" msgid="7791065951268525678">"Odtwarzaj dźwięki podczas wybierania numeru"</string>
<string name="sound_effects_enable_title" msgid="3197313718929122833">"Dotyk ekranu"</string>
- <string name="sound_effects_enable_summary_on" msgid="6154141289879491329">"Odtwarzaj dźwięki podczas wybierania opcji na ekranie"</string>
- <string name="sound_effects_enable_summary_off" msgid="3447739581759560125">"Odtwarzaj dźwięki podczas wybierania opcji na ekranie"</string>
+ <string name="sound_effects_enable_summary_on" msgid="6154141289879491329">"Odtwarzaj dźwięk podczas wybierania opcji na ekranie"</string>
+ <string name="sound_effects_enable_summary_off" msgid="3447739581759560125">"Odtwarzaj dźwięk podczas wybierania opcji na ekranie"</string>
<string name="lock_sounds_enable_title" msgid="1575990840389107141">"Dźwięki blokady ekranu"</string>
<string name="lock_sounds_enable_summary_on" msgid="145741024028391473">"Odtwarzaj dźwięki podczas blokowania i odblokowywania ekranu"</string>
<string name="lock_sounds_enable_summary_off" msgid="8481243116223542804">"Odtwarzaj dźwięki podczas blokowania i odblokowywania ekranu"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Automatycznie przełącz orientację przy obracaniu telefonu"</string>
<string name="brightness" msgid="2354961343555249270">"Jasność ekranu"</string>
<string name="brightness_summary" msgid="838917350127550703">"Dostosuj jasność ekranu"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Czas oczekiwania"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Ekran wyłączy się automatycznie po upływie <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Wygaszanie ekranu"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatyczna jasność"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Ustawienia blokady karty SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Ustaw blokadę SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Niedostępna"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Informacje o telefonie"</string>
<string name="device_status" msgid="607405385799807324">"Informacje o telefonie"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Stan baterii, sieci i inne informacje"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, numer telefonu, sygnał itp."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Numer telefonu, sygnał itd."</string>
<string name="storage_settings" msgid="4211799979832404953">"Pamięć"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Ustawienia pamięci"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Odłącz nośnik USB i wyświetl ilość dostępnej pamięci"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Odłącz kartę SD, pokaż ilość dostępnej pamięci w telefonie"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mój numer telefonu"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mój numer telefonu"</string>
<string name="status_min_number" msgid="3519504522179420597">"Numer MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Wersja listy PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"Numer MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Pamięć wewnętrzna"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Nośnik USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Karta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Dostępne"</string>
- <string name="memory_size" msgid="5458889090691922288">"Łącznie"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Obliczanie..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplikacje"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Multimedia"</string>
+ <string name="memory_available" msgid="418542433817289474">"Dostępne miejsce"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Całkowita pojemność"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Pamięć na aplikacje"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Pamięć na multimedia"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Odłącz pamięć współdzieloną"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Odłącz kartę SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Odłącz wewnętrzny nośnik USB"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Włóż kartę SD w celu zainstalowania"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Podłącz nośnik USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Zainstaluj kartę SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Podłącz nośnik USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Podłącz wewnętrzny nośnik USB"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Zainstaluj kartę SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Wyczyść nośnik USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Wyczyść kartę SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Wymazuje wszystkie dane z wewnętrznego nośnika USB, np. pliki muzyczne i zdjęcia"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Wymazuje z karty SD telefonu wszystkie dane, takie jak muzyka czy zdjęcia"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Wymazuje wszystkie dane z wewnętrznego nośnika USB, np. pliki muzyczne i zdjęcia"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Niedostępna"</string>
<string name="read_only" msgid="6702420168629076340">" (Tylko do odczytu)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Odłącz nośnik USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Spowoduje to wymazanie wszystkich danych z "<b>"wewnętrznej pamięci"</b>" tabletu, w tym:"\n\n<li>"danych konta Google,"</li>\n<li>"danych i ustawień systemu oraz aplikacji,"</li>\n<li>"pobranych aplikacji."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Spowoduje to wymazanie wszystkich danych z "<b>"wewnętrznej pamięci"</b>" telefonu, w tym:"\n\n<li>"danych konta Google,"</li>\n<li>"danych i ustawień systemu oraz aplikacji,"</li>\n<li>"pobranych aplikacji."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Zalogowano się na następujące konta:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Muzyka"</li>\n<li>"Zdjęcia"</li>\n<li>"Inne dane użytkownika"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Aby usunąć również muzykę, zdjęcia i inne dane użytkownika, należy wymazać "<b>"nośnik USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Jeśli chcesz usunąć również muzykę, zdjęcia i inne dane użytkownika, konieczne będzie wymazanie zawartości "<b>"karty SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Aby usunąć również muzykę, zdjęcia i inne dane użytkownika, należy wymazać "<b>"nośnik USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Wyczyść nośnik USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Wyczyść kartę SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Wymaż wszystkie dane z wewnętrznego nośnika USB, np. pliki muzyczne i zdjęcia."</string>
@@ -763,11 +743,11 @@
<string name="media_format_gesture_explanation" product="default" msgid="1681213416497647321">"Aby potwierdzić zamiar wyczyszczenia karty SD, musisz narysować wzór odblokowania."</string>
<string name="call_settings_title" msgid="5188713413939232801">"Ustawienia połączeń"</string>
<string name="call_settings_summary" msgid="7291195704801002886">"Poczta głosowa, przekierowania połączeń, poł. oczekujące, ID rozmówcy"</string>
- <string name="tether_settings_title_usb" msgid="6688416425801386511">"Tethering przez USB"</string>
+ <string name="tether_settings_title_usb" msgid="6688416425801386511">"Powiązanie USB"</string>
<string name="tether_settings_title_wifi" msgid="3277144155960302049">"Przenośny punkt dostępu"</string>
- <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Tethering przez Bluetooth"</string>
- <string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"Tethering"</string>
- <string name="tether_settings_title_all" msgid="8356136101061143841">"Tethering i punkt dostępu"</string>
+ <string name="tether_settings_title_bluetooth" msgid="355855408317564420">"Powiązanie Bluetooth"</string>
+ <string name="tether_settings_title_usb_bluetooth" msgid="5355828977109785001">"Powiązanie"</string>
+ <string name="tether_settings_title_all" msgid="8356136101061143841">"Powiązanie i punkt dostępu"</string>
<string name="tether_settings_summary_usb" product="tablet" msgid="785883365108362248">"Udostępniaj komórkowe połączenie transmisji danych tabletu przez USB"</string>
<string name="tether_settings_summary_usb" product="default" msgid="3562431455625637370">"Udostępniaj bezprzewodowe połączenie transmisji danych swojego telefonu przez USB"</string>
<string name="tether_settings_summary_wifi" msgid="5474383125137372164">"Udostępniaj komórkowe połączenie transmisji danych jako punkt dostępu Wi-Fi"</string>
@@ -781,17 +761,17 @@
<string name="tether_settings_summary_all" product="tablet" msgid="6612660164315153427">"Udostępniaj komórkowe połączenie transmisji danych tabletu przez USB, Wi-Fi lub Bluetooth"</string>
<string name="tether_settings_summary_all" product="default" msgid="1171769255924636665">"Udostępniaj komórkowe połączenie transmisji danych telefonu przez USB, Wi-Fi lub Bluetooth"</string>
<string name="usb_title" msgid="7483344855356312510">"USB"</string>
- <string name="usb_tethering_button_text" msgid="585829947108007917">"Tethering przez USB"</string>
+ <string name="usb_tethering_button_text" msgid="585829947108007917">"Powiązanie USB"</string>
<string name="usb_tethering_available_subtext" msgid="156779271296152605">"Podłączono USB – zaznacz, aby powiązać"</string>
<string name="usb_tethering_active_subtext" msgid="8916210851136467042">"Powiązano"</string>
<string name="usb_tethering_storage_active_subtext" msgid="6608933594288072573">"Nie można utworzyć powiązania, gdy nośnik USB jest w użyciu"</string>
<string name="usb_tethering_unavailable_subtext" msgid="1044622421184007254">"Nie podłączono USB"</string>
- <string name="usb_tethering_errored_subtext" msgid="1377574819427841992">"Błąd tetheringu przez USB"</string>
- <string name="bluetooth_tether_checkbox_text" msgid="2379175828878753652">"Tethering przez Bluetooth"</string>
- <string name="bluetooth_tethering_available_subtext" msgid="3317112145693933963">"Tethering przez Bluetooth włączony, brak połączenia"</string>
- <string name="bluetooth_tethering_connected_subtext" msgid="893888246368164894">"Tethering przez Bluetooth włączony, połączenie gotowe"</string>
- <string name="bluetooth_tethering_off_subtext" msgid="1798863866978968964">"Tethering przez Bluetooth wyłączony"</string>
- <string name="bluetooth_tethering_errored_subtext" msgid="1344187103463073993">"Błąd tetheringu przez Bluetooth"</string>
+ <string name="usb_tethering_errored_subtext" msgid="1377574819427841992">"Błąd powiązania USB"</string>
+ <string name="bluetooth_tether_checkbox_text" msgid="2379175828878753652">"Powiązanie Bluetooth"</string>
+ <string name="bluetooth_tethering_available_subtext" msgid="3317112145693933963">"Powiązanie Bluetooth włączone, brak połączenia"</string>
+ <string name="bluetooth_tethering_connected_subtext" msgid="893888246368164894">"Powiązanie Bluetooth włączone, połączenie gotowe"</string>
+ <string name="bluetooth_tethering_off_subtext" msgid="1798863866978968964">"Powiązanie Bluetooth wyłączone"</string>
+ <string name="bluetooth_tethering_errored_subtext" msgid="1344187103463073993">"Błąd powiązania Bluetooth"</string>
<string name="bluetooth_tethering_overflow_error" msgid="2222060504731415763">"Nie można powiązać więcej niż <xliff:g id="MAXCONNECTION">%1$d</xliff:g> urządzeń"</string>
<string name="bluetooth_untether_blank" msgid="2871192409329334813">"Powiązanie z urządzeniem <xliff:g id="DEVICE_NAME">%1$s</xliff:g> zostanie anulowane."</string>
<string name="tethering_help_button_text" msgid="656117495547173630">"Pomoc"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Użyj wspomaganego systemu GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Użyj serwera do wspomagania systemu GPS (usuń zaznaczenie, aby zmniejszyć ruch sieciowy)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Użyj serwera do wspomagania systemu GPS (usuń zaznaczenie, aby zwiększyć wydajność systemu GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Użyj lokalizacji przy wyszukiwaniu Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Użyj lokalizacji w wynikach wyszukiwania Google oraz innych usługach Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokalizacja będzie uwzględniana w wynikach wyszukiwania Google i innych usługach Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Użyj informacji o lokalizacji na potrzeby wyszukiwarki Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Użyj informacji o lokalizacji na potrzeby wyszukiwarki Google oraz innych usług Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Informacje o lokalizacji są używane na potrzeby wyników wyszukiwania Google oraz innych usług Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Informacje o tablecie"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Informacje o telefonie"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Wyświetl informacje prawne, stan, wersję oprogramowania"</string>
@@ -829,10 +809,10 @@
<string name="settings_safetylegal_activity_unreachable" msgid="170670055116721810">"Brak połączenia transmisji danych. Aby wyświetlić te informacje teraz, przejdź do strony %s na dowolnym komputerze połączonym z internetem."</string>
<string name="settings_safetylegal_activity_loading" msgid="8059022597639516348">"Trwa wczytywanie..."</string>
<string name="lockpassword_choose_your_password_header" msgid="8624900666929394990">"Wybierz hasło"</string>
- <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Wybierz wzór"</string>
+ <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Wybierz swój wzór"</string>
<string name="lockpassword_choose_your_pin_header" msgid="7598849519816138302">"Wybierz kod PIN"</string>
<string name="lockpassword_confirm_your_password_header" msgid="6308478184889846633">"Potwierdź hasło"</string>
- <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Potwierdź wzór"</string>
+ <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Potwierdź swój wzór"</string>
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"Potwierdź kod PIN"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"Hasła nie są identyczne"</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"Kody PIN nie są identyczne"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Hasło zostało ustawione"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Kod PIN został ustawiony"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Wzór został ustawiony"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Ekran blokady"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Odblokowanie ekranu"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Zmień wzór odblokowania"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Zmień kod PIN odblokowania"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Potwierdź zapisany wzór"</string>
@@ -870,10 +850,13 @@
<string name="next_button_label" msgid="8890792540116568321">"Dalej"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Zabezpieczanie tabletu"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Zabezpieczanie telefonu"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Chroń tablet przed nieautoryzowanym użyciem przez utworzenie osobistego wzoru odblokowania ekranu. Na następnym ekranie połącz dotknięciami co najmniej cztery kropki w dowolnej kolejności."\n\n"Gotów? Dotknij opcji „Dalej”."</string>
- <string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Chroń swój telefon przed niepowołanym użyciem, ustawiając blokadę ekranu. "\n<font height="17">\n</font><b>"1"</b>" Na następnym ekranie zobaczysz, jak narysować przykładowy wzorzec. "\n<font height="17">\n</font><b>"2"</b>" Jak tylko będziesz gotów, narysuj własny wzorzec blokady ekranu. Wypróbuj różne wzorce, łącząc co najmniej cztery kropki. "\n<font height="17">\n</font><b>"3"</b>" Ponownie narysuj swój wzorzec, aby go potwierdzić. "\n<font height="17">\n</font><b>"Wszystko gotowe? Kliknij „Dalej”"</b>". "\n<font height="3">\n</font>"Aby pozostawić telefon bez blokady, kliknij „Anuluj”."</font></string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
+ <string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Chroń swój telefon przed nieautoryzowanym użyciem, tworząc osobisty wzorzec odblokowywania ekranu. "\n<font height="17">\n</font><b>"1"</b>" Na następnym ekranie obejrzyj procedurę rysowania przykładowego wzorca. "\n<font height="17">\n</font><b>"2"</b>" Po przygotowaniu się narysuj własny osobisty wzorzec odblokowywania. Wypróbuj różne wzorce, łącząc co najmniej cztery kropki. "\n<font height="17">\n</font><b>"3"</b>" Ponownie narysuj swój wzorzec, aby go potwierdzić. "\n<font height="17">\n</font><b>"Wszystko gotowe? Dotknij przycisku „Dalej”"</b>". "\n<font height="3">\n</font>"Aby pozostawić telefon bez ochrony, dotknij przycisku „Anuluj”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Zarządzaj aplikacjami"</string>
- <string name="manageapplications_settings_summary" msgid="6097117021500651232">"Zarządzaj zainstalowanymi aplikacjami lub usuwaj je"</string>
+ <string name="manageapplications_settings_summary" msgid="6097117021500651232">"Zarządzaj zainstalowanymi aplikacjami oraz usuwaj je"</string>
<string name="applications_settings" msgid="3736173521008476946">"Aplikacje"</string>
<string name="applications_settings_summary" msgid="2714215108369119717">"Zarządzaj aplikacjami, skonfiguruj skróty szybkiego uruchamiania"</string>
<string name="applications_settings_header" msgid="6018266337275422250">"Ustawienia aplikacji"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Razem"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplikacja"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dane"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Nośnik USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Karta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Odinstaluj"</string>
<string name="disable_text" msgid="6544054052049395202">"Wyłącz"</string>
<string name="enable_text" msgid="9217362512327828987">"Włącz"</string>
@@ -918,7 +899,7 @@
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"Na karcie SD"</string>
<string name="disabled" msgid="9206776641295849915">"Wyłączone"</string>
<string name="no_applications" msgid="5190227407135243904">"Brak aplikacji."</string>
- <string name="internal_storage" msgid="1584700623164275282">"Pamięć wewnętrzna"</string>
+ <string name="internal_storage" msgid="1584700623164275282">"Pamięć wewn."</string>
<string name="sd_card_storage" product="nosdcard" msgid="2673203150465132465">"Nośnik USB"</string>
<string name="sd_card_storage" product="default" msgid="7623513618171928235">"Pamięć karty SD"</string>
<string name="recompute_size" msgid="7722567982831691718">"Przeliczanie rozmiaru..."</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Czy zatrzymać usługę systemową?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Czy na pewno chcesz zatrzymać tę usługę systemową? Jeśli tak, niektóre funkcje tabletu mogą przestać poprawnie działać do chwili jego wyłączenia i ponownego włączenia."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Czy na pewno chcesz zatrzymać tę usługę systemową? Jeśli tak, niektóre funkcje telefonu mogą przestać poprawnie działać do chwili jego wyłączenia i ponownego włączenia."</string>
- <string name="language_settings" msgid="5292716747264442359">"Język i wprowadzanie danych"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Język i wprowadzanie danych"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Regionalne i język"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Ustawienia języka i klawiatury"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Ustawienia języka"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Ustawienia klawiatury"</string>
<string name="phone_language" msgid="1165758957501090679">"Wybierz język"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Autokorekta"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Poprawiaj błędnie wpisane słowa"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Wstawiaj wielkie litery"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Wielka litera po kropce"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Zaczynaj zdania wielką literą"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Łatwa interpunkcja"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Ustawienia klawiatury fizycznej"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Skróty"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Wprowadzanie tekstu"</string>
<string name="input_method" msgid="5434026103176856164">"Metoda wprowadzania"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Bieżąca metoda wprowadzania"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Wybór metody wprowadzania"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatyczny"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Zawsze pokazuj"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Zawsze ukrywaj"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfiguruj metody wprowadzania"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Ustawienia"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktywne metody wprowadzania"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Użyj języka systemu"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Ustawienia <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Wybierz aktywne metody wprowadzania"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ustawienia klawiatury ekranowej"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Klawiatura wbudowana"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Ustawienia wbudowanej klawiatury fizycznej"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi na czas"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi na czas"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Historia – szczegóły"</string>
- <string name="details_title" msgid="3792801565213935385">"Szczegóły użycia"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Szczegóły użycia baterii"</string>
<string name="details_subtitle" msgid="32593908269911734">"Szczegóły użycia"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Dostosuj wykorzystanie energii"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Dołączone pakiety"</string>
@@ -1169,7 +1161,7 @@
<string name="recognizer_settings_title" msgid="6038598099039717232">"Rozpoznawanie mowy"</string>
<string name="recognizer_settings_summary" msgid="4472287934134546902">"Ustawienia dla „<xliff:g id="RECOGNIZER_NAME">%s</xliff:g>”"</string>
<string name="tts_settings" msgid="8186971894801348327">"Przetwarzanie tekstu na mowę"</string>
- <string name="tts_settings_title" msgid="4182348653053000933">"Przetwarzanie tekstu na mowę"</string>
+ <string name="tts_settings_title" msgid="4182348653053000933">"Ustawienia przetwarzania tekstu na mowę"</string>
<string name="use_default_tts_settings_title" msgid="1577063839539732930">"Używaj moich ustawień"</string>
<string name="use_default_tts_settings_summary" msgid="4253502106159206276">"Poniższe ustawienia domyślne zastępują ustawienia innych aplikacji"</string>
<string name="tts_default_settings_section" msgid="5787915620218907443">"Ustawienia domyślne"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Negocjowanie połączenia z serwerem nie powiodło się. Serwer może nie akceptować wybranej opcji szyfrowania. Czy chcesz sprawdzić ustawienie szyfrowania?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Dodaj sieć VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Dodaj sieć VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Szczegóły sieci VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Dodaj sieć VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Szczegóły profilu <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Sieci VPN"</string>
@@ -1285,35 +1278,48 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Konfiguruj wirtualne sieci prywatne (VPN) i zarządzaj nimi"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nie zmieniono)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nie ustawiono)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Magazyn danych logowania"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Magazyn danych logowania"</string>
<string name="credentials_access" msgid="4843187230913860492">"Dostęp do poufnych danych"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Zezwalaj aplikacjom na dostęp do bezpiecznych certyfikatów i innych danych logowania"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Zainstaluj z nośnika USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Zainstaluj z karty SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Zainstaluj certyfikaty z nośnika USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Zainstaluj certyfikaty z karty SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Ustaw hasło"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Ustaw lub zmień hasło do magazynu danych logowania:"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Wyczyść dane logowania"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Usuń całą zawartość i zresetuj hasło"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Wprowadź hasło"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Wprowadź hasło magazynu danych logowania."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Ustaw hasło do magazynu danych logowania. Musi ono mieć co najmniej 8 znaków."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Wprowadź hasło magazynu danych logowania."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Zainstaluj z nośnika USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Zainstaluj z karty SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instaluj szyf. cer. z USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Zainstaluj zaszyfrowane certyfikaty z karty SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Ustaw hasło"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Ustaw lub zmień hasło magazynu danych logowania"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Wyczyść magazyn"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Wyczyść całą zawartość magazynu danych logowania i zresetuj jego hasło"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Czy na pewno chcesz usunąć wszystkie dane logowania i zresetować hasło magazynu danych logowania?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Bieżące hasło:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nowe hasło:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Potwierdź nowe hasło:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Cała zawartość zostanie usunięta, a hasło zostanie zresetowane. Czy na pewno chcesz to zrobić?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Ustaw hasło dla magazynu danych logowania (co najmniej 8 znaków)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Wprowadź prawidłowe hasło."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Wprowadź prawidłowe hasło. Pozostała jedna próba wprowadzenia prawidłowego hasła, później zawartość magazynu danych logowania zostanie wyczyszczona."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Wprowadź prawidłowe hasło. Liczba pozostałych prób wprowadzenia prawidłowego hasła, zanim zawartość magazynu danych logowania zostanie wymazana: <xliff:g id="NUMBER">%1$d</xliff:g>."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Hasła nie są identyczne."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Musisz wprowadzić i potwierdzić hasło."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Wprowadź hasło."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Hasło musi mieć co najmniej 8 znaków."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Nieprawidłowe hasło."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Nieprawidłowe hasło. Pozostała jedna próba przed wyczyszczeniem magazynu danych logowania."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Nieprawidłowe hasło. Pozostała liczba prób przed wyczyszczeniem magazynu danych logowania: <xliff:g id="NUMBER">%1$d</xliff:g>."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Wyczyszczono magazyn danych logowania."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Magazyn danych uwierzytelniania został wyczyszczony."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Magazyn danych logowania jest włączony."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Magazyn danych logowania jest wyłączony."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"System szyfrowania plików"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Zaszyfruj prywatne dane użytkownika"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Włącz magazyn zaszyfrowanego systemu plików na potrzeby prywatnych danych użytkownika na tym urządzeniu"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Włączenie systemów szyfrowania plików wymaga wymazania danych urządzenia."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Wyłączenie systemów szyfrowania plików wymaga wymazania danych urządzenia."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Włącz"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Wyłącz"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Anuluj"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Zmiana trybu systemów szyfrowania plików została anulowana."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Ostrzeżenie dotyczące systemów szyfrowania plików"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Sygnał alarmowy"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Skonfiguruj sposób działania w przypadku połączenia alarmowego"</string>
- <string name="privacy_settings" msgid="9206631214140954954">"Dane użytkownika"</string>
- <string name="privacy_settings_title" msgid="1987089301293213705">"Ustawienia danych"</string>
+ <string name="privacy_settings" msgid="9206631214140954954">"Prywatność"</string>
+ <string name="privacy_settings_title" msgid="1987089301293213705">"Ustawienia prywatności"</string>
<string name="backup_section_title" msgid="8856083167469467588">"Tworzenie i przywracanie kopii zapasowej"</string>
<string name="personal_data_section_title" msgid="7815209034443782061">"Dane osobiste"</string>
<string name="backup_data_title" msgid="1239105919852668016">"Utwórz kopię zapasową moich danych"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Połączenia przychodzące"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Powiadomienia"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Reakcje"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Konfiguracja sieci Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Połącz z siecią Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Nawiązywanie połączenia z siecią Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Połączono z siecią Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Dodaj sieć"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Konfiguracja WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nie połączono"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Dodaj sieć"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Odśwież listę"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Zapisz"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Anuluj"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Trwa skanowanie sieci..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dotknij sieci, aby się z nią połączyć"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dotknij, aby wybrać sieć"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Połącz z istniejącą siecią"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Połącz z siecią niezabezpieczoną"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Wprowadź konfigurację sieci"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Łączenie..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Przejdź do następnego etapu"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Protokół EAP nie jest obsługiwany"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Podczas procesu konfiguracji nie można skonfigurować połączenia Wi-Fi zabezpieczonego protokołem EAP. Można to zrobić po zakończeniu tego procesu, wybierając w Ustawieniach opcję "<b>"Sieci zwykłe i bezprzewodowe"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Nawiązanie połączenia może potrwać kilka minut..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Dotknij opcji "<b>"Dalej"</b>", aby kontynuować konfigurację."\n\n"Dotknij opcji "<b>"Wstecz"</b>", aby połączyć się z inną siecią Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Nie można skonfigurować połączenia Wi-Fi zabezpieczonego protokołem EAP podczas procesu konfiguracji. Można to zrobić po zakończeniu tego procesu, wybierając w Ustawieniach opcję Sieci zwykłe i bezprzewodowe."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Ustawienia synchronizacji"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"W tej chwili występują problemy z synchronizacją. Synchronizacja będzie możliwa wkrótce."</string>
<string name="add_account_label" msgid="7811707265834013767">"Dodaj konto"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Synchronizacja jest wyłączona"</string>
<string name="sync_error" msgid="5060969083117872149">"Błąd synchronizacji"</string>
<string name="settings_backup" msgid="2274732978260797031">"Ustawienia kopii zapasowej"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Utwórz kopię zapasową moich ustawień"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Synchronizuj teraz"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Anuluj synchronizację"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Dotknij, aby zsynchronizować<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Kalendarz"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kontakty"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Google Sync – witamy!"</font>" "\n"Synchronizacja danych zapewniająca dostęp do kontaktów, terminów oraz innych informacji z dowolnego miejsca."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Ustawienia synchronizacji aplikacji"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dane i synchronizacja"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Zmień hasło"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Ustawienia konta"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Usuń konto"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Dodaj konto"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Zakończ"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Usuń konto"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Czy na pewno chcesz usunąć to konto? Operacja spowoduje również usunięcie z tabletu wszystkich wiadomości, kontaktów i innych danych powiązanych z kontem. "\n"Czy kontynuować?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Czy na pewno chcesz usunąć to konto? Operacja spowoduje również usunięcie z telefonu wszystkich wiadomości, kontaktów i innych danych powiązanych z kontem. "\n"Czy kontynuować?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"To konto jest wymagane przez niektóre aplikacje. Można je usunąć jedynie przez przywrócenie fabrycznych wartości domyślnych tabletu (co spowoduje usunięcie wszystkich danych osobistych). W tym celu należy przejść do sekcji Prywatność w aplikacji Ustawienia."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"To konto jest wymagane przez niektóre aplikacje. Można je usunąć jedynie przez przywrócenie fabrycznych wartości domyślnych telefonu (co spowoduje usunięcie wszystkich danych osobistych). W tym celu należy przejść do sekcji Prywatność w aplikacji Ustawienia."</string>
- <string name="provider_label" msgid="7724593781904508866">"Subskrypcje w trybie push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synchronizuj aplikację <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nie można ręcznie zsynchronizować"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synchronizacja tego elementu jest obecnie wyłączona. Aby zmienić ustawienie, tymczasowo włącz obsługę danych w tle i automatyczną synchronizację."</string>
- <string name="enter_password" msgid="3268224850821675915">"Wpisz hasło, aby odszyfrować pamięć"</string>
- <string name="try_again" msgid="5904121494468643129">"Spróbuj ponownie"</string>
- <string name="service_busy" msgid="225227519012409130">"Usługa jest zajęta. Spróbuj ponownie."</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-pt-rPT/arrays.xml b/res/values-pt-rPT/arrays.xml
index 60cc084..60cc7d6 100644
--- a/res/values-pt-rPT/arrays.xml
+++ b/res/values-pt-rPT/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"São apresentadas algumas animações de janela"</item>
<item msgid="488968798204105119">"São apresentadas todas as animações de janela"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segundos"</item>
- <item msgid="8881760709354815449">"30 segundos"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minutos"</item>
- <item msgid="7489864775127957179">"5 minutos"</item>
- <item msgid="2314124409517439288">"10 minutos"</item>
- <item msgid="6864027152847611413">"30 minutos"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"imediatamente"</item>
- <item msgid="6736512735606834431">"5 segundos"</item>
- <item msgid="8044619388267891375">"15 segundos"</item>
- <item msgid="1822002388249545488">"30 segundos"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minutos"</item>
- <item msgid="49888496216106852">"5 minutos"</item>
- <item msgid="9002737361305019353">"10 minutos"</item>
- <item msgid="4322676235684793329">"30 minutos"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Muito lenta"</item>
<item msgid="2361722960903353554">"Lenta"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excelente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Ao desligar o ecrã"</item>
+ <item msgid="3804733751095821976">"Ao desligar o ecrã"</item>
<item msgid="1549288661423279207">"Nunca quando ligado"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nunca"</item>
+ <item msgid="1986753720941888596">"Nunca"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automático"</item>
diff --git a/res/values-pt-rPT/strings.xml b/res/values-pt-rPT/strings.xml
index a4ce360..1d5f049 100644
--- a/res/values-pt-rPT/strings.xml
+++ b/res/values-pt-rPT/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Morto"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Sobretensão"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Erro desconhecido"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Frio"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Detectável"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Detectável durante <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> segundos…"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"A procurar"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Pedido de emparelhamento de Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Pedido de emparelhamento"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Seleccionar emparelhamento com <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Mostrar ficheiros recebidos"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Mostrar lista de ficheiros recebidos por Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Seleccionador de dispositivo Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Pedido de emparelhamento de Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Uma aplicação está a pedir autorização para activar o Bluetooth. Pretende fazê-lo?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Uma aplicação do seu tablet está a solicitar autorização para activar o Bluetooth e para que o seu tablet possa ser detectado por outros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. Pretende fazê-lo?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Uma aplicação do seu telefone está a solicitar autorização para activar o Bluetooth e para que o seu telefone possa ser detectado por outros dispositivos durante <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. Pretende fazê-lo?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"A ligar Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Ligação automática"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Definições de data e hora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Iniciar <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Conta:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Definições de proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Definições de proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Definir o proxy HTTP global e as listas de exclusão"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Limpar"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Porta"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Cancelar"</string>
<string name="settings_label" msgid="1626402585530130914">"Definições"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Definições"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Seleccionar atalho de definições"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Definições"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Modo de voo"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Desactivar todas as ligações sem fios"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"A desactivar ligações sem fios..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"A activar ligações sem fios…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Sem fios e redes"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Redes sem fios e outras"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Definições de rede sem fios"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Gerir Wi-Fi, Bluetooth, modo de avião, redes móveis e VPNs"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming de dados"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Ligar a serviços de dados em roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Selecção da operadora"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Seleccione um operador de rede"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data e hora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Definir data e hora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Definir data, hora, fuso horário e formatos"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Data e hora automáticas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utilizar hora fornecida na rede"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Ordenar por fuso horário"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Hora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tempo limite"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloquear ecrã <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> após o ecrã desligar automaticamente"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloquear o dispositivo ao passar o tempo limite"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostrar info. do proprietário no ecrã de bloqueio"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info do proprietário"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Definir A minha localização, desbloqueio do ecrã, bloqueio do cartão SIM, bloqueio do armazenamento de credenciais"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Definir O meu local, desbloqueio do ecrã, bloqueio do armazenamento de credenciais"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Palavras-passe"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Encriptação do dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Encriptar dados no dispositivo"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Encriptar dados no dispositivo"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Necessita de definir um pin ou uma palavra-passe de desbloqueio do dispositivo"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Necessita de definir um pin ou uma palavra-passe de desbloqueio do dispositivo"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Encriptado"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"É possível encriptar as suas contas, definições, aplicações transferidas e respectivos dados, multimédia e outros ficheiros. Após encriptar o seu telefone, não é possível desencriptá-lo a não ser que execute uma reposição de dados de fábrica, eliminando todos os dados do telefone."\n\n"A encriptação pode demorar até uma hora. Deve começar com uma bateria carregada e manter o tablet ligado até que a encriptação fique concluída. Se interromper o processo de encriptação, perderá alguns ou todos os seus dados."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"É possível encriptar as suas contas, definições, aplicações transferidas e respectivos dados, multimédia e outros ficheiros. Após encriptar o seu telefone, não é possível desencriptá-lo a não ser que execute uma reposição de dados de fábrica, eliminando todos os dados do telefone."\n\n"A encriptação pode demorar até uma hora. Deve começar com uma bateria carregada e manter o tablet ligado até que a encriptação fique concluída. Se interromper o processo de encriptação, perderá alguns ou todos os seus dados."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Encriptar tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Encriptar telefone"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmar encriptação"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Encriptar dados do utilizador? Esta operação não é reversível e não poderá ser interrompida sem perda de dados! A encriptação pode demorar até uma hora."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Encriptar dados do utilizador? Esta operação não é reversível e não poderá ser interrompida sem perda de dados! A encriptação pode demorar até uma hora."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Encriptação"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Tente novamente dentro de ^1 segundos."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Conf. ecrã de bloqueio"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar ecrã de bloqueio"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Segurança de desbloqueio do ecrã"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar bloqueio do ecrã"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Alterar bloqueio do ecrã"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Alterar ou desactivar segurança de padrão, PIN ou palavra-passe"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Escolha um método para bloquear o ecrã"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Desactivado"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nunca bloquear o ecrã"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Desprotegido"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Não necessita de sequência, PIN nem de palavra-passe para desbloquear o ecrã"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Não mostrar o ecrã de bloqueio"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nenhuma"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Desactivar segurança de desbloqueio do ecrã"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Padrão"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Requer sequência para desbloquear o ecrã"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Desenhar padrão para desbloquear ecrã"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Requer PIN numérico para desbloquear o ecrã"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Introduzir um PIN numérico para desbloquear o ecrã"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Palavra-passe"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Requer palavra-passe para desbloquear o ecrã"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Introduzir uma palavra-passe para desbloquear ecrã"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Desactiv. pelo adminis. do dispositivo remoto"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Desligar"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Desprotegido"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Protegido com sequência"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Protegido com PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Protegido com palavra-passe"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Desactivar bloqueio do ecrã"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Remover padrão de desbloqueio"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Remover PIN de desbloqueio"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"O administrador do dispositivo proíbe a utilização de uma palavra-passe recente"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancelar"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancelar"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Seguinte"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administração do dispositivo"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administradores do dispositivo"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Ver ou desactivar administradores do aparelho"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Seleccionar admins. dispos."</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Adicionar ou remover administradores do dispositivo"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Activar Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Definições de Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Definições de Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gerir ligações, definir nome e detectabilidade do dispositivo"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Pedido de emparelhamento de Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Introduza o PIN para emparelhar com “<xliff:g id="DEVICE_NAME">%1$s</xliff:g>” (experimente 0000 ou 1234). Poderá ser necessário introduzir o mesmo PIN no aparelho Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Introduza a chave de acesso para emparelhar com “<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Para emparelhar com \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", confirme que está a mostrar a passkey: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"pretende emparelhamento."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Introduza “<xliff:g id="PASSKEY">%2$s</xliff:g>” em “<xliff:g id="DEVICE_NAME">%1$s</xliff:g>” para emparelhar seguido da tecla de retrocesso ou Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Par"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Não emparelhar"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositivo bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opções..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Ligar a..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Multimédia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Mãos-livres"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transferir"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositivo de entrada"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Ligação ponto a ponto"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desligado do áudio multimédia."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desligado do áudio mãos-livres."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desligado do aparelho de entrada."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desligado da ligação."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opções do <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Acções do dispositivo"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Ligar"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utilizar para áudio do telefone"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Utilizar para transferência de ficheiros"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utilizar para entrada"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utilizar para acesso à internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Definições da Estação de ancoragem"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Utilizar estação de ancoragem para áudio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Como telefone com altifalante"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Memorizar definições"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Utilizar Near Field Communication para ler e trocar etiquetas"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Ocorreu um erro."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Activar Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Definições de Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Não é possível procurar redes"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificação de rede"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Notificar-me quando estiver disponível uma rede aberta"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Política de suspensão Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar quando mudar de Wi-Fi para dados móveis"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Ocorreu um problema ao definir a política de suspensão."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Adicionar rede Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Redes Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Procurar"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modificar rede"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuração de rede"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Inserir PIN a partir de ponto de acesso"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuração do WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuração do método de PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Introduzir o pin <xliff:g id="WPS_PIN">%1$s</xliff:g> no ponto de acesso"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"O WPS já está em curso e pode demorar vários segundos a concluir"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Falha ao iniciar o WPS, tente novamente"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID da rede"</string>
<string name="wifi_security" msgid="6603611185592956936">"Segurança"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensidade do sinal"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Esquecer"</string>
<string name="wifi_save" msgid="3331121567988522826">"Guardar"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancelar"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Foi detectada outra sessão do WPS. Repita dentro de alguns minutos"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avançadas"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Política de suspensão Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar quando mudar de Wi-Fi para dados móveis"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Ocorreu um problema ao definir a política de suspensão."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda de frequência Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Especifique o intervalo de frequência de operação"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Problema ao definir a banda de frequência."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Hotspot Wi-Fi portátil <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Som"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Ecrã"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Visor"</string>
<string name="sound_settings" msgid="5007659014828162881">"Definições de som"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Modo silencioso"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Silenciar todos os sons, excepto multimédia e alarmes"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Mudar orientação automaticamente ao rodar o telefone"</string>
<string name="brightness" msgid="2354961343555249270">"Brilho"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajustar o brilho do ecrã"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tempo limite"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"O ecrã desliga automaticamente após <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Tempo limite do ecrã"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Brilho automático"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Definições de bloqueio do cartão SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Configurar bloqueio do cartão SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Não disponível"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Estado"</string>
<string name="device_status" msgid="607405385799807324">"Estado"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Estado da bateria, rede e outras informações"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, número de telefone, sinal, etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Número de telefone, sinal, etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Armazenamento"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Definições de armazenamento"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Desmontar armazenamento USB, ver armazenamento disponível"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Desmontar cartão SD, ver armazenamento disponível"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"O meu número de telefone"</string>
+ <string name="status_number" msgid="5123197324870153205">"O meu número de telefone"</string>
<string name="status_min_number" msgid="3519504522179420597">"MINUTOS"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versão do PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Armazenamento interno"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Armazenamento USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Cartão SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponível"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"A calcular..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicações"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Multimédia"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espaço disponível"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espaço total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Utilização da aplicação"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Utilização multimédia"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Desmont. arm. partilhado"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Desmontar cartão SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Desmontar armaz. USB interno"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Inserir cartão SD para instalação"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Montar armazenamento USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Instalar cartão SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Montar o armazenamento USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Montar o armaz. USB interno"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Instalar cartão SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Apagar armazenamento USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Apagar cartão SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Apaga todos os dados do armazenamento USB interno, como músicas e fotografias"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Apaga todos os dados do cartão SD, tais como música e fotografias"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Apaga todos os dados do armazenamento USB interno, como músicas e fotografias"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Indisponível"</string>
<string name="read_only" msgid="6702420168629076340">" (Só de leitura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Desmontar armaz. USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Serão apagados todos os dados do "<b>"armazenamento interno"</b>" do tablet, incluindo:"\n\n<li>"A sua conta Google"</li>\n<li>"Dados e definições do sistema e das aplicações"</li>\n<li>"Aplicações transferidas"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Serão apagados todos os dados do "<b>"armazenamento interno"</b>" do telefone, incluindo:"\n\n<li>"A sua conta Google"</li>\n<li>"Dados e definições do sistema e das aplicações"</li>\n<li>"Aplicações transferidas"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Actualmente, tem sessão iniciada nas seguintes contas:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Música"</li>\n<li>"Fotografias"</li>\n<li>"Outros dados do utilizador"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Para limpar também músicas, imagens e outros dados do utilizador, é necessário apagar o "<b>"armazenamento USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Para limpar também músicas, imagens e outros dados do utilizador, é necessário apagar o "<b>"cartão SD"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Para limpar também músicas, imagens e outros dados do utilizador, é necessário apagar o "<b>"armazenamento USB"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Apagar armazenamento USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Apagar cartão SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Apaga todos os dados do armazenamento USB interno, como músicas ou fotografias."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilizar GPS assistido"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilizar o servidor para auxiliar o GPS (desmarque esta opção para reduzir a utilização da rede)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilizar o servidor para auxiliar o GPS (desmarque esta opção para melhorar o desempenho do GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utilizar a localização na Pesquisa do Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilize a localização na Pesquisa do Google e outros serviços Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Localização utilizada para melhorar os resultados da Pesquisa do Google e outros serviços Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Usar localização para pesquisa Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usar A minha localização para a pesquisa Google e outros serviços Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Localização utilizada para melhorar os resultados de pesquisa do Google e outros serviços Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Acerca do tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Acerca do telefone"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Ver informações jurídicas, estado, versão de software"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"A palavra-passe foi definida"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"O PIN foi definido"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"O padrão foi definido"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloquear ecrã"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Desbloqueio do ecrã"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Mudar padrão de desbloqueio"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Alterar PIN de desbloqueio"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmar padrão guardado"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Seguinte"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Manter a segurança do tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Manter o telefone seguro"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Proteja o seu tablet de utilização não autorizada, criando uma sequência pessoal de desbloqueio do ecrã. Utilize o dedo para ligar os pontos por qualquer ordem no ecrã seguinte. Deve ligar pelo menos quatro pontos."\n\n"Está pronto para começar? Toque em \"Seguinte\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Proteja o seu telefone de utilização não autorizada, criando um padrão pessoal de desbloqueio do ecrã. "\n<font height="17">\n</font><b>"1"</b>" No ecrã seguinte, observe enquanto é desenhado um padrão exemplificativo. "\n<font height="17">\n</font><b>"2"</b>" Quando estiver pronto, desenhe o seu padrão pessoal de desbloqueio. Experimente diferentes padrões, mas ligue, pelo menos, quatro pontos. "\n<font height="17">\n</font><b>"3"</b>" Redesenhe o seu padrão para confirmar. "\n<font height="17">\n</font><b>"Está pronto para começar? Toque em “Seguinte”"</b>". "\n<font height="3">\n</font>"Para deixar o seu telefone sem protecção, toque em “Cancelar”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Gerir aplicações"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gerir e remover aplicações instaladas"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicação"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dados"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Armazenamento USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Cartão SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Desinstalar"</string>
<string name="disable_text" msgid="6544054052049395202">"Desactivar"</string>
<string name="enable_text" msgid="9217362512327828987">"Activar"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Parar serviço de sistema?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Tem a certeza de que pretende parar este serviço do sistema? Se o fizer, algumas das funcionalidades do tablet poderão deixar de funcionar correctamente até desligá-lo e ligá-lo novamente."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Tem a certeza de que pretende parar este serviço do sistema? Se o fizer, algumas das funcionalidades do telemóvel poderão deixar de funcionar correctamente até desligá-lo e ligá-lo novamente."</string>
- <string name="language_settings" msgid="5292716747264442359">"Idioma e entrada"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma e entrada"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Região e texto"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Definições de idioma e teclado"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Definições de idioma"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Definições do teclado"</string>
<string name="phone_language" msgid="1165758957501090679">"Seleccionar idioma"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Substituir automaticamente"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corrigir erros ortográficos"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Maiúsculas automáticas"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Maiúsculas automáticas"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Colocar em maiúscula a primeira letra da frase"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Pontuação automática"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Definições do teclado físico"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Atalhos"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Entrada de texto"</string>
<string name="input_method" msgid="5434026103176856164">"Método de entrada"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Método de entrada actual"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selector do método de entrada"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automático"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostrar sempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Ocultar sempre"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configurar métodos de entrada"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Definições"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Métodos de entrada activos"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Utilizar idioma do sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Definições de <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Selec. métodos entrada activos"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Definições do teclado no ecrã"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Teclado incorporado"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Definições do teclado físico incorporado"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Tempo de ligação Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Tempo de ligação Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalhes do histórico"</string>
- <string name="details_title" msgid="3792801565213935385">"Utilizar detalhes"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalhes da utilização da bateria"</string>
<string name="details_subtitle" msgid="32593908269911734">"Utilizar detalhes"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajustar utilização de energia"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Pacotes incluídos"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"A negociação do servidor falhou. O servidor não pode concordar com a sua opção de encriptação. Deseja confirmar a sua definição de encriptação?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Adicionar VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Adicionar VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalhes da VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Adicionar VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detalhes de <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPNs"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configurar e gerir VPNs (Redes Privadas Virtuais)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(não alterado)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(não definido)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Armazenamento de credenciais"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Armazenamento de credenciais"</string>
<string name="credentials_access" msgid="4843187230913860492">"Utilizar credenciais seguras"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Acesso das aplicações a certificados seguros e outras credenciais"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalar do armaz. USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalar a partir do cartão SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalar certificados a partir do armazenamento USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalar certificados a partir do cartão SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Definir palavra-passe"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Definir ou alterar a palavra-passe do armazenamento de credenciais"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Limpar credenciais"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Remover todo o conteúdo e repor a palavra-passe"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Introduzir palavra-passe"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Introduza a palavra-passe do armazenamento de credenciais."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Defina a palavra-passe do armazenamento de credenciais. Tem de ter, pelo menos, 8 caracteres."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Introduza a palavra-passe do armazenamento de credenciais."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalar do armaz. USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalar a partir do cartão SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instalar certif. de encriptação a partir do armaz. USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalar certificados encriptados a partir do cartão SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Definir palavra-passe"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Definir ou alterar a palavra-passe do armazenamento de credenciais"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Limpar armazenamento"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Limpar armazenamento de credenciais de todos os conteúdos e repor a respectiva palavra-passe"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Tem a certeza de que pretende eliminar todas as credenciais e repor a palavra-passe do armazenamento de credenciais?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Palavra-passe actual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nova palavra-passe:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmar nova palavra-passe:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Todo o conteúdo será removido e a palavra-passe será reposta. Tem a certeza de que pretende continuar?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Defina uma palavra-passe para o armazenamento de credenciais (com, pelo menos, 8 caracteres)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Introduza a palavra-passe correcta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Introduza a palavra-passe correcta. Tem mais uma tentativa para introduzir a palavra-passe correcta antes que o armazenamento de credenciais seja apagado."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Introduza a palavra-passe correcta. Tem mais <xliff:g id="NUMBER">%1$d</xliff:g> tentativas para introduzir a palavra-passe correcta antes que o armazenamento de credenciais seja apagado."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"As palavras-passe não correspondem."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Tem de introduzir e confirmar uma palavra-passe."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Introduza a palavra-passe."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"A palavra-passe deve ter, pelo menos, 8 caracteres."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Palavra-passe incorrecta."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Palavra-passe incorrecta. Tem mais uma tentativa antes de o armazenamento de credenciais ser apagado."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Palavra-passe incorrecta. Tem mais <xliff:g id="NUMBER">%1$d</xliff:g> tentativas antes de o armazenamento de credenciais ser apagado."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Armaz. credenciais apagado."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"O armazenamento de credenciais foi apagado."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"O armazenamento de credenciais está activado."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"O armazenamento de credenciais está desactivado."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Sistema de ficheiros encriptados"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Encriptar dados de utilizador privados"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Activar armazenamento do sistema de ficheiros encriptados para dados de utilizador privados neste dispositivo"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"A activação dos Sistemas de ficheiros encriptados requer uma limpeza de dados do dispositivo."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"A desactivação dos Sistemas de ficheiros encriptados requer uma limpeza de dados do dispositivo."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Activar"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Desactivar"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Cancelar"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"A alteração do modo Sistemas de ficheiros encriptados foi cancelada."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Aviso dos Sistemas de ficheiros encriptados."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tom de emergência"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Definir o comportamento quando é efectuada uma chamada de emergência"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacidade"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Chamadas recebidas"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificações"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Comentários"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configuração Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Ligar à rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"A ligar à rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Ligado à rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Adicionar uma rede"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuração Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Não ligada"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Adicionar rede"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualizar lista"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Guardar"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancelar"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"A procurar redes..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toque numa rede para estabelecer ligação"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tocar para seleccionar rede"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Ligar a uma rede já existente"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Ligar a rede insegura"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Inserir configuração de rede"</string>
@@ -1364,50 +1366,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"A ligar..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Continue para o passo seguinte"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP não suportado"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Não é possível configurar uma ligação Wi-Fi tipo EAP durante a configuração. Após a configuração, é possível fazê-lo em Definições, em "<b>"Redes sem fios"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"A ligação pode demorar alguns minutos..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Toque em "<b>"Seguinte"</b>" para continuar a configuração."\n\n"Toque em "<b>"Anterior"</b>" para ligar a uma rede Wi-Fi diferente."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Não é possível configurar uma ligação Wi-Fi tipo EAP durante a configuração. Após a configuração, é possível fazê-lo em Definições, sob Redes sem fios e outras."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Definições de sincronização"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"A sincronização está actualmente com problemas e será retomada em breve."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Adicionar conta"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Def. gerais de sincronização"</string>
<string name="background_data" msgid="5779592891375473817">"Dados em segundo plano"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Aplic. podem sincr., enviar/receber dados a qualq. momento"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Atenção"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"A desactivação de dados em segundo plano economiza a bateria e reduz a utilização de dados. Algumas aplicações podem continuar a utilizar a ligação de dados em segundo plano."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Sincronização automática"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"As aplicações sincronizam os dados automaticamente"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Gerir contas"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sincron. activada"</string>
<string name="sync_disabled" msgid="8511659877596511991">"A sincronização está desactivada"</string>
<string name="sync_error" msgid="5060969083117872149">"Erro de sincron."</string>
<string name="settings_backup" msgid="2274732978260797031">"Efectuar uma cópia de segurança das definições"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Fazer uma cópia de segurança das minhas definições"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizar agora"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancelar sincronização"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tocar para sincronizar agora<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Calendário"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Contactos"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Bem vindo ao Google Sync!"</font>" "\n"Uma abordagem do Google à sincronização de dados, que permite aceder aos contactos, compromissos e outros itens, a partir de qualquer local onde se encontre."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Definições de sincronização da aplicação"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dados e sincronização"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Alterar palavra-passe"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Definições da conta"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Remover conta"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Adicionar uma conta"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Concluir"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Remover conta"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Tem a certeza de que pretende remover esta conta? Ao fazê-lo, eliminará também todas as mensagens e contactos da mesma e outros dados do tablet. "\n"Deseja continuar?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Tem a certeza de que pretende remover esta conta? Ao fazê-lo, eliminará também todas as mensagens e contactos da mesma e outros dados do telefone. "\n"Deseja continuar?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Esta conta é necessária para algumas aplicações. Só será possível removê-la se as predefinições de fábrica do tablet forem repostas (o que elimina todos os seus dados pessoais). Para o fazer, aceda à aplicação Definições, em Privacidade."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Esta conta é necessária para algumas aplicações. Só será possível removê-la se as predefinições de fábrica do telefone forem repostas (o que elimina todos os seus dados pessoais). Para o fazer, aceda à aplicação Definições, em Privacidade."</string>
- <string name="provider_label" msgid="7724593781904508866">"Subscrições de emissão"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronizar <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Não é possível sincronizar manualmente"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"A sincronização deste item está actualmente desactivada. Para alterar as suas preferências, active temporariamente os dados em segundo plano e a sincronização automática."</string>
- <string name="enter_password" msgid="3268224850821675915">"Introduzir palavra-passe para desencriptar armazenamento"</string>
- <string name="try_again" msgid="5904121494468643129">"Lamentamos, tente novamente"</string>
- <string name="service_busy" msgid="225227519012409130">"Serviço ocupado, tente novamente"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-pt/arrays.xml b/res/values-pt/arrays.xml
index ba8f2e0..4d89f41 100644
--- a/res/values-pt/arrays.xml
+++ b/res/values-pt/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Algumas animações de janela são exibidas"</item>
<item msgid="488968798204105119">"Todas as animações de janela são exibidas"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segundos"</item>
- <item msgid="8881760709354815449">"30 segundos"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minutos"</item>
- <item msgid="7489864775127957179">"5 minutos"</item>
- <item msgid="2314124409517439288">"10 minutos"</item>
- <item msgid="6864027152847611413">"30 minutos"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"imediatamente"</item>
- <item msgid="6736512735606834431">"5 segundos"</item>
- <item msgid="8044619388267891375">"15 segundos"</item>
- <item msgid="1822002388249545488">"30 segundos"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minutos"</item>
- <item msgid="49888496216106852">"5 minutos"</item>
- <item msgid="9002737361305019353">"10 minutos"</item>
- <item msgid="4322676235684793329">"30 minutos"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Muito devagar"</item>
<item msgid="2361722960903353554">"Devagar"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excelente"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Quando a tela é desativada"</item>
+ <item msgid="3804733751095821976">"Quando a tela é desativada"</item>
<item msgid="1549288661423279207">"Nunca quando conectado"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nunca"</item>
+ <item msgid="1986753720941888596">"Nunca"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automático"</item>
@@ -183,6 +165,6 @@
<item msgid="3388952299521009213">"Sempre"</item>
<item msgid="6293147072807231256">"Nunca"</item>
<item msgid="1276641209451816572">"Somente no modo silencioso"</item>
- <item msgid="8418930333779132418">"Somente fora do modo silencioso"</item>
+ <item msgid="8418930333779132418">"Somente quando não está no modo silencioso"</item>
</string-array>
</resources>
diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml
index c31be36..b0c6a45 100644
--- a/res/values-pt/strings.xml
+++ b/res/values-pt/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Descarregada"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Sobretensão"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Erro desconhecido"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Menos vistos"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Detectável"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Detectável por <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> segundos…"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Verificando"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Solicitação de pareamento Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Solicitação de pareamento"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Selecione para parear <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Exibir arquivos recebidos"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Exibir a lista de arquivos recebidos via Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selecionador de dispositivo Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Solicitação de permissão para Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Um aplicativo está solicitando permissão para ativar o Bluetooth. Deseja fazer isso?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Um aplicativo em seu tablet está solicitando permissão para ativar o Bluetooth e tornar seu tablet detectável por outros dispositivos por <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. Deseja fazer isso?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Um aplicativo no seu telefone está solicitando permissão para ativar o Bluetooth e tornar o seu telefone detectável por outros dispositivos por <xliff:g id="TIMEOUT">%1$d</xliff:g> segundos. Deseja fazer isso?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Ativando Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Conexão automática"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Configurações de data e hora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Iniciar <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Conta:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Configurações de proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Configurações de proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Define o proxy HTTP geral e as listas de exclusão"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Limpar"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Porta"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Cancelar"</string>
<string name="settings_label" msgid="1626402585530130914">"Configurações"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Configurações"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Selecionar atalho de configurações"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Configurações"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Modo para avião"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Desativar todas as conexões sem fio"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Desativando as conexões sem fio…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Ativando conexões sem fio…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Redes sem fio e outras"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Redes sem fio e outras"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Configurações de redes sem fio e outras"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Gerenciar rede Wi-Fi, Bluetooth, modo avião, redes e VPNs"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming de dados"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Conectar aos serviços de dados quando estiver em roaming"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Seleção de operador"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Selecione um operador de rede"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data e hora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Configurar data e hora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Definir data, hora, fuso horário e formatos"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Data e hora automáticas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Usar horário fornecido pela rede"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Classificar por fuso horário"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Hora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tempo limite"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Bloquear tela <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> depois de ser automaticamente desativada"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Bloquear o dispositivo após o tempo limite"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Mostrar inf. do proprietário ao bloquear a tela"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info do proprietário"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Definir Meu local, desbloqueio de tela, bloqueio do SIM e do armazenamento de credenciais"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Definir o Meu local, o desbloqueio de tela, o bloqueio do armazenamento de credenciais"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Senhas"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Criptografia do aparelho"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Criptografar dados no aparelho"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Criptografar dados no aparelho"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Exige que você configure um pin ou uma senha para desbloquear o aparelho"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Exige que você configure um pin ou uma senha para desbloquear o aparelho"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Criptografado"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Você pode criptografar suas contas, configurações e os aplicativos transferidos com seus respectivos dados, mídia e outros arquivos. Depois de criptografar seu telefone, você não poderá desfazer a criptografia a não ser redefinindo a configuração original dos dados, apagando todos os dados em seu telefone."\n\n"A criptografia leva até uma hora. Você deve iniciar com uma bateria carregada e manter seu telefone conectado até que a criptografia seja concluída. Se você interromper o processo de criptografia, você perderá alguns ou todos os seus dados."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Você pode criptografar suas contas, configurações e os aplicativos transferidos com seus respectivos dados, mídia e outros arquivos. Depois de criptografar seu telefone, você não poderá desfazer a criptografia a não ser redefinindo a configuração original dos dados, apagando todos os dados em seu telefone."\n\n"A criptografia leva até uma hora. Você deve iniciar com uma bateria carregada e manter seu telefone conectado até que a criptografia seja concluída. Se você interromper o processo de criptografia, você perderá alguns ou todos os seus dados."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Criptografar tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Criptografar telefone"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmar criptografia"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Criptografar dados do usuário? Essa operação não é reversível nem pode ser interrompida sem perda de dados! A criptografia pode levar até uma hora."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Criptografar dados do usuário? Essa operação não é reversível nem pode ser interrompida sem perda de dados! A criptografia pode levar até uma hora."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Criptografando"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Tente novamente em ^1 segundos."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Config. tela de bloqueio"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Config. tela de bloqueio"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Segurança do desbloqueio da tela"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configurar bloqueio de tela"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Alterar bloqueio de tela"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Alterar ou desativar o padrão, o PIN ou a segurança da senha"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Escolha um método para bloquear a tela"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Desativado"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nunca bloquear a tela"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Não seguro"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Não exige padrão, PIN e senha p/ desbl. a tela"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Não mostrar a tela de bloqueio"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nenhum"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Desativar o bloqueio de tela"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Padrão"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Exige um padrão para desbloquear a tela"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Defina o padrão para desbloquear a tela"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Exige senha numérica para desbloquear a tela"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Insira um PIN numérico para desbloquear a tela"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Senha"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Exige uma senha para desbloquear a tela"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Digite uma senha para desbloquear a tela"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Desativ. pelo administrador remoto do aparelho"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Desativado"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Não seguro"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Protegido com padrão"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Protegido com PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Protegido com senha"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Desativar o bloqueio da tela"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Remover padrão de desbloqueio"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Remover PIN de desbloqueio"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"O administrador do aparelho não permite o uso de uma senha recente"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Cancelar"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Cancelar"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Avançar"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administração do dispositivo"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Administradores do dispositivo"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Visualizar ou desativar administradores do dispositivo"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Selecionar administradores"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Adicionar ou remover administradores do dispositivo"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Ativar Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Conf. de Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Conf. de Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gerenciar conexões, definir o nome e detecção do dispositivo"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Solicitação de pareamento Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Digitar PIN para emparelhar com \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Tente 0000 ou 1234.) Pode ser necessário digitar o mesmo PIN no dispositivo do Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Digite a senha para emparelhar com \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Para emparelhar com \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", verifique se a senha está sendo exibida: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"deseja emparelhar."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Digite \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" no \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" para emparelhar e clique em Voltar ou Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Emparelhar"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Não emparelhar"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispositivo Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opções…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Conectar-se a..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Mídia"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Viva-voz"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transferir"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispositivo de entrada"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Vínculo"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desconectado do áudio da mídia."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desconectado do áudio do viva-voz."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desconectado do dispositivo de entrada."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> será desconectado da vinculação."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opções de <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Ações do dispositivo"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Conectar"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Usar para áudio do telefone"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Usado para transferência de arquivo"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Usar para entrada"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Usar para acesso à Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Configurações de dock"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Usar dock para áudio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Como viva-voz"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Lembrar configurações"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Usar comunicação a curta distância para ler e trocar tags"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Ocorreu um erro."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Ativar Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Configurações de Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Não é possível verificar a existência de redes"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificação de rede"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Receber notificação quando uma rede aberta estiver disponível"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Política de inatividade de Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar quando alternar de Wi-Fi para dados móveis"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Houve um problema ao configurar a política de inatividade"</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Adicionar rede Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Redes Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Verificar"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modificar rede"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configuração da rede"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Inserir o pin do ponto de acesso"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configuração do WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuração do método pin de WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Digite o pin <xliff:g id="WPS_PIN">%1$s</xliff:g> no ponto de acesso"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"O WPS já está em andamento e pode levar vários segundos para ser concluído"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Falha ao iniciar o WPS, tente novamente"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID da rede"</string>
<string name="wifi_security" msgid="6603611185592956936">"Segurança"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Potência do sinal"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Esquecer"</string>
<string name="wifi_save" msgid="3331121567988522826">"Salvar"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Cancelar"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Outra sessão do WPS detectada, tente novamente em alguns minutos"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avançado"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Política de inatividade de Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Especificar quando alternar de Wi-Fi para dados móveis"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Houve um problema ao configurar a política de inatividade"</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Banda de frequência Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Especifique a faixa de frequência da operação"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Houve um erro ao configurar a banda de frequência."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"ponto de acesso Wi-Fi portátil <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Ponto de acesso Android"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Som"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Tela"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Tela"</string>
<string name="sound_settings" msgid="5007659014828162881">"Configurações de som"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Modo silencioso"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Silenciar todos os sons, exceto a mídia e os alarmes."</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Alternar orientação automaticamente ao girar o telefone"</string>
<string name="brightness" msgid="2354961343555249270">"Brilho"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajustar o brilho da tela"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tempo limite"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"A tela é automaticamente desativada após <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Tempo limite da tela"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Brilho automático"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Bloqueio do SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Conf. bloqueio do SIM"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Não disponível"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status da bateria, da rede e outras informações"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, número de telefone, sinal etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Número de telefone, sinal etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Armazenamento"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Configurações de armazenamento"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Desconectar armazenamento USB, ver armazenamento disponível"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Desmontar o cartão SD, visualizar armazenamento disponível"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Meu número de telefone"</string>
+ <string name="status_number" msgid="5123197324870153205">"Meu número de telefone"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versão PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Armazenamento interno"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Armaz. USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Cartão SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponível"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Calculando..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicativos"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Mídia"</string>
+ <string name="memory_available" msgid="418542433817289474">"Espaço disponível"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Espaço total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Uso do aplicativo"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Uso da mídia"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Desconectar armaz. comp."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Desmontar cartão SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Desconectar armaz. USB interno"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Insira um cartão SD para conexão"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Conectar armazenam. USB"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Conectar cartão SD"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Montar o armazenamento USB"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Conectar armaz. USB interno"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Conectar o cartão SD"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Apagar armazenamento USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Apagar cartão SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Apaga todos os dados do armazenamento USB interno, como músicas e fotos"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Apaga todos os dados do cartão SD, como músicas e fotos"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Apaga todos os dados do armazenamento USB interno, como músicas e fotos"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Não disponível"</string>
<string name="read_only" msgid="6702420168629076340">" (Somente leitura)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Desconectar armaz. USB"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Esta ação apagará todos os dados do "<b>"armazenamento interno"</b>" do seu tablet, incluindo:"\n\n<li>"Sua Conta do Google"</li>\n<li>"Configurações e dados de aplicativos e sistema "</li>\n<li>"Aplicativos que você fez download"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Esta ação apagará todos os dados do "<b>"armazenamento interno"</b>" do seu telefone, incluindo:"\n\n<li>"Sua Conta do Google"</li>\n<li>"Configurações e dados de aplicativos e sistema "</li>\n<li>"Aplicativos que você fez download"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"No momento você está conectado às seguintes contas:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Músicas"</li>\n<li>"Fotos"</li>\n<li>"Outros dados do usuário"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Para também limpar músicas, fotos e outros dados de usuário, o "<b>"armazenamento USB"</b>" precisa ser apagado."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n" "\n"Para também apagar músicas, fotos e outros dados de usuário, o "<b>"cartão SD "</b>"precisa ser apagado."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Para também limpar músicas, fotos e outros dados de usuário, o "<b>"armazenamento USB"</b>" precisa ser apagado."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Apagar armazenamento USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Apagar cartão SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Apagar todos os dados do armazenamento USB interno, como músicas e fotos."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Usar GPS associado"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Usar servidor para auxiliar GPS (desmarque para reduzir o uso da rede)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Usar servidor para auxiliar GPS (desmarque para aprimorar o desempenho do GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Usar local na Pesquisa do Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usar local para a Pesquisa e outros serviços do Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Local utilizado para melhorar os resultados de pesquisa e outros serviços do Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Usar local para a pesquisa do Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Usar local para a pesquisa do Google e outros serviços do Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Local usado para aprimorar resultados da pesquisa do Google e outros serviços do Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Sobre o tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Sobre o telefone"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Ver informações legais, status, versão do software"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"A senha foi definida"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"O PIN foi definido"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"O padrão foi definido"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Bloquear tela"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Desbloqueio de tela"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Alterar padrão de desbloqueio"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Alterar PIN de desbloqueio"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmar padrão salvo"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Avançar"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Como proteger seu tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Proteção do seu telefone"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Proteja seu tablet contra o uso não autorizado criando um padrão de desbloqueio de tela pessoal. Use os dedos para ligar os pontos em qualquer ordem na próxima tela. Você deve conectar pelo menos quatro pontos. "\n\n"Pronto para começar? Toque em \"Próximo\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Proteja o seu telefone contra o uso não autorizado criando um padrão de desbloqueio de tela personalizado. "\n<font height="17">\n</font><b>"1"</b>" Na próxima tela, observe enquanto um exemplo de padrão é desenhado. "\n<font height="17">\n</font><b>"2"</b>" Quando estiver pronto, desenhe o seu próprio padrão de desbloqueio pessoal. Experimente padrões diferentes, mas conecte no mínimo quatro pontos. "\n<font height="17">\n</font><b>"3"</b>" Desenhe novamente o seu padrão para confirmar. "\n<font height="17">\n</font><b>"Pronto para começar? Toque em “Avançar”"</b>". "\n<font height="3">\n</font>"Para deixar o seu telefone sem proteção, toque em “Cancelar”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Gerenciar aplicativos"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gerenciar e remover aplicativos instalados"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicativo"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dados"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Armazenamento USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Cartão SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Desinstalar"</string>
<string name="disable_text" msgid="6544054052049395202">"Desativar"</string>
<string name="enable_text" msgid="9217362512327828987">"Ativar"</string>
@@ -912,10 +893,10 @@
<string name="filter" msgid="2018011724373033887">"Filtro"</string>
<string name="filter_dlg_title" msgid="6507663329723966854">"Selecionar as opções de filtro"</string>
<string name="filter_apps_all" msgid="5142129378749391876">"Todos"</string>
- <string name="filter_apps_third_party" msgid="7786348047690140979">"Descarregados"</string>
- <string name="filter_apps_running" msgid="7767071454371350486">"Rodando"</string>
+ <string name="filter_apps_third_party" msgid="7786348047690140979">"Download concluído"</string>
+ <string name="filter_apps_running" msgid="7767071454371350486">"Em execução"</string>
<string name="filter_apps_onsdcard" product="nosdcard" msgid="4843063154701023349">"Armazenamento USB"</string>
- <string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"Cartão SD"</string>
+ <string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"No cartão SD"</string>
<string name="disabled" msgid="9206776641295849915">"Desativado"</string>
<string name="no_applications" msgid="5190227407135243904">"Nenhum aplicativo."</string>
<string name="internal_storage" msgid="1584700623164275282">"Armaz. interno"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Interromper o serviço do sistema?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Tem certeza de que deseja interromper este serviço do sistema? Se o fizer, alguns recursos de seu tablet podem parar de funcionar corretamente até que você o desligue e ligue novamente."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Tem certeza de que deseja interromper este serviço do sistema? Se o fizer, alguns recursos do seu telefone podem parar de funcionar corretamente até que você o desligue e ligue novamente."</string>
- <string name="language_settings" msgid="5292716747264442359">"Idioma e entrada"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Idioma e entrada"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Local e texto"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Configurações de idioma e teclado"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Configurações de idioma"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Configurações do teclado"</string>
<string name="phone_language" msgid="1165758957501090679">"Selecionar idioma"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Substituição automática"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Corrigir palavras digitadas incorretamente"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Capitaliz. automática"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Iniciar com maiúscula"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Escrever a primeira letra nas sentenças com letra maiúscula"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Pontuação automática"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Configurações de teclado físico"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Atalhos"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Entrada de texto"</string>
<string name="input_method" msgid="5434026103176856164">"Método de entrada"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Método atual de entrada"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Seletor do método de entrada"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automático"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Mostrar sempre"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Sempre ocultar"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configurar métodos de entrada"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Configurações"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Métodos ativos de entrada"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Usar idioma do sistema"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Configurações de <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Selecionar métodos ativos de entrada"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Configurações do teclado virtual"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Teclado integrado"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Configurações do teclado físico integrado"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Tempo de ativação da rede Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Tempo de ativação da rede Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalhes do histórico"</string>
- <string name="details_title" msgid="3792801565213935385">"Detalhes de uso"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalhes de uso da bateria"</string>
<string name="details_subtitle" msgid="32593908269911734">"Detalhes de uso"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajustar uso de energia"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Pacotes incluídos"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Falha na negociação do servidor. Provavelmente o servidor não concorde com a sua opção de criptografia. Deseja verificar a sua configuração de criptografia?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Adicionar VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Adicionar VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalhes de VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Adicionar VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detalhes de <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPNs"</string>
@@ -1285,45 +1278,58 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configurar e gerenciar VPNs (Redes privadas virtuais)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(não alterado)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(não definido)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Armazenamento de credenciais"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Armazenamento de credenciais"</string>
<string name="credentials_access" msgid="4843187230913860492">"Usar credenciais seguras"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Permitir que os aplicativos acessem credenciais e certificados seguros"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalar do armazenamento USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalar do cartão SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalar certificados do armazenamento USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalar certificados do cartão SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Definir senha"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Configurar ou alterar a senha para o armazenamento de credencial"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Limpar credenciais"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Remover todos os conteúdos e redefinir a senha"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Inserir senha"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Digite a senha para o armazenamento de credencial."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Configure a senha para o armazenamento de credencial. Ela deve ter no mínimo 8 caracteres."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Insira a senha do armazenamento de credenciais."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalar do armaz. USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalar do cartão SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inst. cert. crip. do arm."</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalar certificados criptografados do cartão SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Definir senha"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Definir ou alterar a senha do armazenamento de credenciais"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Limpar armazenamento"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Remover todo o conteúdo do armazenamento de credenciais e redefinir a senha"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Tem certeza de que deseja excluir todas as credenciais e redefinir a senha do armazenamento de credenciais?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Senha atual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nova senha:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmar nova senha:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Todos os conteúdos serão removidos e a senha será redefinida. Tem certeza de que deseja fazer isso?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Definir uma senha para o armazenamento de credenciais (no mínimo 8 caracteres)"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Insira a senha correta."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Insira a senha correta. Você tem mais uma tentativa para inserir a senha correta antes que o armazenamento de credenciais seja apagado."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Insira a senha correta. Você tem mais <xliff:g id="NUMBER">%1$d</xliff:g> tentativas para inserir a senha correta antes que o armazenamento de credenciais seja apagado."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"As senhas não correspondem."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Insira e confirme uma senha."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Insira a senha."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"A senha deve ter no mínimo 8 caracteres."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Senha incorreta."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Senha incorreta. Você tem uma ou mais chances antes do armazenamento de credencial ser apagado."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Senha incorreta. Você tem mais <xliff:g id="NUMBER">%1$d</xliff:g> chances antes do armazenamento de credencial ser apagado."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"O armazenamento de credenciais foi apagado."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"O armazenamento de credenciais foi apagado."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"O armazenamento de credenciais foi ativado."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"O armazenamento de credenciais foi desativado."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Sistema de arquivos criptografados"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Criptografar dados privados de usuário"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Ativar armazenamento do sistema de arquivo criptografado para dados privados do usuário neste aparelho."</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"A ativação dos Sistemas de arquivo criptografados exige uma limpeza de dados do dispositivo."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"A desativação dos Sistemas de arquivo criptografados exige uma limpeza de dados do dispositivo."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Ativar"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Desativar"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Cancelar"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"A alteração do modo do Sistema de arquivos criptografados foi cancelada."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Aviso dos Sistemas de arquivo criptografados."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tom de emergência"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Definir comportamento durante uma chamada de emergência"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacidade"</string>
<string name="privacy_settings_title" msgid="1987089301293213705">"Configurações de privacidade"</string>
<string name="backup_section_title" msgid="8856083167469467588">"Backup e restauração"</string>
<string name="personal_data_section_title" msgid="7815209034443782061">"Dados pessoais"</string>
- <string name="backup_data_title" msgid="1239105919852668016">"Fazer backup"</string>
+ <string name="backup_data_title" msgid="1239105919852668016">"Fazer backup dos meus dados"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Dados de aplicativos de backup, senhas da rede Wi-Fi e outras configurações nos servidores do Google"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"Conta de backup"</string>
<string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Nenhuma conta está armazenando o backup dos dados"</string>
<string name="auto_restore_title" msgid="5397528966329126506">"Restauração automática"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"Caso o aplicativo seja reinstalado, restaurar as configurações ou outros dados de backup"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Backup"</string>
- <string name="backup_erase_dialog_message" msgid="7766283133557587608">"Tem certeza de que deseja interromper backup das suas senhas da rede Wi-Fi, dos favoritos e de outras configurações e dados de aplicativo, e apagar todas as cópias dos servidores do Google?"</string>
+ <string name="backup_erase_dialog_message" msgid="7766283133557587608">"Tem certeza de que deseja parar de fazer backup das suas senhas da rede Wi-Fi, dos favoritos e de outras configurações e dados de aplicativo e apagar todas as cópias nos servidores do Google?"</string>
<string name="device_admin_settings_title" msgid="1335557832906433309">"Configurações de administração do dispositivo"</string>
<string name="active_device_admin_msg" msgid="6930903262612422111">"Administrador do dispositivo"</string>
<string name="remove_device_admin" msgid="3596845261596451437">"Desativar"</string>
@@ -1338,12 +1344,8 @@
<string name="sound_category_sound_title" msgid="1488759370067953996">"Geral"</string>
<string name="sound_category_calls_title" msgid="3688531959256239012">"Chamadas recebidas"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificações"</string>
- <string name="sound_category_feedback_title" msgid="4399742321363475393">"Retorno"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configuração de Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Conectar a uma rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Como se conectar a uma rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Conectado uma rede Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Adicionar uma rede"</string>
+ <string name="sound_category_feedback_title" msgid="4399742321363475393">"Comentários"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configuração WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Não conectado"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Adicionar rede"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Atualizar lista"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Salvar"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Cancelar"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Verificando redes..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toque em uma rede para se conectar a ela"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Toque para selecionar a rede"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Conectar-se à rede existente"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Conectar-se à rede não segura"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Inserir configuração da rede"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Conectando..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Prosseguir para próxima etapa"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP não é suportado"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Não é possível configurar uma conexão Wi-Fi EAP durante a instalação. Após a instalação, você pode fazer isso em Configurações, "<b>"Redes e Redes sem fio"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"A conexão pode demorar alguns minutos..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Toque em "<b>"Próximo"</b>" para continuar a configuração."\n\n"Toque em "<b>"Voltar"</b>" para conectar-se a outra rede Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Não é possível configurar uma conexão Wi-FI EAP durante a instalação. Após a instalação, você pode fazer isso em Configurações, Redes e Redes sem fios."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Configurações de sincronização"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"A sincronização está enfrentando problemas no momento. Ela retornará em breve."</string>
<string name="add_account_label" msgid="7811707265834013767">"Adicionar conta"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"A sincronização está DESATIVADA"</string>
<string name="sync_error" msgid="5060969083117872149">"Erro na sinc."</string>
<string name="settings_backup" msgid="2274732978260797031">"Fazer backup das configurações"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Fazer backup de minhas configurações"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizar agora"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Cancelar sincronização"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Toque para sincronizar agora<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Agenda"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Contatos"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Bem-vindo ao Google Sync!"</font>" "\n"Um método do Google para sincronizar dados de modo a permitir o acesso aos seus contatos, compromissos e muito mais, onde quer que você esteja."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Configurações de sincronização do aplicativo"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dados e sincronização"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Alterar senha"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Configurações da conta"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Remover conta"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Adicionar uma conta"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Concluir"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Remover conta"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Deseja mesmo remover esta conta? Sua remoção excluirá todas as suas mensagens, contatos e outros dados do telefone. "\n"Continuar?"</string>
- <string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Deseja mesmo remover esta conta? A remoção excluirá todas as suas mensagens, contatos e outros dados do celular. "\n"Continuar?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Esta conta é necessária para alguns aplicativos. Só é possível removê-la redefinindo o tablet para os padrões de fábrica (o que exclui todos os seus dados pessoais). Isso é feito no aplicativo \"Configurações\", em \"Privacidade\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Esta conta é necessária para alguns aplicativos. Só é possível removê-la redefinindo o telefone para os padrões de fábrica (o que exclui todos os seus dados pessoais). Isso é feito na seção de Configurações, em Privacidade."</string>
- <string name="provider_label" msgid="7724593781904508866">"Enviar inscrições"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronizar <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Não é possível sincronizar manualmente"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"A sincronização para o item está desativada no momento. Para alterar a sua preferência, ative os dados de segundo plano e a sincronização automática temporariamente."</string>
- <string name="enter_password" msgid="3268224850821675915">"Digite uma senha para criptografar o armazenamento"</string>
- <string name="try_again" msgid="5904121494468643129">"Tente novamente"</string>
- <string name="service_busy" msgid="225227519012409130">"Serviço ocupado, tente novamente"</string>
+ <string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Deseja mesmo remover esta conta? Sua remoção excluirá todas as suas mensagens, contatos e outros dados do celular. "\n"Continuar?"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-rm/arrays.xml b/res/values-rm/arrays.xml
index 6cc5333..3463279 100644
--- a/res/values-rm/arrays.xml
+++ b/res/values-rm/arrays.xml
@@ -113,9 +113,9 @@
<item msgid="5702329417707689835">"Excellent"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 3804733751095821976 --> <item msgid="643915340724070374">"Sch\'il visur sa stizza"</item>
+ <item msgid="3804733751095821976">"Sch\'il visur sa stizza"</item>
<item msgid="1549288661423279207">"\"Mai, sche connectà\""</item>
- <!-- outdated translation 1986753720941888596 --> <item msgid="6592896328877671197">"Mai"</item>
+ <item msgid="1986753720941888596">"Mai"</item>
</string-array>
<!-- no translation found for wifi_frequency_band_entries:0 (624340809384223320) -->
<!-- no translation found for wifi_frequency_band_entries:1 (6670588712989942178) -->
diff --git a/res/values-rm/strings.xml b/res/values-rm/strings.xml
index 4abf2ab..2098713 100644
--- a/res/values-rm/strings.xml
+++ b/res/values-rm/strings.xml
@@ -114,10 +114,6 @@
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Dumonda d\'associaziun"</string>
<!-- no translation found for bluetooth_notif_message (618099089987569242) -->
<skip />
- <!-- no translation found for bluetooth_show_received_files_title (816172853268536399) -->
- <skip />
- <!-- no translation found for bluetooth_show_received_files_summary (7322193220909480775) -->
- <skip />
<string name="device_picker" msgid="8721012448931226323">"Tscherna dad apparats bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Dumonda d\'autorisaziun Bluetooth"</string>
<!-- outdated translation 2342558978033892004 --> <string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Ina applicaziun sin Voss telefon dumonda l\'autorisaziun dad activar bluetooth. Permetter?"</string>
@@ -247,8 +243,6 @@
<string name="networks" msgid="6333316876545927039">"Tscherner in purschider da rait"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Tscherner in purschider da rait"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data ed ura"</string>
- <!-- no translation found for date_and_time_settings_title_setup_wizard (2391530758339384324) -->
- <skip />
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"\"Configurar la data, il temp, la zona d\'urari ed ils formats\""</string>
<!-- outdated translation 3086083265745944725 --> <string name="date_time_auto" msgid="7076906458515908345">"Automaticamain"</string>
<!-- outdated translation 9034585614665299846 --> <string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utilisar las valurs messas a disposiziun da la rait"</string>
@@ -286,56 +280,6 @@
<string name="security_settings_summary" msgid="967393342537986570">"\"Definir ils parameters da Mia posiziun, da la debloccada dal visur, da la bloccada da la carta SIM e da la bloccada da la memoria da las infurmaziuns d\'annunzia\""</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"\"Definir mia posiziun, debloccar il visur, bloccar la memoria dad infurmaziuns d\'annunzia\""</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Pleds-clav"</string>
- <!-- no translation found for crypt_keeper_settings_title (4219233835490520414) -->
- <skip />
- <!-- no translation found for crypt_keeper_encrypt_title (1060273569887301457) -->
- <skip />
- <!-- no translation found for crypt_keeper_encrypt_title (1878996487755806122) -->
- <skip />
- <!-- no translation found for crypt_keeper_encrypt_summary (6291564408810586) -->
- <skip />
- <!-- no translation found for crypt_keeper_encrypt_summary (514138079795442371) -->
- <skip />
- <!-- no translation found for crypt_keeper_encrypted_summary (1868233637888132906) -->
- <skip />
- <!-- no translation found for crypt_keeper_desc (2150571569618349332) -->
- <skip />
- <!-- no translation found for crypt_keeper_desc (7366703764847750586) -->
- <skip />
- <!-- no translation found for crypt_keeper_button_text (1189623490604750854) -->
- <skip />
- <!-- no translation found for crypt_keeper_button_text (2008346408473255519) -->
- <skip />
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <!-- no translation found for crypt_keeper_confirm_title (3637925350381905012) -->
- <skip />
- <!-- no translation found for crypt_keeper_final_desc (2496639211575162172) -->
- <skip />
- <!-- no translation found for crypt_keeper_final_desc (3248595818246515395) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_title (1783951453124244969) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <!-- no translation found for crypt_keeper_cooldown (6736063610343230255) -->
- <skip />
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
<!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Segirezza da la debloccaziun dal visur"</string>
<!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Endrizzar la bloccaziun dal visur"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Midar la bloccaziun dal visur"</string>
@@ -501,7 +445,9 @@
<skip />
<!-- no translation found for nfc_quick_toggle_summary (1988408027741447231) -->
<skip />
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Ina errur è succedida."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"WLAN"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Activar WLAN"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Parameters WLAN"</string>
@@ -514,9 +460,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Impussibel da tschertgar las raits."</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Avis da rait"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"M\'avisar sch\'ina rait averta è disponibla"</string>
- <!-- outdated translation 1367731352485585528 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Directiva da standby WLAN"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Definir cura ch\'i duai vegnir midà da WLAN sin la rait da telefon"</string>
- <!-- outdated translation 5103670439972135148 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Cun endrizzar ina directiva da standby è cumparì in problem."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Agiuntar ina rait WLAN"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Raits WLAN"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Tschertgar"</string>
@@ -528,14 +471,10 @@
<skip />
<!-- no translation found for wifi_wps_pin (5471842298708321115) -->
<skip />
- <!-- no translation found for wifi_wps_setup_title (150518971269252336) -->
+ <!-- no translation found for wifi_wps_pin_method_configuration (9019042137789692817) -->
<skip />
<!-- no translation found for wifi_wps_pin_output (8682102965680650853) -->
<skip />
- <!-- no translation found for wifi_wps_in_progress (2776555137392461525) -->
- <skip />
- <!-- no translation found for wifi_wps_failed (2277409652621482331) -->
- <skip />
<string name="wifi_ssid" msgid="641393708309146745">"SSID da la rait"</string>
<string name="wifi_security" msgid="6603611185592956936">"Segirezza"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Intensitad dal signal"</string>
@@ -567,9 +506,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Allontanar"</string>
<string name="wifi_save" msgid="3331121567988522826">"Memorisar"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Interrumper"</string>
- <!-- no translation found for wifi_wps_overlap_error (6820987241637459748) -->
- <skip />
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avanzà"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Directiva da standby WLAN"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Definir cura ch\'i duai vegnir midà da WLAN sin la rait da telefon"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Cun endrizzar ina directiva da standby è cumparì in problem."</string>
<!-- no translation found for wifi_setting_frequency_band_title (7493768705046080060) -->
<skip />
<!-- no translation found for wifi_setting_frequency_band_summary (3250740757118009784) -->
@@ -720,8 +660,7 @@
<string name="storage_settings_title" msgid="8746016738388094064">"Parameters da memorisaziun"</string>
<!-- outdated translation 9176693537325988610 --> <string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"\"Prender ora la carta SD, mussar la capacitad da memorisar disponibla\""</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"\"Prender ora la carta SD, mussar la capacitad da memorisar disponibla\""</string>
- <!-- outdated translation 5948892105546651296 --> <string name="status_number" product="tablet" msgid="1138837891091222272">"Numer da telefon"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mes numer da telefon"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mes numer da telefon"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versiun PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -739,13 +678,13 @@
<!-- outdated translation 1130932766236387454 --> <string name="internal_memory" msgid="9129595691484260784">"Memoria interna dal telefonin"</string>
<!-- outdated translation 151871913888051515 --> <string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Carta SD"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Carta SD"</string>
- <!-- outdated translation 418542433817289474 --> <string name="memory_available" msgid="5052397223077021181">"Memoria disponibla"</string>
- <!-- outdated translation 6629067715017232195 --> <string name="memory_size" msgid="5458889090691922288">"Memoria en total"</string>
+ <string name="memory_available" msgid="418542433817289474">"Memoria disponibla"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Memoria en total"</string>
<!-- no translation found for memory_calculating_size (2188358544203768588) -->
<skip />
- <!-- no translation found for memory_apps_usage (9079237985722858506) -->
+ <!-- no translation found for memory_apps_usage (5818922761412589352) -->
<skip />
- <!-- no translation found for memory_media_usage (3738830697707880405) -->
+ <!-- no translation found for memory_media_usage (5655498435493764372) -->
<skip />
<!-- outdated translation 6915293408836853020 --> <string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Demontar la carta SD"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Demontar la carta SD"</string>
@@ -817,8 +756,6 @@
<!-- outdated translation 4359253344708970059 --> <string name="master_clear_desc" product="default" msgid="2950536633526374209">"Questa acziun vegn a reinizialisar il telefonin e restaurar sias valurs originalas. Tut las datas ed applicaziuns telechargiadas vegnan stizzadas!"</string>
<!-- no translation found for master_clear_accounts (6412857499147999073) -->
<skip />
- <!-- no translation found for master_clear_desc_also_erases_external (1903185203791274237) -->
- <skip />
<!-- no translation found for master_clear_desc_erase_external_storage (4740866328425123395) -->
<skip />
<!-- no translation found for master_clear_desc_erase_external_storage (7339100478676372901) -->
@@ -995,10 +932,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Totalmain"</string>
<string name="application_size_label" msgid="5055196275624686382">"Applicaziun"</string>
<string name="data_size_label" msgid="8679376373625710107">"Datas"</string>
- <!-- no translation found for external_size_label (4465530017830945766) -->
- <skip />
- <!-- no translation found for external_size_label (2107155737635944440) -->
- <skip />
<string name="uninstall_text" msgid="3644892466144802466">"Deinstallar"</string>
<string name="disable_text" msgid="6544054052049395202">"Deactivar"</string>
<string name="enable_text" msgid="9217362512327828987">"Activar"</string>
@@ -1423,38 +1356,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configurar ed administrar las raits privatas virtualas (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(betg midà)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(betg definì)"</string>
- <!-- no translation found for credentials_title (4446234003860769883) -->
- <skip />
+ <string name="credentials_category" msgid="8536992056377271234">"Memorisaziun da las infurmaziuns d\'annunzia"</string>
<string name="credentials_access" msgid="4843187230913860492">"Identitads segiradas"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Las applicaziuns pon acceder a certificats segirads ed infurmaziuns d\'annunzia"</string>
- <!-- no translation found for credentials_install (1395748667227729987) -->
- <skip />
- <!-- no translation found for credentials_install (953914549998062317) -->
- <skip />
- <!-- no translation found for credentials_install_summary (3679446246093149828) -->
- <skip />
- <!-- no translation found for credentials_install_summary (5737658257407822713) -->
- <skip />
- <string name="credentials_set_password" msgid="9104473585811899989">"Definir il pled-clav"</string>
- <!-- outdated translation 8287876917562085701 --> <string name="credentials_set_password_summary" msgid="6756719720826053228">"Definir/midar il pled-clav da la memoria da las infurmaziuns d\'annunzia"</string>
- <!-- outdated translation 9170150870552453457 --> <string name="credentials_reset" msgid="3239382277144980418">"Stizzar la memoria"</string>
- <!-- outdated translation 1530388094693731636 --> <string name="credentials_reset_summary" msgid="3810369467217453606">"Stizzar il cuntegn da la memoria da las infurmaziuns d\'annunzia e reinizialisar il pled-clav"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Endatar il pled-clav"</string>
- <!-- outdated translation 594679530407918031 --> <string name="credentials_unlock_hint" msgid="5889551635843338639">"Endatai il pled-clav per la memoria da las infurmaziuns d\'annunzia."</string>
- <!-- no translation found for credentials_password_hint (4915128717409363024) -->
- <skip />
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Endatai il pled-clav per la memoria da las infurmaziuns d\'annunzia."</string>
+ <!-- outdated translation 177337517568022236 --> <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installar da la carta SD"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installar da la carta SD"</string>
+ <!-- outdated translation 7737001268684193093 --> <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Installar ils certificats criptads da la carta SD"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installar ils certificats criptads da la carta SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Definir il pled-clav"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Definir/midar il pled-clav da la memoria da las infurmaziuns d\'annunzia"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Stizzar la memoria"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Stizzar il cuntegn da la memoria da las infurmaziuns d\'annunzia e reinizialisar il pled-clav"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Vulais Vus propi stizzar tut las infurmaziuns d\'annunzia e reinizialisar il pled-clav per la memorisaziun da las infurmaziuns d\'annunzia?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Pled-clav actual:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nov pled-clav:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confermar il nov pled-clav:"</string>
- <!-- outdated translation 819990295796804516 --> <string name="credentials_reset_hint" msgid="2336340927894094814">"Vulais Vus propi stizzar tut las infurmaziuns d\'annunzia e reinizialisar il pled-clav per la memorisaziun da las infurmaziuns d\'annunzia?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Defini in pled-clav per la memorisaziun dad identitads dad almain 8 caracters."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Endatai il pled-clav correct."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Endatai il pled clav correct. Vus avais anc ina emprova avant che la memoria da las infurmaziuns d\'annunzia vegn stizzada."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Endatai il pled-clav correct. Vus avais anc <xliff:g id="NUMBER">%1$d</xliff:g> emprovas per endatar il dretg pled-clav. Suenter vegn la memoria da las infurmaziuns d\'annunzia stizzada."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Ils pleds-clav na correspundan betg."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Vus stuais endatar in pled-clav e confermar."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Endatai il pled-clav."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Il pled-clav sto cuntegnair almain 8 caracters."</string>
- <!-- outdated translation 7525192410790152041 --> <string name="credentials_wrong_password" msgid="2541932597104054807">"Endatai il pled-clav correct."</string>
- <!-- outdated translation 6392481296673345268 --> <string name="credentials_reset_warning" msgid="5320653011511797600">"Endatai il pled clav correct. Vus avais anc ina emprova avant che la memoria da las infurmaziuns d\'annunzia vegn stizzada."</string>
- <!-- no translation found for credentials_reset_warning_plural (6514085665301095279) -->
- <skip />
- <!-- outdated translation 7700309135582200849 --> <string name="credentials_erased" msgid="2907836028586342969">"La memoria per las infurmaziuns d\'annunzia è vegnì stizzà."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"La memoria per las infurmaziuns d\'annunzia è vegnì stizzà."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"La memoria da las infurmaziuns d\'annunzia è activà"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"La memoria per las infurmaziuns d\'annunzia è deactivada."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Sistem da datotecas criptadas"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Criptar las datas privatas da l\'utilisader"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Activar la memorisaziun da datas privatas da l\'utilisader en sistems da datotecas criptadas sin quest apparat"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Per activar ils sistems da datotecas criptadas ston las datas dal telefon vegnir reinizialisadas."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Per deactivar sistems da datotecas criptadas ston las datas da l\'apparat vegnir reinizialisadas."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Activar"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Deactivar"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Interrumper"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"La midada dal modus da sistems da datotecas criptadas è vegnì interrut."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Avertiment da sistems da datotecas criptadas"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Tun d\'urgenza"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Definir il cumportament en cas d\'in clom d\'urgenza"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Protecziun da datas"</string>
@@ -1488,14 +1427,6 @@
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Commentaris"</string>
<!-- no translation found for wifi_setup_title (661074868726906436) -->
<skip />
- <!-- no translation found for wifi_setup_title_editing_network (7304321031985059969) -->
- <skip />
- <!-- no translation found for wifi_setup_title_connecting_network (2408378435027118687) -->
- <skip />
- <!-- no translation found for wifi_setup_title_connected_network (209755856836003839) -->
- <skip />
- <!-- no translation found for wifi_setup_title_add_network (6932651000151032301) -->
- <skip />
<!-- no translation found for wifi_setup_not_connected (6997432604664057052) -->
<skip />
<!-- no translation found for wifi_setup_add_network (5939624680150051807) -->
@@ -1536,11 +1467,7 @@
<skip />
<!-- no translation found for wifi_setup_status_eap_not_supported (3196386445567501484) -->
<skip />
- <!-- no translation found for wifi_setup_eap_not_supported (683540356393542939) -->
- <skip />
- <!-- no translation found for wifi_setup_description_connecting (1884664966455980182) -->
- <skip />
- <!-- no translation found for wifi_setup_description_connected (5235991893829582459) -->
+ <!-- no translation found for wifi_setup_eap_not_supported (5083895763075722698) -->
<skip />
<!-- no translation found for account_sync_settings_title (4578227872921044660) -->
<skip />
@@ -1620,10 +1547,4 @@
<skip />
<!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
<skip />
- <!-- no translation found for enter_password (3268224850821675915) -->
- <skip />
- <!-- no translation found for try_again (5904121494468643129) -->
- <skip />
- <!-- no translation found for service_busy (225227519012409130) -->
- <skip />
</resources>
diff --git a/res/values-ro/arrays.xml b/res/values-ro/arrays.xml
index 69d677e..f8dd978 100644
--- a/res/values-ro/arrays.xml
+++ b/res/values-ro/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Sunt afişate anumite animaţii în fereastră"</item>
<item msgid="488968798204105119">"Sunt afişate toate animaţiile pentru ferestre"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 secunde"</item>
- <item msgid="8881760709354815449">"30 de secunde"</item>
- <item msgid="7589406073232279088">"1 minut"</item>
- <item msgid="7001195990902244174">"2 minute"</item>
- <item msgid="7489864775127957179">"5 minute"</item>
- <item msgid="2314124409517439288">"10 minute"</item>
- <item msgid="6864027152847611413">"30 de minute"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"imediat"</item>
- <item msgid="6736512735606834431">"5 secunde"</item>
- <item msgid="8044619388267891375">"15 secunde"</item>
- <item msgid="1822002388249545488">"30 de secunde"</item>
- <item msgid="8538071621211916519">"1 minut"</item>
- <item msgid="5663439580228932882">"2 minute"</item>
- <item msgid="49888496216106852">"5 minute"</item>
- <item msgid="9002737361305019353">"10 minute"</item>
- <item msgid="4322676235684793329">"30 de minute"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Foarte încet"</item>
<item msgid="2361722960903353554">"Încet"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Excelent"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"La dezactivarea ecranului"</item>
+ <item msgid="3804733751095821976">"La dezactivarea ecranului"</item>
<item msgid="1549288661423279207">"Niciodată când este conectat"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Niciodată"</item>
+ <item msgid="1986753720941888596">"Niciodată"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automat"</item>
diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml
index 0f0bcf7..504503b 100644
--- a/res/values-ro/strings.xml
+++ b/res/values-ro/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"În curs de scanare"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Solicitare de împerechere prin Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Solicitare de împerechere"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Selectaţi împerecherea cu <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Afişaţi fişierele primite"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Afişaţi fişierele primite prin Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Selector de dispozitive Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Solicitare de permisiune Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"O aplicaţie solicită permisiunea de a activa Bluetooth. Acordaţi permisiunea?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"O aplicaţie de pe tabletă solicită permisiunea de activare Bluetooth, astfel încât aceasta să poată fi descoperită de alte dispozitive timp de <xliff:g id="TIMEOUT">%1$d</xliff:g> (de) secunde. Acordaţi permisiunea?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"O aplicaţie de pe telefonul dvs. solicită permisiunea de a activa Bluetooth şi să seteze telefonul dvs. ca detectabil de către alte dispozitive timp de <xliff:g id="TIMEOUT">%1$d</xliff:g> (de) secunde. Doriţi să faceţi acest lucru?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Se activează Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Conectare automată"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Setări privind data şi ora"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Porniţi <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Cont:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Setări proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Setări proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Setaţi serverul proxy HTTP global şi listele de excludere"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Ştergeţi"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Se dezactivează conexiunile wireless..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Se activează conexiunile wireless..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Reţele wireless"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Wireless şi reţele"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Setări pentru reţeaua wireless"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Gestionaţi reţelele Wi-Fi, funcţia Bluetooth, modul Avion, reţelele mobile şi reţelele VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming de date"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Conectaţi-vă la servicii de date în roaming"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Selectarea operatorului"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Selectaţi un operator de reţea"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Data şi ora"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Setaţi data şi ora"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Setaţi data, ora, fusul orar şi formatele."</string>
<string name="date_time_auto" msgid="7076906458515908345">"Dată şi oră automate"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Utilizaţi ora furnizată de reţea"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sortaţi după fusul orar"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Data"</string>
<string name="time_picker_title" msgid="483460752287255019">"Ora"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timp limită"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Blocaţi ecranul la <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> de la dezactivarea automată a ecranului"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Blocaţi dispozitivul după expirarea timpului limită"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Afişaţi info. proprietar la blocarea ecranului"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info. proprietar"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Setaţi Locaţia mea, deblocarea ecranului, blocarea cardului SIM, blocarea stocării acreditărilor"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Setaţi Locaţia mea, deblocarea ecranului, blocarea stocării acreditărilor"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Parole"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Criptarea dispozitivului"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Criptaţi datele de pe dispozitiv"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Criptaţi datele de pe dispozitiv"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Necesită setarea unui cod PIN sau a unei parole de deblocare a dispozitivului"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Necesită setarea unui cod PIN sau a unei parole de deblocare a dispozitivului"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Criptat"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Puteţi să criptaţi conturi, setări, aplicaţii descărcate şi datele acestora, fişiere media şi alte tipuri de fişiere. După criptarea telefonului, nu îl puteţi decripta decât prin resetarea la configuraţia din fabrică, ceea ce va şterge toate datele de pe acesta."\n\n"Criptarea poate dura până la o oră. Trebuie să începeţi cu o baterie încărcată şi să ţineţi telefonul conectat până la finalizarea criptării. Întreruperea procesului de criptare poate duce la pierderea tuturor datelor sau a unor părţi din acestea."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Puteţi să criptaţi conturi, setări, aplicaţii descărcate şi datele acestora, fişiere media şi alte tipuri de fişiere. După criptarea telefonului, nu îl puteţi decripta decât prin resetarea la configuraţia din fabrică, ceea ce va şterge toate datele de pe acesta."\n\n"Criptarea poate dura până la o oră. Trebuie să începeţi cu o baterie încărcată şi să ţineţi telefonul conectat până la finalizarea criptării. Întreruperea procesului de criptare poate duce la pierderea tuturor datelor sau a unor părţi din acestea."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Criptaţi tableta"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Criptaţi telefonul"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Confirmaţi criptarea"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Criptaţi datele utilizatorului? Această operaţie nu este reversibilă şi nu poate fi întreruptă fără pierderea unor date! Criptarea poate dura până la o oră."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Criptaţi datele utilizatorului? Această operaţie nu este reversibilă şi nu poate fi întreruptă fără pierderea unor date! Criptarea poate dura până la o oră."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Criptare"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Încercaţi din nou peste ^1 (de) secunde."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Config. bloc. ecran."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Config. bloc. ecran."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Siguranţa deblocării ecranului"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Configuraţi blocarea ecranului"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Modificaţi blocarea ecranului"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Modificaţi sau dezactivaţi modelul, codul PIN sau siguranţa prin parolă"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Alegeţi o metodă pentru a bloca ecranul"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Dezactivată"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nu blocaţi niciodată ecranul"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nesecurizat"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Debl. ecran. nu neces. model, PIN sau parolă"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nu doresc să se afişeze ecranul blocat"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Deloc"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Dezactivaţi securitatea pentru deblocarea ecranului"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Model"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Se solicită un model pentru deblocare ecran"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Desenaţi un model pentru deblocarea ecranului"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Necesită PIN numeric pentru debloc. ecran."</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Introduceţi un cod PIN numeric pentru a debloca ecranul"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Parolă"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Se solicită parolă pentru deblocare ecran"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Introduceţi o parolă pentru a debloca ecranul"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Dezactivată de administratorul dispozitivelor la distanţă"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Dezactivată"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nesecurizat"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Securizat cu model"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Securizat cu PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Securizat cu parolă"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Activaţi blocarea ecranului"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Eliminaţi modelul pentru deblocare"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Eliminaţi codul PIN de deblocare"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Admin. dispozit. refuză utilizarea unei parole recente"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Anulaţi"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Anulaţi"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Înainte"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Administrarea dispozitivelor"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Administratori dispozitiv"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Afişaţi sau dezactivaţi administratorii dispozitivului"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Setări Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Gestionaţi conexiunile, setaţi numele dispozitivului şi detectabilitatea acestuia"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Solicitare de împerechere prin Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Introduceţi codul PIN pentru împerecherea cu „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”. (Încercaţi 0000 sau 1234.) Ar putea fi necesar să introduceţi acelaşi PIN pe dispozitivul Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Introduceţi cheia de acces pentru împerecherea cu „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Pentru împerechere cu „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”, confirmaţi faptul că acesta afişează cheia de acces: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" doreşte o împerechere."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Introduceţi „<xliff:g id="PASSKEY">%2$s</xliff:g>” în „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>” pentru a împerechea, apăsând apoi pe Return sau pe Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Asociaţi"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nu asociaţi"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"dispozitiv Bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Opţiuni…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Conectaţi-vă la..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tabletă"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Transfer"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Dispozitiv de intrare"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Tethering"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> va fi deconectat de la media audio."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> va fi deconectat de la componenta audio handsfree."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> va fi deconectat de la dispozitivul de intrare."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> va fi deconectat de la tethering."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Opţiuni pentru <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Utilizaţi pentru componenta audio a telefonului"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Utilizaţi pentru transferul de fişiere"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Utilizaţi pentru introducere date"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Utilizaţi pentru acces internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Setări de andocare"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Utilizaţi dispozitivul de andocare pentru componenta audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Ca difuzor"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Imposibil de scanat pentru identificarea reţelelor"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notificare de reţea"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Doresc să fiu notificat când este disponibilă o reţea deschisă"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Politica de dezactivare a funcţiei Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Indicaţi când să se comute de la Wi-Fi la date mobile"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"A apărut o problemă la setarea politicii de dezactivare a funcţiei Wi-Fi."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Adăugaţi o reţea Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Reţele Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Scanaţi"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Modificaţi reţeaua"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Configurare reţea"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Introduceţi codul PIN de la punctul de acces"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Configurare WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configurare metodă PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Introduceţi codul PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> la punctul de acces"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS este în desfăşurare, iar până la finalizare pot trece zeci de secunde"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Eşuare la pornirea WPS, încercaţi din nou"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID reţea"</string>
<string name="wifi_security" msgid="6603611185592956936">"Securitatea"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Putere semnal"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Eliminaţi"</string>
<string name="wifi_save" msgid="3331121567988522826">"Salvaţi"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Anulaţi"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"A fost detectată o altă sesiune WPS, încercaţi din nou peste câteva minute"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avansate"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Politica de dezactivare a funcţiei Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Indicaţi când să se comute de la Wi-Fi la date mobile"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"A apărut o problemă la setarea politicii de dezactivare a funcţiei Wi-Fi."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Bandă de frecvenţă Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Indicaţi intervalul de frecvenţă al operaţiei"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"A apărut o probl. la setarea benzii de frecvenţă."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Hotspot Wi-Fi portabil <xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Sunet"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Monitorizaţi"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Afişare"</string>
<string name="sound_settings" msgid="5007659014828162881">"Setări de sunet"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Mod Silenţios"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Dezactivaţi toate sunetele, cu excepţia celor ale conţinutului media şi a alarmelor"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Doresc schimbarea automată a orientării la rotirea telefonului"</string>
<string name="brightness" msgid="2354961343555249270">"Luminozitate"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ajustaţi luminozitatea ecranului"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timp limită"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Ecranul se dezactivează automat după <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Durată până la dezactivarea ecranului"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Luminozitate automată"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Setări de blocare a cardului SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Activaţi blocarea cardului SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Indisponibil"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Stare"</string>
<string name="device_status" msgid="607405385799807324">"Stare"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Starea bateriei, reţeaua şi alte informaţii"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Număr de telefon, semnal etc."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Număr de telefon, semnal etc."</string>
<string name="storage_settings" msgid="4211799979832404953">"Stocare"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Setări de stocare"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Demontaţi stocarea USB, afişaţi stocarea disponibilă"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Demontaţi cardul SD, afişaţi spaţiul de stocare disponibil"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Numărul meu de telefon"</string>
+ <string name="status_number" msgid="5123197324870153205">"Numărul meu de telefon"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Versiune PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Stocare internă"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Stocare USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Card SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Disponibil"</string>
- <string name="memory_size" msgid="5458889090691922288">"Total"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Se calculează..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplicaţii"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Spaţiu disponibil"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Spaţiu total"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Utilizare aplicaţii"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Utilizare media"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Demontaţi stoc. distrib."</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Demontaţi cardul SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Demontaţi stocarea USB internă"</string>
@@ -732,7 +707,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Această acţiune va şterge toate datele din "<b>"stocarea internă"</b>" a tabletei, inclusiv:"\n\n<li>"Contul dvs. Google"</li>\n<li>"datele şi setările sistemului şi ale aplicaţiilor"</li>\n<li>"aplicaţiile descărcate"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Această acţiune va şterge toate datele din "<b>"stocarea internă"</b>" a telefonului, inclusiv:"\n\n<li>"Contul dvs. Google"</li>\n<li>"datele şi setările sistemului şi ale aplicaţiilor"</li>\n<li>"aplicaţiile descărcate"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"În prezent sunteţi conectat(ă) la următoarele conturi:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Muzică"</li>\n<li>"Fotografii"</li>\n<li>"Alte date ale utilizatorului"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"De asemenea, pentru a şterge muzică, imagini şi alte date ale utilizatorului, "<b>"stocarea USB"</b>" trebuie să fie ştearsă."</string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"De asemenea, pentru a şterge muzică, imagini şi alte date ale utilizatorului, "<b>"cardul SD"</b>" trebuie să fie şters."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Ştergeţi stocarea USB"</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Utilizaţi GPS asistat"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Utilizaţi serverul pentru a asista funcţia GPS (debifaţi pentru a reduce utilizarea reţelei)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Utilizaţi serverul pentru a asista funcţia GPS (debifaţi pentru a îmbunătăţi performanţa GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Utilizaţi locaţia pentru Căutarea Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilizaţi locaţia pentru Căutarea Google şi pentru alte servicii Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Locaţia este utilizată pentru a îmbunătăţi rezultatele Căutării Google şi alte servicii Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Utilizaţi locaţia pentru Căutarea Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Utilizaţi locaţia pentru Căutarea Google şi pentru alte servicii Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Locaţia utilizată pentru a îmbunătăţi rezultatele Căutării Google şi alte servicii Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Despre tabletă"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Despre telefon"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Afişaţi informaţii legale, starea şi versiunea programului software"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Parola a fost setată"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Codul PIN a fost setat"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Modelul a fost setat"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Blocaţi ecranul"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Deblocare ecran"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Schimbaţi modelul pentru deblocare"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Schimbaţi codul PIN de deblocare"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Confirmaţi modelul salvat"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Înainte"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Securizarea tabletei"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Securizarea telefonului"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protejaţi tableta împotriva utilizării neautorizate, prin crearea unui model personal de deblocare a ecranului. Conectaţi cu degetul, în orice ordine doriţi, punctele de pe ecranul următor. Trebuie să conectaţi cel puţin patru puncte. "\n\n" Sunteţi gata să începeţi? Atingeţi „Înainte”."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protejaţi telefonul de utilizare neautorizată prin crearea unui model personal pentru deblocarea ecranului. "\n<font height="17">\n</font><b>"1"</b>" În următorul ecran, priviţi desenarea unui exemplu de model. "\n<font height="17">\n</font><b>"2"</b>" La final, desenaţi propriul model personal pentru deblocare. Încercaţi diferite modele, dar conectaţi minimum patru puncte. "\n<font height="17">\n</font><b>"3"</b>" Desenaţi din nou modelul pentru a-l confirma. "\n<font height="17">\n</font><b>"Sunteţi pregătit să începeţi? Atingeţi „Înainte”"</b>". "\n<font height="3">\n</font>"Pentru a lăsa telefonul neprotejat, atingeţi „Anulaţi”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Gestionaţi aplicaţiile"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Gestionaţi şi eliminaţi aplicaţiile instalate"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Total"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplicaţie"</string>
<string name="data_size_label" msgid="8679376373625710107">"Date"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Stocare USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Card SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Dezinstalaţi"</string>
<string name="disable_text" msgid="6544054052049395202">"Dezactivaţi"</string>
<string name="enable_text" msgid="9217362512327828987">"Activaţi"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Opriţi serviciul sistemului?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Sigur doriţi să opriţi acest serviciu al sistemului? Dacă da, este posibil ca unele funcţii ale tabletei să nu mai ruleze corect decât după ce o veţi închide şi redeschide."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Sigur doriţi să opriţi acest serviciu al sistemului? Dacă da, este posibil ca unele funcţii ale telefonului să nu mai funcţioneze corect decât după ce îl veţi închide şi deschide din nou."</string>
- <string name="language_settings" msgid="5292716747264442359">"Limbă şi metodă de intrare"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Limbă şi metodă de intrare"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Limbă şi tastatură"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Setări privind limba şi tastatura"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Setări de limbă"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Setări tastatură"</string>
<string name="phone_language" msgid="1165758957501090679">"Selectaţi limba"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Comenzi rapide"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Introducere text"</string>
<string name="input_method" msgid="5434026103176856164">"Metodă de intrare"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Metoda de intrare curentă"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Selector al metodei de intrare"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automat"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Afişaţi întotdeauna"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Ascundeţi întotdeauna"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Configuraţi metode de intrare"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Setări"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Metode de intrare active"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Utilizaţi limba sistemului"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Setări <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Selectaţi metode de intrare active"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Gestionaţi metodele de intrare"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Setări pentru tastatura de pe ecran"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Tastatură integrată"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Setări pentru tastatura fizică încorporată"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Timp de funcţionare Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Timp de funcţionare Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detalii istoric"</string>
- <string name="details_title" msgid="3792801565213935385">"Detalii despre utilizare"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Detalii despre utilizarea bateriei"</string>
<string name="details_subtitle" msgid="32593908269911734">"Detalii despre utilizare"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Ajustaţi utilizarea de energie"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Pachete incluse"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Negocierea serverului nu a reuşit. Este posibil ca serverul să nu accepte opţiunea dvs. de criptare. Doriţi să verificaţi setarea dvs. de criptare?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Adăugaţi o reţea VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Adăugaţi o reţea VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Detalii VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Adăugaţi VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Detalii despre <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Reţele VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Configuraţi şi gestionaţi reţele private virtuale (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nemodificat)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nesetat)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Stocarea acreditărilor"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Stocarea acreditărilor"</string>
<string name="credentials_access" msgid="4843187230913860492">"Utilizaţi acreditări securizate"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Permiteţi aplicaţiilor să acceseze certificate securizate şi alte acreditări"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Instalaţi de pe stocarea USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Instalaţi de pe cardul SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Instalaţi certificate de pe stocarea USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Instalaţi certificate de pe cardul SIM"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Setaţi parola"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Setaţi sau schimbaţi parola pentru stocarea acreditărilor"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Ştergeţi acreditările"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Eliminaţi întregul conţinut şi resetaţi parola"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Introduceţi parola"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Introduceţi parola pentru stocarea acreditărilor."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Setaţi parola pentru stocarea acreditărilor. Parola trebuie să aibă cel puţin 8 caractere."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Introduceţi parola pentru stocarea acreditărilor."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Instalaţi de pe stoc. USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Instalaţi de pe cardul SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Instalaţi certificate criptate din stocarea USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Instalaţi certificate criptate de pe cardul SIM"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Setaţi parola"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Setaţi sau modificaţi parola pentru stocarea acreditărilor"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Ştergeţi datele stocate"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Eliminaţi stocarea acreditărilor pentru întregul conţinut şi resetaţi parola"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Sigur doriţi să ştergeţi toate acreditările şi să resetaţi parola pentru stocarea acestora?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Parola actuală:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Parola nouă:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Confirmaţi noua parolă:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Întregul conţinut va fi eliminat, iar parola va fi resetată. Sigur doriţi acest lucru?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Setaţi o parolă pentru stocarea acreditărilor (minimum 8 caractere)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Introduceţi parola corectă."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Introduceţi parola corectă. Mai aveţi la dispoziţie o încercare pentru a introduce parola corectă înainte ca stocarea acreditărilor să fie ştearsă."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Introduceţi parola corectă. Mai aveţi la dispoziţie <xliff:g id="NUMBER">%1$d</xliff:g> (de) încercări pentru a introduce parola corectă înainte de ştergerea stocării acreditărilor."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Parolele nu corespund."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Trebuie să introduceţi şi să confirmaţi o parolă."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Introduceţi parola."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Parola trebuie să conţină minimum 8 caractere."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Parolă incorectă."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Parolă incorectă. Mai aveţi dreptul la o singură încercare înainte ca stocarea acreditărilor să fie ştearsă."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Parolă incorectă. Mai aveţi dreptul la <xliff:g id="NUMBER">%1$d</xliff:g> încercări înainte ca stocarea acreditărilor să fie ştearsă."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Stoc. acredit. este ştearsă."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Stocarea acreditărilor este ştearsă."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Stocarea acreditărilor este activată."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Stocarea acreditărilor este dezactivată."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Ton de urgenţă"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Setaţi comportamentul la efectuarea unui apel de urgenţă"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Confidenţialitate"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Apeluri de intrare"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Notificări"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Configurare Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Conectaţi-vă la reţeaua Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Se efectuează conectarea la reţeaua Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Conectat la reţeaua Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Adăugaţi o reţea"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Configurare Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Neconectat"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Adăugaţi reţea"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Actualizaţi lista"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Salvaţi"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Anulaţi"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Se scanează reţelele..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Atingeţi o reţea pentru a vă conecta la aceasta"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Conectaţi-vă la reţeaua existentă"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Conectaţi-vă la o reţea nesecuriz."</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Introduceţi configuraţia reţelei"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Se conectează..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Treceţi la următorul pas"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP nu este acceptat"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Nu puteţi configura o conexiune Wi-Fi EAP în timpul instalării. După instalare, puteţi face acest lucru în Setări, sub "<b>"Wireless şi reţele"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Conectarea poate dura câteva minute..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Atingeţi "<b>"Înainte"</b>" pentru a continua configurarea."\n\n"Atingeţi "<b>"Înapoi"</b>" pentru a vă conecta la o altă reţea Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Nu puteţi configura o conexiune Wi-Fi EAP în timpul instalării. După instalare, puteţi face acest lucru în Setări, în secţiunea Wireless şi reţele."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Setări de sincronizare"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Sincronizarea se confruntă în prezent cu probleme. Aceasta va fi funcţională în curând."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Adăugaţi un cont"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Setări sincronizare generale"</string>
<string name="background_data" msgid="5779592891375473817">"Date de fundal"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Aplicaţiile pot oricând sincroniza, trimite şi primi date"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Atenţie"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Dezactivarea datelor de fundal creşte durata de viaţă a bateriei şi reduce nivelul de utilizare a datelor. Anumite aplicaţii pot utiliza în continuare conexiunea de date de fundal."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Sincronizare automată"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Aplicaţiile sincronizează datele automat"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Gestionaţi conturi"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sinc. este ACTIVATĂ"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sinc. este DEZACTIV."</string>
<string name="sync_error" msgid="5060969083117872149">"Eroare de sincroniz."</string>
<string name="settings_backup" msgid="2274732978260797031">"Setări copie de rezervă"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Creaţi o copie de rezervă a setărilor dvs."</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sincronizaţi acum"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Anulaţi sincronizarea"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Atingeţi pentru a sincroniza acum<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Calendar"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Agendă"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Bun venit la Sincronizarea Google!"</font>" "\n"O abordare Google asupra sincronizării datelor, care permite accesul la persoanele de contact, întâlniri şi multe alte informaţii, oriunde v-aţi afla."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Setări privind sincronizarea aplicaţiei"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Datele şi sincronizarea"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Schimbaţi parola"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Setări cont"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Eliminaţi contul"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Adăugaţi un cont"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Finalizaţi"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Eliminaţi contul"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Sigur doriţi să eliminaţi acest cont? Eliminarea acestuia va duce la ştergerea tuturor mesajelor, persoanelor de contact şi a altor date de pe tabletă. "\n"Continuaţi?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Sigur doriţi să eliminaţi acest cont? Eliminarea acestuia va duce la ştergerea tuturor mesajelor, persoanelor de contact şi a altor date de pe telefon. "\n"Continuaţi?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Acest cont este necesar pentru anumite aplicaţii. Îl puteţi elimina numai prin resetarea tabletei la configuraţia din fabrică (ceea ce va şterge toate datele dvs. personale). Puteţi face acest lucru în Setările aplicaţiei, sub Confidenţialitate."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Acest cont este necesar pentru anumite aplicaţii. Îl puteţi elimina numai prin resetarea telefonului la configuraţia din fabrică (ceea ce va şterge toate datele dvs. personale). Puteţi face acest lucru în Setările aplicaţiei, sub Confidenţialitate."</string>
- <string name="provider_label" msgid="7724593781904508866">"Abonamente de tip push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sincronizaţi <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Sincronizarea manuală nu este posibilă"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"În prezent, sincronizarea pentru acest element este dezactivată. Pentru a schimba preferinţa, activaţi temporar datele de fundal şi sincronizarea automată."</string>
- <string name="enter_password" msgid="3268224850821675915">"Introduceţi parola de decriptare a stocării"</string>
- <string name="try_again" msgid="5904121494468643129">"Ne pare rău, încercaţi din nou"</string>
- <string name="service_busy" msgid="225227519012409130">"Serviciul este ocupat, încercaţi din nou"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-ru/arrays.xml b/res/values-ru/arrays.xml
index 0733ba5..a1d3353 100644
--- a/res/values-ru/arrays.xml
+++ b/res/values-ru/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"В окне отображается некоторая часть анимации"</item>
<item msgid="488968798204105119">"Плавные переходы при переключении между окнами"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 секунд"</item>
- <item msgid="8881760709354815449">"30 секунд"</item>
- <item msgid="7589406073232279088">"1 минута"</item>
- <item msgid="7001195990902244174">"2 минуты"</item>
- <item msgid="7489864775127957179">"5 минут"</item>
- <item msgid="2314124409517439288">"10 мин"</item>
- <item msgid="6864027152847611413">"30 мин"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"немедленно"</item>
- <item msgid="6736512735606834431">"5 сек"</item>
- <item msgid="8044619388267891375">"15 сек"</item>
- <item msgid="1822002388249545488">"30 сек"</item>
- <item msgid="8538071621211916519">"1 мин"</item>
- <item msgid="5663439580228932882">"2 мин"</item>
- <item msgid="49888496216106852">"5 минут"</item>
- <item msgid="9002737361305019353">"10 мин"</item>
- <item msgid="4322676235684793329">"30 мин"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Очень медленная"</item>
<item msgid="2361722960903353554">"Медленная"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Отличный"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"При выключении экрана"</item>
+ <item msgid="3804733751095821976">"При выключении экрана"</item>
<item msgid="1549288661423279207">"Никогда, если есть питание от сети"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Никогда"</item>
+ <item msgid="1986753720941888596">"Никогда"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Авто"</item>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index 89739e1..2086ec4 100644
--- a/res/values-ru/strings.xml
+++ b/res/values-ru/strings.xml
@@ -27,7 +27,7 @@
<string name="radioInfo_menu_getPDP" msgid="560610293888406317">"Получить список PDP"</string>
<string name="radioInfo_service_in" msgid="1915416319177520020">"В зоне обслуживания"</string>
<string name="radioInfo_service_out" msgid="5238736759641916278">"Вне зоны обслуживания"</string>
- <string name="radioInfo_service_emergency" msgid="2485604591272668370">"Только экстренные вызовы"</string>
+ <string name="radioInfo_service_emergency" msgid="2485604591272668370">"Только экстренный вызов"</string>
<string name="radioInfo_service_off" msgid="1434084741785525415">"Радио отключено"</string>
<string name="radioInfo_roaming_in" msgid="9045363884600341051">"Роуминг"</string>
<string name="radioInfo_roaming_not" msgid="2851853244069662307">"Роуминг отключен"</string>
@@ -87,9 +87,10 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Разряжена"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Слишком высокое напряжение"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Неизвестная ошибка"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Холодная"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
- <string name="bluetooth_visibility" msgid="2930835434091839916">"Видимость"</string>
+ <string name="bluetooth_visibility" msgid="2930835434091839916">"Видимый"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Видимый в течение <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> секунд..."</string>
<string name="bluetooth_not_discoverable" msgid="128269993123955177">"Сделать устройство видимым"</string>
<string name="bluetooth_lock_voice_dialing" msgid="3139322992062086225">"Заблокировать голосовой набор"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Поиск"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Запрос сопряжения Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Запрос на сопряжение"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Выберите для сопряжения с <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Показать полученные файлы"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Показать список файлов, полученных через Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Выбор устройства Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Запрос разрешения на включение Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Приложение на вашем планшетном ПК запрашивает разрешение на включение Bluetooth. Разрешить?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Приложение на вашем планшетном ПК запрашивает разрешение на включение Bluetooth и режима видимости на <xliff:g id="TIMEOUT">%1$d</xliff:g> с. Разрешить?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Приложение на вашем телефоне запрашивает разрешение на включение Bluetooth и видимого режима на <xliff:g id="TIMEOUT">%1$d</xliff:g> с. Разрешить?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Включается Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Автоматическое соединение"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Настройки даты и времени"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Начать <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Аккаунт:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Настройки прокси-сервера"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Настройки прокси-сервера"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Настройка глобального прокси HTTP и списка исключений"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Очистить"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Порт"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Отмена"</string>
<string name="settings_label" msgid="1626402585530130914">"Настройки"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Настройки"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Выберите ярлык \"Настройки\""</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Настройки"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Режим полета"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Отключить все беспроводные соединения"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Отключение беспроводных соединений..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Включение беспроводных соединений..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Беспроводные сети"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Беспроводные сети"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Настройки беспроводных модулей"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Wi-Fi, Bluetooth, режим полета, мобильные сети и VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Интернет-роуминг"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Подключаться к службам передачи данных при роуминге"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Выбор оператора"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Выберите оператора связи"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Дата и время"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Установить дату и время"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Установка даты, времени, часового пояса и форматов"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Автонастройка даты и времени"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Использовать время сети"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Упорядочить по часовому поясу"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Дата"</string>
<string name="time_picker_title" msgid="483460752287255019">"Время"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Тайм-аут"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Блокировать экран через <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> после его автоматического отключения"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Блокировать устройство при тайм-ауте"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Показывать данные о владельце на экране блокировки"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Сведения о владельце"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Настройка функции \"Мое местоположение\", разблокировка экрана и блокировка хранилища регистрационных данных"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Настройка функции \"Мое местоположение\", разблокировка экрана и блокировка хранилища регистрационных данных"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Пароли"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Шифрование устройства"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Зашифровать данные на устройстве"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Зашифровать данные на устройстве"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Требуется установить PIN-код или пароль для разблокировки устройства"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Требуется установить PIN-код или пароль для разблокировки устройства"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Зашифровано"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Вы можете зашифровать свои аккаунты, настройки, загруженные приложения и их данные, мультимедийные и другие файлы. После того как ваш телефон будет зашифрован, вы сможете расшифровать его, только выполнив сброс настроек, что приведет к удалению всех данных на вашем телефоне."\n\n"Процесс шифрования занимает около часа. Перед началом шифрования убедитесь, что батарея заряжена полностью, и не выключайте телефон до завершения шифрования. Если этот процесс будет прерван, вы можете потерять все свои данные или их часть."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Вы можете зашифровать свои аккаунты, настройки, загруженные приложения и их данные, мультимедийные и другие файлы. После того как ваш телефон будет зашифрован, вы сможете расшифровать его, только выполнив сброс настроек, что приведет к удалению всех данных на вашем телефоне."\n\n"Процесс шифрования занимает около часа. Перед началом шифрования убедитесь, что батарея заряжена полностью, и не выключайте телефон до завершения шифрования. Если этот процесс будет прерван, вы можете потерять все свои данные или их часть."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Зашифровать планшет"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Зашифровать телефон"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Подтвердить шифрование"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Зашифровать данные пользователя? Эту операцию нельзя отменить. Ее также нельзя прерывать, поскольку это может привести к потере данных! Шифрование может занять около часа."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Зашифровать данные пользователя? Эту операцию нельзя отменить. Ее также нельзя прерывать, поскольку это может привести к потере данных! Шифрование может занять около часа."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Шифрование"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Повторите попытку через ^1 с."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Настройка блокировки экрана"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Настройка блокировки экрана"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Блокировка экрана"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Настроить блокировку экрана"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Сменить способ блокировки"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Смена или отключение графического ключа, PIN-кода и пароля"</string>
- <string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Выбрать метод блокировки экрана"</string>
+ <string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Выберите метод блокировки экрана"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Отключение"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Никогда не блокировать экран"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Нет защиты"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Не требует граф. кода, PIN-кода или пароля для разбл. экрана"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Не показывать экран блокировки"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Снять защиту"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Отключить блокировку экрана"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Графический ключ"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Требовать графический ключ для разбл. экрана"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Создайте графический ключ разблокировки экрана"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Требовать цифровой PIN-код для разбл. экрана"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Создайте PIN-код разблокировки экрана"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Пароль"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Требовать пароль для разблокировки экрана"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Создайте пароль разблокировки экрана"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Запрещено удаленным администратором"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Выкл."</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Нет защиты"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Защита графическим ключом"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Защита PIN-кодом"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Защита паролем"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Отключить блокировку экрана"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Удалить графический ключ разблокировки"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Удалить ПИН-код разблокировки"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Администратор устройства запрещает использование последнего пароля"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"ОК"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Отмена"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Отмена"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Далее"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Администрирование устройства"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Администраторы устройства"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Просмотрите или отключите администраторов устройств"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Выбрать администраторов устройства"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Добавление и удаление администраторов устройства"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Включить Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Настройки Bluetooth"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Настройки Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Настройка подключений, видимости и имени устройства"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Запрос сопряжения Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Введите PIN-код для сопряжения с устройством <xliff:g id="DEVICE_NAME">%1$s</xliff:g> (попробуйте 0000 или 1234). Может понадобиться ввести этот же PIN-код на устройстве Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Введите ключ доступа для сопряжения с \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Для сопряжения с \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" подтвердите, что показывается ключ доступа: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"запрашивает сопряжение."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Введите \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" на устройстве \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" и нажмите Enter или Return, чтобы установить сопряжение."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Сопряжение"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Не устанавливать сопряжение"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"устройство Bluetooth"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Параметры..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Подключить к..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Мультимедиа"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Гарнитура"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Планшетный ПК"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Передать"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Устройство ввода"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Общий модем"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Устройство <xliff:g id="DEVICE_NAME">%1$s</xliff:g> будет отключено от источника звука."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Устройство <xliff:g id="DEVICE_NAME">%1$s</xliff:g> будет отключено от гарнитуры."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> отключается от устройства ввода."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Устройство <xliff:g id="DEVICE_NAME">%1$s</xliff:g> будет отключен от модема."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"параметры <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Действия устройства"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Подключить"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Использовать для аудиоустройства телефона"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Используется для передачи файлов"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Использовать для ввода"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Использовать для доступа к Интернету"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Настройки док-станции"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Использовать док-станцию для звука"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Для громкой связи"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Запомнить настройки"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"Включить NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Использовать радиосвязь ближнего действия для чтения и обмена метками"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Произошла ошибка."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Включить Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Настройки Wi-Fi"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Не удалось выполнить поиск сети"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Уведомления о сетях"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Сообщать при обнаружении открытой сети"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Правила перехода Wi-Fi в спящий режим."</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"При каких условиях переключаться с Wi-Fi на сотовую сеть"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"При установке правила перехода в спящий режим возникла неполадка."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Добавить сеть Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Сети Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Поиск"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Изменить сеть"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Настройка сети"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Введите PIN-код точки доступа"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Настройки WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Настройка WPS-доступа"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Введите PIN-код <xliff:g id="WPS_PIN">%1$s</xliff:g> в точке доступа"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS уже используется, для завершения потребуется около минуты"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Не удалось запустить WPS. Повторите попытку позже."</string>
<string name="wifi_ssid" msgid="641393708309146745">"Имя сети (SSID)"</string>
<string name="wifi_security" msgid="6603611185592956936">"Безопасность"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Уровень сигнала"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Не подключаться"</string>
<string name="wifi_save" msgid="3331121567988522826">"Сохранить"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Отмена"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Запущен еще один сеанс WPS. Повторите попытку через несколько минут."</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Дополнительные функции"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Спящий режим"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"При каких условиях переключаться с Wi-Fi на сотовую сеть"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"При установке правила перехода в спящий режим возникла неполадка."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Полоса частот Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Укажите рабочий диапазон частот"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"При настройке полосы частот возникла неполадка."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Точка доступа <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Хот-спот Android"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Звук"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Экран"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Экран"</string>
<string name="sound_settings" msgid="5007659014828162881">"Настройки звука"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Режим без звука"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Отключить все звуки, кроме мультимедиа и будильника"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Автоматически менять ориентацию экрана при повороте телефона"</string>
<string name="brightness" msgid="2354961343555249270">"Яркость"</string>
<string name="brightness_summary" msgid="838917350127550703">"Настроить яркость экрана"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Тайм-аут"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Экран отключится автоматически после <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Автоотключение экрана"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Яркость автоматически"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Настройки блокировки SIM-карты"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Настроить блокировку"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Недоступно"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Общая информация"</string>
<string name="device_status" msgid="607405385799807324">"Общая информация"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Статус батареи, сети и другая информация"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, номер телефона, сигнал и т.д."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Номер телефона, уровень сигнала и т.д."</string>
<string name="storage_settings" msgid="4211799979832404953">"Память"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Настройки хранилища"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Отключить USB-накопитель, просмотреть доступные накопители"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Отключение SD-карты, сведения о доступной памяти"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Мой номер телефона"</string>
+ <string name="status_number" msgid="5123197324870153205">"Мой номер телефона"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Версия PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,25 +638,26 @@
<string name="internal_memory" msgid="9129595691484260784">"Внутренний накопитель"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-накопитель"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-карта"</string>
- <string name="memory_available" msgid="5052397223077021181">"Доступно"</string>
- <string name="memory_size" msgid="5458889090691922288">"Всего"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Выполняется расчет..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Приложения"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Мультимедиа"</string>
+ <string name="memory_available" msgid="418542433817289474">"Свободно"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Всего места"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Объем ваших приложений"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Объем ваших данных"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Безопасное извлечение"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Извлечь SD-карту"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Отключить внутр. USB-накопитель"</string>
- <string name="sd_eject_summary" product="default" msgid="3300599435073550246">"Отключение SD-карты для ее безопасного извлечения из устройства"</string>
+ <string name="sd_eject_summary" product="default" msgid="3300599435073550246">"Отключить SD-карту для безопасного извлечения"</string>
<string name="sd_insert_summary" product="nosdcard" msgid="5264016886409577313">"Вставить USB-накопитель для подключения"</string>
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Вставьте SD-карту для подключения"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Подключить USB-накопитель"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Подключить SD-карту"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Подключить USB-накопитель"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Подключить внутр. USB-накопитель"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Подключить SD-карту"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Очистить USB-накопитель"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Очистить SD-карту"</string>
- <string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Удаление с внутреннего USB-накопителя телефона всех данных, включая музыку и фотографии."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Удаление с SD-карты всех данных, включая музыку и фотографии"</string>
+ <string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Удаляет с USB-накопителя музыку, фотографии и все другие данные."</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Удаляет с USB-накопителя музыку, фотографии и все другие данные."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Недоступно"</string>
<string name="read_only" msgid="6702420168629076340">" (только для чтения)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Отключить USB-накопитель"</string>
@@ -727,18 +708,17 @@
<string name="menu_restore" msgid="8260067415075573273">"Восстановить настройки по умолчанию"</string>
<string name="restore_default_apn_completed" msgid="3990449939234957281">"Восстановление настроек APN по умолчанию завершено"</string>
<string name="master_clear_title" msgid="5907939616087039756">"Сброс настроек"</string>
- <string name="master_clear_summary" product="tablet" msgid="4036344100254678429">"Возврат к заводским настройкам и удаление всех данных из памяти планшетного ПК"</string>
- <string name="master_clear_summary" product="default" msgid="4986154238001088492">"Возврат к заводским настройкам и удаление всех данных из памяти телефона"</string>
+ <string name="master_clear_summary" product="tablet" msgid="4036344100254678429">"Удаляет все данные из памяти планшетного ПК"</string>
+ <string name="master_clear_summary" product="default" msgid="4986154238001088492">"Удаляет все данные из памяти телефона"</string>
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Это приведет к удалению всех данных с "<b>"внутреннего накопителя"</b>" планшета, среди которых: "\n\n<li>"Ваш аккаунт Google;"</li>\n<li>"Настройки/данные системы и приложений;"</li>\n<li>"Загруженные приложения."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Это приведет к удалению всех данных с "<b>"внутреннего накопителя"</b>", среди которых:"\n\n<li>"Ваш аккаунт Google;"</li>\n<li>"Настройки/данные системы и приложений;"</li>\n<li>"Загруженные приложения."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"В настоящее время вы выполнили вход в следующие аккаунты:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Музыка"</li>\n<li>"Фото"</li>\n<li>"Другие данные"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Чтобы удалить музыку, изображения и другие пользовательские данные, необходимо удалить всю информацию с "<b>"USB-накопителя"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Чтобы удалить музыку, фотографии и другие данные пользователя, необходимо очистить "<b>"SD-карту"</b>"."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Чтобы удалить музыку, изображения и другие пользовательские данные, необходимо удалить всю информацию с "<b>"USB-накопителя"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Очистить USB-накопитель"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Очистить SD-карту"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Удалить с USB-накопителя музыку, фотографии и все другие данные."</string>
- <string name="erase_external_storage_description" product="default" msgid="46603515218075174">"Удаление с SD-карты всех данных, включая музыку и фотографии"</string>
+ <string name="erase_external_storage_description" product="default" msgid="46603515218075174">"Удаляет с SD-карты музыку, фотографии и все другие данные."</string>
<string name="master_clear_button_text" product="tablet" msgid="3130786116528304116">"Сбросить планшетный ПК"</string>
<string name="master_clear_button_text" product="default" msgid="7550632653343157971">"Сбросить настройки телефона"</string>
<string name="master_clear_final_desc" msgid="6917971132484622696">"Стереть всю личную информацию и загруженные приложения? Это действие нельзя отменить!"</string>
@@ -750,7 +730,7 @@
<string name="media_format_title" product="nosdcard" msgid="3999653431422767156">"Очистить USB-накопитель"</string>
<string name="media_format_title" product="default" msgid="4427528440306787972">"Очистить SD-карту"</string>
<string name="media_format_summary" product="nosdcard" msgid="776603298628082065">"Уничтожает все данные на USB-накопителе"</string>
- <string name="media_format_summary" product="default" msgid="3805714639375830120">"Удаление всех данных с SD-карты"</string>
+ <string name="media_format_summary" product="default" msgid="3805714639375830120">"Удаляет все данные с карты SD"</string>
<string name="media_format_desc" product="nosdcard" msgid="4553860683952763905">"Это приведет к очистке USB-накопителя. Вы потеряете "<b>"все"</b>" хранящиеся на нем данные!"</string>
<string name="media_format_desc" product="default" msgid="1598627584181935513">"Это приведет к очистке SD-карты. Вы потеряете "<b>"все"</b>" данные на карте!"</string>
<string name="media_format_button_text" product="nosdcard" msgid="6293669371185352810">"Очистить USB-накопитель"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Использовать A-GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Использовать сервер для A-GPS (снимите флажок для менее интенсивного использования сети)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Использовать сервер для A-GPS (снимите флажок для улучшения работы GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Использовать данные о местоположении при поиске"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Использовать данные о местоположении в поиске и других службах Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Данные о местоположении используются для улучшения работы поиска и других служб Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Использовать данные о местоположении при поиске"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Использовать данные о местоположении в поиске и других службах Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"\"Мое местоположение\" используется для улучшения результатов поиска и работы других служб Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"О планшетном ПК"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"О телефоне"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Просмотр юридической информации, состояния планшетного ПК и версии ПО"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Пароль был установлен"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"ПИН-код был установлен"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Ключ был установлен"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Блокировка экрана"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Блокировка экрана"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Изменить ключ"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Изменить ПИН-код разблокировки"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Начертите существующий ключ"</string>
@@ -870,13 +850,16 @@
<string name="next_button_label" msgid="8890792540116568321">"Далее"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Безопасность планшетного ПК"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Обеспечение безопасности телефона"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Защитите свой планшет от несанкционированного использования, создав личный графический ключ для разблокировки экрана. На следующем экране пальцем соедините точки в любой последовательности. Необходимо соединить хотя бы четыре точки. "\n\n"Готовы? Нажмите \"Далее\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Защитите телефон от несанкционированного использования, создав собственный графический ключ разблокировки экрана. "\n<font height="17">\n</font><b>"1"</b>" На следующем экране показан пример вычерчивания ключа. "\n<font height="17">\n</font><b>"3"</b>" Подготовьтесь и создайте собственный графический ключ разблокировки. Можно экспериментировать с ключами, но в них должны быть соединены как минимум четыре точки. "\n<font height="17">\n</font><b>"3"</b>" Для подтверждения начертите графический ключ повторно. "\n<font height="17">\n</font><b>" Готовы? Нажмите \"Далее\""</b>". "\n<font height="3">\n</font>"Если вы не хотите устанавливать защиту телефона, выберите \"Отмена\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Управление приложениями"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Управление установленными приложениями и их удаление"</string>
<string name="applications_settings" msgid="3736173521008476946">"Приложения"</string>
<string name="applications_settings_summary" msgid="2714215108369119717">"Управление приложениями, настройка клавиш быстрого запуска"</string>
- <string name="applications_settings_header" msgid="6018266337275422250">"Настройки приложений"</string>
+ <string name="applications_settings_header" msgid="6018266337275422250">"Настройки приложения"</string>
<string name="install_applications" msgid="4872012136210802181">"Неизвестные источники"</string>
<string name="install_unknown_applications" msgid="6612824788917283662">"Разрешить установку приложений, полученных не из Маркета"</string>
<string name="install_all_warning" product="tablet" msgid="8143969767997876735">"Планшетный ПК и личные сведения более уязвимы к атакам приложений из неизвестных источников. Вы подтверждаете, что принимаете на себя всю ответственность в случае повреждения планшетного ПК и потери данных при использовании этих приложений."</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Всего"</string>
<string name="application_size_label" msgid="5055196275624686382">"Приложение"</string>
<string name="data_size_label" msgid="8679376373625710107">"Данные"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-накопитель"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-карта"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Удалить"</string>
<string name="disable_text" msgid="6544054052049395202">"Отключить"</string>
<string name="enable_text" msgid="9217362512327828987">"Включить"</string>
@@ -919,7 +900,7 @@
<string name="disabled" msgid="9206776641295849915">"Отключено"</string>
<string name="no_applications" msgid="5190227407135243904">"Нет приложений."</string>
<string name="internal_storage" msgid="1584700623164275282">"Внутренний накопитель"</string>
- <string name="sd_card_storage" product="nosdcard" msgid="2673203150465132465">"USB-память"</string>
+ <string name="sd_card_storage" product="nosdcard" msgid="2673203150465132465">"USB-накопитель"</string>
<string name="sd_card_storage" product="default" msgid="7623513618171928235">"SD-карта"</string>
<string name="recompute_size" msgid="7722567982831691718">"Повторное вычисление размера..."</string>
<string name="clear_data_dlg_title" msgid="4470209520936375508">"Удалить"</string>
@@ -956,10 +937,10 @@
<string name="move_app_failed_dlg_text" msgid="8824246817947643697">"Не удалось переместить приложение. <xliff:g id="REASON">%1$s</xliff:g>"</string>
<string name="app_install_location_title" msgid="2068975150026852168">"Место установки"</string>
<string name="app_install_location_summary" msgid="879753854530300436">"Изменить установочную папку для новых приложений."</string>
- <string name="storageuse_settings_title" msgid="5657014373502630403">"Использование памяти"</string>
- <string name="storageuse_settings_summary" msgid="2556057379120846792">"Проверьте, сколько места в памяти устройства занимают различные приложения"</string>
- <string name="runningservices_settings_title" msgid="8097287939865165213">"Работающие приложения"</string>
- <string name="runningservices_settings_summary" msgid="854608995821032748">"Просмотр и управление работающими приложениями"</string>
+ <string name="storageuse_settings_title" msgid="5657014373502630403">"Использование хранилища"</string>
+ <string name="storageuse_settings_summary" msgid="2556057379120846792">"Хранилище, используемое приложениями"</string>
+ <string name="runningservices_settings_title" msgid="8097287939865165213">"Работающие программы"</string>
+ <string name="runningservices_settings_summary" msgid="854608995821032748">"Просмотр и управление работающими программами"</string>
<string name="service_restarting" msgid="2242747937372354306">"Перезапуск"</string>
<string name="cached" msgid="1059590879740175019">"Кэшированный фоновый процесс"</string>
<string name="no_running_services" msgid="2059536495597645347">"Ничего не запущено."</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Остановить системную службу?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Вы действительно хотите остановить эту системную службу? В этом случае некоторые функции планшетного ПК могут перестать работать до его выключения и повторного включения."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Вы действительно хотите остановить эту системную службу? В этом случае некоторые функции телефона могут перестать работать до его выключения и повторного включения."</string>
- <string name="language_settings" msgid="5292716747264442359">"Язык и ввод"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Язык и ввод"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Регион и ввод текста"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Настройки языка и клавиатуры"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Языковые настройки"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Настройки клавиатуры"</string>
<string name="phone_language" msgid="1165758957501090679">"Выбрать язык"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Автокоррекция"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Исправлять опечатки"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Заглавные автоматически"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Автоподст. заглавных"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Использовать автоматическую подстановку заглавных букв в начале предложений."</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Автопунктуация"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Настройки внешней клавиатуры"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Ярлыки"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Ввод текста"</string>
<string name="input_method" msgid="5434026103176856164">"Способ ввода"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Текущий метод ввода"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Выбор способа ввода"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Автоматически"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Всегда показывать"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Всегда скрывать"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Настроить способ ввода"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Настройки"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Активные способы ввода"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Использовать язык системы"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Настройки <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Выберите активные способы ввода"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Настройки экранной клавиатуры"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Встроенная клавиатура"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Настройки встроенной клавиатуры"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Время работы Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Время работы Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Подробная история"</string>
- <string name="details_title" msgid="3792801565213935385">"Сведения об использовании"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Сведения о расходе заряда батареи"</string>
<string name="details_subtitle" msgid="32593908269911734">"Сведения об использовании"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Настроить режим энергопотребления"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Вложенные пакеты"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Связь с сервером не установлена. Возможно, не были согласованы параметры шифрования. Изменить настройки шифрования?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Добавить VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Добавить VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Сведения о VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Добавить VPN \"<xliff:g id="NAME">%s</xliff:g>\""</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Сведения: <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Сети VPN"</string>
@@ -1285,43 +1278,56 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Настройка и управление виртуальными частными сетями (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(не изменялось)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(не настроено)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Хранилище регистрационных данных"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Хранилище регистрационных данных"</string>
<string name="credentials_access" msgid="4843187230913860492">"Доступ к хранилищу"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Разрешить приложениям использовать хранилище сертификатов и рег. данных"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Установка с USB-накопителя"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Установка с SD-карты"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Устанавливать сертификаты с USB-накопителя"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Установить сертификаты с SD-карты"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Установить пароль"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Установить или изменить пароль для хранилища регистрационных данных"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Очистить регистрационные данные"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Удалить все содержание и сбросить пароль"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Ввод пароля"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Введите пароль для хранилища регистрационных данных."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Установите пароль для хранилища регистрационных данных. Он должен иметь не менее 8 знаков."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Введите пароль для доступа в хранилище регистрационных данных."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Устанавливать с накопителя"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Установка с SD-карты"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Устанавливать зашифрованные сертификаты с USB-накопителя"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Установить сертификаты шифрования с карты памяти"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Установить пароль"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Установить или изменить пароль для доступа в хранилище рег. данных"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Очистить хранилище"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Очистить все регистрационные данные в хранилище и сбросить пароль"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Вы действительно хотите удалить все регистрационные данные и сбросить пароль для доступа в хранилище регистрационных данных?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Текущий пароль:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Новый пароль:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Подтвердите новый пароль:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Все содержание будет удалено, а пароль изменен. Продолжить?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Установите пароль для доступа в хранилище регистрационных данных (не менее 8 символов)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Введите правильный пароль."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Введите правильный пароль. У вас осталась 1 попытка. После этого хранилище регистрационных данных будет очищено."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Введите правильный пароль. Количество попыток ограничено (осталось: <xliff:g id="NUMBER">%1$d</xliff:g>). После этого хранилище регистрационных данных будет очищено."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Пароли не совпадают."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Необходимо ввести и подтвердить пароль."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Введите пароль."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"В пароле должно быть не менее 8 символов."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Неправильный пароль."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Неверный пароль. У вас осталась одна попытка, после которой хранилище регистрационных данных будет очищено."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Неверный пароль. Осталось несколько попыток (<xliff:g id="NUMBER">%1$d</xliff:g>). Затем хранилище регистрационных данных будет очищено."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Хранилище регистрационных данных очищено."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Хранилище регистрационных данных очищено."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Хранилище регистрационных данных включено."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Хранилище регистрационных данных отключено."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Зашифрованная файловая система"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Зашифровать личные данные пользователя"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Включить хранилище в зашифрованной файловой системе для хранения личных данных пользователя на этом устройстве"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Для включения зашифрованных файловых систем требуется удаление данных с устройства."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Для отключения зашифрованных файловых систем требуется удаление данных с устройства."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Включить"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Отключить"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Отмена"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Изменение режима зашифрованной файловой системы отменено."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Предупреждение для зашифрованных файловых систем"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Тональный сигнал экстренного вызова"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Настроить режим работы при экстренном вызове"</string>
- <string name="privacy_settings" msgid="9206631214140954954">"Восстановление и сброс"</string>
- <string name="privacy_settings_title" msgid="1987089301293213705">"Восстановление данных и настроек"</string>
+ <string name="privacy_settings" msgid="9206631214140954954">"Конфиденциальность"</string>
+ <string name="privacy_settings_title" msgid="1987089301293213705">"Настройки конфиденциальности"</string>
<string name="backup_section_title" msgid="8856083167469467588">"Резервное копирование и восстановление"</string>
- <string name="personal_data_section_title" msgid="7815209034443782061">"Возврат к заводским настройкам"</string>
+ <string name="personal_data_section_title" msgid="7815209034443782061">"Личные данные"</string>
<string name="backup_data_title" msgid="1239105919852668016">"Резервное копирование данных"</string>
- <string name="backup_data_summary" msgid="6515285107793232815">"Сохранять резервные копии данных приложений, паролей точек доступа Wi-Fi и настроек на серверах Google"</string>
+ <string name="backup_data_summary" msgid="6515285107793232815">"Резервное копирование данных приложений, паролей Wi-Fi и других настроек в Google"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"Сохранить данные аккаунта"</string>
<string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Не найдены аккаунты с резервными копиями данных"</string>
<string name="auto_restore_title" msgid="5397528966329126506">"Автовосстановление"</string>
- <string name="auto_restore_summary" msgid="83177150536734378">"При переустановке приложений автоматически восстанавливать данные и настройки из резервных копий"</string>
+ <string name="auto_restore_summary" msgid="83177150536734378">"При переустановке приложения восстановить резервные копии настроек и других данных"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Резервное копирование"</string>
<string name="backup_erase_dialog_message" msgid="7766283133557587608">"Вы уверены, что хотите прекратить создавать резервные копии паролей Wi-Fi, закладок, настроек и данных приложений и удалить все копии с серверов Google?"</string>
<string name="device_admin_settings_title" msgid="1335557832906433309">"Настройки администрирования устройства"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Входящие вызовы"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Оповещения"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Отклик на действия"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Настройки Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Подключение к сети Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Идет подключение к сети Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Подключено к сети Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Добавьте сеть"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Настройка Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Не подключено"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Добавить сеть"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Обновить список"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Сохранить"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Отмена"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Поиск доступных сетей..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Чтобы подключиться, нажмите на сеть"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Нажмите, чтобы выбрать сеть"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Подключиться к существующей сети"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Подключение к незащищенной сети"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Введите конфигурацию сети"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Подключение..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Перейти к следующему шагу"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP не поддерживается"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939"><b>"Нельзя настроить подключение EAP Wi-Fi во время установки. После установки вы можете сделать это в меню \"Настройки\" > \"Беспроводные сети\"."</b></string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Соединение может занять несколько минут..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Нажмите "<b>"Далее"</b>" для продолжения установки."\n\n"Нажмите "<b>"Назад"</b>" для подключения к другой сети Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Нельзя настроить подключение EAP Wi-Fi во время установки. После установки вы можете сделать это в меню \"Настройки\" > \"Беспроводные сети\"."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Настройки синхронизации"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Проблемы с синхронизацией. Скоро все снова будет работать."</string>
<string name="add_account_label" msgid="7811707265834013767">"Добавить аккаунт"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Синхронизация выключена"</string>
<string name="sync_error" msgid="5060969083117872149">"Ошибка синхронизации"</string>
<string name="settings_backup" msgid="2274732978260797031">"Создать резервную копию настроек"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Резервная копия настроек."</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Синхронизировать"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Отменить синхронизацию"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Нажмите, чтобы начать синхронизацию <xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Календарь"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Контакты"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Добро пожаловать в Google Sync!"</font>" "\n"Технология Google синхронизации данных позволяет получать данные о контактах, встречах и многом другом с любого устройства."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Настройки синхронизации приложения"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Cинхронизация данных"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Изменить пароль"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Настройки аккаунта"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Удалить аккаунт"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Добавьте аккаунт"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Готово"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Удалить аккаунт"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Вы действительно хотите удалить этот аккаунт? Это приведет к потере всех связанных с ним сообщений, контактов и других данных в планшетном ПК. "\n"Продолжить?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Вы действительно хотите удалить этот аккаунт? Это приведет к потере всех связанных с ним сообщений, контактов и других данных, имеющихся в телефоне."\n"Продолжить?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Данный аккаунт используется некоторыми приложениями. Чтобы удалить его, перейдите в меню \"Настройки\", выберите пункт \"Восстановление и сброс\" и нажмите \"Сброс настроек\". Обратите внимание: при этом все ваши личные данные будут также удалены с устройства."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Данный аккаунт используется некоторыми приложениями. Чтобы удалить его, перейдите в меню \"Настройки\", выберите пункт \"Восстановление и сброс\" и нажмите \"Сброс настроек\". Обратите внимание: при этом все ваши личные данные будут также удалены с устройства."</string>
- <string name="provider_label" msgid="7724593781904508866">"Подписки на рассылки оператора"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Синхронизировать <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Не удается синхронизировать вручную"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Синхронизация для этого элемента отключена. Чтобы изменить настройку, временно разрешите использование фонового режима передачи данных и автоматическую синхронизацию."</string>
- <string name="enter_password" msgid="3268224850821675915">"Чтобы расшифровать данные хранилища, введите пароль."</string>
- <string name="try_again" msgid="5904121494468643129">"Повторите попытку"</string>
- <string name="service_busy" msgid="225227519012409130">"Служба занята, повторите попытку"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-sk/arrays.xml b/res/values-sk/arrays.xml
index e0d5906..d7b3b00 100644
--- a/res/values-sk/arrays.xml
+++ b/res/values-sk/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Zobrazujú sa niektoré animácie okien"</item>
<item msgid="488968798204105119">"Zobrazujú sa animácie okien"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekúnd"</item>
- <item msgid="8881760709354815449">"30 sekúnd"</item>
- <item msgid="7589406073232279088">"1 minúta"</item>
- <item msgid="7001195990902244174">"2 min."</item>
- <item msgid="7489864775127957179">"5 minút"</item>
- <item msgid="2314124409517439288">"10 minút"</item>
- <item msgid="6864027152847611413">"30 minút"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"okamžite"</item>
- <item msgid="6736512735606834431">"5 sekúnd"</item>
- <item msgid="8044619388267891375">"15 sekúnd"</item>
- <item msgid="1822002388249545488">"30 sekúnd"</item>
- <item msgid="8538071621211916519">"1 min."</item>
- <item msgid="5663439580228932882">"2 min."</item>
- <item msgid="49888496216106852">"5 minút"</item>
- <item msgid="9002737361305019353">"10 minút"</item>
- <item msgid="4322676235684793329">"30 minút"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Veľmi pomalá"</item>
<item msgid="2361722960903353554">"Pomalá"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Výborná"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Pri vypnutí obrazovky"</item>
+ <item msgid="3804733751095821976">"Pri vypnutí obrazovky"</item>
<item msgid="1549288661423279207">"Nikdy pri zapnutom napájaní"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nikdy"</item>
+ <item msgid="1986753720941888596">"Nikdy"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Auto"</item>
diff --git a/res/values-sk/strings.xml b/res/values-sk/strings.xml
index 1567c74..cd2d1c0 100644
--- a/res/values-sk/strings.xml
+++ b/res/values-sk/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Vyhľadávanie"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Žiadosť o párovanie zariadenia Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Žiadosť na párovanie"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Povoliť párovanie so zariadením<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Zobraziť prijaté súbory"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Zobraz. zoznam súborov prijatých pomocou Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Výber zariadenia Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Žiadosť o povolenie zariadenia Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Aplikácia vyžaduje povolenie na zapnutie pripojenia Bluetooth. Chcete udeliť toto povolenie?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Aplikácia v tablete požaduje povolenie na zapnutie pripojenia Bluetooth a nastavenie tabletu do viditeľného režimu na <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Chcete udeliť toto povolenie?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Aplikácia v telefóne požaduje povolenie na zapnutie pripojenia Bluetooth a nastavenie telefónu do viditeľného režimu na <xliff:g id="TIMEOUT">%1$d</xliff:g> s. Chcete udeliť toto povolenie?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Prebieha zapínanie rozhrania Bluetooth..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Automaticky pripojiť"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Nastavenia dátumu a času"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Spustiť <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Účet:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavenia servera proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavenia servera proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Nastavenie globálneho servera proxy protokolu HTTP a zoznamu vylúčení"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Vymazať"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Prebieha zakazovanie bezdrôtových pripojení..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Povoľovanie bezdrôtových pripojení..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Bezdrôtové pripojenie a siete"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Bezdrôtové pripojenie a siete"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Nastavenia bezdrôtového pripojenia a siete"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Spravovať Wi-Fi, Bluetooth, režim V lietadle, mobilné siete a siete VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Dátové služby pri roamingu"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Dátové služby sa môžu pripájať pri roamingu"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Výber operátora"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Vybrať sieťového operátora"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Dátum a čas"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Nastaviť dátum a čas"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Umožňuje nastaviť dátum, čas, časové pásmo a formát"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatický dátum a čas"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Použiť čas zo siete"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Zoradiť podľa časového pásma"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Dátum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Čas"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Časový limit"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Uzamknúť obrazovku <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> po automatickom vypnutí obrazovky"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Uzamknúť zariadenie po vypršaní časového limitu"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Zobrazovať vlastníka na uzamknutej obrazovke"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Info. o vlastníkovi"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Moja poloha, odomknutie obrazovky, zámok SIM, zámok ukladacieho priestoru poverení"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Nastavenie funkcie Moje poloha, odomknutie obrazovky a zamknutie ukladacieho priestoru poverení"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Heslá"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Šifrovanie zariadenia"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Šifrovať údaje v zariadení"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Šifrovať údaje v zariadení"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Vyžaduje nastavenie kódu PIN na odomknutie zariadenia alebo hesla"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Vyžaduje nastavenie kódu PIN na odomknutie zariadenia alebo hesla"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Šifrované"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Svoje účty, nastavenia, prevzaté aplikácie a ich údaje môžete šifrovať. Po zašifrovaní tabletu budete môcť toto šifrovanie zrušiť iba obnovením továrenských nastavení, čím sa všetky údaje v tablete vymažú."\n\n"Šifrovanie môže trvať až hodinu. V tablete musí byť pred šifrovaním nabitá batéria a po celú dobu šifrovania musí byť pripojený k zdroju napájania. Ak šifrovanie prerušíte, prídete o niektoré alebo dokonca o všetky údaje."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Svoje účty, nastavenia, prevzaté aplikácie a ich údaje môžete šifrovať. Po zašifrovaní tabletu budete môcť toto šifrovanie zrušiť iba obnovením továrenských nastavení, čím sa všetky údaje v tablete vymažú."\n\n"Šifrovanie môže trvať až hodinu. V tablete musí byť pred šifrovaním nabitá batéria a po celú dobu šifrovania musí byť pripojený k zdroju napájania. Ak šifrovanie prerušíte, prídete o niektoré alebo dokonca o všetky údaje."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Šifrovať tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Šifrovať telefón"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Potvrdiť šifrovanie"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Šifrovať používateľské údaje? Táto operácia sa nedá vrátiť späť a nesmie byť prerušená, inak dôjde ku strate údajov. Šifrovanie môže trvať až hodinu."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Šifrovať používateľské údaje? Táto operácia sa nedá vrátiť späť a nesmie byť prerušená, inak dôjde ku strate údajov. Šifrovanie môže trvať až hodinu."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Šifrovanie"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Počet sekúnd zostávajúcich do ďalšieho pokusu: ^1."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konf. uzamknutia obr."</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konf. uzamknutia obr."</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Zabezpečenie odomknutia obrazovky"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Nastaviť zamknutie obrazovky"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Zmeniť uzamknutie obrazovky"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Zmeniť alebo zakázať bezpečnostný vzor, kód PIN alebo heslo"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Vyberte spôsob uzamknutia obrazovky"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Vypnuté"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nikdy nezamykať obrazovku"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nezabezpečené"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Pri odomknutí nevyžadovať vzor, PIN ani heslo"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Nezobrazovať uzamknutie obrazovky"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Žiadne"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Zakázať zabezpečenie zámky obrazovky"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Vzor"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Vyžadovať vzor na odomknutie obrazovky"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Odomknite obrazovku nakreslením vzoru"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Požadovať na odomknutie obrazovky číselný kód PIN"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Zadajte číselný kód PIN na odomknutie obrazovky"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Heslo"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Požadovať heslo na odomknutie obrazovky"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Zadajte heslo na odomknutie obrazovky"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Zakázané vzdialeným správcom zariadenia"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Vypnuté"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nezabezpečené"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Zabezpečené vzorom"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Zabezpečené pomocou kódu PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Zabezpečené heslom"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Vypnúť zámku obrazovky"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Odstrániť bezpečnostný vzor"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Odstrániť bezpečnostný kód PIN"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Správca zariadenia nepovoľuje použiť nedávno použité heslo"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Zrušiť"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Zrušiť"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Ďalej"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Správa zariadenia"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Správcovia zariadenia"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Zobraziť alebo deaktivovať správcov zariadenia"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Nastavenia Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Správa pripojenia, nastavenie názvu zariadenia a viditeľnosti"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Žiadosť o párovanie zariadenia Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Párovanie so zariadením „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ spustíte zadaním kódu PIN (skúste zadať kód 0000 alebo 1234). Možno bude potrebné zadať v zariadení Bluetooth rovnaký kód PIN."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Zadajte prístupový kľúč na párovanie so zariadením „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Ak chcete spárovať so zariadením <xliff:g id="DEVICE_NAME">%1$s</xliff:g>, skontrolujte, či je zobrazený prístupový kľúč: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"Zariadenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"žiada o párovanie."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Ak chcete zariadenia spárovať, zadajte heslo „<xliff:g id="PASSKEY">%2$s</xliff:g>“ v zariadení „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ a potvrďte tlačidlom Enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Párovať"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Nepárovať"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"zariadenie Bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Možnosti…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Pripojiť k…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Médiá"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Prenos"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Vstupné zariadenie"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Zdieľanie dát. pripojenia"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Zariadenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojené od zvukovej jednotky média."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Zariadenie <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojené od zvukovej jednotky handsfree."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Profil <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojený od vstupného zariadenia."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Zdieľanie dátového pripojenia bude v zariadení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> odpojené."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Možnosti zariadenia <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Použiť pre zvuk telefónu"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Použiť na prenos súborov"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Použiť pre vstup"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Použiť na prístup k Internetu"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Nastavenia doku"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Použiť zvuk doku"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Ako reproduktor telefónu"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Siete sa nedajú vyhľadávať"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Upozornenie na sieť"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Oznamovať dostupné nezabezpečené siete"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Pravidlá používania siete Wi-Fi v režime spánku"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Určiť, kedy prepnúť zo siete Wi-Fi na mobilný prenos údajov"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Pri nastavení pravidiel pre režim spánku sa vyskytol problém."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Pridať sieť Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Siete Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Vyhľadávanie"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Upraviť sieť"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Nastavenie siete"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Zadajte kód PIN z prístupového bodu"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Nastavenie WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Konfigurácia metódy PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Zadajte kód PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> prístupového bodu"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Nastavenie WPS už prebieha a dokončenie môže trvať desiatky sekúnd"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Spustenie WPS zlyhalo, skúste to znova"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Identifikátor SSID siete"</string>
<string name="wifi_security" msgid="6603611185592956936">"Zabezpečenie"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Sila signálu"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Odstrániť"</string>
<string name="wifi_save" msgid="3331121567988522826">"Uložiť"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Zrušiť"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Bola rozpoznaná ďalšia relácia WPS, skúste to znova o niekoľko minút"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Rozšírené"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Pravidlá používania siete Wi-Fi v režime spánku"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Určiť, kedy prepnúť zo siete Wi-Fi na mobilný prenos údajov"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Pri nastavení pravidiel pre režim spánku sa vyskytol problém."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Frekvenčné pásmo Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Uveďte prevádzkový frekvenčný rozsah"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Pri nast. pravidiel frekv. pásma nastal problém."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"Prenosný prístupový bod Wi-Fi <xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g>"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Zvuk"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Obrazovka"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Zobraziť"</string>
<string name="sound_settings" msgid="5007659014828162881">"Nastavenia zvuku"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tichý režim"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Stlmiť všetky zvuky okrem médií a budíkov"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Pri otáčaní telefónu automaticky prepínať orientáciu"</string>
<string name="brightness" msgid="2354961343555249270">"Jas"</string>
<string name="brightness_summary" msgid="838917350127550703">"Nastavenia jasu obrazovky"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Časový limit"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Obrazovka sa automaticky vypne po <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Časový limit obrazovky"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatický jas"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Nastavenia zámky karty SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Nastavenia zámky karty SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Nie je k dispozícii"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Stav"</string>
<string name="device_status" msgid="607405385799807324">"Stav"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Stav batérie, siete a ďalšie informácie"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Telefónne číslo, signál atď."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefónne číslo, signál atď."</string>
<string name="storage_settings" msgid="4211799979832404953">"Ukladací priestor"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Nastavenia ukladacieho priestoru"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Odpojiť ukladací priestor USB a zobraziť dostupný ukladací priestor"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Umožňuje odpojiť kartu SD a zobraziť dostupný ukladací priestor"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Moje telefónne číslo"</string>
+ <string name="status_number" msgid="5123197324870153205">"Moje telefónne číslo"</string>
<string name="status_min_number" msgid="3519504522179420597">"Min."</string>
<string name="status_prl_version" msgid="8499039751817386529">"Verzia PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Interný ukl. priestor"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Ukladací priestor USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Karta SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"K dispozícii"</string>
- <string name="memory_size" msgid="5458889090691922288">"Celkom"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Prebieha výpočet..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Aplikácie"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Médiá"</string>
+ <string name="memory_available" msgid="418542433817289474">"Pamäť k dispozícii"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Celková pamäť"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Použitie aplikácií"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Použitie médií"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Odpojte zdieľaný ukl. priestor"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Odpojiť kartu SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Odp. interný ukl. priestor USB"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Vymazať ukladací priestor USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Vymazať kartu SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Vymaže vš. údaje v internom uklad. priestore USB, napr. hudbu alebo fotografie."</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Vymaže všetky údaje na karte SD, ako je hudba alebo fotografie"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Vymaže všetky údaje na karte SD, ako je hudba alebo fotografie."</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Nie sú k dispozícii"</string>
<string name="read_only" msgid="6702420168629076340">" (Iba na čítanie)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Odpoj. uklad. priestor USB"</string>
@@ -732,7 +707,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Táto operácia vymaže všetky údaje v "<b>"internom ukladacom priestore"</b>" tabletu vrátane:"\n\n<li>"účtu Google,"</li>\n<li>"údajov a nastavení systému a aplikácií,"</li>\n<li>"prevzatých aplikácií."</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Táto operácia vymaže všetky údaje v "<b>"internom ukladacom priestore"</b>" telefónu vrátane:"\n\n<li>"účtu Google,"</li>\n<li>"údajov a nastavení systému a aplikácií,"</li>\n<li>"prevzatých aplikácií."</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Aktuálne ste prihlásení do nasledujúcich účtov:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Hudba"</li>\n<li>"Fotografie"</li>\n<li>"Iné používateľské údaje"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Ak chcete vymazať aj hudbu, obrázky a ďalšie používateľské údaje, musíte vymazať "<b>"ukladací priestor USB"</b>"."</string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Ak chcete vymazať aj hudbu, obrázky a ďalšie používateľské údaje, musíte vymazať "<b>"kartu SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Vymazať ukladací priestor USB"</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Použiť systém A-GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Vylepšiť funkčnosť GPS pomocou servera (vypnutím tejto funkcie znížite využitie siete)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Vylepšiť funkčnosť GPS pomocou servera (zrušením tejto funkcie zvýšite výkon GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Používať polohu pre Vyhľadávanie Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Používať polohu pre Vyhľadávanie Google a ďalšie služby Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Na zlepšenie výsledkov vyhľadávania Google a ďalších služieb Google sa využívajú informácie o polohe"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Používať polohu pre vyhľadávanie Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Používať polohu pre Vyhľadávanie Google a ďalšie služby Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Na zlepšenie výsledkov vyhľadávania Google a ďalších služieb Google sa využívajú informácie o polohe"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Informácie o tablete"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Informácie o telefóne"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Zobrazuje právne informácie, stav a verziu softvéru"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Heslo bolo nastavené"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Bol nastavený kód PIN"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Vzor bol nastavený"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Uzamknúť obrazovku"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Odomknutie obrazovky"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Zmena bezpečnostného vzoru"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Zmena bezpečnostného kódu PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Potvrďte uložený vzor"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Ďalej"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Zabezpečenie vášho tabletu"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Zabezpečenie telefónu"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Chráňte svoj tablet pred neoprávneným použitím vytvorením osobného vzoru na odomknutie obrazovky. Na ďalšej obrazovke pospájajte prstom body v ľubovoľnom poradí. Musíte spojiť aspoň štyri body. "\n\n"Ak ste pripravený/-á začať, dotknite sa tlačidla Ďalej."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Vytvorte si osobný bezpečnostný vzor a chráňte tak svoj telefón pred nepovoleným použitím. "\n<font height="17">\n</font><b>"1"</b>" Čakajte, kým sa na ďalšom snímku nenakreslí príklad takého vzoru. "\n<font height="17">\n</font><b>"2"</b>" Keď budete pripravení, nakreslite svoj osobný bezpečnostný vzor. Vyskúšajte viac vzorov, ale vždy spojte aspoň štyri bodky. "\n<font height="17">\n</font><b>"3"</b>" Opakujte vzor a tým ho potvrďte. "\n<font height="17">\n</font><b>"Ste pripravení začať? Dotknite sa tlačidla „Ďalej“ "</b>". "\n<font height="3">\n</font>"Ak chcete ponechať telefón nechránený, dotknite sa tlačidla „Zrušiť“."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Správa aplikácií"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Správa a odstraňovanie nainštalovaných aplikácií"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Celkom"</string>
<string name="application_size_label" msgid="5055196275624686382">"Aplikácia"</string>
<string name="data_size_label" msgid="8679376373625710107">"Údaje"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Ukladací priestor USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Karta SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Odinštalovať"</string>
<string name="disable_text" msgid="6544054052049395202">"Zakázať"</string>
<string name="enable_text" msgid="9217362512327828987">"Povoliť"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Zastaviť systémovú službu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Naozaj chcete túto systémovú službu zastaviť? Môže sa stať, že tablet stratí niektoré funkcie. Tie nebudú fungovať, kým telefón nevypnete a nezapnete."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Naozaj chcete túto systémovú službu zastaviť? Môže sa stať, že telefón stratí niektoré funkcie. Tie nebudú fungovať, kým telefón nevypnete a nezapnete."</string>
- <string name="language_settings" msgid="5292716747264442359">"Jazyk & vstup"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Jazyk & vstup"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Jazyk a klávesnica"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Nastavenia jazyka a klávesnice"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Jazykové nastavenia"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Nastavenia klávesnice"</string>
<string name="phone_language" msgid="1165758957501090679">"Vyberte jazyk"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Odkazy"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Zadávanie textu"</string>
<string name="input_method" msgid="5434026103176856164">"Metóda vstupu"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Aktuálna metóda vstupu"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Výber metódy vstupu"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automaticky"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vždy zobrazovať"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Vždy skrývať"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurovať metódy vstupu"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Nastavenia"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktívne metódy vstupu"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Použiť jazyk systému"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Nastavenia <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Vyberte aktívne metódy vstupu"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Správa metód vstupu"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Nastavenia klávesnice na obrazovke"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Vstavaná klávesnica"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Nastavenia vstavanej fyzickej klávesnice"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Doba prevádzky siete Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Doba prevádzky siete Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g> <xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Podrobnosti histórie"</string>
- <string name="details_title" msgid="3792801565213935385">"Podrobnosti používania"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Podrobnosti o využití batérie"</string>
<string name="details_subtitle" msgid="32593908269911734">"Podrobnosti používania"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Upraviť spotrebu energie"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Zahrnuté balíčky"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Vyjednávanie so serverom bolo neúspešné. Server možno nedokáže pracovať s nastavenou možnosťou šifrovania. Chcete skontrolovať nastavenie šifrovania?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Pridať sieť VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Pridať sieť VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Podrobnosti siete VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Pridať sieť VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Podrobnosti pripojenia <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Siete VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Nastaviť a spravovať siete VPN"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nezmenené)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(nie je nastavené)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Ukladací priestor poverení"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Ukladací priestor poverení"</string>
<string name="credentials_access" msgid="4843187230913860492">"Použiť zabezpečené poverenia"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Povoliť aplikáciám prístup k zabezpečeným certifikátom a ďalším povereniam"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Inšt. z ukl. priest. USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Inštalácia z karty SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Inštalovať certifikáty z ukladacieho priestoru USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Inštalovať certifikáty z karty SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Nastaviť heslo"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Nastaviť alebo zmeniť heslo pre ukladací priestor poverení."</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Vymazať poverenia"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Odstrániť všetok obsah a obnoviť heslo"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Zadajte heslo"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Zadajte heslo pre ukladací priestor poverení."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Nastaviť heslo pre ukladací priestor poverení (najmenej 8 znakov)."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Zadajte heslo ukladacieho priestoru poverení."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Inšt. z ukl. priest. USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Inštalácia z karty SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Inštalovať šifrované certifikáty z ukladacieho priestoru USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Nainštalovať šifrované certifikáty z karty SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Nastaviť heslo"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Nastavenie alebo zmena hesla ukladacieho priestoru poverení"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Vymazať ukladací priestor"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Vymazať celý obsah ukladacieho priestoru poverení a obnoviť heslo"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Naozaj chcete odstrániť všetky poverenia a obnoviť heslo do ukladacieho priestoru poverení?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Aktuálne heslo:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nové heslo:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Potvrďte nové heslo:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Všetok obsah bude odstránený a heslo bude obnovené. Naozaj chcete pokračovať?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Nastavte heslo pre ukladací priestor poverení (najmenej 8 znakov)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Zadajte správne heslo."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Zadajte správne heslo. Na zadanie správneho hesla máte ešte jeden pokus, potom bude ukladací priestor poverení vymazaný."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Zadajte správne heslo. Počet zostávajúcich pokusov na zadanie správneho hesla: <xliff:g id="NUMBER">%1$d</xliff:g>. Po vyčerpaní všetkých pokusov bude ukladací priestor poverení vymazaný."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Heslá sa nezhodujú."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Musíte zadať a potvrdiť heslo."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Zadajte heslo."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Heslo musí mať aspoň 8 znakov."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Nesprávne heslo."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Nesprávne heslo. Do vymazania ukladacieho priestoru poverení vám zostáva jeden pokus."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Nesprávne heslo. Počet zostávajúcich pokusov do vymazania ukladacieho priestoru poverení: <xliff:g id="NUMBER">%1$d</xliff:g>."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Ukl. priestor pover. je vymaz."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Ukladací priestor poverení je vymazané."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Ukladací priestor poverení je aktivovaný."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Ukladací priestor poverení je vypnutý."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Tiesňové vyzváňanie"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Nastaviť správanie pri tiesňovom volaní"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Ochrana osobných údajov"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Prichádzajúce hovory"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Upozornenia"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Spätná väzba"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Nastavenie Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Pripojiť k sieti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Prebieha pripájanie k sieti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Pripojené k sieti Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Pridať sieť"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Nastavenie siete Wi-Fi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Nepripojené"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Pridať sieť"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Obnoviť zoznam"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Uložiť"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Zrušiť"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Prebieha vyhľadávanie sietí..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dotykom na sieť sa k nej pripojíte"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Pripojiť k existujúcej sieti"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Pripojenie k nezabezpečenej sieti"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Zadajte konfiguráciu siete"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Prebieha pripájanie..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Pokračovať na ďalší krok"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Zabezpečenie EAP nie je podporované"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Pripojenie Wi-Fi so zabezpečením EAP nemôžete nakonfigurovať počas nastavovania. Môžete to urobiť neskôr v Nastaveniach v časti "<b>"Bezdrôtové pripojenie a siete"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Pripájanie môže trvať niekoľko minút..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Ak chcete pokračovať v nastavovaní, dotknite sa možnosti "<b>"Ďalej"</b>"."\n\n"Ak sa chcete pripojiť k inej sieti Wi-Fi, dotknite sa možnosti "<b>"Späť"</b>"."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Pripojenie Wi-Fi so zabezpečením EAP nemôžete nakonfigurovať počas úvodného nastavenia. Môžete to urobiť neskôr pomocou funkcie Nastavenia v časti Bezdrôtové pripojenie a siete."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Nastavenia synchronizácie"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Vyskytli sa problémy so synchronizáciou. Služba bude čoskoro obnovená."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Pridať účet"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Všeobecné nast. synchronizácie"</string>
<string name="background_data" msgid="5779592891375473817">"Údaje na pozadí"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Aplikácie môžu kedykoľvek synchronizovať, odosielať a prijímať údaje."</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Pozor"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Zakázanie prenosu údajov na pozadí šetrí batériu a znižuje objem použitých údajov. Niektoré aplikácie môžu používať dátové pripojenie na pozadí aj napriek tomuto nastaveniu."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Automatická synchronizácia"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Aplikácie synchronizujú údaje automaticky"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Spravovať účty"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Synchronizácia je ZAPNUTÁ"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Synchronizácia je VYPNUTÁ"</string>
<string name="sync_error" msgid="5060969083117872149">"Chyba synchronizácie"</string>
<string name="settings_backup" msgid="2274732978260797031">"Zálohovať nastavenia"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Zálohovať moje nastavenia"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Synchronizovať"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Zrušiť synchronizáciu"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Dotykom vykonáte synchronizáciu<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalendár"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kontakty"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Víta vás služba Google Sync"</font>" "\n"Spoločnosť Google pomocou nej synchronizuje údaje a umožňuje tak používateľom pristupovať ku kontaktom, stretnutiam a ďalším informáciám, kdekoľvek sa nachádzate."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Nastavenia synchronizácie aplikácií"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Údaje a synchronizácia"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Zmeniť heslo"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Nastavenia účtu"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Odstrániť účet"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Pridanie účtu"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Dokončiť"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Odstrániť účet"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Naozaj chcete tento účet odstrániť? Z tabletu budú tiež odstránené všetky správy, kontakty a ďalšie údaje. "\n"Pokračovať?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Naozaj chcete tento účet odstrániť? Z telefónu budú tiež odstránené všetky správy, kontakty a ďalšie údaje tohto účtu. "\n"Pokračovať?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Tento účet požadujú niektoré aplikácie. Môžete ho odstrániť iba obnovením predvolených výrobných nastavení tabletu (čím sa odstránia všetky osobné údaje). Môžete tak urobiť v Nastaveniach v časti Ochrana osobných údajov."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Tento účet je požadovaný niektorými aplikáciami. Môžete ho odstrániť iba obnovením predvolených výrobných nastavení telefónu (ktoré odstráni všetky osobné údaje). Môžete tak urobiť v Nastaveniach v časti Ochrana osobných údajov."</string>
- <string name="provider_label" msgid="7724593781904508866">"Zobraziť odbery"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synchronizácia <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Nie je možné ručne synchronizovať"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synchronizácia tejto položky je momentálne zakázaná. Ak chcete predvoľbu zmeniť, dočasne zapnite prenos údajov na pozadí a automatickú synchronizáciu."</string>
- <string name="enter_password" msgid="3268224850821675915">"Ak chcete dešifrovať ukladací priestor, zadajte heslo"</string>
- <string name="try_again" msgid="5904121494468643129">"Je nám ľúto, skúste to znova"</string>
- <string name="service_busy" msgid="225227519012409130">"Služba je zaneprázdnená, skúste to znova"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-sl/arrays.xml b/res/values-sl/arrays.xml
index df2fa1c..e7e6743 100644
--- a/res/values-sl/arrays.xml
+++ b/res/values-sl/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Nekatere animacije oken so prikazane"</item>
<item msgid="488968798204105119">"Prikazane so vse animacije oken"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekund"</item>
- <item msgid="8881760709354815449">"30 sekund"</item>
- <item msgid="7589406073232279088">"1 minuta"</item>
- <item msgid="7001195990902244174">"2 minuti"</item>
- <item msgid="7489864775127957179">"5 minut"</item>
- <item msgid="2314124409517439288">"10 minut"</item>
- <item msgid="6864027152847611413">"30 minut"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"takoj"</item>
- <item msgid="6736512735606834431">"5 sekund"</item>
- <item msgid="8044619388267891375">"15 sekund"</item>
- <item msgid="1822002388249545488">"30 sekund"</item>
- <item msgid="8538071621211916519">"1 minuta"</item>
- <item msgid="5663439580228932882">"2 minuti"</item>
- <item msgid="49888496216106852">"5 minut"</item>
- <item msgid="9002737361305019353">"10 minut"</item>
- <item msgid="4322676235684793329">"30 minut"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Zelo počasna"</item>
<item msgid="2361722960903353554">"Počasna"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Odlična"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Ko se zaslon izklopi"</item>
+ <item msgid="3804733751095821976">"Ko se zaslon izklopi"</item>
<item msgid="1549288661423279207">"Nikoli, ko je naprava priklopljena"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Nikoli"</item>
+ <item msgid="1986753720941888596">"Nikoli"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Samodejno"</item>
diff --git a/res/values-sl/strings.xml b/res/values-sl/strings.xml
index 304eec3..875ea4b 100644
--- a/res/values-sl/strings.xml
+++ b/res/values-sl/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Iskanje"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Zahteva za seznanitev Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Zahteva za seznanitev"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Izberite, če želite seznanitev z napravo <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Pokaži prejete datoteke"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Pokaži seznam datotek, prejetih prek povezave Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Izbirnik naprave Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Zahteva za dovoljenje za uporabo funkcije Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Program zahteva dovoljenje za vklop Bluetootha. Ali dovolite?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Program v tabličnem računalniku zahteva dovoljenje za vklop Bluetootha, da bodo druge naprave bodo lahko odkrile računalnik (<xliff:g id="TIMEOUT">%1$d</xliff:g> s). Ali dovolite?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Eden od programov v telefonu zahteva dovoljenje, da vklopi Bluetooth in za <xliff:g id="TIMEOUT">%1$d</xliff:g> sekund omogoči vidnost telefona drugim napravam. Ali želite to storiti?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Vklop Bluetootha …"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Samodejna povezava"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Datum in nastavitve"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13.00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13.00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Začni <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Račun:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavitve strežnika proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Nastavitve strežnika proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Nastavi globalni strežnik HTTP proxy in seznam izločitev"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Počisti"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Vrata"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Onemogočanje brezžičnih povezav ..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Omogočanje brezžičnih povezav ..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Brezžična omrežja"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Brezžično in omrežja"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Nastavitve brezžične povezave in omrežij"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Upravljanje brezžičnih funkcij in funkcij Bluetooth, načina za letalo, mobilnih omrežij in omrežij VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Podatkovno gostovanje"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Med gostovanjem vzpostavi povezavo s podatkovnimi storitvami"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Izbira operaterja"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Izberite omrežnega operaterja"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum in ura"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Nastavitev datuma in ure"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Nastavi datum, uro, časovni pas in oblike"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Samodejna datum in ura"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Uporabi uro omrežja"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Razvrsti po časovnem pasu"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Ura"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Časovna omejitev"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Zakleni zaslon <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>, ko se samodejno izklopi"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Zakleni napravo, ko preteče časovna omejitev"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Pokaži lastniku informacije o zaklepanju zaslona"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Podatki o lastniku"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Nastavi Mojo lokacijo, odklepanje zaslona, zaklepanje kartice SIM, zaklepanje shrambe poverilnic"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Nastavitev Moje lokacije, odklepanja zaslona, zaklepanja shrambe poverilnic"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Gesla"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Šifriranje naprave"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Šifriraj podatke v napravi"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Šifriraj podatke v napravi"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Nastaviti morate PIN ali geslo za odklepanje naprave"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Nastaviti morate PIN ali geslo za odklepanje naprave"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Šifrirano"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Račune, nastavitve, prenesene programe in njihove podatke, predstavnostne in druge datoteke lahko šifrirate. Ko tablični računalnik enkrat šifrirate, ga lahko dešifrirate samo s ponastavitvijo na tovarniške nastavitve, pri čemer se izbrišejo vsi podatki v njem."\n\n"Šifriranje traja do eno uro. Postopek morate začeti z napolnjeno baterijo, računalnik pa imejte priključen na napajanje, dokler šifriranje ni končano. Če prekinete šifriranje, boste izgubili nekatere ali vse podatke."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Račune, nastavitve, prenesene programe in njihove podatke, predstavnostne in druge datoteke lahko šifrirate. Ko tablični računalnik enkrat šifrirate, ga lahko dešifrirate samo s ponastavitvijo na tovarniške nastavitve, pri čemer se izbrišejo vsi podatki v njem."\n\n"Šifriranje traja do eno uro. Postopek morate začeti z napolnjeno baterijo, računalnik pa imejte priključen na napajanje, dokler šifriranje ni končano. Če prekinete šifriranje, boste izgubili nekatere ali vse podatke."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Šifriraj tablični računalnik"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Šifriraj telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Potrdite šifriranje"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Želite šifrirati uporabniške podatke? To dejanje je nepovratno in ga ni mogoče prekiniti brez izgube podatkov. Šifriranje traja do eno uro."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Želite šifrirati uporabniške podatke? To dejanje je nepovratno in ga ni mogoče prekiniti brez izgube podatkov. Šifriranje traja do eno uro."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Šifriranje"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Poskusite znova čez ^1 sek."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Nastavitev zaklepanja zaslona"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Nastavitev zaklepanja zaslona"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Varnost pri odklepanju zaslona"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Nastavi zaklepanje zaslona"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Spremeni zaklepanje zaslona"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Spremeni ali onemogoči vzorec, kodo PIN ali varnost gesla"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Izberite način zaklepanja zaslona"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Izključeno"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne zakleni zaslona"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Nazaščiten"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Ne zahteva vzorca, PIN-a ali gesla za odk. zas."</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ne pokaži zaslona za zaklepanje"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Brez"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Onemogoči zaščito za odklepanje zaslona"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Vzorec"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Zahtevaj vzorec za odklepanje zaslona"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Risanje vzorca za odklepanje zaslona"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Koda PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Zahtevaj številski PIN za odklep. zaslona"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Vnos številske kode PIN za odklepanje zaslona"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Geslo"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Zahtevaj geslo za odklepanje zaslona"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Vnesite geslo, da odklenete zaslon"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Onemogočil oddaljeni skrbnik naprave"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Izklopljeno"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Nezaščiten"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Zaščiten z vzorcem"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Zaščiteno s kodo PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Zaščiteno z geslom"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Izklopi zaklepanje zaslona"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Odstrani vzorec za odklepanje"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Odstrani kodo PIN za odklepanje"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Skrbnik naprave ne dovoli uporabe nedavnega gesla"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"V redu"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Prekliči"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Prekliči"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Naprej"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Skrbništvo naprave"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Skrbniki naprav"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Ogled ali izklop skrbnikov naprave"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Nastavitve Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Upravljanje povezav, nastavitev imena naprave in vidnosti"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Zahteva za seznanitev Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Vnesite PIN za seznanitev z napravo »<xliff:g id="DEVICE_NAME">%1$s</xliff:g>«. (Poskusite 0000 ali 1234.) Ta PIN boste morda morali vnesti tudi v napravi Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Vnesite geslo za seznanitev z napravo »<xliff:g id="DEVICE_NAME">%1$s</xliff:g>«."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Če želite seznanitev z napravo »<xliff:g id="DEVICE_NAME">%1$s</xliff:g>«, potrdite, da prikazuje geslo: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"Naprava <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" želi seznanitev."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Vnesite »<xliff:g id="PASSKEY">%2$s</xliff:g>« v napravo »<xliff:g id="DEVICE_NAME">%1$s</xliff:g>« za seznanitev, nato pa pritisnite »return« ali »enter«."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Seznani"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Ne seznani"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Naprava Bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Možnosti …"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Vzpostavi povezavo z ..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Predstavnost"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Prostoročno"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablični računalnik"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Prenos"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Vnosna naprava"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Internet prek mob. napr."</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Povezava med napravo <xliff:g id="DEVICE_NAME">%1$s</xliff:g> in zvokom nosilca podatkov bo prekinjena."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Povezava med napravo <xliff:g id="DEVICE_NAME">%1$s</xliff:g> in prostoročnim zvokom bo prekinjena."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Povezava med napravo <xliff:g id="DEVICE_NAME">%1$s</xliff:g> in vnosno napravo bo prekinjena."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Internetna povezava naprave <xliff:g id="DEVICE_NAME">%1$s</xliff:g> prek mobilne naprave bo prekinjena."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Možnosti za <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Uporabi za zvok telefona"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Uporabi za prenos datotek"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Uporabi za vnos"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Uporabi za dostop do interneta"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Nastavitve stojala"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Uporabi stojalo za zvok"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Kot zvočnik"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Iskanje omrežij ni mogoče"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Obveščanje o omrežjih"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Obvesti me, ko bo na voljo odprto omrežje"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Pravilnik o nedejavnosti brezžične povezave"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Navedite, kdaj preklopiti z brezžične na mobilno podatkovno storitev"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Pri nastavljanju pravilnika o zaklepanju je prišlo do težave."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Dodaj brezžično omrežje"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Brezžična omrežja"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Išči"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Spremeni omrežje"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Namestitev omrežja"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Vnesite PIN iz dostopne točke"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Nastavitev WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Način nastavitve PIN-a za WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Vnesite PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> na dostopni točki"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Nastavitev WPS že poteka in lahko traja nekaj deset sekund"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS se ni zagnal, poskusite znova"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Omrežni SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Varnost"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Moč signala"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Pozabi"</string>
<string name="wifi_save" msgid="3331121567988522826">"Shrani"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Prekliči"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Zaznana je druga seja WPS, poskusite znova čez nekaj minut"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Dodatno"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Pravilnik o nedejavnosti brezžične povezave"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Navedite, kdaj preklopiti z brezžične na mobilno podatkovno storitev"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Pri nastavljanju pravilnika o zaklepanju je prišlo do težave."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Frekvenčni pas za Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Določite frekvenčni obseg delovanja"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Težava pri nastavitvi frekvenčnega pasu."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> prenosna brezžična dostopna točka"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Zvok"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Zaslon"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Zaslon"</string>
<string name="sound_settings" msgid="5007659014828162881">"Zvočne nastavitve"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tihi način"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Utišaj vse zvoke razen predstavnosti in opozoril"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Samodejno preklopi usmeritev ob zasuku telefona"</string>
<string name="brightness" msgid="2354961343555249270">"Svetlost"</string>
<string name="brightness_summary" msgid="838917350127550703">"Prilagoditev svetlosti zaslona"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Časovna omejitev"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Zaslon se samodejno izklopi po <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Časovna omejitev za zaslon"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Samodejna svetlost"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Nastavitve zaklepanja kartice SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Nastavi zaklepanje kartice SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Ni na voljo"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Stanje"</string>
<string name="device_status" msgid="607405385799807324">"Stanje"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Stanje baterije in omrežja ter drugi podatki"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Telefonska številka, signal itn."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonska številka, signal itn."</string>
<string name="storage_settings" msgid="4211799979832404953">"Pomnilnik"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Nastavitve pomnilnika"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Izpni pomnilnik USB, prikaži razpoložljiv pomnilnik"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Izpenjanje kartice SD, prikaz razpoložljivega pomnilnika"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Moja telefonska številka"</string>
+ <string name="status_number" msgid="5123197324870153205">"Moja telefonska številka"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Različica seznama prednostnih omrežij za gostovanje"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Notranji pomnilnik"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Pomnilnik USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Kartica SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Na voljo"</string>
- <string name="memory_size" msgid="5458889090691922288">"Skupaj"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Izračunavanje ..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Programi"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Predstavnost"</string>
+ <string name="memory_available" msgid="418542433817289474">"Razpoložljivi prostor"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Skupni prostor"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Uporaba programov"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Uporaba nosilcev podatkov"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Izpni skupno shrambo"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Izpni kartico SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Izpni notranji pomnilnik USB"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"S tem boste iz "<b>"notranjega pomnilnika"</b>" tabličnega računalnika izbrisali vse podatke:"\n\n<li>"Google Račun"</li>\n<li>"podatke in nastavitve sistema in programov"</li>\n<li>"prenesene programe"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"S tem boste iz "<b>"notranjega pomnilnika"</b>" telefona izbrisali vse podatke:"\n\n<li>"Google Račun"</li>\n<li>"podatke in nastavitve sistema in programov"</li>\n<li>"prenesene programe"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Trenutno ste prijavljeni v te račune:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Glasba"</li>\n<li>"Fotografije"</li>\n<li>"Drugi uporabniški podatki"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Če želite izbrisati tudi glasbo, slike in druge uporabniške podatke, morate izbrisati "<b>"pomnilnik USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Če želite izbrisati tudi glasbo, slike in druge uporabniške podatke, morate izbrisati "<b>"kartico SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Če želite počistiti tudi glasbo, slike in druge uporabniške podatke, morate izbrisati "<b>"kartico SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Izbriši pomnilnik USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Izbriši kartico SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Izbriši vse podatke na notranjem pomnilniku USB, na primer glasbo ali fotografije."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Uporabljaj GPS s pomočjo"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Uporabljaj strežnik za pomoč pri sistemu GPS (ne označite, da zmanjšate uporabo omrežja)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Uporabi strežnik za pomoč pri uporabi sistema GPS (ne označite, da izboljšate delovanje sistema GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Uporabi lokacijo za Google Iskanje"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Uporabi lokacijo za Google Iskanje in druge Googlove storitve"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokacija je uporabljena za izboljšanje rezultatov Google Iskanja in drugih Googlovih storitev"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Uporabi lokacijo za Googlovo iskanje"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Uporabi lokacijo za Googlovo iskanje in druge storitve"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokacija je uporabljena za izboljšanje rezultatov Googlovega iskanja in drugih storitev"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"O tabličnem računalniku"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"O telefonu"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Ogled pravnih informacij, stanja, različice programske opreme"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Geslo je nastavljeno"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Koda PIN je nastavljena"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Vzorec je nastavljen"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Zakleni zaslon"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Odklepanje zaslona"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Spremeni vzorec za odklepanje"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Spremeni kodo PIN za odklepanje"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Potrdite shranjeni vzorec"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Naprej"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Varnost tabličnega računalnika"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Zaščita telefona"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Zaščitite tablični računalnik pred nepooblaščeno uporabo tako, da ustvarite vzorec za odklepanje zaslona. Na naslednjem zaslonu s prstom v poljubnem vrstnem redu povežite pike. Povezati morate vsaj štiri pike. "\n\n"Ste pripravljeni?Dotaknite se možnosti »Naprej«."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Zaščitite telefon pred nepooblaščeno uporabo tako, da ustvarite osebni vzorec za odklepanje zaslona. "\n<font height="17">\n</font><b>"1"</b>" Na naslednjem zaslonu si oglejte risanje primera vzorca. "\n<font height="17">\n</font><b>"2"</b>" Ko boste pripravljeni, narišite lastni vzorec za odklepanje. Preizkusite različne vzorce, vendar povežite vsaj 4 točke. "\n<font height="17">\n</font><b>"3"</b>" Nato znova narišite vzorec, da ga potrdite. "\n<font height="17">\n</font><b>"Ste pripravljeni? Dotaknite se možnosti »Naprej«"</b>". "\n<font height="3">\n</font>"Če telefona nočete zaščititi, se dotaknite možnosti »Prekliči«."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Upravljanje programov"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Upravljajte in odstranite nameščene programe"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Skupaj"</string>
<string name="application_size_label" msgid="5055196275624686382">"Program"</string>
<string name="data_size_label" msgid="8679376373625710107">"Podatki"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Pomnilnik USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Kartica SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Odstrani"</string>
<string name="disable_text" msgid="6544054052049395202">"Onemogoči"</string>
<string name="enable_text" msgid="9217362512327828987">"Omogoči"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Želite ustaviti sistemsko storitev?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Ali ste prepričani, da želite ustaviti to sistemsko storitev? Če jo boste ustavili, lahko nekatere funkcije v tabličnem računalniku nehajo pravilno delovati, dokler ga ne izklopite in ponovno vklopite."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Ali ste prepričani, da želite ustaviti to sistemsko storitev? Če jo ustavite, lahko nekatere funkcije v telefonu nehajo pravilno delovati, dokler ga ne izklopite in spet vklopite."</string>
- <string name="language_settings" msgid="5292716747264442359">"Jezik in vnos"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Jezik in vnos"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Jezik in tipkovnica"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Nastavitve jezika in tipkovnice"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Nastavitve jezika"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Nastavitve tipkovnice"</string>
<string name="phone_language" msgid="1165758957501090679">"Izberi jezik"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Bližnjice"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Vnos besedila"</string>
<string name="input_method" msgid="5434026103176856164">"Vnosna metoda"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Trenutni način vnosa"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Izbirnik načina vnosa"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Samodejno"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Vedno pokaži"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Vedno skrij"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Nastavitev načinov vnosa"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Nastavitve"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktivni načini vnosa"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Uporaba sistemskega jezika"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Nastavitve za <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Izbira aktivnih načinov vnosa"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Upravljanje vnosnih metod"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Nastavitve zaslonske tipkovnice"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Vgrajena tipkovnica"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Nastavitve vgrajene fizične tipkovnice"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Čas z vklopljenim Wi-Fi-jem"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Čas z vklopljenim Wi-Fi-jem"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Podrobnosti zgodovine"</string>
- <string name="details_title" msgid="3792801565213935385">"Uporabi podrobnosti"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Podrobnosti o uporabi baterije"</string>
<string name="details_subtitle" msgid="32593908269911734">"Uporabi podrobnosti"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Prilagodi porabo energije"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Vključeni paketi"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Pogajanje s strežnikom ni uspelo. Strežnik morda ne sprejme vaše možnosti šifriranja. Ali želite preveriti nastavitev šifriranja?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Dodaj omrežje VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Dodaj omrežje VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Podrobnosti o navideznem zasebnem omrežju"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Dodaj profil VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Podrobnosti profila <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Omrežja VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Nastavitev in upravljanje navideznih zasebnih omrežij (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(nespremenjeno)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ni nastavljeno)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Shramba poverilnic"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Shramba poverilnic"</string>
<string name="credentials_access" msgid="4843187230913860492">"Uporabi zaščitene poverilnice"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Dovoli programom dostop do zaščitenih potrdil in drugih poverilnic"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Namesti s pogona USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Namesti s kartice SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Namesti šifrirana potrdila s pogona USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Namesti potrdila s kartice SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Nastavi geslo"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Nastavitev ali spreminjanje gesla za shrambo poverilnic"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Brisanje poverilnic"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Odstranitev vsebine in obnovitev gesla"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Vnesite geslo"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Vnesite geslo za shrambo poverilnic."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Nastavite geslo za shrambo poverilnic. Imeti mora vsaj 8 znakov."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Vnesite geslo za shrambo poverilnic."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Namesti z pomnilnika USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Namesti s kartice SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Namesti šifrirana potrdila z pomnilnika USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Namesti šifrirana potrdila s kartice SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Nastavi geslo"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Nastavi ali spremeni geslo za shrambo poverilnic"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Počisti shrambo"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Počisto vso vsebino v shrambi poverilnic in ponastavi njeno geslo"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Ali ste prepričani, da želite izbrisati vse poverilnice in ponastaviti geslo shrambe poverilnic?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Trenutno geslo:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Novo geslo:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Potrdite novo geslo:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Vsebina bo izbrisana in geslo ponastavljeno. Ali ste prepričani, da želite to?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Nastavite geslo za shrambo poverilnic (vsaj 8 znakov)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Vnesite pravilno geslo."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Vnesite pravilno geslo. Še enkrat lahko poskusite, preden se shramba poverilnic izbriše."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Vnesite pravilno geslo. Pravilno geslo lahko poskusite vnesti še <xliff:g id="NUMBER">%1$d</xliff:g>-krat, preden se shramba poverilnic izbriše."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Gesli se ne ujemata."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Vnesti morate geslo in ga potrditi."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Vnesite geslo."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Geslo mora imeti vsaj 8 znakov"</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Napoačno geslo."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Napačno geslo. Poskusite lahko še enkrat, preden se shramba poverilnic izbriše."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Napačno geslo. Poskusite lahko še <xliff:g id="NUMBER">%1$d</xliff:g>-krat, preden se shramba poverilnic izbriše."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Shramba poverilnic je izbrisana."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Shramba poverilnic je izbrisana."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Shramba poverilnic je omogočena."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Shramba poverilnic je onemogočena."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Ton v sili"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Nastavi način delovanja ob klicanju v sili"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Zasebnost"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Dohodni klici"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Obvestila"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Povratne informacije"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Nastavitev Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Vzpostavi povezavo z omrežjem Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Vzpostavljanje povezave z omrežjem Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g> ..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Vzpostavljena povezava z omrežjem Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Dodajanje omrežja"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Namestitev Wi-Fi-ja"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Povezava ni vzpostavljena"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Dodaj omrežje"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Osveži seznam"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Shrani"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Prekliči"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Pregledovanje omrežij ..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Dotaknite se omrežja, da vzpostavite povezavo"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Poveži se z obstoječim omrežjem"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Poveži z nezaščitenim omrežjem"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Vnesite konfiguracijo omrežja"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Vzpostavljanje povezave ..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Naprej"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP ni podprt"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"EAP za povezavo Wi-Fi ni mogoče nastaviti med namestitvijo. Po namestitvi lahko to naredite v nastavitvah v razdelku "<b>"Brezžično in omrežja"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Vzpostavljanje povezave lahko traja nekaj minut ..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Če želite nadaljevati nastavitev, se dotaknite "<b>"Naprej"</b>"."\n\n"Če se želite povezati z drugim omrežjem Wi-Fi, se dotaknite "<b>"Nazaj"</b>"."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Med namestitvijo ni mogoče nastaviti EAP za povezavo Wi-Fi. Po namestitvi lahko to naredite v nastavitvah v razdelku »Brezžično in omrežja«."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Nastavitve sinhronizacije"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Pri sinhronizaciji je prišlo do težav. Kmalu bo spet na voljo."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Dodaj račun"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Splošne nastavitve sinhroniz."</string>
<string name="background_data" msgid="5779592891375473817">"Podatki v ozadju"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Programi lahko kadar koli sinhronizirajo, pošiljajo in prejemajo podatke"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Pozor"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Če onemogočite podatke v ozadju, podaljšate življenjsko dobo baterije in zmanjšate rabo podatkov. Nekateri programi bodo mogoče še vedno potrebovali povezavo s podatki v ozadju."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Samodejna sinhronizacija"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Programi samodejno sinhronizirajo podatke"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Upravljanje z računi"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Sinhroniz. je VKLOP."</string>
<string name="sync_disabled" msgid="8511659877596511991">"Sinhron. je IZKLOP."</string>
<string name="sync_error" msgid="5060969083117872149">"Sinhron. napaka"</string>
<string name="settings_backup" msgid="2274732978260797031">"Varnostno kopiranje nastavitev"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Varnostno kopiranje nastavitev"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Sinhroniziraj"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Prekliči sinhronizacijo"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Pritisnite, če želite sinhronizirati<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Koledar"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Stiki"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Pozdravljeni v storitvi Google Sync."</font>" "\n"Googlov način sinhroniziranja podatkov, s katerim lahko dostopate do stikov, koledarskih vnosov in drugih podatkov ne glede na to, kje ste."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Nastavitve sinhronizacije programov"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Podatki in sinhronizacija"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Spremeni geslo"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Nastavitve računa"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Odstrani račun"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Dodajanje računa"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Končaj"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Odstrani račun"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Ali ste prepričani, da želite odstraniti ta račun? S tem boste iz tabličnega računalnika izbrisali tudi vsa sporočila, stike in druge podatke, povezane z njim. "\n"Želite nadaljevati?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Ali ste prepričani, da želite odstraniti ta račun? S tem boste iz telefona izbrisali tudi vsa sporočila, stike in druge podatke, povezane z njim. "\n"Želite nadaljevati?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Ta račun je potreben v nekaterih programih. Odstranite ga lahko samo tako, da nastavitve tabličnega računalnika ponastavite na privzete tovarniške vrednosti (s čimer izbrišete vse osebne podatke). To lahko naredite v razdelku »Zasebnost« programa »Nastavitve«."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Ta račun je potreben v nekaterih programih. Odstranite ga lahko samo tako, da nastavitve telefona ponastavite na privzete tovarniške vrednosti (s čimer izbrišete vse osebne podatke). To lahko naredite v razdelku »Zasebnost« programa »Nastavitve«."</string>
- <string name="provider_label" msgid="7724593781904508866">"Potisne naročnine"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Sinhroniziraj <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Ročna sinhronizacija ni mogoča"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Sinhronizacija za ta element je trenutno onemogočena. Če želite spremeniti nastavitev, vklopite podatke v ozadju in samodejno sinhronizacijo."</string>
- <string name="enter_password" msgid="3268224850821675915">"Vnesite geslo za dešifriranje shrambe"</string>
- <string name="try_again" msgid="5904121494468643129">"Poskusite znova"</string>
- <string name="service_busy" msgid="225227519012409130">"Storitev je zasedena, poskusite znova"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-sr/arrays.xml b/res/values-sr/arrays.xml
index fb64871..d3dd8bb 100644
--- a/res/values-sr/arrays.xml
+++ b/res/values-sr/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Приказани су неки прозори са анимацијама"</item>
<item msgid="488968798204105119">"Приказане су све анимације у прозору"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 секунди"</item>
- <item msgid="8881760709354815449">"30 секунди"</item>
- <item msgid="7589406073232279088">"1 минут"</item>
- <item msgid="7001195990902244174">"2 минута"</item>
- <item msgid="7489864775127957179">"5 минута"</item>
- <item msgid="2314124409517439288">"10 минута"</item>
- <item msgid="6864027152847611413">"30 минута"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"одмах"</item>
- <item msgid="6736512735606834431">"5 секунди"</item>
- <item msgid="8044619388267891375">"15 секунди"</item>
- <item msgid="1822002388249545488">"30 секунди"</item>
- <item msgid="8538071621211916519">"1 минут"</item>
- <item msgid="5663439580228932882">"2 минута"</item>
- <item msgid="49888496216106852">"5 минута"</item>
- <item msgid="9002737361305019353">"10 минута"</item>
- <item msgid="4322676235684793329">"30 минута"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Веома споро"</item>
<item msgid="2361722960903353554">"Полако"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Одлично"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Када се екран искључи"</item>
+ <item msgid="3804733751095821976">"Када се екран искључи"</item>
<item msgid="1549288661423279207">"Никад када је укључен"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Никад"</item>
+ <item msgid="1986753720941888596">"Никад"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Аутоматски"</item>
diff --git a/res/values-sr/strings.xml b/res/values-sr/strings.xml
index 49a3237..d701150 100644
--- a/res/values-sr/strings.xml
+++ b/res/values-sr/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Скенирање"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Захтев за Bluetooth упаривање"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Захтев за упаривање"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Изаберите за упаривање са уређајем <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Приказ примљених датотека"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Приказ листе датотека примљених преко Bluetooth-а"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth бирач уређаја"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Захтев за Bluetooth дозволу"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Апликација захтева дозволу да укључи Bluetooth. Желите ли то да учините?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Апликација са таблета захтева дозволу да укључи Bluetooth и таблет учини видљивим другим уређајима на <xliff:g id="TIMEOUT">%1$d</xliff:g> секунди. Желите ли да то учините?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Апликација на телефону захтева дозволу да укључи Bluetooth и да учини ваш телефон видљивим за друге уређаје на <xliff:g id="TIMEOUT">%1$d</xliff:g> секунде(и). Желите ли ово да урадите?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Укључивање Bluetooth-а…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Аутоматско повезивање"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Подешавања датума и времена"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Покрени <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Налог:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Подешавања за прокси"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Прокси подешавања"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Подесите глобални HTTP прокси и листе изузимања"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Обриши"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Порт"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Онемогућавање бежичних веза..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Омогућавање бежичних веза..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Бежично и мреже"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Бежична веза и мреже"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Подешавања бежичне мреже"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Управљање Wi-Fi мрежом, Bluetooth-ом, режимом рада у авиону, мобилним мрежама и VPN-ом"</string>
<string name="roaming" msgid="3596055926335478572">"Пренос података у ромингу"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Повезивање са услугом за податке током роминга"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Избор оператера"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Избор мрежног оператера"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Датум и време"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Подешавање датума и времена"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Подешавање датума, времена, временске зоне и формата"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Аутоматски датум и време"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Користи време мреже"</string>
@@ -253,10 +252,13 @@
<string name="date_time_date_format" msgid="436706100255870967">"Избор формата датума"</string>
<string name="zone_list_menu_sort_alphabetically" msgid="5683377702671088588">"Сортирај према абецеди"</string>
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Сортирај према временској зони"</string>
- <string name="date_picker_title" msgid="1338210036394128512">"Датум"</string>
- <string name="time_picker_title" msgid="483460752287255019">"Време"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Време чекања"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Закључај екран <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> када се екран аутоматски искључи"</string>
+ <!-- no translation found for date_picker_title (1338210036394128512) -->
+ <skip />
+ <!-- no translation found for time_picker_title (483460752287255019) -->
+ <skip />
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Закључај уређај после времена чекања"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Прикажи информације о власнику на закључ. екрану"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Власник информација"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +268,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Подешавање Моје локације, откључавања екрана, закључавања SIM картице и закључавања акредитива складишта"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Подешавање Моје локације, откључавања екрана, закључавања складишта акредитива"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Лозинке"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Шифровање уређаја"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Шифровање података на уређају"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Шифровање података на уређају"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Захтева да подесите PIN или лозинку за откључавање уређаја"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Захтева да подесите PIN или лозинку за откључавање уређаја"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Шифровано"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Можете да шифрујете налоге, подешавања, преузете апликације и њихове податке, медије и друге датотеке. Када шифрујете телефон, не можете да опозовете шифровање осим уколико не вратите фабричке податке, при чему ћете избрисати све податке на телефону."\n\n"Шифровање може да потраје највише један сат. Таблет треба да покренете са пуном батеријом и треба да буде прикључен на електричну мрежу док се шифровање не доврши. Уколико прекинете процес шифровања, изгубићете све податке или део њих."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Можете да шифрујете налоге, подешавања, преузете апликације и њихове податке, медије и друге датотеке. Када шифрујете телефон, не можете да опозовете шифровање осим уколико не вратите фабричке податке, при чему ћете избрисати све податке на телефону."\n\n"Шифровање може да потраје највише један сат. Таблет треба да покренете са пуном батеријом и треба да буде прикључен на електричну мрежу док се шифровање не доврши. Уколико прекинете процес шифровања, изгубићете све податке или део њих."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Шифруј таблет"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Шифруј телефон"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Потврда шифровања"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Желите ли да шифрујете корисничке податке? Ова радња је неопозива и не може се прекинути без губитка података! Шифровање може да потраје највише један сат."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Желите ли да шифрујете корисничке податке? Ова радња је неопозива и не може се прекинути без губитка података! Шифровање може да потраје највише један сат."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Шифровање"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Покушајте поново за ^1 секунде(и)."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Конфигурисање закључавања екрана"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Конфигурисање закључавања екрана"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Безбедност откључавања екрана"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Подешавање закључавања екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Промена закључавања екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Мењање или онемогућавање шаблона, PIN кода или безбедности лозинке"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Изаберите метод закључавања екрана"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Искључено"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Екран се никада не закључава"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Необезбеђено"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"За откључавање екрана није потребан шаблон, PIN или лозинка"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Не приказуј екран за закључавање"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ништа"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Онемогућавање безбедности откључавањем екрана"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Шаблон"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Захтевање шаблона за откључавање екрана"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Цртање шаблона за откључавање екрана"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"За откључавање екрана је потребан нумерички PIN"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Уношење нумеричког PIN кода за откључавање екрана"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Лозинка"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Захтевање лозинке за откључавање екрана"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Уношење лозинке за откључавање екрана"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Онемогућио администратор удаљеног уређаја"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Искључено"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Необезбеђено"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Обезбеђено помоћу шаблона"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Обезбеђено помоћу PIN-а"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Обезбеђено помоћу лозинке"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Искључивање закључавања екрана"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Уклањање шаблона за откључавање"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Уклањање PIN кода за откључавање"</string>
@@ -368,8 +340,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Администратор уређаја не дозвољава употребу недавно коришћене лозинке"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Потврди"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Откажи"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Откажи"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Следеће"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Администрација уређаја"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Администратори уређаја"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Преглед или деактивирање администратора уређаја"</string>
@@ -379,11 +353,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Подешавања за Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Управљање везама, подешавање назива и видљивости уређаја"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Захтев за Bluetooth упаривање"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Унесите PIN да бисте се упарили са уређајем „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“. (Покушајте са 0000 или 1234.) Можда ћете морати да унесете исти PIN на Bluetooth уређају."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Унесите приступни кôд да бисте се упарили са уређајем „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Да бисте упарили са уређајем „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“, потврдите да се приказује приступни кôд: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" жели да се упари."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Унесите „<xliff:g id="PASSKEY">%2$s</xliff:g>“ на уређају „<xliff:g id="DEVICE_NAME">%1$s</xliff:g>“ да бисте га упарили, а затим притисните return или enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Упари"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Не упаруј"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"bluetooth уређај"</string>
@@ -406,14 +383,15 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Опције…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Повезивање са…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Медији"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Хендсфри"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Таблет"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Пренеси"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Улазни уређај"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Повезивање са Интернетом"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Уређај <xliff:g id="DEVICE_NAME">%1$s</xliff:g>неће бити повезан на звука медија."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Уређај <xliff:g id="DEVICE_NAME">%1$s</xliff:g> неће бити повезан на хендсфри звук."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Уређај <xliff:g id="DEVICE_NAME">%1$s</xliff:g> неће бити повезан на улазнои уређај."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Уређај <xliff:g id="DEVICE_NAME">%1$s</xliff:g>неће бити повезан на Интернет."</string>
+ <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Уређај <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ће бити искључен са звука медија."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Веза између уређаја <xliff:g id="DEVICE_NAME">%1$s</xliff:g> и улазног уређаја ће бити прекинута."</string>
+ <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Интернет веза уређаја <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ће бити прекинута."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Опције за <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Радње уређаја"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Повежи"</string>
@@ -431,7 +409,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Коришћење за аудио телефона"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Коришћење за пренос датотека"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Користи за улаз"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Користи за приступ Интернету"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Подешавања базне станице"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Коришћење постоља за звук"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Као звучник телефона"</string>
@@ -452,9 +431,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Није могуће скенирати мреже"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Обавештење мреже"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Обавести ме када је отворена мрежа доступна"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Смернице за Wi-Fi у режиму спавања"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Одређивање времена пребацивања са Wi-Fi мреже на мобилну мрежу података"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Дошло је до проблема приликом подешавања смерница за режим спавања."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Додај Wi-Fi мрежу"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi мреже"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Скенирај"</string>
@@ -464,10 +440,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Измени мрежу"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Подешавање мреже"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Унесите PIN са приступне тачке"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Подешавање WPS-а"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Конфигурисање метода WPS PIN-а"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Унесите PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> на приступној тачки"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS је већ покренут и може потрајати неколико десетина секунди"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Покретање WPS-а није успело, покушајте поново"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Мрежни SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Безбедност"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Јачина сигнала"</string>
@@ -496,8 +470,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Заборави"</string>
<string name="wifi_save" msgid="3331121567988522826">"Сачувај"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Откажи"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Откривена је још једна WPS сесија, покушајте поново за неколико минута"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Напредно"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Смернице за Wi-Fi у режиму спавања"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Одређивање времена пребацивања са Wi-Fi мреже на мобилну мрежу података"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Дошло је до проблема приликом подешавања смерница за режим спавања."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi опсег фреквенција"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Наведите опсег фреквенција за операцију"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Проблем приликом подешавања опсега фреквенција."</string>
@@ -524,7 +500,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> преносна Wi-Fi приступна тачка"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Звук"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Екран"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Приказ"</string>
<string name="sound_settings" msgid="5007659014828162881">"Подешавања звука"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Нечујни режим"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Искључивање свих звукова осим звукова медија и аларма"</string>
@@ -595,8 +571,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Аутоматска промена положаја приликом ротације телефона"</string>
<string name="brightness" msgid="2354961343555249270">"Осветљеност"</string>
<string name="brightness_summary" msgid="838917350127550703">"Прилагођавање осветљености екрана"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Време чекања"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Екран се аутоматски искључује након <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Време чекања екрана"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Аутоматски ниво осветљености"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Подешавања закључавања SIM картице"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Подешавање закључавања SIM картице"</string>
@@ -633,14 +610,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Није доступно"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Статус"</string>
<string name="device_status" msgid="607405385799807324">"Статус"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Статус батерије, мреже и остале информације"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Број телефона, сигнал итд."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Број телефона, сигнал итд."</string>
<string name="storage_settings" msgid="4211799979832404953">"Меморија"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Подешавања меморије"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Искључивање USB меморије, приказ доступне меморије"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Ослобађање SD картице, приказ доступног складишта"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"Број мобилног директоријума"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Мој број телефона"</string>
+ <string name="status_number" msgid="5123197324870153205">"Мој број телефона"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL верзија"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +634,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Интерна меморија"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB меморија"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD картица"</string>
- <string name="memory_available" msgid="5052397223077021181">"Доступно"</string>
- <string name="memory_size" msgid="5458889090691922288">"Укупно"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Прорачунавање..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Апликације"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Медији"</string>
+ <string name="memory_available" msgid="418542433817289474">"Доступан простор"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Укупан простор"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Простор попуњен апликацијама"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Искоришћен меморијски простор"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Искљ. дељене меморије"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Ослобађање SD картице"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Искљ. интерне USB меморије"</string>
@@ -732,7 +709,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"На овај начин ће се избрисати сви подаци из "<b>"интерне меморије"</b>" таблета, укључујући:"\n\n<li>"Google налог"</li>\n<li>"податке и подешавања везана за систем и апликације"</li>\n<li>"преузете апликације"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"На овај начин ће се избрисати сви подаци из "<b>"интерне меморије"</b>" телефона, укључујући:"\n\n<li>"Google налог"</li>\n<li>"податке и подешавања везана за систем и апликације"</li>\n<li>"преузете апликације"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Тренутно сте пријављени на следеће налоге:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Музика"</li>\n<li>"Фотографије"</li>\n<li>"Други кориснички подаци"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Ако желите да избришете и музику, слике и друге корисничке податке, мораћете да избришете садржај "<b>"USB меморије"</b>"."</string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Ако желите да избришете и музику, слике и друге корисничке податке, мораћете да избришете садржај "<b>"SD картице"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Избриши USB меморију"</string>
@@ -807,9 +783,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Користи помоћни GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Коришћење сервера за помоћ GPS мрежи (опозовите избор да бисте смањили коришћење мреже)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Коришћење сервера за помоћ GPS мрежи (опозовите избор да бисте побољшали GPS учинак)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Користи локацију за Google претрагу"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Користи локацију за Google претрагу и друге Google услуге"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Локација се користи ради побољшавања резултата Google претраге и других Google услуга"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Користи локацију за Google претрагу"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Користи локацију за Google претрагу и друге Google услуге"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Локација се користи ради побољшања резултата Google претраге и других Google услуга"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"О таблету"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"О телефону"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Преглед правних информација, статуса, верзије софтвера"</string>
@@ -829,18 +805,21 @@
<string name="settings_safetylegal_activity_unreachable" msgid="170670055116721810">"Немате везу за пренос података. Да бисте одмах погледали ове информације, идите на %s са било ког рачунара који је повезан са Интернетом."</string>
<string name="settings_safetylegal_activity_loading" msgid="8059022597639516348">"Учитавање…"</string>
<string name="lockpassword_choose_your_password_header" msgid="8624900666929394990">"Одаберите лозинку"</string>
- <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Изаберите шаблон"</string>
+ <!-- no translation found for lockpassword_choose_your_pattern_header (6949761069941694050) -->
+ <skip />
<string name="lockpassword_choose_your_pin_header" msgid="7598849519816138302">"Одаберите PIN"</string>
<string name="lockpassword_confirm_your_password_header" msgid="6308478184889846633">"Потврдите лозинку"</string>
- <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Потврдите шаблон"</string>
+ <!-- no translation found for lockpassword_confirm_your_pattern_header (7543433733032330821) -->
+ <skip />
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"Потврдите PIN"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"Лозинке се не подударају"</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"PIN-ови се не подударају"</string>
- <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"Избор начина откључавања"</string>
+ <!-- no translation found for lockpassword_choose_lock_generic_header (3811438094903786145) -->
+ <skip />
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Лозинка је постављена"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN је постављен"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Шаблон је постављен"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Закључавање екрана"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Откључавање екрана"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Промени шаблон за откључавање"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Промени PIN за откључавање"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Потврдите сачувани шаблон"</string>
@@ -870,7 +849,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Следеће"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Обезбеђивање таблета"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Обезбеђивање телефона"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Заштитите таблет од неовлашћене употребе тако што ћете направити лични шаблон за откључавање екрана. На следећем екрану повежите тачке прстом у било ком редоследу. Морате да повежете најмање четири тачке. "\n\n"Спремни сте да почнете? Додирните „Следеће“."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Заштитите телефон од неовлашћеног коришћења тако што ћете направити лични шаблон за откључавање екрана. "\n<font height="17">\n</font><b>"1"</b>" На следећем екрану погледајте пример прављења шаблона. "\n<font height="17">\n</font><b>"2"</b>" Када сте спремни, нацртајте сопствени лични шаблон за откључавање. Експериментишите са различитим шаблонима, али повежите најмање четири тачке. "\n<font height="17">\n</font><b>"3"</b>" Поново нацртајте свој шаблон да бисте потврдили. "\n<font height="17">\n</font><b>"Да ли сте спремни да почнете? Додирните „Следеће“"</b>". "\n<font height="3">\n</font>"Да бисте телефон оставили без заштите, додирните „Откажи“."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Управљање апликацијама"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Управљање и уклањање инсталираних апликација"</string>
@@ -893,8 +875,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Укупно"</string>
<string name="application_size_label" msgid="5055196275624686382">"Апликација"</string>
<string name="data_size_label" msgid="8679376373625710107">"Подаци"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB меморија"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD картица"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Деинсталирај"</string>
<string name="disable_text" msgid="6544054052049395202">"Онемогући"</string>
<string name="enable_text" msgid="9217362512327828987">"Омогући"</string>
@@ -991,8 +971,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Желите да зауставите системску услугу?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Да ли заиста желите да зауставите ову системску услугу? Ако је зауставите, неке функције таблета ће можда престати исправно да раде док таблет не искључите и поново укључите."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Да ли заиста желите да зауставите ову системску услугу? Ако је зауставите, неке функције телефона ће можда престати исправно да раде док телефон не искључите и поново укључите."</string>
- <string name="language_settings" msgid="5292716747264442359">"Језик и унос"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Језик и унос"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Језик и тастатура"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Подешавања језика и тастатуре"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Језичка подешавања"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Подешавања тастатуре"</string>
<string name="phone_language" msgid="1165758957501090679">"Избор језика"</string>
@@ -1033,17 +1013,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Пречице"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Унос текста"</string>
<string name="input_method" msgid="5434026103176856164">"Метод улаза"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Тренутни метод уноса"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Бирање метода уноса"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Аутоматски"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Увек прикажи"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Увек сакриј"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Конфигуриши методе уноса"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Подешавања"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Методе активног уноса"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Користи језик система"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> подешавања"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Изаберите методе активног уноса"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Управљање методима улаза"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Подешавања тастатуре на екрану"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Уграђена тастатура"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Подешавања уграђене, физичке тастатуре"</string>
@@ -1106,8 +1095,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi на време"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi на време"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Детаљи историје"</string>
- <string name="details_title" msgid="3792801565213935385">"Коришћење детаља"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Детаљи коришћења батерије"</string>
<string name="details_subtitle" msgid="32593908269911734">"Коришћење детаља"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Прилагођавање коришћења напајања"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Садржани пакети"</string>
@@ -1242,7 +1232,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Преговарање са сервером није успело. Сервер се није сложио са опцијом шифровања. Желите ли да проверите подешавање шифровања?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Додавање VPN-а"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Додавање VPN-а"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Детаљи о VPN-у"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Додавање VPN мреже <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Детаљи о профилу <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN-ови"</string>
@@ -1285,31 +1276,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Подешавање и управљање виртуелним приватним мрежама (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(непромењено)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(није подешено)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Складиште акредитива"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Складиште акредитива"</string>
<string name="credentials_access" msgid="4843187230913860492">"Коришћење безбедносних акредитива"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Дозвољавање да апликације приступе безбедносним сертификатима и другим акредитивима"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Инсталирање из USB меморије"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Инсталирање са SD картице"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Инсталирање сертификата из USB меморије"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Инсталирање сертификата са SD картице"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Подешавање лозинке"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Подешавање или промена лозинке за складиште акредитива"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Брисање акредитива"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Уклањање целокупног садржаја и поновно постављање лозинке"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Унос лозинке"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Унесите лозинку за складиште акредитива."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Подесите лозинку за складиште акредитива. Мора да има најмање 8 знакова."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Уношење лозинке за складиште акредитива."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Инсталирање са USB-а"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Инсталирање са SD картице"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Инсталација шифр. сертификата из USB меморије"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Инсталирање шифрованих сертификата са SD картице"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Подешавање лозинке"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Подешавање или промена лозинке за складиште акредитива"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Брисање складишта"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Брисање свог садржаја из складишта акредитива и поновно постављање лозинке"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Желите ли заиста да избришете све акредитиве и поново поставите лозинку за складиште акредитива?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Тренутна лозинка:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Нова лозинка:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Потврдите нову лозинку:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Сав садржај ће бити уклоњен, а лозинка ће бити поново постављена. Јесте ли сигурни да то желите?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Подешавање лозинке за складиште акредитива (најмање 8 знакова)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Унесите тачну лозинку."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Унесите тачну лозинку. Имате још један покушај да унесете тачну лозинку пре брисања складишта акредитива."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Унесите тачну лозинку. Имате још <xliff:g id="NUMBER">%1$d</xliff:g> покушаја да унесете тачну лозинку пре брисања складишта акредитива."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Лозинке се не подударају."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Потребно је да унесете и потврдите лозинку."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Унесите лозинку."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Лозинка мора да има најмање 8 знакова."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Нетачна лозинка."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Нетачна лозинка. Имате још један унос пре брисања складишта акредитива."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Нетачна лозинка. Имате још <xliff:g id="NUMBER">%1$d</xliff:g> уноса пре брисања складишта акредитива."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Складиште акред. је избрисано."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Складиште акредитива је избрисано."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Складиште акредитива је омогућено."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Складиште акредитива је онемогућено."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Тон за хитне позиве"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Подешавање понашања када се успоставља хитни позив"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Приватност"</string>
@@ -1318,8 +1332,10 @@
<string name="personal_data_section_title" msgid="7815209034443782061">"Лични подаци"</string>
<string name="backup_data_title" msgid="1239105919852668016">"Прављење резервних копија мојих података"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Направите резервну копију података о апликацијама, лозинки за Wi-Fi и других подешавања на Google серверима"</string>
- <string name="backup_configure_account_title" msgid="3790872965773196615">"Резервна копија налога"</string>
- <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Тренутно ниједан налог не чува резервне копије података"</string>
+ <!-- no translation found for backup_configure_account_title (3790872965773196615) -->
+ <skip />
+ <!-- no translation found for backup_configure_account_default_summary (2436933224764745553) -->
+ <skip />
<string name="auto_restore_title" msgid="5397528966329126506">"Аутоматско враћање"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"Ако поново инсталирам неку апликацију, врати резервна подешавања или друге податке"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Резервна копија"</string>
@@ -1339,11 +1355,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Долазни позиви"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Обавештења"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Повратне информације"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Подешавање Wi-Fi везе"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Повежи са Wi-Fi мрежом <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Повезивање са Wi-Fi мрежом <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Успостављена је веза са Wi-Fi мрежом <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Додавање мреже"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi подешавање"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Није повезано"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Додај мрежу"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Освежи листу"</string>
@@ -1356,58 +1368,80 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Сачувај"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Откажи"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Скенирање мрежа..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Додирните мрежу да бисте се повезали са њом"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Повезивање са постојећом мрежом"</string>
- <string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Повезивање са небезбедном мрежом"</string>
+ <!-- no translation found for wifi_setup_status_unsecured_network (8143046977328718252) -->
+ <skip />
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Унесите конфигурацију мреже"</string>
<string name="wifi_setup_status_new_network" msgid="7468952850452301083">"Повезивање са новом мрежом"</string>
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Повезивање..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Пређите на следећи корак"</string>
- <string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP није подржан"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Не можете да конфигуришете EAP Wi-Fi везу током инсталације. Након инсталације, то можете да урадите у Подешавањима у склопу ставке "<b>"Бежична веза и мреже"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Повезивање може да потраје неколико минута..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Додирните "<b>"Следеће"</b>" да бисте наставили са подешавањем."\n\n"Додирните "<b>"Назад"</b>" да бисте се повезали са другом Wi-Fi мрежом."</string>
+ <!-- no translation found for wifi_setup_status_eap_not_supported (3196386445567501484) -->
+ <skip />
+ <!-- no translation found for wifi_setup_eap_not_supported (5083895763075722698) -->
+ <skip />
<string name="account_sync_settings_title" msgid="4578227872921044660">"Подешавања сихронизације"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Синхронизација тренутно има проблема. Ускоро ће се вратити."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Додај налог"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Подеш. опште синхронизације"</string>
<string name="background_data" msgid="5779592891375473817">"Подаци о позадини"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Апликације увек могу да синхронизују, шаљу и примају податке"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Пажња"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Ако онемогућите позадинске податке, батерија ће трајати дуже, а употреба података ће бити мања. Неке апликације ће можда и даље користити везу са позадинским подацима."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Аутоматски синхронизуј"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Апликације синхронизују податке аутоматски"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Управљање налозима"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Синхрон. је УКЉУЧЕНА"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Синхр. је ИСКЉУЧЕНА"</string>
<string name="sync_error" msgid="5060969083117872149">"Грешка при синхрон."</string>
<string name="settings_backup" msgid="2274732978260797031">"Направи резервну копију подешавања"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Прављење резервне копије подешавања"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Синхронизуј"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Откажи синхронизацију"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Додирните да бисте синхронизовали одмах<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Календар"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Контакти"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Добро дошли у Google синхронизацију!"</font>" "\n"Google-ов приступ синхронизовању података како би се омогућио приступ контактима, обавезама и још много чему без обзира где се налазите."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Подешавања синхронизације апликације"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Подаци и синхронизација"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Промени лозинку"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Подешавања налога"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Уклони налог"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Додавање налога"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Заврши"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Уклањање налога"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Да ли заиста желите да уклоните овај налог? Уклањањем ћете такође избрисати све поруке, контакте и остале податке са таблета. "\n"Желите ли да наставите?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Да ли заиста желите да уклоните овај налог? Уклањањем ћете такође избрисати све поруке, контакте и остале податке са телефона. "\n"Желите ли да наставите?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Неке апликације захтевају овај налог. Можете да га уклоните само ако вратите таблет на фабричка подешавања (чиме бришете све личне податке). То можете да урадите у апликацији Подешавања, опција Приватност."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Неке апликације захтевају овај налог. Можете да га уклоните само ако вратите телефон на фабричка подешавања (чиме бришете све личне податке). То можете да урадите у апликацији Подешавања, опција Приватност."</string>
- <string name="provider_label" msgid="7724593781904508866">"Пријаве за Push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Синхронизација апликације <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Ручно синхронизовање није могуће"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Синхронизација за ову ставку је тренутно онемогућена. Да бисте променили подешавање, привремено укључите позадинске податке и аутоматско синхронизовање."</string>
- <string name="enter_password" msgid="3268224850821675915">"Унесите лозинку да бисте дешифровали меморију"</string>
- <string name="try_again" msgid="5904121494468643129">"Жао нам је, покушајте поново"</string>
- <string name="service_busy" msgid="225227519012409130">"Услуга је заузета. Покушајте поново"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-sv-nokeys/strings.xml b/res/values-sv-nokeys/strings.xml
index f2da83c..0ff7696 100644
--- a/res/values-sv-nokeys/strings.xml
+++ b/res/values-sv-nokeys/strings.xml
@@ -16,5 +16,5 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <string name="applications_settings_summary" msgid="6616938758022986257">"Hantera appar"</string>
+ <string name="applications_settings_summary" msgid="6616938758022986257">"Hantera program"</string>
</resources>
diff --git a/res/values-sv/arrays.xml b/res/values-sv/arrays.xml
index 8232c79..f3b2219 100644
--- a/res/values-sv/arrays.xml
+++ b/res/values-sv/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Vissa fönsteranimeringar visas"</item>
<item msgid="488968798204105119">"Alla fönsteranimeringar visas"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 sekunder"</item>
- <item msgid="8881760709354815449">"30 sekunder"</item>
- <item msgid="7589406073232279088">"1 minut"</item>
- <item msgid="7001195990902244174">"2 minuter"</item>
- <item msgid="7489864775127957179">"5 minuter"</item>
- <item msgid="2314124409517439288">"10 minuter"</item>
- <item msgid="6864027152847611413">"30 minuter"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"omedelbart"</item>
- <item msgid="6736512735606834431">"5 sekunder"</item>
- <item msgid="8044619388267891375">"15 sekunder"</item>
- <item msgid="1822002388249545488">"30 sekunder"</item>
- <item msgid="8538071621211916519">"1 minut"</item>
- <item msgid="5663439580228932882">"2 minuter"</item>
- <item msgid="49888496216106852">"5 minuter"</item>
- <item msgid="9002737361305019353">"10 minuter"</item>
- <item msgid="4322676235684793329">"30 minuter"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Mycket långsam"</item>
<item msgid="2361722960903353554">"Långsam"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Utmärkt"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"När skärmen är avstängd"</item>
+ <item msgid="3804733751095821976">"När skärmen är avstängd"</item>
<item msgid="1549288661423279207">"Aldrig när den är inkopplad"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Aldrig"</item>
+ <item msgid="1986753720941888596">"Aldrig"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Automatiskt"</item>
diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml
index 5403235..b1bedbf 100644
--- a/res/values-sv/strings.xml
+++ b/res/values-sv/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Slut"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Överspänning"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Okänt fel"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Sval"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Synlighet"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"Synlig i <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> sekunder..."</string>
@@ -111,10 +112,7 @@
<string name="progress_scanning" msgid="3760897655335759141">"Skannar"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Begäran om parkoppling för Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Begäran om parkoppling"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Välj att parkoppla med <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <!-- no translation found for bluetooth_show_received_files_title (816172853268536399) -->
- <skip />
- <!-- no translation found for bluetooth_show_received_files_summary (7322193220909480775) -->
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
<skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth-enhetsväljare"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Begäran om Bluetooth-behörighet"</string>
@@ -124,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Ett program på pekdatorn begär tillåtelse att aktivera Bluetooth och göra pekdatorn synlig för andra enheter i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Vill du tillåta det?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Ett program i telefonen begär tillåtelse att aktivera Bluetooth och göra telefonen synlig för andra enheter i <xliff:g id="TIMEOUT">%1$d</xliff:g> sekunder. Vill du tillåta det?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Aktiverar Bluetooth …"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Anslut automatiskt"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Inställningar för datum och tid"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"Kl. 13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -139,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Starta <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Konto:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy-inställningar"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy-inställningar"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Ange global HTTP-proxy och uteslutningslistor"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Rensa"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -222,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"Avbryt"</string>
<string name="settings_label" msgid="1626402585530130914">"Inställningar"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Inställningar"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Välj genväg för inställningar"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Inställningar"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Flygplansläge"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Inaktivera alla trådlösa anslutningar"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Inaktiverar trådlösa anslutningar…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Aktivera trådlösa anslutningar..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Trådlöst och nätverk"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Trådlöst och nätverk"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Inställningar för trådlöst och nätverk"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Hantera Wi-Fi, Bluetooth, flygplansläge, mobila nätverk och VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Dataroaming"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Anslut till datatjänster vid roaming"</string>
@@ -240,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Val av operatör"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Välj en nätverksoperatör"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Datum och tid"</string>
- <!-- outdated translation 6493371065760315350 --> <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Ange datum och tid"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Ange datum, tidszon och format"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Automatiskt datum och tid"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Använd nätverkets tid"</string>
@@ -257,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sortera efter tidszon"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Datum"</string>
<string name="time_picker_title" msgid="483460752287255019">"Tid"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Tidsgräns"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Lås skärmen <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> när skärmen stängts av automatiskt"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Lås enheten när tidsgränsen uppnåtts"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Visa ägaruppgifter på den låsta skärmen"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Ägaruppgifter"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -268,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Ställ in Min plats, skärmupplåsning, lås för SIM-kort och lås för uppgiftslagring"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Ställ in Min plats, skärmupplåsning, lås för uppgiftslagring"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Lösenord"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Enhetskryptering"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Kryptera data på enheten"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Kryptera data på enheten"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Du måste ange PIN-kod eller lösenord för upplåsning av enheten."</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Du måste ange PIN-kod eller lösenord för upplåsning av enheten."</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Krypterad"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Du kan kryptera dina konton, inställningar, hämtade appar och tillhörande data, media och andra filer. När du har krypterat telefonen går det inte att dekryptera den utan att återställa standardinställningarna, vilket leder till att alla data på telefonen tas bort."\n\n"Krypteringen kan ta upp till en timme. Se till att batteriet är laddat innan du börjar och låt laddaren vara ansluten tills krypteringen är klar. Om du avbryter krypteringen kan du förlora en del av eller alla dina data."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Du kan kryptera dina konton, inställningar, hämtade appar och tillhörande data, media och andra filer. När du har krypterat telefonen går det inte att dekryptera den utan att återställa standardinställningarna, vilket leder till att alla data på telefonen tas bort."\n\n"Krypteringen kan ta upp till en timme. Se till att batteriet är laddat innan du börjar och låt laddaren vara ansluten tills krypteringen är klar. Om du avbryter krypteringen kan du förlora en del av eller alla dina data."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Kryptera pekdatorn"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Kryptera telefonen"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Bekräfta kryptering"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Kryptera användardata? Det går inte att ångra åtgärden och om förloppet avbryts går data förlorade! Krypteringen kan ta upp till en timme."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Kryptera användardata? Det går inte att ångra åtgärden och om förloppet avbryts går data förlorade! Krypteringen kan ta upp till en timme."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Krypterar"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Försök igen om ^1 sekunder."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Konfigurera skärmlåset"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Konfigurera skärmlåset"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Skärmens upplåsningssäkerhet"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ställ in skärmlåset"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Ändra skärmlåset"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Ändra eller inaktivera grafiskt lösenord, PIN eller lösenord"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Välj en metod för att låsa skärmen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Av"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Lås aldrig skärmen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Oskyddad"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Kräv inte någon typ av lösenord för att låsa upp skärmen"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Visa inte skärmlåset"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Ingen"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Inaktivera skärmens upplåsningssäkerhet"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Grafiskt lösenord"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Kräv grafiskt lösenord för att låsa upp"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Rita grafiskt lösenord för att låsa upp skärmen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Kräv en PIN-kod för att låsa upp skärmen"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ange en numerisk PIN-kod för att låsa upp skärmen"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Lösenord"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Kräv lösenord för att låsa upp skärmen"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ange ett lösenord för att låsa upp skärmen"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Har inaktiverats av fjärradministratören"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Av"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Oskyddad"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Skyddad med grafiskt lösenord"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Skyddad med PIN-kod"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Skyddad med lösenord"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Inaktivera skärmlås"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Ta bort grafiskt lösenord"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Ta bort PIN-kod för upplåsning"</string>
@@ -370,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Enhetsadministratören tillåter inte att ett lösenord som använts nyligen används igen"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Avbryt"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Avbryt"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Nästa"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Enhetsadministration"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Enhetsadministratörer"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Visa eller inaktivera enhetsadministratörer"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Välj enhetsadministratörer"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Lägga till eller ta bort enhetsadministratörer"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Aktivera Bluetooth"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth-inställningar"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth-inställningar"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Hantera anslutningar, ange inställningar för enhetens namn och synlighet"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Begäran om Bluetooth-parkoppling"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Ange PIN-kod för parkoppling med \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" (testa 0000 eller 1234). Du kan behöva ange samma kod på Bluetooth-enheten."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Ange nyckel för parkoppling med \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Om du vill parkoppla med <xliff:g id="DEVICE_NAME">%1$s</xliff:g>bekräftar du att rätt nyckel visas: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"vill kopplas ihop."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Ange \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" följt av Retur på \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" om du vill parkoppla."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Parkoppling"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Parkoppla inte"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"Bluetooth-enhet"</string>
@@ -408,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Alternativ..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Anslut till…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Pekdator"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Överför"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Indataenhet"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Internetdelning"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kopplas ifrån medialjud."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kopplas ifrån handsfree."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kopplas ifrån indataenheten."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> kopplas ifrån Internetdelning."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> alternativ"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Enhetsåtgärder"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Anslut"</string>
@@ -433,15 +411,18 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Använd för telefonens ljud"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Använd för filöverföring"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Använd för inmatning"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Använd för Internetåtkomst"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Dockningsinställningar"</string>
- <string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Använd dockningsstation för ljud"</string>
+ <string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Använd docka för ljud"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Som högtalartelefon"</string>
<string name="bluetooth_dock_settings_a2dp" msgid="8791004998846630574">"För musik och media"</string>
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Kom ihåg inställningarna"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Använd närfältskommunikation för att läsa och utbyta taggar"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Ett fel inträffade."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Aktivera Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi-inställningar"</string>
@@ -454,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Det går inte att söka efter nätverk"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Nätverksmeddelande"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Meddela mig när ett öppet nätverk är tillgängligt"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi-policy för viloläge"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Ange när du vill växla från Wi-Fi till mobildata"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Ett problem inträffade när policy för viloläge skulle anges."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Lägg till Wi-Fi-nätverk"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi-nätverk"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Skanna"</string>
@@ -466,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Ändra nätverk"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Nätverkskonfiguration"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Ange PIN från åtkomstpunkten"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS-konfiguration"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN-metodkonfiguration"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Ange PIN-kod <xliff:g id="WPS_PIN">%1$s</xliff:g> på åtkomstpunkten"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Konfiguration av WPS pågår, det kan ta tiotalet sekunder innan den är klar."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Det gick inte att starta WPS, försök igen"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Nätverks-SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Säkerhet"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Signalstyrka"</string>
@@ -498,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Glöm"</string>
<string name="wifi_save" msgid="3331121567988522826">"Spara"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Avbryt"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"En annan WPS-session upptäcktes, försök igen om några minuter"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Avancerad"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi-policy"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Ange när du vill växla från Wi-Fi till mobildata"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Ett problem inträffade när policy för viloläge skulle anges."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi-frekvensband"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Ange driftområde för frekvens"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Ett problem uppstod när frekvensband ställdes in."</string>
@@ -526,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> mobil Wi-Fi-surfpunkt"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Ljud"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Skärm"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Skärm"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ljudinställningar"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Tyst läge"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Tysta ned alla ljud utom media och alarm"</string>
@@ -570,18 +548,18 @@
<string name="dock_settings_title" msgid="9161438664257429372">"Dockningsinställningar"</string>
<string name="dock_audio_settings_title" msgid="3324750259959570305">"Ljud"</string>
<string name="dock_audio_summary_desk" msgid="6487784412371139335">"Inställningar för ansluten skrivbordsdocka"</string>
- <string name="dock_audio_summary_car" msgid="6740897586006248450">"Inställningar för dockningsstation för bil"</string>
+ <string name="dock_audio_summary_car" msgid="6740897586006248450">"Inställningar för ansluten bildocka"</string>
<string name="dock_audio_summary_none" product="tablet" msgid="8215337394914283607">"Pekdatorn är inte dockad"</string>
<string name="dock_audio_summary_none" product="default" msgid="289909253741048784">"Telefonen är inte dockad"</string>
<string name="dock_audio_summary_unknown" msgid="4465059868974255693">"Inställningar för ansluten dockningsenhet"</string>
<string name="dock_not_found_title" msgid="3290961741828952424">"Ingen dockningsenhet hittades"</string>
<string name="dock_not_found_text" product="tablet" msgid="7935403744079168804">"Pekdatorn måste vara dockad när du konfigurerar ljudet för dockning"</string>
<string name="dock_not_found_text" product="default" msgid="3035260358985111855">"Telefonen måste vara dockad när du konfigurerar ljudet för dockning"</string>
- <string name="dock_sounds_enable_title" msgid="3659084028644948905">"Ljud för placering i dockningsstation"</string>
- <string name="dock_sounds_enable_summary_on" product="tablet" msgid="838102386448981339">"Spela upp ljud när pekdatorn placeras i eller tas bort från dockningsstation"</string>
- <string name="dock_sounds_enable_summary_on" product="default" msgid="8491180514199743771">"Spela upp ljud när telefonen placeras i eller tas bort från dockningsstation"</string>
- <string name="dock_sounds_enable_summary_off" product="tablet" msgid="5077843049805652363">"Spela inte upp ljud när pekdatorn placeras i eller tas bort från dockningsstation"</string>
- <string name="dock_sounds_enable_summary_off" product="default" msgid="3151046599205265919">"Spela inte upp ljud när telefonen placeras i eller tas bort från dockningsstation"</string>
+ <string name="dock_sounds_enable_title" msgid="3659084028644948905">"Ljud för placering i docka"</string>
+ <string name="dock_sounds_enable_summary_on" product="tablet" msgid="838102386448981339">"Spela upp ljud när pekdatorn placeras i eller tas bort från docka"</string>
+ <string name="dock_sounds_enable_summary_on" product="default" msgid="8491180514199743771">"Spela upp ljud när telefonen placeras i eller tas bort från docka"</string>
+ <string name="dock_sounds_enable_summary_off" product="tablet" msgid="5077843049805652363">"Spela inte upp ljud när pekdatorn placeras i eller tas bort från docka"</string>
+ <string name="dock_sounds_enable_summary_off" product="default" msgid="3151046599205265919">"Spela inte upp ljud när telefonen placeras i eller tas bort från docka"</string>
<string name="sync_settings" msgid="9186125469300013491">"Konton och synkronisering"</string>
<string name="sync_settings_summary" msgid="2962179505214965667">"Lägg till eller ta bort konton och ändra kontoinställningar"</string>
<string name="search_settings" msgid="1910951467596035063">"Sök"</string>
@@ -597,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Byt riktning automatiskt när du roterar telefonen"</string>
<string name="brightness" msgid="2354961343555249270">"Ljusstyrka"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ändra skärmens ljusstyrka"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Tidsgräns"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Skärmen stängs av automatiskt efter <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Skärmens tidsgräns"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Automatisk ljusstyrka"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Låsinställningar för SIM-kort"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Ställ in lås för SIM-kort"</string>
@@ -635,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Inte tillgänglig"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Status"</string>
<string name="device_status" msgid="607405385799807324">"Status"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Status för batteri, nätverk och annan information"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, telefonnummer, signal, osv."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefonnummer, signal osv."</string>
<string name="storage_settings" msgid="4211799979832404953">"Lagring"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Lagringsinställningar"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Demontera USB-lagringsenheten och visa tillgängligt lagringsutrymme"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Montera bort SD-kort, visa tillgängligt lagringsutrymme"</string>
- <!-- outdated translation 2832987004288365675 --> <string name="status_number" product="tablet" msgid="1138837891091222272">"Mitt telefonnummer"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Mitt telefonnummer"</string>
+ <string name="status_number" msgid="5123197324870153205">"Mitt telefonnummer"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL-version"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -660,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Intern lagring"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB-lagring"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD-kort"</string>
- <string name="memory_available" msgid="5052397223077021181">"Tillgängligt"</string>
- <string name="memory_size" msgid="5458889090691922288">"Totalt"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Beräknas..."</string>
- <!-- outdated translation 5551133116908528844 --> <string name="memory_apps_usage" msgid="9079237985722858506">"Appanvändning"</string>
- <!-- outdated translation 7087487384373911251 --> <string name="memory_media_usage" msgid="3738830697707880405">"Medieanvändning"</string>
+ <string name="memory_available" msgid="418542433817289474">"Tillgängligt utrymme"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Totalt utrymme"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Appanvändning"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Medieanvändning"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Montera bort enhet"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Montera bort SD-kort"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Demontera intern USB-lagring"</string>
@@ -673,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Sätt in ett SD-kort för montering"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"Sätt i USB-enheten"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"Montera SD-kort"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Sätt i USB-enheten"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Demontera intern USB-lagring"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"Montera SD-kortet"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Radera USB-lagring"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Radera SD-kort"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Raderar alla data på den interna USB-lagringsenheten, som musik och foton"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Alla data tas bort från på SD-kortet, bland annat musik och foton"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Raderar alla data på den interna USB-lagringsenheten, som musik och foton"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Inte tillgängligt"</string>
<string name="read_only" msgid="6702420168629076340">" (Skrivskyddad)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Demontera USB-enhet"</string>
@@ -734,10 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Alla data på pekdatorns "<b>"interna lagring"</b>" raderas, inklusive:"\n\n<li>"ditt Google-konto"</li>\n<li>"system- och programdata och inställningar"</li>\n<li>"hämtade appar"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Alla data på telefonens "<b>"interna lagring"</b>" raderas, inklusive:"\n\n<li>"ditt Google-konto"</li>\n<li>"system- och programdata och inställningar"</li>\n<li>"hämtade appar"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Du är inloggad på följande konton:"\n</string>
- <!-- no translation found for master_clear_desc_also_erases_external (1903185203791274237) -->
- <skip />
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Om du vill ta bort musik, bilder och andra användardata måste du radera "<b>"USB-lagringsenheten"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n" "\n"För att även musik, bilder och andra användardata ska tas bort måste "<b>"SD-kortet"</b>" formateras."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Om du vill ta bort musik, bilder och andra användardata måste du radera "<b>"USB-lagringsenheten"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Radera USB-lagring"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Radera SD-kort"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Radera alla data på den interna USB-lagringen, som musik och foton."</string>
@@ -810,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Använd assisterad GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Använd servern för att förbättra GPS-funktionen (avmarkera om du vill minska nätverksbelastningen)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Använd servern för att förbättra GPS-funktionen (avmarkera om du vill förbättra GPS-funktionen)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Använd din plats vid sökning"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Använd din plats för sökresultat och andra tjänster från Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Din plats används för att förbättra sökresultatet och andra tjänster från Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Använd plats för sökning på Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Använd plats för sökresultat och andra tjänster från Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Plats används för att förbättra sökning och andra tjänster från Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Om pekdatorn"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Om telefonen"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Visa juridisk information, status, programversion"</string>
@@ -843,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Lösenordet angavs"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN-koden angavs"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Lösenordet har angetts"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Lås skärmen"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Skärmupplåsning"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Byt grafiskt lösenord"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Ändra PIN-kod för upplåsning"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Bekräfta sparat grafiskt lösenord"</string>
@@ -873,12 +850,15 @@
<string name="next_button_label" msgid="8890792540116568321">"Nästa"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Skydda din pekdator"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Skydda din telefon"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Skydda pekdatorn från obehörig användning genom att skapa ett personligt grafiskt lösenord. Anslut prickarna med fingret i valfri ordning på nästa sida. Du måste ansluta minst fyra punkter. "\n" "\n"Tryck på Nästa när du är redo att sätta igång."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Skydda din telefon från obehörig användning genom att skapa ett personligt grafiskt lösenord på skärmen. "\n<font height="17">\n</font>"1"<b></b>" Se hur ett grafiskt lösenord ritas på nästa skärm. "\n<font height="17">\n</font><b>"2"</b>" Rita ditt eget grafiska lösenord. Experimentera med olika grafiska lösenord men anslut minst fyra punkter. "\n<font height="17">\n</font><b>"3"</b>" Rita ditt grafiska lösenord igen för att bekräfta. "\n<font height="17">\n</font><b>" Är du redo att börja? Tryck på Nästa"</b>". "\n<font height="3">\n</font>"Tryck på Avbryt om du vill lämna telefonen oskyddad."</font></string>
- <string name="manageapplications_settings_title" msgid="5712405848153426706">"Hantera appar"</string>
- <string name="manageapplications_settings_summary" msgid="6097117021500651232">"Hantera och ta bort installerade appar"</string>
+ <string name="manageapplications_settings_title" msgid="5712405848153426706">"Hantera program"</string>
+ <string name="manageapplications_settings_summary" msgid="6097117021500651232">"Hantera och ta bort installerade program"</string>
<string name="applications_settings" msgid="3736173521008476946">"Program"</string>
- <string name="applications_settings_summary" msgid="2714215108369119717">"Hantera appar, ställ in genvägar för snabbstart"</string>
+ <string name="applications_settings_summary" msgid="2714215108369119717">"Hantera program, ställ in genvägar för snabbstart"</string>
<string name="applications_settings_header" msgid="6018266337275422250">"Programinställningar"</string>
<string name="install_applications" msgid="4872012136210802181">"Okända källor"</string>
<string name="install_unknown_applications" msgid="6612824788917283662">"Tillåt installation av program som inte finns i Market"</string>
@@ -896,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Totalt"</string>
<string name="application_size_label" msgid="5055196275624686382">"Program"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB-lagring"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD-kort"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Avinstallera"</string>
<string name="disable_text" msgid="6544054052049395202">"Inaktivera"</string>
<string name="enable_text" msgid="9217362512327828987">"Aktivera"</string>
@@ -994,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Avsluta systemtjänst?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Är du säker på att du vill avsluta systemtjänsten? Vissa funktioner på pekdatorn kan sluta fungera och du måste eventuellt stänga av den och starta om för att åtgärda problemet."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Är du säker på att du vill avsluta systemtjänsten? Vissa funktioner på telefonen kan sluta fungera och du måste eventuellt stänga av telefonen och starta om den igen för att åtgärda problemet."</string>
- <string name="language_settings" msgid="5292716747264442359">"Språk och inmatning"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Språk och inmatning"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Språkkod och text"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Inställningar för språk och tangentbord"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Språkinställningar"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Tangentbordsinställningar"</string>
<string name="phone_language" msgid="1165758957501090679">"Välj språk"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Ersätt automatiskt"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Rätta felskrivna ord"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Automatiska versaler"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Inled med versal"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Första ordet i en mening ska inledas med versal"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Automatisk punkt"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Inställningar för fysiskt tangentbord"</string>
@@ -1036,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Genvägar"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Textinmatning"</string>
<string name="input_method" msgid="5434026103176856164">"Indatametod"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Aktuell inmatningsmetod"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Väljare för inmatningsmetod"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Automatiskt"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Visa alltid"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Dölj alltid"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Konfigurera inmatningsmetoder"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Inställningar"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Aktiva inmatningsmetoder"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Använd systemspråk"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g>-inställningar"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Välj aktiva inmatningsmetoder"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Inställningar för tangentbordet på skärmen"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Inbyggt tangentbord"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Inställningar för inbyggt, fysiskt tangentbord"</string>
@@ -1109,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"WiFi i tid"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"WiFi i tid"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Detaljerad historik"</string>
- <string name="details_title" msgid="3792801565213935385">"Information om förbrukning"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Information om batteriförbrukning"</string>
<string name="details_subtitle" msgid="32593908269911734">"Information om användning"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Justera strömförbrukningen"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Inkluderade paket"</string>
@@ -1245,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Serveranslutningen misslyckades. Servern kanske inte accepterar ditt krypteringsval. Vill du kontrollera krypteringsinställningen?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Lägg till VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Lägg till VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN-information"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Lägg till <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Information om <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1288,38 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Konfigurera och hantera virtuella privata nätverk (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(oförändrat)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ej angivet)"</string>
- <!-- no translation found for credentials_title (4446234003860769883) -->
- <skip />
+ <string name="credentials_category" msgid="8536992056377271234">"Uppgiftslagring"</string>
<string name="credentials_access" msgid="4843187230913860492">"Använd säkra uppgifter"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Tillåt att program får åtkomst till säkra certifikat och andra uppgifter"</string>
- <!-- no translation found for credentials_install (1395748667227729987) -->
- <skip />
- <!-- no translation found for credentials_install (953914549998062317) -->
- <skip />
- <!-- no translation found for credentials_install_summary (3679446246093149828) -->
- <skip />
- <!-- no translation found for credentials_install_summary (5737658257407822713) -->
- <skip />
- <string name="credentials_set_password" msgid="9104473585811899989">"Ange lösenord"</string>
- <!-- outdated translation 8064067664775886428 --> <string name="credentials_set_password_summary" msgid="6756719720826053228">"Ange eller ändra lösenord för uppgiftslagring"</string>
- <!-- outdated translation 3728395601619733515 --> <string name="credentials_reset" msgid="3239382277144980418">"Rensa lagring"</string>
- <!-- outdated translation 2127419861568976637 --> <string name="credentials_reset_summary" msgid="3810369467217453606">"Ta bort uppgiftslagring för allt innehåll och återställ lösenordet"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Ange lösenord"</string>
- <!-- outdated translation 1858983840871004055 --> <string name="credentials_unlock_hint" msgid="5889551635843338639">"Ange lösenord för lagring av uppgifter."</string>
- <!-- no translation found for credentials_password_hint (4915128717409363024) -->
- <skip />
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Ange lösenord för lagring av uppgifter."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Installera från USB-enhet"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Installera från SD-kort"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Installera krypterade certifikat från USB-enhet"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Installera krypterade certifikat från SD-kort"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Ange lösenord"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Ange eller ändra lösenord för uppgiftslagring"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Rensa lagring"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Ta bort uppgiftslagring för allt innehåll och återställ lösenordet"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Vill du ta bort alla uppgifter och återställa lösenordet för uppgiftslagring?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Nuvarande lösenord:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Nytt lösenord:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Bekräfta det nya lösenordet:"</string>
- <!-- outdated translation 7883277320781857760 --> <string name="credentials_reset_hint" msgid="2336340927894094814">"Vill du ta bort alla uppgifter och återställa lösenordet för uppgiftslagring?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Ange ett lösenord för uppgiftslagring (minst 8 tecken)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Ange rätt lösenord."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Ange rätt lösenord. Du har ett försök på dig att ange rätt lösenord, därefter raderas uppgiftslagringen."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Ange rätt lösenord. Du har <xliff:g id="NUMBER">%1$d</xliff:g> försök på dig att ange rätt lösenord, därefter raderas uppgiftslagringen."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Lösenorden stämmer inte överens."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Du måste ange och bekräfta ett lösenord."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Ange lösenordet."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Lösenordet måste innehålla minst 8 tecken."</string>
- <!-- outdated translation 3713854485848035838 --> <string name="credentials_wrong_password" msgid="2541932597104054807">"Ange rätt lösenord."</string>
- <!-- outdated translation 9153795503043550217 --> <string name="credentials_reset_warning" msgid="5320653011511797600">"Ange rätt lösenord. Du har ett försök på dig att ange rätt lösenord, därefter raderas uppgiftslagringen."</string>
- <!-- no translation found for credentials_reset_warning_plural (6514085665301095279) -->
- <skip />
- <!-- outdated translation 2375073444893796741 --> <string name="credentials_erased" msgid="2907836028586342969">"Uppgiftslagringen raderades."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Uppgiftslagringen raderades."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Uppgiftslagring är aktiverat."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Uppgiftslagring har inaktiverats."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Krypterat filsystem"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Kryptera privata användardata"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Aktivera krypterat filsystemarkiv för privata användardata på den här enheten"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Aktivering av krypterade filsystem kräver datarensning på enheten."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Inaktivering av krypterade filsystem kräver datarensning på enheten."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Aktivera"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Inaktivera"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"Avbryt"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Lägesändringen för krypterat filsystem avbröts."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Varning: växling av krypterat filsystem."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Nödsignal"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Ange beteende vid nödsamtal"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Sekretess"</string>
@@ -1349,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Inkommande samtal"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Aviseringar"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Signaler"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi-konfiguration"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Anslut till Wi-Fi-nätverk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Ansluter till Wi-Fi-nätverk <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Ansluten till Wi-Fi-nätverk <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Lägg till ett nätverk"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi-konfiguration"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Inte ansluten"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Lägg till nätverk"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Uppdatera lista"</string>
@@ -1366,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Spara"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Avbryt"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Skannar nätverk..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tryck på det nätverk som du vill ansluta till"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Tryck om du vill välja nätverket"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Anslut till befintligt nätverk"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Anslut till oskyddat nätverk"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Ange nätverkskonfiguration"</string>
@@ -1374,53 +1366,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Ansluter..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Fortsätt till nästa steg"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP stöds inte"</string>
- <!-- outdated translation 518966154814708106 --> <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Du kan inte konfigurera en EAP-Wi-Fi-anslutning under installationen. Efter installationen kan du göra det i Inställningar, under Trådlöst och nätverk."</string>
- <!-- no translation found for wifi_setup_description_connecting (1884664966455980182) -->
- <skip />
- <!-- no translation found for wifi_setup_description_connected (5235991893829582459) -->
- <skip />
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Du kan inte konfigurera en EAP-Wi-Fi-anslutning under installationen. Efter installationen kan du göra det i Inställningar under Trådlöst och nätverk."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Synkroniseringsinställningar"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Det är för närvarande problem med synkronisering. Det fungerar igen om en stund."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Lägg till konto"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Allmänna synkinställningar"</string>
<string name="background_data" msgid="5779592891375473817">"Bakgrundsdata"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Program kan synkronisera, skicka och ta emot data när som helst"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Obs!"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Om du inaktiverar bakgrundsdata sparar du batteri och minskar dataanvändning. Vissa program kanske fortfarande använder anslutningen för bakgrundsdata."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Automatisk synkronisering"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Programmen synkroniserar data automatiskt"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Hantera konton"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Synkronisering är på"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Synkronisering är avstängd"</string>
<string name="sync_error" msgid="5060969083117872149">"Synkroniseringsfel"</string>
<string name="settings_backup" msgid="2274732978260797031">"Säkerhetskopiera inställningar"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Säkerhetskopiera mina inställningar"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Synka nu"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Avbryt synkronisering"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Tryck om du vill synkronisera nu<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalender"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Kontakter"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Välkommen till Google Synk!"</font>" "\n"Med Googles verktyg för att synkronisera data kommer du åt dina kontakter, kalendrar och annan information var du än befinner dig."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Synkronisering för appar"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data och synkronisering"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Byt lösenord"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Kontoinställningar"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Ta bort konto"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Lägg till ett konto"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Avsluta"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Ta bort konto"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Vill du ta bort kontot? Om du tar bort kontot försvinner också alla meddelanden, kontakter och andra data från telefonen. "\n"Vill du fortsätta?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Vill du ta bort kontot? Om du tar bort kontot försvinner också alla meddelanden, kontakter och andra data från telefonen. "\n"Vill du fortsätta?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Det här kontot krävs av vissa appar. Du kan bara ta bort det om du återställer pekdatorns fabriksinställningar (vilket raderar alla personliga data). Om du vill göra det öppnar du Inställningar och väljer Sekretess."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Det här kontot krävs av vissa appar. Du kan bara ta bort det om du återställer telefonens fabriksinställningar (vilket raderar alla personliga data). Om du vill göra det öppnar du Inställningar och väljer Sekretess."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push-prenumerationer"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Synkronisera <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Det går inte att synkronisera manuellt"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Synkronisering är inaktiverad för det här objektet. Om du vill ändra inställningen aktiverar du bakgrundsdata och automatisk synkronisering tillfälligt."</string>
- <string name="enter_password" msgid="3268224850821675915">"Ange lösenord om du vill dekryptera lagringen"</string>
- <string name="try_again" msgid="5904121494468643129">"Försök igen"</string>
- <!-- no translation found for service_busy (225227519012409130) -->
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
<skip />
</resources>
diff --git a/res/values-th/arrays.xml b/res/values-th/arrays.xml
index ae65be6..5e4de66 100644
--- a/res/values-th/arrays.xml
+++ b/res/values-th/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"แสดงภาพเคลื่อนไหวบนหน้าต่างบางภาพ"</item>
<item msgid="488968798204105119">"แสดงภาพเคลื่อนไหวบนหน้าต่างทั้งหมด"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 วินาที"</item>
- <item msgid="8881760709354815449">"30 วินาที"</item>
- <item msgid="7589406073232279088">"1 นาที"</item>
- <item msgid="7001195990902244174">"2 นาที"</item>
- <item msgid="7489864775127957179">"5 นาที"</item>
- <item msgid="2314124409517439288">"10 นาที"</item>
- <item msgid="6864027152847611413">"30 นาที"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"ทันที"</item>
- <item msgid="6736512735606834431">"5 วินาที"</item>
- <item msgid="8044619388267891375">"15 วินาที"</item>
- <item msgid="1822002388249545488">"30 วินาที"</item>
- <item msgid="8538071621211916519">"1 นาที"</item>
- <item msgid="5663439580228932882">"2 นาที"</item>
- <item msgid="49888496216106852">"5 นาที"</item>
- <item msgid="9002737361305019353">"10 นาที"</item>
- <item msgid="4322676235684793329">"30 นาที"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"ช้ามาก"</item>
<item msgid="2361722960903353554">"ช้า"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"ยอดเยี่ยม"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"เมื่อปิดหน้าจอ"</item>
+ <item msgid="3804733751095821976">"เมื่อปิดหน้าจอ"</item>
<item msgid="1549288661423279207">"ไม่ใช้เมื่อเสียบปลั๊ก"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"ไม่ใช้"</item>
+ <item msgid="1986753720941888596">"ไม่เคย"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"อัตโนมัติ"</item>
diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml
index 0edd97d..0e1bbb5 100644
--- a/res/values-th/strings.xml
+++ b/res/values-th/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"กำลังสแกน"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"คำขอกำหนดค่าอุปกรณ์ให้ตรงกันทางบลูทูธ"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"คำขอกำหนดค่าอุปกรณ์ให้ตรงกัน"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"เลือกกำหนดค่าอุปกรณ์ให้ตรงกับ <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"แสดงไฟล์ที่ได้รับ"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"แสดงรายการไฟล์ที่ได้รับผ่านบลูทูธ"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"ตัวเลือกอุปกรณ์บลูทูธ"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"คำขออนุญาตใช้บลูทูธ"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"แอปพลิเคชันกำลังขออนุญาตเปิดใช้บลูทูธ คุณต้องการดำเนินการนี้หรือไม่"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"แอปพลิเคชันบนแท็บเล็ตของคุณกำลังขออนุญาตเปิดใช้บลูทูธและทำให้อุปกรณ์อื่นค้นหาแท็บเล็ตของคุณได้เป็นเวลา <xliff:g id="TIMEOUT">%1$d</xliff:g> วินาที คุณต้องการดำเนินการนี้หรือไม่"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"แอปพลิเคชันบนโทรศัพท์ของคุณกำลังขออนุญาตเพื่อเปิดบลูทูธและให้อุปกรณ์อื่นค้นพบโทรศัพท์ของคุณได้เป็นเวลา <xliff:g id="TIMEOUT">%1$d</xliff:g> วินาที คุณต้องการทำตามนี้หรือไม่"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"กำลังเปิดบลูทูธ…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"เชื่อมต่ออัตโนมัติ"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"การตั้งเวลาและวันที่"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"เริ่มต้น <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"บัญชี:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"การตั้งค่าพร็อกซี"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"การตั้งค่าพร็อกซี"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"ตั้งค่าพร็อกซี HTTP ส่วนกลางและรายการยกเว้น"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"ล้างข้อมูล"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"พอร์ต"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"กำลังตัดการเชื่อมต่อระบบไร้สาย..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"เปิดใช้งานการเชื่อมต่อแบบไร้สาย..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"ระบบไร้สายและเครือข่าย"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"ระบบไร้สายและเครือข่าย"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"การตั้งค่าระบบไร้สายและเครือข่าย"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"จัดการ Wi-Fi, บลูทูธ, โหมดใช้งานบนเครื่องบิน, เครือข่ายมือถือ และ VPN"</string>
<string name="roaming" msgid="3596055926335478572">"การโรมมิ่งข้อมูล"</string>
<string name="roaming_enable" msgid="3737380951525303961">"เชื่อมต่อบริการข้อมูลขณะโรมมิ่ง"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"การเลือกผู้ให้บริการ"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"เลือกผู้ให้บริการเครือข่าย"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"เวลาและวันที่"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"ตั้งวันที่และเวลา"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"ตั้งวันที่ เวลา เขตเวลาและรูปแบบ"</string>
<string name="date_time_auto" msgid="7076906458515908345">"วันที่และเวลาอัตโนมัติ"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"ใช้เวลาที่ระบุโดยเครือข่าย"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"จัดเรียงตามเขตเวลา"</string>
<string name="date_picker_title" msgid="1338210036394128512">"วันที่"</string>
<string name="time_picker_title" msgid="483460752287255019">"เวลา"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"ระยะหมดเวลา"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"ล็อกหน้าจอ <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> หลังจากหน้าจอปิดการทำงานโดยอัตโนมัติ"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"ล็อกอุปกรณ์หลังจากระยะหมดเวลา"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"แสดงข้อมูลเจ้าของเมื่อล็อกหน้าจอ"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"ข้อมูลเจ้าของ"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"ตั้งค่าตำแหน่งของฉัน ปลดล็อกหน้าจอ ล็อกซิมการ์ด ล็อกที่จัดเก็บข้อมูลรับรอง"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"ตั้งค่าตำแหน่งของฉัน การปลดล็อกหน้าจอ การล็อกที่จัดเก็บข้อมูลรับรอง"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"รหัสผ่าน"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"การเข้ารหัสอุปกรณ์"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"เข้ารหัสข้อมูลบนอุปกรณ์"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"เข้ารหัสข้อมูลบนอุปกรณ์"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"คุณจำเป็นต้องตั้งค่า PIN หรือรหัสผ่านเพื่อปลดล็อกอุปกรณ์"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"คุณจำเป็นต้องตั้งค่า PIN หรือรหัสผ่านเพื่อปลดล็อกอุปกรณ์"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"ที่เข้ารหัส"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"คุณสามารถเข้ารหัสบัญชี การตั้งค่า แอปพลิเคชันที่ดาวน์โหลดมาและข้อมูล สื่อ และไฟล์อื่นๆ ของแอปพลิเคชันได้ เมื่อคุณเข้ารหัสโทรศัพท์ คุณจะไม่สามารถยกเลิกการเข้ารหัสได้ยกเว้นด้วยการรีเซ็ตข้อมูลเป็นค่าเริ่มต้น ซึ่งจะลบข้อมูลทั้งหมดในโทรศัพท์ของคุณ"\n\n"การเข้ารหัสใช้เวลาประมาณหนึ่งชั่วโมง คุณจะต้องเริ่มดำเนินการโดยใช้แบตเตอรี่ที่ชาร์จจนเต็มและเสียบปลั๊กแท็บเล็ตของคุณไว้จนกว่าการเข้ารหัสจะเสร็จสิ้น หากขั้นตอนการเข้ารหัสหยุดชะงัก ข้อมูลบางส่วนหรือทั้งหมดของคุณจะสูญหาย"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"คุณสามารถเข้ารหัสบัญชี การตั้งค่า แอปพลิเคชันที่ดาวน์โหลดมาและข้อมูล สื่อ และไฟล์อื่นๆ ของแอปพลิเคชันได้ เมื่อคุณเข้ารหัสโทรศัพท์ คุณจะไม่สามารถยกเลิกการเข้ารหัสได้ยกเว้นด้วยการรีเซ็ตข้อมูลเป็นค่าเริ่มต้น ซึ่งจะลบข้อมูลทั้งหมดในโทรศัพท์ของคุณ"\n\n"การเข้ารหัสใช้เวลาประมาณหนึ่งชั่วโมง คุณจะต้องเริ่มดำเนินการโดยใช้แบตเตอรี่ที่ชาร์จจนเต็มและเสียบปลั๊กแท็บเล็ตของคุณไว้จนกว่าการเข้ารหัสจะเสร็จสิ้น หากขั้นตอนการเข้ารหัสหยุดชะงัก ข้อมูลบางส่วนหรือทั้งหมดของคุณจะสูญหาย"</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"เข้ารหัสแท็บเล็ต"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"เข้ารหัสโทรศัพท์"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"ยืนยันการเข้ารหัส"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"เข้ารหัสข้อมูลผู้ใช้หรือไม่ การทำงานนี้ไม่สามารถย้อนกลับได้และข้อมูลจะสูญหายหากการดำเนินการหยุดชะงัก การเข้ารหัสจะใช้เวลาประมาณหนึ่งชั่วโมง"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"เข้ารหัสข้อมูลผู้ใช้หรือไม่ การทำงานนี้ไม่สามารถย้อนกลับได้และข้อมูลจะสูญหายหากการดำเนินการหยุดชะงัก การเข้ารหัสจะใช้เวลาประมาณหนึ่งชั่วโมง"</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"กำลังเข้ารหัส"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"ลองใหม่อีกครั้งใน ^1 วินาที"</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"กำหนดค่าการล็อคหน้าจอ"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"กำหนดค่าการล็อคหน้าจอ"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"ความปลอดภัยในการปลดล็อกหน้าจอ"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"ตั้งค่าการล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"เปลี่ยนการล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"เปลี่ยนหรือปิดการใช้งานรูปแบบ, PIN หรือความปลอดภัยของรหัสผ่าน"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"เลือกวิธีที่จะล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"ปิด"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"ไม่ต้องล็อคหน้าจอ"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"ไม่รักษาความปลอดภัย"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"ไม่ใช้รูปแบบ PIN หรือรหัสผ่านปลดล็อคหน้าจอ"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"ไม่แสดงหน้าจอที่ถูกล็อก"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"ไม่มี"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"ปิดใช้งานความปลอดภัยในการปลดล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"รูปแบบ"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"ต้องใช้รูปแบบเพื่อปลดล็อคหน้าจอ"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"วาดรูปแบบเพื่อปลดล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"ต้องใช้ PIN ตัวเลขเพื่อปลดล็อคหน้าจอ"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"ป้อน PIN ตัวเลขเพื่อปลดล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"รหัสผ่าน"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"ต้องใช้รหัสผ่านเพื่อปลดล็อคหน้าจอ"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"ป้อนรหัสผ่านเพื่อปลดล็อกหน้าจอ"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"ปิดการใช้งานโดยผู้ดูแลระบบอุปกรณ์รีโมต"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"ปิด"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"ไม่รักษาความปลอดภัย"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"รักษาความปลอดภัยด้วยรูปแบบ"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"รักษาความปลอดภัยด้วย PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"รักษาความปลอดภัยด้วยรหัสผ่าน"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"ปิดการล็อกหน้าจอ"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"นำรูปแบบการปลดล็อกออก"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"นำ PIN ปลดล็อกออก"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"โปรแกรมควบคุมอุปกรณ์ไม่อนุญาตให้ใช้รหัสผ่านล่าสุด"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"ตกลง"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"ยกเลิก"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"ยกเลิก"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"ถัดไป"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"โปรแกรมควบคุมอุปกรณ์"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"โปรแกรมควบคุมอุปกรณ์"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"ดูหรือปิดการใช้งานผู้ดูแลอุปกรณ์"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"การตั้งค่าบลูทูธ"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"จัดการการเชื่อมต่อ ตั้งชื่ออุปกรณ์และการค้นพบ"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"คำขอกำหนดค่าอุปกรณ์ให้ตรงกันทางบลูทูธ"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"ป้อน PIN เพื่อจับคู่อุปกรณ์กับ \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" (ลองป้อน 0000 หรือ 1234) คุณอาจจำเป็นต้องป้อน PIN ที่ตรงกันบนอุปกรณ์บลูทูธ"</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"ป้อนรหัสผ่านเพื่อกำหนดค่าอุปกรณ์ให้ตรงกับ \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\""</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"หากต้องการกำหนดค่าอุปกรณ์ให้ตรงกับ \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" ยืนยันว่าอุปกรณ์กำลังแสดงรหัสผ่าน:<xliff:g id="PASSKEY">%2$s</xliff:g>"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n" ต้องการกำหนดค่าอุปกรณ์ให้ตรงกัน"</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"ป้อน \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" บน \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" เพื่อจับคู่ ตามด้วยการกด Return หรือ Enter"</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"กำหนดค่าอุปกรณ์ให้ตรงกัน"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"ไม่ต้องกำหนดค่าอุปกรณ์ให้ตรงกัน"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"อุปกรณ์บลูทูธ"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"ตัวเลือก…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"เชื่อมต่อกับ…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"สื่อ"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"แฮนด์ฟรี"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"แท็บเล็ต"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"การถ่ายโอน"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"อุปกรณ์อินพุต"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"การปล่อยสัญญาณ"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> จะถูกตัดการเชื่อมต่อจากเสียงของสื่อ"</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> จะถูกตัดการเชื่อมต่อจากเสียงแฮนด์ฟรี"</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> จะถูกตัดการเชื่อมต่อจากอุปกรณ์อินพุต"</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> จะถูกตัดการเชื่อมต่อจากการปล่อยสัญญาณ"</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ตัวเลือก"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"ใช้สำหรับระบบเสียงของโทรศัพท์"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"ใช้สำหรับการโอนไฟล์"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"ใช้สำหรับการป้อนข้อมูล"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"ใช้การเข้าถึงอินเทอร์เน็ต"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"การตั้งค่าแท่นชาร์จ"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"ใช้แท่นชาร์จสำหรับระบบเสียง"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"เป็นลำโพง"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"สแกนหาเครือข่ายไม่ได้"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"การแจ้งเตือนของเครือข่าย"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"แจ้งฉันเมื่อมีเครือข่ายเปิดให้ใช้งานได้"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"ข้อกำหนดในการสลีปของ Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"ระบุเมื่อต้องการเปลี่ยนจาก Wi-Fi เป็นข้อมูลมือถือ"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"พบปัญหาในการตั้งค่าข้อกำหนดการสลีป"</string>
<string name="wifi_add_network" msgid="1671334951296205616">"เพิ่มเครือข่าย Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"เครือข่าย Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"สแกน"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"แก้ไขเครือข่าย"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"การตั้งค่าเครือข่าย"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"ป้อน PIN จากจุดเข้าใช้งาน"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"ตั้งค่า WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"การกำหนดค่าวิธีการ PIN ของ WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"ป้อน PIN <xliff:g id="WPS_PIN">%1$s</xliff:g> บนจุดเข้าใช้งาน"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS กำลังดำเนินการและอาจใช้เวลาราว 10 วินาทีจึงจะเสร็จสิ้น"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"ไม่สามารถเริ่ม WPS ได้ โปรดลองอีกครั้ง"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID เครือข่าย"</string>
<string name="wifi_security" msgid="6603611185592956936">"ความปลอดภัย"</string>
<string name="wifi_signal" msgid="5514120261628065287">"ความแรงสัญญาณ"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"ไม่จำ"</string>
<string name="wifi_save" msgid="3331121567988522826">"บันทึก"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"ยกเลิก"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"ตรวจพบเซสชัน WPS อื่น โปรดลองอีกครั้งในอีก 2-3 นาที"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"ขั้นสูง"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"ข้อกำหนดในการสลีปของ Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"ระบุเมื่อต้องการเปลี่ยนจาก Wi-Fi เป็นข้อมูลมือถือ"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"พบปัญหาในการตั้งค่าข้อกำหนดการสลีป"</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"ย่านความถี่ Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"ระบุช่วงความถี่ของการดำเนินการ"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"เกิดปัญหาในการตั้งค่าย่านความถี่"</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g><xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> Wi-Fi ฮอตสปอตแบบพกพา"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"เสียง"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"คัดกรอง"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"แสดง"</string>
<string name="sound_settings" msgid="5007659014828162881">"การตั้งค่าเสียง"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"โหมดปิดเสียง"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"ปิดเสียงทั้งหมดยกเว้นสื่อและเสียงปลุก"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"สลับแนวหน้าจออัตโนมัติเมื่อหมุนโทรศัพท์"</string>
<string name="brightness" msgid="2354961343555249270">"ความสว่าง"</string>
<string name="brightness_summary" msgid="838917350127550703">"ปรับความสว่างหน้าจอ"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"ระยะหมดเวลา"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"หน้าจอปิดการทำงานโดยอัตโนมัติหลังจาก <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"ระยะหมดเวลาหน้าจอ"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"ปรับความสว่างอัตโนมัติ"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"การตั้งค่าการล็อกซิมการ์ด"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"ตั้งค่าการล็อกซิมการ์ด"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"ใช้งานไม่ได้"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"สถานะ"</string>
<string name="device_status" msgid="607405385799807324">"สถานะ"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"สถานะของแบตเตอรี่ เครือข่าย และข้อมูลอื่น"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, หมายเลขโทรศัพท์, สัญญาณ ฯลฯ"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"หมายเลขโทรศัพท์ สัญญาณ ฯลฯ"</string>
<string name="storage_settings" msgid="4211799979832404953">"ที่เก็บข้อมูล"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"การตั้งค่าที่เก็บข้อมูล"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"ยกเลิกการต่อเชื่อมที่เก็บข้อมูล USB ดูที่เก็บข้อมูลที่ใช้งานได้"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"ยกเลิกการต่อเชื่อมการ์ด SD ดูที่จัดเก็บข้อมูลที่ใช้ได้"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"หมายเลขโทรศัพท์ของฉัน"</string>
+ <string name="status_number" msgid="5123197324870153205">"หมายเลขโทรศัพท์ของฉัน"</string>
<string name="status_min_number" msgid="3519504522179420597">"นาที"</string>
<string name="status_prl_version" msgid="8499039751817386529">"รุ่น PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"ที่เก็บข้อมูลภายใน"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"ที่เก็บข้อมูล USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"การ์ด SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"ว่าง"</string>
- <string name="memory_size" msgid="5458889090691922288">"ทั้งหมด"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"กำลังคำนวณ..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"แอปพลิเคชัน"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"สื่อ"</string>
+ <string name="memory_available" msgid="418542433817289474">"พื้นที่ว่าง"</string>
+ <string name="memory_size" msgid="6629067715017232195">"พื้นที่ทั้งหมด"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"การใช้แอปพลิเคชัน"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"การใช้สื่อ"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"ยกเลิกการต่อเชื่อมที่เก็บข้อมูลที่ใช้ร่วมกัน"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"ยกเลิกการต่อเชื่อมการ์ด SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"ยกเลิกการต่อเชื่อมที่เก็บข้อมูล USB ภายใน"</string>
@@ -732,7 +707,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"การทำงานนี้จะลบข้อมูลทั้งหมดออกจาก"<b>"ที่เก็บข้อมูลภายใน"</b>"แท็บเล็ต รวมทั้ง:"\n\n<li>"บัญชี Google ของคุณ"</li>\n<li>"ข้อมูลและการตั้งค่าระบบและแอปพลิเคชัน"</li>\n<li>"แอปพลิเคชันที่ดาวน์โหลดไว้"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"การทำงานนี้จะลบข้อมูลทั้งหมดออกจาก"<b>"ที่เก็บข้อมูลภายใน"</b>"โทรศัพท์ รวมทั้ง:"\n\n<li>"บัญชี Google ของคุณ"</li>\n<li>"ข้อมูลและการตั้งค่าระบบและแอปพลิเคชัน"</li>\n<li>"แอปพลิเคชันที่ดาวน์โหลดไว้"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"ขณะนี้คุณได้ลงชื่อเข้าใช้บัญชีต่อไปนี้แล้ว:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"เพลง"</li>\n<li>"รูปภาพ"</li>\n<li>"ข้อมูลผู้ใช้อื่นๆ"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"หากต้องการล้างข้อมูลเพลง รูปภาพ และข้อมูลผู้ใช้อื่นๆ ด้วย จะต้องลบ "<b>"ที่เก็บข้อมูล USB"</b></string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"หากต้องการล้างข้อมูลเพลง รูปภาพ และข้อมูลผู้ใช้อื่นๆ ด้วย ต้องลบ"<b>"การ์ด SD"</b></string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"ลบที่เก็บข้อมูล USB"</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"ใช้ Assisted GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"ใช้เซิร์ฟเวอร์เพื่อช่วยเหลือ GPS (ทำเครื่องหมายเพื่อลดการใช้เครือข่าย)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"ใช้เซิร์ฟเวอร์เพื่อช่วย GPS (นำเครื่องหมายออกเพื่อให้ GPS ทำงานดีขึ้น)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"ใช้ตำแหน่งสำหรับการค้นหาโดย Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"ใช้ตำแหน่งสำหรับการค้นหาโดย Google และบริการอื่นๆ ของ Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"ตำแหน่งที่ใช้เพื่อปรับปรุงผลการค้นหาของ Google และบริการอื่นๆ ของ Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"ใช้ตำแหน่งสำหรับการค้นหาโดย Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"ใช้ตำแหน่งสำหรับการค้นหาของ Google และบริการอื่นๆ ของ Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"ตำแหน่งที่ใช้เพื่อปรับปรุงผลการค้นหาของ Google และบริการอื่นๆ ของ Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"เกี่ยวกับแท็บเล็ต"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"เกี่ยวกับโทรศัพท์"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"ดูข้อมูลกฎหมาย สถานะ รุ่นซอฟต์แวร์"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"ตั้งค่ารหัสผ่านแล้ว"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"ตั้งค่า PIN แล้ว"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"ตั้งค่ารูปแบบแล้ว"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"ล็อกหน้าจอ"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"ปลดล็อกหน้าจอ"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"เปลี่ยนรูปแบบการปลดล็อก"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"เปลี่ยน PIN สำหรับปลดล็อก"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"ยืนยันรูปแบบที่บันทึก"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"ถัดไป"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"การรักษาความปลอดภัยแท็บเล็ตของคุณ"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"การป้องกันโทรศัพท์ของคุณ"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"ป้องกันการใช้งานแท็บเล็ตของคุณโดยไม่ได้รับอนุญาตโดยการสร้างรูปแบบการปลดล็อคหน้าจอส่วนบุคคล ใช้นิ้วของคุณลากเชื่อมต่อจุดในลำดับใดก็ได้บนหน้าจอถัดไป คุณต้องเชื่อมต่ออย่างน้อยสี่จุด "\n\n"เมื่อพร้อมที่จะเริ่มต้น แตะ \"ถัดไป\""</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"ปกป้องโทรศัพท์ของคุณจากการใช้งานโดยไม่ได้รับอนุญาตโดยสร้างรูปแบบการปลดล็อกหน้าจอส่วนบุคคล"\n<font height="17">\n</font><b>"1"</b>" บนหน้าจอถัดไป คอยดูเมื่อมีการวาดรูปแบบตัวอย่าง"\n<font height="17">\n</font><b>"2"</b>" เมื่อคุณพร้อม ให้วาดรูปแบบการปลดล็อกส่วนตัวของคุณ ลองวาดหลายๆ รูปแบบได้ แต่อย่างน้อยต้องเชื่อมต่อกันอย่างน้อย 4 จุด "\n<font height="17">\n</font><b>"3"</b>" วาดรูปแบบซ้ำเพื่อยืนยัน "\n<font height="17">\n</font><b>"พร้อมจะลงมือหรือยัง ถ้าใช่ ให้แตะ “ถัดไป”"</b>" "\n<font height="3">\n</font>"ถ้าไม่ต้องการปกป้องโทรศัพท์ ให้แตะ \"ยกเลิก\""</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"จัดการแอปพลิเคชัน"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"จัดการและนำแอปพลิเคชันที่ติดตั้งไว้ออก"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"ทั้งหมด"</string>
<string name="application_size_label" msgid="5055196275624686382">"แอปพลิเคชัน"</string>
<string name="data_size_label" msgid="8679376373625710107">"ข้อมูล"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"ที่เก็บข้อมูล USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"การ์ด SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"ถอนการติดตั้ง"</string>
<string name="disable_text" msgid="6544054052049395202">"ปิดใช้งาน"</string>
<string name="enable_text" msgid="9217362512327828987">"เปิดใช้งาน"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"หยุดบริการของระบบหรือไม่"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"คุณแน่ใจหรือไม่ว่าต้องการหยุดบริการนี้ของระบบ ถ้าใช่ คุณลักษณะบางอย่างของแท็บเล็ตอาจหยุดทำงานอย่างถูกต้อง จนกว่าคุณจะปิดเครื่องแล้วเปิดใหม่อีกครั้ง"</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"คุณแน่ใจหรือไม่ว่าต้องการหยุดบริการนี้ของระบบ ถ้าใช่ คุณลักษณะบางอย่างของโทรศัพท์อาจหยุดทำงานอย่างถูกต้อง จนกว่าคุณจะปิดเครื่องแล้วเปิดใหม่อีกครั้ง"</string>
- <string name="language_settings" msgid="5292716747264442359">"ภาษาและการป้อนข้อมูล"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"ภาษาและการป้อนข้อมูล"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"ตำแหน่งที่ตั้งและข้อความ"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"การตั้งค่าภาษาและแป้นพิมพ์"</string>
<string name="language_settings_category" msgid="2288258489940617043">"การตั้งค่าภาษา"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"การตั้งค่าแป้นพิมพ์"</string>
<string name="phone_language" msgid="1165758957501090679">"เลือกภาษา"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"ทางลัดของ"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"การป้อนข้อความ"</string>
<string name="input_method" msgid="5434026103176856164">"วิธีการป้อนข้อมูล"</string>
- <string name="current_input_method" msgid="2146807723398303917">"วิธีการป้อนข้อมูลในปัจจุบัน"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"ตัวเลือกวิธีการป้อนข้อมูล"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"อัตโนมัติ"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"แสดงตลอดเวลา"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"ซ่อนตลอดเวลา"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"กำหนดค่าวิธีการป้อนข้อมูล"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"การตั้งค่า"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"วิธีการป้อนข้อมูลที่ใช้งาน"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"ใช้ภาษาของระบบ"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"การตั้งค่าของ <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"เลือกวิธีการป้อนข้อมูลที่ใช้งาน"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"จัดการวิธีการป้อนข้อมูล"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"การตั้งค่าแป้นพิมพ์บนหน้าจอ"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"แป้นพิมพ์ในตัว"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"การตั้งค่าแป้นพิมพ์ทางกายภาพในตัว"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"เวลาเปิดใช้ Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"เวลาเปิดใช้ Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"รายละเอียดประวัติ"</string>
- <string name="details_title" msgid="3792801565213935385">"ใช้รายละเอียด"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"รายละเอียดการใช้แบตเตอรี่"</string>
<string name="details_subtitle" msgid="32593908269911734">"ใช้รายละเอียด"</string>
<string name="controls_subtitle" msgid="390468421138288702">"ปรับการใช้พลังงาน"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"แพ็คเก็จที่รวมมาด้วย"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"การสื่อสารกับเซิร์ฟเวอร์ล้มเหลว เซิร์ฟเวอร์อาจไม่ยอมรับตัวเลือกการเข้ารหัสของคุณ คุณต้องการตรวจสอบการตั้งค่าการเข้ารหัสของคุณหรือไม่"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"เพิ่ม VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"เพิ่ม VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"รายละเอียด VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"เพิ่ม <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"รายละเอียดของ <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"ตั้งค่าและจัดการ VPN"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(ไม่เปลี่ยน)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ไม่ได้ตั้งค่า)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"ที่จัดเก็บข้อมูลรับรอง"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"ที่จัดเก็บข้อมูลรับรอง"</string>
<string name="credentials_access" msgid="4843187230913860492">"ใช้ข้อมูลรับรองความปลอดภัย"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"อนุญาตให้แอปพลิเคชันนี้เข้าถึงใบรับรองความปลอดภัยและข้อมูลรับรองอื่น"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"ติดตั้งจากที่จัดเก็บข้อมูล USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"ติดตั้งจากการ์ด SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"ติดตั้งใบรับรองจากที่จัดเก็บข้อมูล USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"ติดตั้งใบรับรองจากการ์ด SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"ตั้งค่ารหัสผ่าน"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"ตั้งหรือเปลี่ยนรหัสผ่านสำหรับที่จัดเก็บข้อมูลรับรอง"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"ล้างข้อมูลรับรอง"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"นำข้อมูลทั้งหมดออกและรีเซ็ตรหัสผ่าน"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"ป้อนรหัสผ่าน"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"ใส่รหัสผ่านสำหรับที่จัดเก็บข้อมูลรับรอง"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"ตั้งรหัสผ่านสำหรับที่จัดเก็บข้อมูลรับรอง ต้องมีอย่างน้อย 8 อักขระ"</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"ป้อนรหัสผ่านที่จัดเก็บข้อมูลรับรอง"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"ติดตั้งจากที่เก็บข้อมูล USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"ติดตั้งจากการ์ด SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"ติดตั้งใบรับรองที่เข้ารหัสจากที่เก็บข้อมูล USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"ติดตั้งใบรับรองที่เข้ารหัสไว้จากการ์ด SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"ตั้งค่ารหัสผ่าน"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"ตั้งค่าหรือเปลี่ยนรหัสผ่านที่จัดเก็บข้อมูลรับรอง"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"ล้างที่จัดเก็บข้อมูล"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"ล้างข้อมูลทั้งหมดในที่จัดเก็บข้อมูลรับรองและรีเซ็ตรหัสผ่าน"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลรับรองทั้งหมดและรีเซ็ตรหัสผ่านที่เก็บข้อมูลรับรอง"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"รหัสผ่านปัจจุบัน:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"รหัสผ่านใหม่:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"ยืนยันรหัสผ่านใหม่:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"เนื้อหาทั้งหมดจะถูกลบและมีการรีเซ็ตรหัสผ่านนี้ คุณแน่ใจหรือไม่"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"ตั้งค่ารหัสผ่านสำหรับที่จัดเก็บข้อมูลรับรอง (อย่างน้อย 8 อักขระ)"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"โปรดป้อนรหัสผ่านที่ถูกต้อง"</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"โปรดป้อนรหัสผ่านที่ถูกต้อง คุณลองป้อนรหัสผ่านที่ถูกต้องได้อีกหนึ่งครั้งก่อนที่ที่จัดเก็บข้อมูลรับรองจะถูกลบ"</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"โปรดป้อนรหัสผ่านที่ถูกต้อง คุณลองป้อนรหัสผ่านที่ถูกต้องได้อีก <xliff:g id="NUMBER">%1$d</xliff:g> ครั้งก่อนที่ที่จัดเก็บข้อมูลรับรองจะถูกลบ"</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"รหัสผ่านของคุณไม่ตรง"</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"คุณต้องป้อนและยืนยันรหัสผ่าน"</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"โปรดป้อนรหัสผ่าน"</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"รหัสผ่านต้องมีอักขระอย่างน้อย 8 ตัว"</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"รหัสผ่านไม่ถูกต้อง"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"รหัสผ่านไม่ถูกต้อง คุณมีโอกาสหนึ่งครั้งก่อนที่ที่จัดเก็บข้อมูลรับรองจะถูกลบ"</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"รหัสผ่านไม่ถูกต้อง คุณมีโอกาสอีก <xliff:g id="NUMBER">%1$d</xliff:g> ครั้งก่อนที่ที่จัดเก็บข้อมูลรับรองจะถูกลบ"</string>
- <string name="credentials_erased" msgid="2907836028586342969">"ที่จัดเก็บข้อมูลรับรองถูกลบ"</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"ที่จัดเก็บข้อมูลรับรองถูกลบ"</string>
<string name="credentials_enabled" msgid="7588607413349978930">"เปิดการใช้งานที่จัดเก็บข้อมูลรับรองไว้"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"ปิดใช้งานที่จัดเก็บข้อมูลรับรองไว้"</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"โทนเสียงฉุกเฉิน"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"ตั้งค่าการทำงานเมื่อมีการโทรหาหมายเลขฉุกเฉิน"</string>
<string name="privacy_settings" msgid="9206631214140954954">"ข้อมูลส่วนบุคคล"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"สายโทรเข้า"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"การแจ้งเตือน"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"คำติชม"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"ตั้งค่า Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"เชื่อมต่อกับเครือข่าย Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"กำลังเชื่อมต่อกับเครือข่าย Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g> ..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"เชื่อมต่อกับเครือข่าย Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g> แล้ว"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"เพิ่มเครือข่าย"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"การตั้งค่า WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"ไม่เชื่อมต่อ"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"เพิ่มเครือข่าย"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"รีเฟรชรายการ"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"บันทึก"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"ยกเลิก"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"กำลังสแกนเครือข่าย..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"แตะเครือข่ายเพื่อเชื่อมต่อกับเครือข่าย"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"เชื่อมต่อกับเครือข่ายที่มีอยู่"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"เชื่อมต่อกับเครือข่ายที่ไม่ปลอดภัย"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"ป้อนการกำหนดค่าเครือข่าย"</string>
@@ -1364,9 +1370,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"กำลังเชื่อมต่อ..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"ดำเนินการต่อไปยังขั้นตอนถัดไป"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"ไม่สนับสนุน EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"คุณไม่สามารถกำหนดค่าการเชื่อมต่อ EAP Wi-Fi ขณะตั้งค่าหลังการตั้งค่า คุณสามารถกำหนดค่าได้ในการตั้งค่า ในส่วน "<b>"ไร้สายและเครือข่าย"</b></string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"การเชื่อมต่อจะใช้เวลาสักครู่..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"แตะ "<b>"ถัดไป"</b>" เพื่อตั้งค่าต่อไป"\n\n"แตะ "<b>"ย้อนกลับ"</b>" เพื่อเชื่อมต่อกับเครือข่าย Wi-Fi อื่น"</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"คุณไม่สามารถกำหนดค่าการเชื่อมต่อ EAP Wi-Fi ขณะตั้งค่าได้ หลังการตั้งค่า คุณสามารถกำหนดค่าได้ใน การตั้งค่า ในส่วน ระบบไร้สายและเครือข่าย"</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"การตั้งค่าการซิงค์"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"การซิงค์กำลังประสบปัญหา อีกสักครู่จะกลับมาอีกครั้ง"</string>
<string name="add_account_label" msgid="7811707265834013767">"เพิ่มบัญชี"</string>
@@ -1382,32 +1386,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"ปิดการซิงค์"</string>
<string name="sync_error" msgid="5060969083117872149">"ข้อผิดพลาดในการซิงค์"</string>
<string name="settings_backup" msgid="2274732978260797031">"สำรองข้อมูลการตั้งค่า"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"สำรองข้อมูลการตั้งค่า"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"ซิงค์ตอนนี้"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"ยกเลิกการซิงค์"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"แตะเพื่อซิงค์เดี๋ยวนี้ <xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"ปฏิทิน"</string>
<string name="sync_contacts" msgid="9174914394377828043">"รายชื่อ"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"ยินดีต้อนรับสู่ Google Sync"</font>\n"วิธีการของ Google ในการซิงค์ข้อมูลเพื่อให้คุณเข้าถึงสมุดโทรศัพท์ นัดหมาย และข้อมูลอื่นๆ ของคุณได้จากทุกที่"</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"การตั้งค่าการซิงค์แอปพลิเคชัน"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"ข้อมูลและการซิงค์"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"เปลี่ยนรหัสผ่าน"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"การตั้งค่าบัญชี"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"นำบัญชีออก"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"เพิ่มบัญชี"</string>
- <string name="finish_button_label" msgid="481587707657751116">"เสร็จสิ้น"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"นำบัญชีออก"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"คุณแน่ใจหรือไม่ว่าต้องการนำบัญชีนี้ออก การนำบัญชีออกจะลบข้อความ ที่อยู่ติดต่อ และข้อมูลอื่นทั้งหมดออกจากแท็บเล็ต "\n"ต้องการดำเนินการต่อหรือไม่"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"คุณแน่ใจหรือไม่ว่าต้องการนำบัญชีนี้ออก การนำบัญชีออกจะลบข้อความ ที่อยู่ติดต่อ และข้อมูลอื่นทั้งหมดออกจากโทรศัพท์ "\n"ต้องการดำเนินการต่อหรือไม่"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"แอปพลิเคชันบางอย่างจำเป็นต้องใช้บัญชีนี้ คุณสามารถนำบัญชีนี้ออกได้โดยการรีเซ็ตแท็บเล็ตให้เป็นค่าเริ่มต้นจากโรงงานเท่านั้น (ซึ่งจะลบข้อมูลส่วนบุคคลทั้งหมดของคุณ) โดยเข้าไปที่ แอปพลิเคชันการตั้งค่า ในส่วน ข้อมูลส่วนบุคคล"</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"แอปพลิเคชันบางอย่างจำเป็นต้องใช้บัญชีนี้ คุณสามารถนำบัญชีออกได้โดยการรีเซ็ตโทรศัพท์ให้เป็นค่าเริ่มต้นจากโรงงานเท่านั้น (ซึ่งจะลบข้อมูลส่วนบุคคลทั้งหมดของคุณ) โดยเข้าไปที่ แอปพลิเคชันการตั้งค่า ในส่วน ข้อมูลส่วนบุคคล"</string>
- <string name="provider_label" msgid="7724593781904508866">"การสมัครรับข้อมูลแบบ Push"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"ซิงค์ <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"ซิงค์ด้วยตนเองไม่ได้"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"การซิงค์สำหรับรายการนี้ถูกปิดใช้งานในปัจจุบัน หากต้องการเปลี่ยนค่ากำหนดของคุณ ให้เปิดใช้งานข้อมูลพื้นหลังและการซิงค์อัตโนมัติชั่วคราว"</string>
- <string name="enter_password" msgid="3268224850821675915">"ป้อนรหัสผ่านเพื่อถอดรหัสที่เก็บข้อมูล"</string>
- <string name="try_again" msgid="5904121494468643129">"ขออภัย โปรดลองอีกครั้ง"</string>
- <string name="service_busy" msgid="225227519012409130">"บริการไม่ว่าง โปรดลองอีกครั้ง"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-tl/arrays.xml b/res/values-tl/arrays.xml
index 7e19443..50483ad 100644
--- a/res/values-tl/arrays.xml
+++ b/res/values-tl/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Ang ilang animation ng window ay ipinapakita"</item>
<item msgid="488968798204105119">"Ipinakita ang lahat ng mga animation ng window"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 segundo"</item>
- <item msgid="8881760709354815449">"30 segundo"</item>
- <item msgid="7589406073232279088">"1 minuto"</item>
- <item msgid="7001195990902244174">"2 minuto"</item>
- <item msgid="7489864775127957179">"5 minuto"</item>
- <item msgid="2314124409517439288">"10 minuto"</item>
- <item msgid="6864027152847611413">"30 minuto"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"agad"</item>
- <item msgid="6736512735606834431">"5 segundo"</item>
- <item msgid="8044619388267891375">"15 segundo"</item>
- <item msgid="1822002388249545488">"30 segundo"</item>
- <item msgid="8538071621211916519">"1 minuto"</item>
- <item msgid="5663439580228932882">"2 minuto"</item>
- <item msgid="49888496216106852">"5 minuto"</item>
- <item msgid="9002737361305019353">"10 minuto"</item>
- <item msgid="4322676235684793329">"30 minuto"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Napakabagal"</item>
<item msgid="2361722960903353554">"Mabagal"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Napakahusay"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Kapag naka-off ang screen"</item>
+ <item msgid="3804733751095821976">"Kapag naka-off ang screen"</item>
<item msgid="1549288661423279207">"Huwag kailanman kapag naka-plug in"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Hindi Kailanman"</item>
+ <item msgid="1986753720941888596">"Hindi Kailanman"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Awto"</item>
diff --git a/res/values-tl/strings.xml b/res/values-tl/strings.xml
index 27ddb3b..e22077b 100644
--- a/res/values-tl/strings.xml
+++ b/res/values-tl/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Pag-scan"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Kahilingan sa pagpapares ng bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Kahilingan sa pagpares"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Piliin upang ipares sa <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Ipakita mga natanggap na file"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Ipakita lista ng file na natanggap sa Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Tagapili ng device ng bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Kahilingan sa pahintulot ng bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Humihiling ang application ng pahintulot na i-on ang Bluetooth. Gusto mo ba itong gawin?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Humihiling ng pahintulot ang isang application sa iyong tablet na i-on ang Bluetooth at gawing nakikita ang iyong tablet ng ibang mga device ng <xliff:g id="TIMEOUT">%1$d</xliff:g> (na) segundo. Gusto mo ba itong gawin?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Ang application na ito sa iyong telepono ay humihiling ng pahintulot upang i-on ang Bluetooth at upang magawang katuklas-tuklas ang iyong telepono ng ibang mga device para sa <xliff:g id="TIMEOUT">%1$d</xliff:g> (na) serbisyo. Gusto mong gawin ito?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Ino-on ang Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Awtomatikong kumonekta"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Mga setting ng petsa & oras"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 pm"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Simulan ang <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Account:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Mga setting ng proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Mga Setting ng Proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Itakda ang pandaigdigang HTTP proxy at mga listahan ng pagbubukod"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"I-clear"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Port"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Hindi pinapagana ang mga koneksyon na wireless…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Pinapagana ang mga wireless na koneksyon…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Wireless & mga network"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Wireless & mga network"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Mga setting ng wireless & network"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Pamahalaan ang Wi-Fi, Bluetooth, airplane mode, mga network ng mobile, & mga VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Roaming ng data"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Kumonekta sa mga serbisyo ng data kapag nagro-roam"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Pagpipilian ng operator"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Pumili ng network operator"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Petsa & oras"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Magtakda ng petsa at oras"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Itakda ang petsa, oras, time zone & mga format"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Awto petsa & oras"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Gamitin ang oras na ibinigay ng network"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Pag-uri-uriin ayon sa time zone"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Petsa"</string>
<string name="time_picker_title" msgid="483460752287255019">"Oras"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Timeout"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"I-lock ang screen <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> pagkatapos awtomatikong mag-off ang screen"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"I-lock ang device pagkatapos ng timeout"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Ipakita impo ng may-ari sa naka-lock na screen"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Impo ng may-ari"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Itakda ang Aking Lokasyon, pag-unlock ng screen, lock ng SIM card, lock ng imbakan ng kredensyal"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Itakda ang Aking Lokasyon, pag-unlock ng screen, lock ng imbakan ng kredensyal"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Mga Password"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Pag-encrypt ng device"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"I-encrypt ang data sa device"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"I-encrypt ang data sa device"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Kailangan mong magtakda ng pin sa pag-unlock ng device o password"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Kailangan mong magtakda ng pin sa pag-unlock ng device o password"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Na-encrypt"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Maaari mong i-encrypt ang iyong mga account, setting, na-download na application at kanilang data, media, at ibang file. Sa sandaling i-encrypt mo ang iyong telepono, hindi mo ito maaaring i-unencrypt maliban sa pagsasagawa ng pag-reset ng data sa pabrika, na bumubura sa lahat ng data sa iyong telepono."\n\n"Tumatagal ang pag-encrypt nang hanggang sa isang oras. Dapat kang magsimula na may nakargahang baterya at panatiliing nakakabit ang iyong telepono hanggang sa makumpleto ang pag-encrypt. Kung gambalain mo ang proseso ng pag-encrypt, mawawala sa iyo ang ilan o lahat ng iyong data."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Maaari mong i-encrypt ang iyong mga account, setting, na-download na application at kanilang data, media, at ibang file. Sa sandaling i-encrypt mo ang iyong telepono, hindi mo ito maaaring i-unencrypt maliban sa pagsasagawa ng pag-reset ng data sa pabrika, na bumubura sa lahat ng data sa iyong telepono."\n\n"Tumatagal ang pag-encrypt nang hanggang sa isang oras. Dapat kang magsimula na may nakargahang baterya at panatiliing nakakabit ang iyong telepono hanggang sa makumpleto ang pag-encrypt. Kung gambalain mo ang proseso ng pag-encrypt, mawawala sa iyo ang ilan o lahat ng iyong data."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"I-encrypt ang tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"I-encrypt ang telepono"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Kumpirmahin ang pag-encrypt"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"I-encrypt ang data ng user? Hindi mababawi ang pagpapatakbong ito at maaaring hindi gambalain ng hindi nawawalan ng data! Maaaring tumagal ang pag-encrypt nang hanggang sa isang oras."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"I-encrypt ang data ng user? Hindi mababawi ang pagpapatakbong ito at maaaring hindi gambalain ng hindi nawawalan ng data! Maaaring tumagal ang pag-encrypt nang hanggang sa isang oras."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Pag-encrypt"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Subukang muli pagkalipas ng ^1 segundo."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"I-configure ang screen ng lock"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"I-configure ang screen ng lock"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Security sa pag-unlock ng screen"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"I-set up ang lock ng screen"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Baguhin ang lock ng screen"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Baguhin o huwag paganahin ang pattern, PIN, o seguridad ng password"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Pumili ng paraan ng pag-lock ng screen"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Naka-off"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Huwag kailanman i-lock ang screen"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Hindi secure"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Hindi nangangailangan ng isang pattern, PIN, o password upang ma-unlock ang screen"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Huwag ipakita ang naka-lock na screen"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Wala"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Huwag paganahin ang seguridad sa pag-unlock ng screen"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Pattern"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Nangangailangan ng pattern upang i-unlock ang screen"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Kumuha ng pattern upang ma-unlock ang screen"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Nangangailangan ng numeric na PIN upang i-unlock ang screen"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Magpasok ng numeric na PIN upang ma-unlock ang screen"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Password"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Nangangailangan ng password upang i-unlock ang screen"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Magpasok ng password upang ma-unlock ang screen"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Hindi pinagana ng administrator ng remote device"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Naka-off"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Hindi secure"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Naka-secure na may pattern"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Naka-secure na may PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Naka-secure na may password"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"I-off ang lock ng screen"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Alisin ang naka-unlock na pattern"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Alisin ang naka-unlock na PIN"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Hindi pinapayagan ng administrator ng device ang paggamit ng kamakailang password"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Kanselahin"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Kanselahin"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Susunod"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Pamamahala ng device"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Mga administrator ng device"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Tingnan o alisin sa pagkaka-activate ang mga administrator ng device"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Mga setting ng bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Mamahala ng mga koneksyon, magtakda ng pangalan ng device & pagiging natutuklas"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Kahilingan sa pagpapares ng bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Ilagay ang PIN upang magpares sa \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Subukan ang 0000 o 1234.) Maaaring kailanganin mong ilagay ang parehong PIN sa Bluetooth device."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Ilagay ang passkey upang magpares sa \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Upang maipares sa \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", kumpirmahin na ipinapakita nito ang passkey: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"Gusto ng <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"na magpares."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Ilagay ang \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" sa \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" upang magpares sinundan ang bumalik o enter."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Pares"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Huwag Pagparisin"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"device ng bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Mga Pagpipilian…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Kumonekta sa…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Media"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Handsfree"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Paglilipat"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Device ng Input"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Nagte-tether"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"Maaalis sa pagkakakonekta ang <xliff:g id="DEVICE_NAME">%1$s</xliff:g> mula sa audio ng media."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Maaalis ang koneksyon ng <xliff:g id="DEVICE_NAME">%1$s</xliff:g> mula sa handsfree na audio."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"Maaalis sa pagkakakonekta ang <xliff:g id="DEVICE_NAME">%1$s</xliff:g> mula sa device ng input."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"Maaalis sa pagkakakonekta ang <xliff:g id="DEVICE_NAME">%1$s</xliff:g> mula sa pag-tether."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Mga pagpipilian sa <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Ginagamit para sa audio ng telepono"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Ginagamit para sa paglilipat ng file"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Gamitin para sa input"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Gamitin para sa pag-access sa Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Mga Setting ng Dock"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Gumamit ng dock para sa audio"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Bilang speaker phone"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Hindi magawang mag-scan para sa mga network"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Notification ng network"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"I-notify ako kapag available ang bukas na network"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Patakaran ng paghinto ng Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Tukuyin kung kailan lilipat mula sa Wi-Fi patungong data ng mobile"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Nagkaproblema sa pagtatakda ng patakaran ng paghinto."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Magdagdag ng Wi-Fi network"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Mga Wi-Fi network"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"I-scan"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Baguhin ang network"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Setup ng Network"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Ipasok ang pin mula sa access point"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Pag-set up ng WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Configuration ng paraan ng WPS pin"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Ipasok ang pin <xliff:g id="WPS_PIN">%1$s</xliff:g> sa access point"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Gumagana na ang WPS at maaaring magtagal nang ilang segundo para makumpleto"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Nabigong simulan ang WPS, pakisubukang muli"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Network SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"Seguridad"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Lakas ng signal"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Kalimutan"</string>
<string name="wifi_save" msgid="3331121567988522826">"I-save"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Kanselahin"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Nakita ang isa pang sesyon ng WPS, pakisubukang muli sa loob ng ilang minuto"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Advanced"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Patakaran ng paghinto ng Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Tukuyin kung kailan lilipat mula sa Wi-Fi patungong data ng mobile"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Nagkaproblema sa pagtatakda ng patakaran ng paghinto."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Frequency band ng Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Tukuyin ang sakop ng frequency ng pagpapatakbo"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Nagkaproblema sa pagtatakda ng frequency band."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> portable na Wi-Fi hotspot"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Tunog"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Screen"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Ipakita"</string>
<string name="sound_settings" msgid="5007659014828162881">"Mga setting ng tunog"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Silent mode"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"I-silent ang lahat ng mga tunog maliban sa media & mga alarm"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Ilipat nang awtomatiko ang oryentasyon kapag niro-rotate ang telepono"</string>
<string name="brightness" msgid="2354961343555249270">"Liwanag"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ayusin ang liwanag ng screen"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Timeout"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Awtomatikong nag-o-off ang screen pagkatapos ng <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Timeout ng screen"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Awtomatikong pagliwanag"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Mga setting ng lock ng SIM card"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"I-set up ang lock ng SIM card"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Hindi available"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Katayuan"</string>
<string name="device_status" msgid="607405385799807324">"Katayuan"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Katayuan ng baterya, network, at iba pang impormasyon"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Numero ng telepono, signal, atbp."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Numero ng telepono, signal, atbp."</string>
<string name="storage_settings" msgid="4211799979832404953">"Imbakan"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Mga setting ng imbakan"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"I-unmount ang imbakan na USB, tingnan ang available na imbakan"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"I-unmount ang SD card, tingnan ang available na imbakan"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Numero ng aking telepono"</string>
+ <string name="status_number" msgid="5123197324870153205">"Numero ng aking telepono"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Bersyon ng PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Panloob imbakan"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Imbakan na USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD card"</string>
- <string name="memory_available" msgid="5052397223077021181">"Available"</string>
- <string name="memory_size" msgid="5458889090691922288">"Kabuuan"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Kinakalkula..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Mga Application"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Media"</string>
+ <string name="memory_available" msgid="418542433817289474">"Available na espasyo"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Kabuuang espasyo"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Paggamit ng application"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Paggamit ng media"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Unmount nabahagi imbakan"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"I-unmount ang SD card"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"I-unmount panloob USB storage"</string>
@@ -676,7 +651,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Burahin imbakan na USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Burahin ang SD card"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Buburahin lahat ng data sa panloob na imbakan na USB, gaya ng musika at larawan"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Binubura ang lahat ng data sa SD card, gaya ng mga musika at larawan"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Buburahin ang lahat ng data sa SD card, gaya ng musika at mga larawan"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Hindi available"</string>
<string name="read_only" msgid="6702420168629076340">" (Read-only)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"I-unmount imbakan na USB"</string>
@@ -732,7 +707,6 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Buburahin nito ang lahat ng data mula sa "<b>"panloob na imbakan"</b>" ng iyong telepono, kabilang ang:"\n\n<li>"Iyong Google account"</li>\n<li>"Mga data at setting ng system at application"</li>\n<li>"Mga na-download na application"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Buburahin nito ang lahat ng data mula sa "<b>"panloob na imbakan"</b>" ng iyong telepono, kabilang ang:"\n\n<li>"Iyong Google account"</li>\n<li>"Mga data at setting ng system at application"</li>\n<li>"Mga na-download na application"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Kasalukuyan kang naka-sign in sa mga sumusunod na account:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Musika"</li>\n<li>"Mga Larawan"</li>\n<li>"Ibang data ng user"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Upang i-clear din ang musika, mga larawan, at ibang data ng user, kailangang mabura ang "<b>"imbakan na USB"</b>"."</string>
<string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Upang i-clear din ang musika, mga larawan, at ibang data ng user, kailangang mabura ang "<b>"SD card"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Burahin ang imbakan na USB"</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Gamitin ang may tulong na GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Gumamit ng server upang tulungan ang GPS (alisan ng check upang pababain ang paggamit ng network)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Gumamit ng server upang tulungan ang GPS (alisan ng check upang mapagbuti ang pagganap ng GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Gamitin ang lokasyon para sa Paghahanap sa Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Gamitin ang lokasyon para sa Paghahanap sa Google at ibang mga serbisyo ng Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokasyong ginagamit upang mapabuti ang mga resulta ng Paghahanap sa Google at iba pang mga serbisyo ng Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Gamitin ang lokasyon para sa paghahanap sa Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Gamitin ang lokasyon para sa paghahanap sa Google at ibang mga serbisyo ng Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Lokasyong ginamit upang mapabuti mga resulta ng paghahanap ng Google at mga ibang serbisyo ng Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Tungkol sa tablet"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Tungkol sa telepono"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Tingnan ang impormasyong legal, katayuan, bersyon ng software"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Naitakda ang password"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Naitakda ang PIN"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Itinakda ang pattern"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"I-lock ang screen"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"I-unlock ang screen"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Baguhin ang naka-unlock na pattern"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Baguhin ang naka-unlock na PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Kumpirmahin ang naka-save na pattern"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Susunod"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Sine-secure ang iyong tablet"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Pag-secure ng iyong telepono"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Protektahan ang iyong tablet mula sa walang pahintulot na paggamit sa pamamagitan ng paglikha ng isang personal na pattern ng pag-unlock ng screen. Gamitin ang iyong daliri upang ikonekta ang mga tuldok sa anumang order sa susunod na screen. Dapat mong ikonekta ang hindi bababa sa apat na tuldok. "\n\n"Handa nang magsimula? Pindutin ang \"Susunod\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Protektahan ang iyong telepono mula sa walang pahintulot na paggamit sa pamamagitan ng paglikha ng personal na pattern. "\n<font height="17">\n</font><b>"1"</b>" Sa susunod na screen, manood habang kinukuha ang pattern ng halimbawa. "\n<font height="17">\n</font><b>"2"</b>" Kapag handa na, kumuha ng iyong sariling personal na naka-unlock na pattern. Eksperimento na may iba\'t ibang mga pattern ngunit magkonekta nang hindi bababa sa apat na tuldok. "\n<font height="17">\n</font><b>"3"</b>" Muling kunin ang iyong pattern upang makumpirma. "\n<font height="17">\n</font><b>"Handa nang magsimula? Piliin ang “Susunod”"</b>". "\n<font height="3">\n</font>"Upang iwanang hindi protektado ang iyong telepono, piliin ang “Kanselahin”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Pamahalaan ang mga application"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Pamahalaan at alisin ang naka-install na mga application"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Kabuuan"</string>
<string name="application_size_label" msgid="5055196275624686382">"Application"</string>
<string name="data_size_label" msgid="8679376373625710107">"Data"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Imbakan na USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD card"</string>
<string name="uninstall_text" msgid="3644892466144802466">"I-uninstall"</string>
<string name="disable_text" msgid="6544054052049395202">"Huwag Paganahin"</string>
<string name="enable_text" msgid="9217362512327828987">"Paganahin"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Itigil ang serbisyo ng system?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Sigurado ka bang gusto mong itigil ang serbisyo ng system na ito? Kung gagawin mo, maaaring tumigil sa paggana nang ayos ang ilang mga tampok ng iyong tablet hanggang sa i-off mo ito at i-on muli."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Sigurado ka bang gusto mong itigil ang serbisyo ng system na ito? Kung gagawin mo, maaaring tumigil sa paggana nang ayos ang ilang mga tampok ng iyong telepono hanggang sa i-off mo ito at i-on muli."</string>
- <string name="language_settings" msgid="5292716747264442359">"Wika at input"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Wika at input"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Wika & keyboard"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Mga setting ng wika & keyboard"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Mga setting ng wika"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Mga setting ng keyboard"</string>
<string name="phone_language" msgid="1165758957501090679">"Pumili ng wika"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Mga Shortcut"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Pag-input ng teksto"</string>
<string name="input_method" msgid="5434026103176856164">"Paraan ng input"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Kasalukuyang paraan ng pag-input"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Tagapili ng paraan ng pag-input"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Awtomatiko"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Palaging ipakita"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Palaging itago"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"I-configure paraan ng input"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Mga Setting"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Mga aktibong paraan ng pag-input"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Gamitin ang wika ng system"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> (na) setting"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Pumili ng aktibong paraan ng input"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Pamahalaan ang Mga Paraan ng Input"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Mga setting ng keyboard ng onscreen"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Built-in na keyboard"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Mga setting ng built-in, pisikal na keyboard"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi sa oras"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi sa oras"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Mga detalye ng kasaysayan"</string>
- <string name="details_title" msgid="3792801565213935385">"Gamitin ang mga detalye"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Mga detalye ng paggamit ng baterya"</string>
<string name="details_subtitle" msgid="32593908269911734">"Gamitin ang mga detalye"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Isaayos ang paggamit ng power"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Mga kasamang package"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Nabigo ang negotiation sa server. Maaaring hindi sumang-ayon ang server sa iyong pagpipilian sa pag-encrypt. Gusto mo bang suriin ang iyong setting ng pag-encrypt?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Magdagdag ng VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Magdagdag ng VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Mga detalye ng VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Magdagdag ng <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Mga detalye ni <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"Mga VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"I-set up & pamahalaan ang Mga Virtual Private Networks (mga VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(di-nabago)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(hindi nakatakda)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Imbakan ng kredensyal"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Imbakan ng kredensyal"</string>
<string name="credentials_access" msgid="4843187230913860492">"Gumamit ng mga secure na kredensyal"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Payagan ang mga application upang ma-access ang mga secure na certificate at iba pang mga kredensyal"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"I-install mula sa USB storage"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"I-install mula sa SD card"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Mag-install ng mga certificate mula sa USB storage"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Mag-install ng mga certificate mula sa SD card"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Itakda ang password"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Itakda o baguhin ang password para sa imbakan ng kredensyal"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"I-clear ang mga kredensyal"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Alisin ang lahat ng mga nilalaman at i-reset ang password"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Magpasok ng password"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Ipasok ang password para sa imbakan ng kredensyal."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Itakda ang password para sa imbakan ng kredensyal. Dapat na mayroon itong hindi bababa sa 8 character."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Ipasok ang password ng imbakan ng kredensyal."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Install sa imbakan na USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"I-install mula sa SD card"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Install na-encrypt certificate mula USB storage"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"I-install ang mga naka-encrypt na certificate mula sa SD card"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Itakda ang password"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Itakda o baguhin ang password ng imbakan ng kredensyal"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"I-clear ang imbakan"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"I-clear ang imbakan ng kredensyal ng lahat ng mga nilalaman at i-reset ang password nito"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Sigurado ka bang gusto mong tanggalin ang lahat ng mga kredensyal at i-reset ang password ng imbakan ng kredensyal?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Kasalukuyang password:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Bagong password:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Kumpirmahin ang bagong password:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Maaalis ang lahat ng mga nilalaman, at mare-reset ang password. Sigurado ka ba tungkol doon?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Magtakda ng password para sa imbakan ng kredensyal (hindi bababa sa 8 character)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Pakiipasok ang tamang password."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Pakipasok ang tamang password. Mayroon ka pang isang pagsubok upang ipasok ang tamang password bago mabura ang imbakan ng kredensyal."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Pakipasok ang tamang password. Mayroon kang <xliff:g id="NUMBER">%1$d</xliff:g> na mga pagsubok upang ipasok ang tamang password bago mabura ang imbakan ng kredensyal."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Hindi tumutugma ang iyong mga password."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Dapat kang magpasok at magkumpirma ng password."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Pakipasok ang password."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Dapat na may hindi bababa sa 8 character ang password."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Hindi tamang password."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Hindi tamang password. Mayroon kang isa pang pagkakataon bago mabura ang imbakan ng kredensyal."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Hindi tamang password. Mayroon kang <xliff:g id="NUMBER">%1$d</xliff:g> pang pagkakataon bago mabura ang imbakan ng kredensyal."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Binura imbakan ng kredensyal."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Binura ang imbakan ng kredensyal."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Pinagana ang imbakan ng kredensyal."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Hindi pinagana ang imbakan ng kredensyal."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Tonong pang-emergency"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Itakda ang pag-uugali kapag naganap ang isang pang-emergency na tawag"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Privacy"</string>
@@ -1319,7 +1328,7 @@
<string name="backup_data_title" msgid="1239105919852668016">"I-back up ang aking data"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Mag-back up ng data ng application, mga password sa Wi-Fi, at mga ibang setting sa mga server ng Google"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"I-back up ang account"</string>
- <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Walang account ang kasalukuyang nag-iimbak ng na-back up na data"</string>
+ <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Walang account ay kasalukuyang nag-iimbak ng na-back up na data"</string>
<string name="auto_restore_title" msgid="5397528966329126506">"Awtomatikong pagbalik"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"Kung muli kong i-install ang isang application, ibalik ang mga na-back up na setting o ibang data"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Backup"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Mga papasok na tawag"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Mga Notification"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Feedback"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Pag-set up ng Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Kumonekta sa Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Kumukonekta sa Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Konektado sa Wi-Fi network <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Magdagdag ng network"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Setup ng WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Hindi nakakonekta"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Magdagdag ng network"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"I-refresh ang listahan"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"I-save"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Kanselahin"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Nag-i-scan ng mga network..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Pindutin ang isang network upang kumonekta dito"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Kumonekta sa umiiral nang network"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Kumonekta sa hindi secure na network"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Ipasok ang configuration ng network"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Kumukonekta..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Magpatuloy sa susunod na hakbang"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Hindi suportado ang EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Hindi ka maaaring mag-configure ng koneksyon sa EAP Wi-Fi sa panahon ng setup. Pagkatapos ng setup, maaari mong gawin iyon sa Mga Setting, sa ilalim ng "<b>"Mga wireless at network"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Maaaring tumagal ang pagkonekta nang ilang minuto..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Pindutin ang "<b>"Susunod"</b>" upang magpatuloy sa setup."\n\n"Pindutin ang "<b>"Bumalik"</b>" upang kumonekta sa ibang network ng Wi-Fi."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Hindi mo maisasaayos ang koneksyon ng EAP Wi-Fi sa panahon ng pagse-setup. Matapos mong mag-setup, magagawa mo iyon sa Mga Setting, sa ialim ng Wireless at Mga Network."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Mga setting ng pag-sync"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Kasalukuyang nakakaranas ng mga problema ang pag-sync. Babalik ito sa ilang saglit."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Magdagdag ng account"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Pangkalahatan setting pag-sync"</string>
<string name="background_data" msgid="5779592891375473817">"Data sa background"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Kaya mag-sync, padala, at tanggap data ang app. anuman oras"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Bigyang-pansin"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Pinapalawak ng hindi pagpapagana sa data ng background ang buhay ng baterya at pinapababa ang paggamit ng data. Maaari pa ring gamitin ng ilang application ang koneksyon ng data sa background."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Awtomatikong pag-sync"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Awtomatikong sini-sync ng mga application ang data"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Pamahalaan ang mga account"</string>
<string name="sync_enabled" msgid="4551148952179416813">"NAKA-ON ang pag-sync"</string>
<string name="sync_disabled" msgid="8511659877596511991">"NAKA-OFF pag-sync"</string>
<string name="sync_error" msgid="5060969083117872149">"Error sa pag-sync"</string>
<string name="settings_backup" msgid="2274732978260797031">"Mga setting ng back up"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"I-back up ang aking mga setting"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"I-sync ngayon"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Kanselahin ang pag-sync"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Galawin upang mag-sync ngayon<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Kalendaryo"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Mga Contact"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Maligayang pagdating sa Google sync!"</font>" "\n"Isang paraan ng Google sa pag-synchronize ng data upang payagan ang access sa iyong mga contact, appointment, at higit pa kahit nasaan ka man."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Mga setting ng pag-sync ng application"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Data at pag-synchronize"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Palitan ang password"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Mga setting ng account"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Alisin ang account"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Magdagdag ng account"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Tapusin"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Alisin ang account"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Gusto mo ba talagang alisin ang account na ito? Ang pag-alis nito ay magtatanggal rin sa lahat ng mga mensahe nito, contact, at iba pang data mula sa tablet. "\n"Magpatuloy?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Gusto mo ba talagang alisin ang account na ito? Ang pag-alis nito ay magtatanggal rin sa lahat ng mga mensahe nito, contact, at iba pang data mula sa telepono. "\n"Magpatuloy?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Kinakailangan ang account na ito ng ilang application. Maaalis mo lang ito sa pamamagitan ng pag-reset ng tablet sa mga factory default (na tinatanggal ang lahat ng iyong personal na data). Magagawa mo iyon sa application na Mga Setting, sa ilalim ng Privacy."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Kinakailangan ang account na ito ng ilang application. Maaalis mo lang ito sa pamamagitan ng pag-reset ng telepono sa mga factory default (na tinatanggal ang lahat ng iyong personal na data). Magagawa mo iyon sa application na Mga Setting, sa ilalim ng Privacy."</string>
- <string name="provider_label" msgid="7724593781904508866">"I-push ang mga subscription"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"I-sync ang <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Hindi makapag-sync nang manu-mano"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Kasalukuyang hindi pinagana ang pag-sync para sa item na ito. Upang palitan ang iyong kagustuhan, pansamantalang i-on ang data ng background at awtomatikong sync."</string>
- <string name="enter_password" msgid="3268224850821675915">"Ilagay ang password upang i-decrypt ang imbakan"</string>
- <string name="try_again" msgid="5904121494468643129">"Paumanhin, subukang muli"</string>
- <string name="service_busy" msgid="225227519012409130">"Busy ang serbisyo, subukang muli"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-tr/arrays.xml b/res/values-tr/arrays.xml
index 80dbe93..3ec1011 100644
--- a/res/values-tr/arrays.xml
+++ b/res/values-tr/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Bazı pencere animasyonları gösterilir"</item>
<item msgid="488968798204105119">"Tüm pencere animasyonları gösterilir"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 saniye"</item>
- <item msgid="8881760709354815449">"30 saniye"</item>
- <item msgid="7589406073232279088">"1 dakika"</item>
- <item msgid="7001195990902244174">"2 dakika"</item>
- <item msgid="7489864775127957179">"5 dakika"</item>
- <item msgid="2314124409517439288">"10 dakika"</item>
- <item msgid="6864027152847611413">"30 dakika"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"derhal"</item>
- <item msgid="6736512735606834431">"5 saniye"</item>
- <item msgid="8044619388267891375">"15 saniye"</item>
- <item msgid="1822002388249545488">"30 saniye"</item>
- <item msgid="8538071621211916519">"1 dakika"</item>
- <item msgid="5663439580228932882">"2 dakika"</item>
- <item msgid="49888496216106852">"5 dakika"</item>
- <item msgid="9002737361305019353">"10 dakika"</item>
- <item msgid="4322676235684793329">"30 dakika"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Çok yavaş"</item>
<item msgid="2361722960903353554">"Yavaş"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Mükemmel"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Ekran kapandığında"</item>
+ <item msgid="3804733751095821976">"Ekran kapandığında"</item>
<item msgid="1549288661423279207">"Takılı olduğunda hiçbir zaman"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Hiçbir zaman"</item>
+ <item msgid="1986753720941888596">"Hiçbir zaman"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Otomatik"</item>
diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml
index 4e3b13d..4de7ffa 100644
--- a/res/values-tr/strings.xml
+++ b/res/values-tr/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"Ölü"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"Aşırı voltaj"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"Bilinmeyen hata"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"Soğuk"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"Bluetooth"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"Keşfedilebilir"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"<xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> saniye için keşfedilebilir…"</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Taranıyor"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Bluetooth eşleşme isteği"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Eşleşme isteği"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> ile eşleştirmek için seçin"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Alınan dosyaları göster"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Bluetooth üzerinden alınan dosyaların listesini göster"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Bluetooth cihazı seçicisi"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Bluetooth izin isteği"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Bir uygulama, Bluetooth\'u açmak için izin istiyor. Bunu yapmak istiyor musunuz?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Tabletinizdeki bir uygulama, <xliff:g id="TIMEOUT">%1$d</xliff:g> saniye boyunca Bluetooth\'u açmak ve tabletinizi diğer cihazlar tarafından bulunabilir duruma getirmek için izin istiyor. Bunu yapmak istiyor musunuz?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Telefonunuzdaki bir uygulama, <xliff:g id="TIMEOUT">%1$d</xliff:g> saniye boyunca Bluetooth\'u açmak ve telefonunuzu diğer cihazlar tarafından bulunabilir duruma getirmek için izin istiyor. Bunu yapmak istiyor musunuz?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Bluetooth açılıyor..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Otomatik bağlan"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Tarih ve saat ayarları"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"<xliff:g id="ACTIVITY">activity</xliff:g> işlemini başlat"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Hesap:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy ayarları"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy Ayarları"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Genel HTTP proxy\'sini ve dışlama listelerini ayarla"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Temizle"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Bağlantı Noktası"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"İptal"</string>
<string name="settings_label" msgid="1626402585530130914">"Ayarlar"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"Ayarlar"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"Ayarlar kısayolu seçin"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"Ayarlar"</string>
<string name="airplane_mode" msgid="8837269988154128601">"Uçak modu"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"Tüm kablosuz bağlantıları devre dışı bırak"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Kablosuz bağlantılar devre dışı bırakılıyor…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Kablosuz bağlantılar etkinleştiriliyor…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Kablosuz özelliği ve ağlar"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Kablosuz özelliği ve ağlar"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Kablosuz ve ağ ayarları"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Kablosuz, Bluetooth, uçak modu, mobil ağ ve VPN özelliklerini yönet"</string>
<string name="roaming" msgid="3596055926335478572">"Veri dolaşımı"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Dolaşırken veri hizmetlerine bağlan"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"Operatör seçimi"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Bir ağ operatörü seçin"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Tarih ve saat"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Tarih ve saati ayarla"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Tarihi, saati, saat dilimini ve biçimleri ayarla"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Otomatik tarih ve saat"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Ağ tarafından sağlanan saati kullan"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Saat dilimine göre sırala"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Tarih"</string>
<string name="time_picker_title" msgid="483460752287255019">"Saat"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Zaman aşımı"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Ekran otomatik olarak kapandıktan <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> sonra ekranı kilitle"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Zaman aşımı süresi dolduktan sonra cihazı kilitle"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Kilitli ekranda sahip bilgilerini göster"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Sahip bilgileri"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Konumum, ekran kil. açma, SIM kart kil., kim. bilg. dep.kilidini ayarla"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Konumum, ekran kilidi açma, kimlik bilgileri deposunun kilidi özelliklerini ayarla"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Şifreler"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Cihaz şifreleme"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Cihazdaki verileri şifrele"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Cihazdaki verileri şifrele"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Cihazın kilidini açacak pin veya şifreyi ayarlamanızı gerektirir"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Cihazın kilidini açacak pin veya şifreyi ayarlamanızı gerektirir"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Şifreli"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Hesaplarınızı, ayarlarınızı, indirilen uygulamalarınızı ve bunlara ait verileri medyaları ve diğer dosyaları şifreleyebilirsiniz. Telefonunuzu şifreledikten sonra, telefonunuzdaki tüm verileri silen fabrika verilerine sıfırlama işlemi yapmadan şifrelemeyi kaldıramazsınız."\n\n"Şifreleme işlemi bir saat kadar sürer. İşlemi, dolu bir pille başlatmalı ve şifreleme tamamlanana kadar telefonu fişe takılı tutmalısınız. Şifreleme işlemini yarıda keserseniz, verilerinizin bir kısmını veya tamamını kaybedersiniz."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Hesaplarınızı, ayarlarınızı, indirilen uygulamalarınızı ve bunlara ait verileri medyaları ve diğer dosyaları şifreleyebilirsiniz. Telefonunuzu şifreledikten sonra, telefonunuzdaki tüm verileri silen fabrika verilerine sıfırlama işlemi yapmadan şifrelemeyi kaldıramazsınız."\n\n"Şifreleme işlemi bir saat kadar sürer. İşlemi, dolu bir pille başlatmalı ve şifreleme tamamlanana kadar telefonu fişe takılı tutmalısınız. Şifreleme işlemini yarıda keserseniz, verilerinizin bir kısmını veya tamamını kaybedersiniz."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Şifreli tablet"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Şifreli telefon"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Şifrelemeyi onaylayın"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Kullanıcı verileri şifrelensin mi? Bu işlem geri alınamaz ve veri kaybı olmadan yarıda kesilemez! Şifreleme bir saat kadar sürebilir."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Kullanıcı verileri şifrelensin mi? Bu işlem geri alınamaz ve veri kaybı olmadan yarıda kesilemez! Şifreleme bir saat kadar sürebilir."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Şifreleniyor"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"^1 saniye içinde tekrar deneyin."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Kilit ekranını yapılandır"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Kilit ekrn yapılandır"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Ekran kilidini açma güvenliği"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Ekran kilidini ayarla"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Ekran kilidini değiştir"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Şekil, PIN veya şifre güvenliğini değiştir veya devre dışı bırak"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Ekranı kilitlemek için bir yöntem seçin"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Kapalı"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ekranı asla kilitleme"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Güvenlik yok"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Ekran kilidini açmak için desen, PIN veya şifre gerektirme"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Kilit ekranını gösterme"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Yok"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Ekran kilidi güvenliğini devre dışı bırak"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Şekil"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Ekranın kilidini açmak için bir desen gerektir"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Ekran kilidini açmak için şekil çizin"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ekr kilidini açmak için sayısal PIN gerektir"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Ekran kilidinin açılması için sayısal bir PIN girin"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Şifre"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ekranın kilidini açmak için şifre gerektir"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Ekran kilidini açmak için kullanılacak bir şifre girin"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Cihazın uzaktn yöntcs tarfndn devre dş bırkld"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Kapalı"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Güvenlik yok"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Desenle güvenlik etkin"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"PIN ile güvenlik etkin"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Şifre ile güvenlik etkin"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Ekran kilidini kapat"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Kilit açma desenini kaldır"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Kilit açma PIN\'ini kaldır"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Cihaz yöneticisi yakında kullanılmış şifreye izin vermiyor"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"Tamam"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"İptal"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"İptal"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"İleri"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Cihaz yönetimi"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"Cihaz yöneticileri"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"Cihaz yöneticilerini görüntüle veya devre dışı bırak"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"Cihaz yöneticilerini seçin"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"Aygıt yöneticilerini ekleyin veya kaldırın"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"Bluetooth"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"Bluetooth\'u aç"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"Bluetooth ayarları"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Bluetooth ayarları"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Bağlantıları yönet, cihaz adını gir ve keşfedilebilirlik ayarını yap"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Bluetooth eşleşme isteği"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"\"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" ile eşleştirmek için PIN girin. (0000 veya 1234 deneyin) Aynı PIN\'i Bluetooth cihazınızdan da girmeniz gerekebilir."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"\"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" ile eşleştirmek için passkey kodunu girin."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"\"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" ile eşleştirmek için, şu passkey kodunu gösterdiğini doğrulayın: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"eşleşme istiyor."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Eşleştirmek için \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" üzerinde \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" girin, ardından return veya enter tuşuna basın."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Çift"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Eşleştirme"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"bluetooth cihazı"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Seçenekler…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Bağlan…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Medya"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Eller serbest"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Tablet"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Aktar"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Giriş Cihazı"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"İnternet paylaşımı"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> medya ses profilinden ayrılacak."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> eller serbest ses profilinden ayrılacak."</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> giriş cihazından ayrılacak."</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> internet paylaşımından ayrılacak."</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> seçenek"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"Cihaz eylemleri"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"Bağlan"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Telefon sesi için kullan"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Dosya aktarımı için kullan"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Giriş için kullan"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"İnternet erişimi için kullan"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Yuva Ayarları"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Ses öğesi için yuvayı kullan"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Telefon hoparlörü olarak"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"Ayarları anımsa"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"Etkt okumk ve değş yap içn Yakın Alan İletşm\'ni kullnn"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"Bir hata oluştu."</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Kablosuz"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"Kablosuzu aç"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Kablosuz ayarları"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Ağ aranamıyor"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Ağ bildirimi"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Açık bir ağ kullanılabilir olduğunda bana bildir"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Kablosuz uyku politikası"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Kablosuzdan mobil veriye geçme zamanını belirt"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Uyku politikası ayarlanırken bir sorun oluştu."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Kablosuz ağ ekle"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Kablosuz ağlar"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Tara"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Ağı değiştir"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Ağ Kurulumu"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Erişim noktasının PIN\'ini girin"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS Ayarı"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS pin yapılandırma yöntemi"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Erişim noktasında <xliff:g id="WPS_PIN">%1$s</xliff:g> PIN\'ini girin"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS zaten devam ediyor ve tamamlanması onlarca saniye sürebilir"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"WPS başlatılamadı. Lütfen tekrar deneyin"</string>
<string name="wifi_ssid" msgid="641393708309146745">"Ağ SSID\'si"</string>
<string name="wifi_security" msgid="6603611185592956936">"Güvenlik"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Sinyal gücü"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Unut"</string>
<string name="wifi_save" msgid="3331121567988522826">"Kaydet"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"İptal"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Başka bir WPS oturumu saptandı, lütfen bir kaç dakika sonra tekrar deneyin"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Gelişmiş"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Kablosuz uyku politikası"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Kablosuzdan mobil veriye geçme zamanını belirt"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Uyku politikası ayarlanırken bir sorun oluştu."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Kablosuz frekans bandı"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"İşlemin sıklık aralığını belirtin"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Frekans bandı ayarlanırken bir sorun oldu."</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> taşınabilir kablosuz ortak erişim noktası"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android Ortak Erişim Noktası"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Ses"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Ekran"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Ekran"</string>
<string name="sound_settings" msgid="5007659014828162881">"Ses ayarları"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Sessiz mod"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Medya ve alarmlar dışında tüm sesleri kapat"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Telefonu döndürürken yönü otomatik değiştir"</string>
<string name="brightness" msgid="2354961343555249270">"Parlaklık"</string>
<string name="brightness_summary" msgid="838917350127550703">"Ekranın parlaklığını ayarla"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Zaman aşımı"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"<xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g> sonra ekran otomatik olarak kapanır"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Ekran zaman aşımı"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Otomatik parlaklık"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM kart kilit ayarları"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"SIM kart kilidini ayarla"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Uygun değil"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Durum"</string>
<string name="device_status" msgid="607405385799807324">"Durum"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Pilin, ağın durumu ve diğer bilgiler"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI, telefon numarası, sinyal vb."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Telefon numarası, sinyal vb."</string>
<string name="storage_settings" msgid="4211799979832404953">"Depolama"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Depolama ayarları"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"USB depolama biriminin bağlantısını kes, kullanılabilir depolama alanını görüntüle"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"SD kartın bağlantısını kes, kull. Depolama alanını görüntüle"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Telefon numaram"</string>
+ <string name="status_number" msgid="5123197324870153205">"Telefon numaram"</string>
<string name="status_min_number" msgid="3519504522179420597">"MİN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL Sürümü"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Dahili dep birm"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB depolama birimi"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD kart"</string>
- <string name="memory_available" msgid="5052397223077021181">"Kullanılabilir"</string>
- <string name="memory_size" msgid="5458889090691922288">"Toplam"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Hesaplanıyor..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Uygulamalar"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Medya"</string>
+ <string name="memory_available" msgid="418542433817289474">"Kullanılabilir alan"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Toplam alan"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Uygulama kullanımı"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Medya kullanımı"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Payl dep birimnn bağl kes"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"SD kartının bağlantısını kes"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Dahili USB depolamanın bağ kes"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"Eklemek için bir SD kart yerleştirin"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"USB depl birimini ekleyin"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"SD kartı ekle"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Dahili USB depolama birimini ekle"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"Dahili USB depol birimini ekle"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"SD kartı ekle"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"USB depolama birimini sil"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"SD kartı sil"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Dahili USB depolama birimindeki müzik ve fotoğraf gibi tüm verileri siler"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"SD karttaki müzik ve fotoğraf gibi tüm verileri siler"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"Dahili USB depolama birimindeki müzik ve fotoğraf gibi tüm verileri siler"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Kullanılamıyor"</string>
<string name="read_only" msgid="6702420168629076340">" (Salt okunur)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"USB dep brmnn bağln kes"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Bu işlem tablet bilgisayarınızın "<b>"dahili depolama alanından"</b>" şu verilerin tümünü siler:"\n\n<li>"Google hesabınız"</li>\n<li>"Sistem ve uygulama verileri ile ayarları"</li>\n<li>"İndirilen uygulamalar"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Bu işlem telefonunuzun "<b>"dahili depolama alanından"</b>" şu verilerini tümünü siler:"\n\n<li>"Google hesabınız"</li>\n<li>"Sistem ve uygulama verileri ve ayarları"</li>\n<li>"İndirilen uygulamalar"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Şu anda aşağıdaki hesaplarda oturum açmış durumdasınız:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Müzik"</li>\n<li>"Fotoğraflar"</li>\n<li>"Diğer kullanıcı verileri"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Müzik, resimler ve diğer kullanıcı verilerinin de temizlenmesi için "<b>"USB depolama biriminin"</b>" silinmesi gerekir."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Müzik, resim ve diğer kullanıcı verilerini de temizlemek için, "<b>"SD kartın"</b>" silinmesi gerekir."</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Müzik, resimler ve diğer kullanıcı verilerinin de temizlenmesi için "<b>"USB depolama biriminin"</b>" silinmesi gerekir."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"USB depolama birimini sil"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"SD kartı sil"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Dahili USB depolama birimindeki müzik veya fotoğraf gibi tüm veriler silinir."</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Desteklenen GPS kullan"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"GPS\'ye destek olmak için sunucu kullan (ağ kullanımını azaltmak için onay işaretini kaldırın)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"GPS\'ye yardımcı olmak için sunucu kullan (GPS performansını iyileştirmek için onay işaretini kaldırın)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Google Arama\'da konumu kullan"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Google Arama ve diğer Google hizmetlerinde konumu kullan"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Konum, Google Arama sonuçlarını ve diğer Google hizmetlerini geliştirmek için kullanılır"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Google arama için konum kullan"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Google arama ve diğer Google hizmetleri için konum kullan"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Google arama sonuçları ve diğer Google hizmetlerini iyileştirmek için kullanılan konum"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Tablet hakkında"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Telefon hakkında"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Yasal bilgileri, durumu, yazılım sürümünü görüntüle"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Şifre ayarlandı"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN ayarlandı"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Desen ayarlandı"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Kilit ekranı"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Ekran kilidini açma"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Kilit açma desenini değiştir"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Kilit açma PIN\'ini değiştir"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Kaydedilen deseni onayla"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"İleri"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Tabletinizin güvenliğini sağlama"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Telefonunuzu güvenlik altına alma"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Kişisel bir kilit açma deseni oluşturarak tabletinizi yetkisiz kullanıma karşı koruyun. Bir sonraki ekrana geçmek için parmaklarınızı kullanarak noktaları istediğiniz sırada birleştirin. En az dört noktayı birleştirmelisiniz. "\n\n"Başlamaya hazır mısınız? \"İleri\"ye dokunun."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Kişisel bir ekran kilidi açma deseni oluşturarak telefonunuzu yetkisiz kullanımdan koruyun. "\n<font height="17">\n</font><b>"1"</b>" Bir sonraki ekranda örnek bir desenin çizilişini izleyin. "\n<font height="17">\n</font><b>"2"</b>" Hazır olduğunuzda, kendi kişisel kilit açma deseninizi çizin. Değişik desenleri deneyebilirsiniz ancak en az dört noktayı birleştirin. "\n<font height="17">\n</font><b>"3"</b>" Onaylamak için deseninizi yeniden çizin. "\n<font height="17">\n</font><b>"Başlamaya hazır mısınız? \"İleri\"ye dokunun"</b>". "\n<font height="3">\n</font>"Telefonunuzu korumasız bırakmak için \"İptal\"e dokunun."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Uygulamaları yönet"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Yüklü uygulamaları yönet ve kaldır"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Toplam"</string>
<string name="application_size_label" msgid="5055196275624686382">"Uygulama"</string>
<string name="data_size_label" msgid="8679376373625710107">"Veri"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB depolama birimi"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD kart"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Kaldır"</string>
<string name="disable_text" msgid="6544054052049395202">"Devre dışı bırak"</string>
<string name="enable_text" msgid="9217362512327828987">"Etkinleştir"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Sis hiz durdrlsn mu?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Bu sistem hizmetinin durdurulmasını istediğinizden emin misiniz? Durdurulursa, tabletinizin bazı özellikleri, tablet kapatılıp yeniden açılmadan düzgün çalışmayabilir."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Bu sistem hiz durdurulmasını istediğinize emin misiniz? Durdurulursa, telefonunuzun bazı özellikleri, telfn kapatılıp yeniden açılmadan düzgün çalışmayabilir."</string>
- <string name="language_settings" msgid="5292716747264442359">"Dil ve giriş"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Dil ve giriş"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"Yerel ayar ve metin"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Dil ve klavye ayarları"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Dil ayarları"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Klavye ayarları"</string>
<string name="phone_language" msgid="1165758957501090679">"Dil seçin"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"Otomatik değiştir"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"Yanlış yazılmış kelimeleri düzelt"</string>
- <string name="auto_caps" msgid="6379232078052591265">"Otomatik büyük harf yap"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"Otomatik büyük harf"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"Cümlelerin ilk harfini büyük yap"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"Otomatik noktalama"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"Fiziksel klavye ayarları"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Kısayollar"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Metin girişi"</string>
<string name="input_method" msgid="5434026103176856164">"Giriş yöntemi"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Güncel giriş yöntemi"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Giriş yöntemi seçicisi"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Otomatik"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Her zaman göster"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Her zaman gizle"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Giriş yöntemlerini yapılandır"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Ayarlar"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Etkin giriş yöntemleri"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Sistemin dilini kullanın"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> ayarları"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Etkin giriş yöntemlerini seçin"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Ekran klavyesi ayarları"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Yerleşik klavye"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Yerleşik, fiziksel klavye ayarları"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Zamnnd kablsz"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Zamnnd kablsz"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Geçmiş ayrıntıları"</string>
- <string name="details_title" msgid="3792801565213935385">"Ayrıntıları kullan"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Pil kullanım bilgileri"</string>
<string name="details_subtitle" msgid="32593908269911734">"Ayrıntıları kullan"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Pil kullanımını ayarla"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Dahil olan paketler"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Sunucu anlaşması başarısız oldu. Sunucu şifreleme seçeneğiniz ile uyuşmuyor olabilir. Şifreleme ayarınızı kontrol etmek istiyor musunuz?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"VPN ekle"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"VPN ekle"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN ayrıntıları"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"<xliff:g id="NAME">%s</xliff:g> VPN\'si ekle"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g> ayrıntıları"</string>
<string name="vpns" msgid="3148141862835492816">"VPN\'ler"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Sanal Özel Ağlar (VPN\'ler) kur ve yönet"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(değişmedi)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(ayarlanmadı)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Kimlik bilgileri deposu"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Kimlik bilgileri deposu"</string>
<string name="credentials_access" msgid="4843187230913860492">"Güvenli kimlik bilgilerini kullan"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Uygulamaların güvenli sertifikalara ve diğer kimlik bilgilerine erişmesine izin verin"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"USB depolama biriminden yükle"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"SD karttan yükle"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Sertifikaları USB depolama biriminden yükle"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Sertifikaları SD karttan yükle"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Şifreyi ayarla"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Kimlik bilgileri deposu için şifre ayarla veya mevcut şifreyi değiştir"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Kimlik bilgilerini temizle"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Tüm içeriği kaldır ve şifreyi sıfırla"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Şifreyi girin"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Kimlik bilgileri deposu için şifre girin."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Kimlik bilgileri deposu için şifreyi girin. En az 8 karakter olmalıdır."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Kimlik bilgileri deposunun şifresini girin."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"USB dep biriminden yükle"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"SD karttan yükle"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"USB dep br şifr srtfk ykl"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"SD karttan şifrelenmiş sertifikaları yükleyin"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Şifreyi ayarla"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Kimlik bilgileri deposunun şifresini ayarlayın veya değiştirin"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Depoyu temizle"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Tüm içeriklerin kimlik bilgileri deposunu temizleyin ve bu depolama alanının şifresini sıfırlayın"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Tüm kimlik bilgilerini silmek ve kimlik bilgileri deposunun şifresini sıfırlamak istediğinizden emin misiniz?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Geçerli şifre:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Yeni şifre:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Yeni şifreyi doğrulayın:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Tüm içerik kaldırılacak ve şifre sıfırlanacak. Bundan emin misiniz?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Kimlik bilgileri deposu için bir şifre belirleyin (en az 8 karakter)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Lütfen doğru şifreyi girin."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Lütfen doğru şifreyi girin. Kimlik bilgileri deposu silinmeden önce doğru şifreyi girmek için son bir deneme hakkınız var."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Lütfen doğru şifreyi girin. Kimlik bilgileri deposu silinmeden önce doğru şifreyi girmek için <xliff:g id="NUMBER">%1$d</xliff:g> deneme hakkınız daha var."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Şifreler eşleşmiyor."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Bir şifre girip doğrulamanız gerekiyor."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Lütfen şifreyi girin."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Şifre, en az 8 karakterden oluşmalıdır."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Yanlış şifre."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Hatalı şifre. Kimlik bilgileri deposu silinmeden önce tek bir şansınız kaldı."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Hatalı şifre. Kimlik bilgileri deposu silinmeden önce <xliff:g id="NUMBER">%1$d</xliff:g> şansınız kaldı."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Kimlik bilgileri deposu silindi."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Kimlik bilgileri deposu silindi."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Kimlik bilgileri deposu etkin."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Kimlik bilgileri deposu devre dışı."</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"Şifrelenmiş Dosya Sistemi"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"Özel kullanıcı verilerini şifrele"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"Bu cihazdaki özel kullanıcı verileri için şifrelenmiş dosya sistemi depolamasını etkinleştir"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"Şifrelenmiş Dosya Sistemlerini etkinleştirilmek, cihazda veri silme işlemi yapılmasını gerektirir."</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"Şifrelenmiş Dosya Sistemlerini devre dışı bırakmak, cihazda veri silme işlemi yapılmasını gerektirir."</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"Etkinleştir"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"Devre dışı bırak"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"İptal"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"Şifrelenmiş Dosya Sistemleri modu değişikliği iptal edildi."</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"Şifrelenmiş Dosya Sistemi Uyarısı."</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"Acil sesi"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Acil çağrı yapıldığında nasıl işlev göreceğini ayarlayın"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Gizlilik"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Gelen çağrılar"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Bildirimler"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Geri bildirim"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Kablosuz ayarı"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"<xliff:g id="NETWORK_NAME">%s</xliff:g> Kablosuz ağına bağlan"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"<xliff:g id="NETWORK_NAME">%s</xliff:g> Kablosuz ağına bağlanıyor..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"<xliff:g id="NETWORK_NAME">%s</xliff:g> Kablosuz ağına bağlandı"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Ağ ekleyin"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Kablosuz kurulumu"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Bağlanmadı"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Ağ ekle"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Listeyi yenile"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Kaydet"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"İptal"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Ağlar taranıyor..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Bağlanmak için bir ağa dokunun"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Ağ seçmek için dokunun"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Mevcut ağa bağlan"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Güvenli olmayan ağa bağlan"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Ağ yapılandırmasını girin"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Bağlanıyor..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Sonraki adıma ilerle"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP desteklenmiyor"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Kurulum sırasında EAP Kablosuz bağlantısı yapılandıramazsınız. Kurulumdan sonra Ayarlar\'da, "<b>"Kablosuz ve ağlar"</b>" bölümünden yapabilirsiniz."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Bağlanma birkaç dakika sürebilir..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Kuruluma devam etmek için "<b>"İleri"</b>"\'ye dokunun."\n\n"Farklı bir Kablosuz ağa bağlanmak için "<b>"Geri"</b>"\'ye dokunun."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Kurulum sırasında EAP Kablosuz bağlantısı yapılandıramazsınız. Kurulumdan sonra, bunu Kablosuz ve Ağlar\'ın altındaki Ayarlar\'da yapabilirsiniz."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Senkronizasyon ayarları"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"Şu anda senkronizasyon sorunları yaşanıyor. Kısa süre sonra düzeltilecek."</string>
<string name="add_account_label" msgid="7811707265834013767">"Hesap ekle"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"Senkronizasyon KAPALI"</string>
<string name="sync_error" msgid="5060969083117872149">"Senk. hatası"</string>
<string name="settings_backup" msgid="2274732978260797031">"Yedekleme ayarları"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Ayarlarımı yedekle"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"Şimdi senkronize et"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Senkronizasyonu iptal et"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Şimdi senkronize etmek için dokunun<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"Takvim"</string>
<string name="sync_contacts" msgid="9174914394377828043">"Kişiler"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Google Sync\'e Hoş Geldiniz!"</font>" "\n"Google Sync, kişilerinize, randevularınıza ve diğer bilgilerinize istediğiniz yerden erişebilmenize olanak veren, Google\'ın veri senkronizasyonu ürünüdür."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Uygulama senkronizasyon ayarları"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Veri ve senkronizasyon"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Şifreyi değiştir"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Hesap ayarları"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Hesabı kaldır"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Hesap ekleyin"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Son"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Hesabı kaldır"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Bu hesabı gerçekten kaldırmak istiyor musunuz? Bunu kaldırmak, bu hesaba ait tüm mesajları, kişileri ve diğer verileri de tabletten silecektir. "\n"Devam etmek istiyor musunuz?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Bu hesabı gerçekten kaldırmak istiyor musunuz? Bunu kaldırmak, bu hesaba ait tüm mesajları, kişileri ve diğer verileri de telefondan silecektir. "\n"Devam etmek istiyor musunuz?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Bu hesap, bazı uygulamalar için gereklidir. Hesabı ancak tableti varsayılan fabrika ayarlarına geri döndürerek kaldırabilirsiniz (tüm kişisel verileriniz silinir). Bu işlemi Ayarlar uygulamasında, Gizlilik bölümünde gerçekleştirebilirsiniz."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Bu hesap, bazı uygulamalar için gereklidir. Hesabı ancak telefonu varsayılan fabrika ayarlarına geri döndürerek kaldırabilirsiniz (tüm kişisel verileriniz silinir). Bu işlemi Ayarlar uygulamasında, Gizlilik bölümünde gerçekleştirebilirsiniz."</string>
- <string name="provider_label" msgid="7724593781904508866">"Push abonelikleri"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Senkronize et: <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"El ile senkronize edilemiyor"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Bu öğe için senkronizasyon şu anda devre dışı bırakılmış durumdadır. Tercihinizi değiştirmek için geçici olarak arka plan verilerini ve otomatik senkronizasyonu açın."</string>
- <string name="enter_password" msgid="3268224850821675915">"Depolamanın şifresini çözmek için şifre girin"</string>
- <string name="try_again" msgid="5904121494468643129">"Maalesef, tekrar deneyin"</string>
- <string name="service_busy" msgid="225227519012409130">"Hizmet meşgul, tekrar deneyin"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-uk/arrays.xml b/res/values-uk/arrays.xml
index dbcaed7..a4270f2 100644
--- a/res/values-uk/arrays.xml
+++ b/res/values-uk/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Відображено деякі анімації вікон"</item>
<item msgid="488968798204105119">"Відображаюся всі анімації вікна"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 секунд"</item>
- <item msgid="8881760709354815449">"30 секунд"</item>
- <item msgid="7589406073232279088">"1 хвилина"</item>
- <item msgid="7001195990902244174">"2 хв."</item>
- <item msgid="7489864775127957179">"5 хвилин"</item>
- <item msgid="2314124409517439288">"10 хвилин"</item>
- <item msgid="6864027152847611413">"30 хвилин"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"відразу"</item>
- <item msgid="6736512735606834431">"5 сек."</item>
- <item msgid="8044619388267891375">"15 сек."</item>
- <item msgid="1822002388249545488">"30 сек."</item>
- <item msgid="8538071621211916519">"1 хв."</item>
- <item msgid="5663439580228932882">"2 хв."</item>
- <item msgid="49888496216106852">"5 хвилин"</item>
- <item msgid="9002737361305019353">"10 хвилин"</item>
- <item msgid="4322676235684793329">"30 хвилин"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Дуже пов."</item>
<item msgid="2361722960903353554">"Повіл."</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Чудовий"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"При вимкненні екрана"</item>
+ <item msgid="3804733751095821976">"При вимкненні екрана"</item>
<item msgid="1549288661423279207">"Ніколи в підключ. стані"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Ніколи"</item>
+ <item msgid="1986753720941888596">"Ніколи"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Автоматично"</item>
diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml
index 3bae815..1b6d23e 100644
--- a/res/values-uk/strings.xml
+++ b/res/values-uk/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Сканування"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Запит Bluetooth на ств. пари"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Запит на ств. пари"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Виберіть для створення пари з пристроєм <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Показати отримані файли"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Показати список файлів, отриманих через Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Інстр.виб.пристр.Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Запит на дозвіл Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Програма просить дозволу на ввімкнення Bluetooth. Зробити це?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Програма у вашому пристрої просить дозволу на ввімкнення Bluetooth і надання пристрою видимості іншими пристроями протягом <xliff:g id="TIMEOUT">%1$d</xliff:g> сек. Зробити це?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Програма у вашому телефоні просить дозволу на ввімкнення Bluetooth та надання телефону видимості іншими пристроями протягом <xliff:g id="TIMEOUT">%1$d</xliff:g> сек. Зробити це?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Увімкнення Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Автоматичне з\'єднання"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Налаштування дати та часу"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"13:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Запуск. <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Обл. запис:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Налаштування проксі-сервера"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Налашт-ня проксі"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Устан. глоб. проксі-сервер HTTP й списки виключ."</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Очистити"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Порт"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Вимкнення бездротових з\'єднань..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Увімкнення бездротових з\'єднань…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Бездрот. зв\'язок і мережі"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Бездротовий зв\'язок і мережі"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Налашт. бездрот. зв\'язку та мережі"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Керуйте Wi-Fi, Bluetooth, реж. польоту, мобільними мережами та VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Роумінг даних"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Підключ. до служб даних під час роумінгу"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Вибір оператора"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Вибрати оператора мережі"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Дата та час"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Установити дату та час"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Устан. дату, час, часовий пояс і формати"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Автомат. дата & час"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Використовувати час, наданий мережею"</string>
@@ -253,10 +252,13 @@
<string name="date_time_date_format" msgid="436706100255870967">"Виберіть формат дати"</string>
<string name="zone_list_menu_sort_alphabetically" msgid="5683377702671088588">"Сортувати за алфавітом"</string>
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Сорт. за час. поясом"</string>
- <string name="date_picker_title" msgid="1338210036394128512">"Дата"</string>
- <string name="time_picker_title" msgid="483460752287255019">"Час"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Час очікування"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Блокувати екран <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> після того, як він автоматично відключається"</string>
+ <!-- no translation found for date_picker_title (1338210036394128512) -->
+ <skip />
+ <!-- no translation found for time_picker_title (483460752287255019) -->
+ <skip />
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Блок. прис. після часу очік."</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Показувати інф-цію про власника на заблок. екрані"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Інф-ція про власника"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +268,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Устан. Моє місцезн., розблок. екрана, блок. SIM-карти, сховища обл. даних"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Устан. Моє місцезн., розбл. екрана, блок. схов. обл. даних"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Паролі"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Шифрування пристрою"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Зашифрувати дані в пристрої"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Зашифрувати дані в пристрої"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Потрібно встановити pin-код або пароль розблокування пристрою"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Потрібно встановити pin-код або пароль розблокування пристрою"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Зашифровано"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Можна зашифрувати облікові записи, налаштування, завантажені програми та їхні дані, медіа-файли й інші файли. Коли телефон зашифровано, шифрування можна зняти, лише виконавши відновлення заводських налаштувань, що очистить усі дані в телефоні."\n\n"Шифрування триває до години. Процес шифрування потрібно починати із зарядженою батареєю. Телефон має залишатися підключеним до джерела живлення, поки шифрування не буде завершено. Переривання процесу шифрування призведе до втрати частини чи всіх даних."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Можна зашифрувати облікові записи, налаштування, завантажені програми та їхні дані, медіа-файли й інші файли. Коли телефон зашифровано, шифрування можна зняти, лише виконавши відновлення заводських налаштувань, що очистить усі дані в телефоні."\n\n"Шифрування триває до години. Процес шифрування потрібно починати із зарядженою батареєю. Телефон має залишатися підключеним до джерела живлення, поки шифрування не буде завершено. Переривання процесу шифрування призведе до втрати частини чи всіх даних."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Шифрувати пристрій"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Шифрувати телефон"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Підтвердити шифрування"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Зашифрувати дані користувача? Цю операцію неможливо відмінити. Її переривання призведе до втрати даних! Шифрування триває до години."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Зашифрувати дані користувача? Цю операцію неможливо відмінити. Її переривання призведе до втрати даних! Шифрування триває до години."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Шифрування"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Спробуйте ще через ^1 сек."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Налашт. блокув. екрана"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Налашт. блокув. екрана"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Безпека розблокув. екрана"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Налашт. блок. екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Змін. блокув. екрана"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Змінити чи вимкнути ключ, PIN або захист паролем"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Вибрати спосіб блокування екрана"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Вимкнути"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Ніколи не блокувати екран"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Зняти захист"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Для розблокування екрана не потрібен шаблон, PIN-код чи пароль"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Не показувати блокування екрана"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Немає"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Вимкніть захист розблокув. екрана"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Ключ"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Для розблокування екрана потрібен шаблон"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Намал. ключ, щоб розблок. екран"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Для розблок. екрана потрібен цифровий PIN-код"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Введіть цифр. PIN, щоб розблок. екран"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Пароль"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Для розблокування екрана потрібен пароль"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Введіть пароль, щоб розблок. екран"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Вимкнено адміністратором віддал. пристрою"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Вимк."</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Захист знято"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Захищено шаблоном"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Захищено PIN-кодом"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Захищено паролем"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Вимкнути блокув. екрана"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Видалити ключ розблок."</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Видал. PIN розблок."</string>
@@ -368,8 +340,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Адміністратор пристрою не дозволяє викор. останній пароль"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Скасувати"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Скасувати"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Далі"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Адміністрація пристрою"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Адміністратори пристрою"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Переглянути чи дезактив. адмін-ів пристрою"</string>
@@ -379,11 +353,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Налашт-ня Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Кер. підключ. і встан. назву пристрою та його видимість."</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Запит Bluetooth на ств. пари"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Введіть PIN-код для створення пари з пристроєм \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Спробуйте 0000 чи 1234.) Можливо, потрібно буде ввести той самий PIN-код у пристрої Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Введіть ключ для створення пари з пристроєм \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Щоб створ. пару з \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", підтверд., що відображ. ключ доступу: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"хоче створ. пару."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Введіть \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" у пристрій \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", щоб створити пару, після чого натисніть кнопку виводу результатів або \"enter\"."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Ств.пару"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Не ств. пару"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"пристрій bluetooth"</string>
@@ -406,12 +383,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Параметри…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Підключ. до…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Медіа"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Гарнітура"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Пристрій"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Передав-ня"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Пристрій введ."</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Прив\'язка"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> буде відключено від аудіоджерела."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"Пристрій <xliff:g id="DEVICE_NAME">%1$s</xliff:g> буде відключено від аудіо гарнітури."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> буде відключено від пристрою введення."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> буде від\'єднано від прив\'язки."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Налашт-ня <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +409,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Викор. для звуку тел."</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Викор. для перед. файлів"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Викор. для введ."</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Використовувати для доступу до Інтернету"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Налашт. станц."</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Викор. станц. для зв."</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Як пристр.гучн.зв’язку"</string>
@@ -452,9 +431,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Неможл. здійснити скан. мереж"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Сповіщення мережі"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Сповіщати мене про доступність відкритої мережі"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Політика щодо режиму сну Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Укажіть, коли переключ. від Wi-Fi до моб. даних"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Під час налаштування політики режиму сну сталася помилка."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Додати Wi-Fi мережу"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi мережі"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Сканув."</string>
@@ -464,10 +440,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Змінити мережу"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Налаштування мережі"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Введіть PIN-код із точки доступу"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Налаштування WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Конфігурація методу PIN WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Введіть PIN-код <xliff:g id="WPS_PIN">%1$s</xliff:g> у точці доступу"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"Протокол WPS уже виконується, до його завершення може минути декілька хвилин."</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Помилка запуску WPS, спробуйте ще"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID мережі"</string>
<string name="wifi_security" msgid="6603611185592956936">"Безпека"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Сила сигналу:"</string>
@@ -496,8 +470,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Видалити"</string>
<string name="wifi_save" msgid="3331121567988522826">"Зберег."</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Скасувати"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Виявлено ще один сеанс WPS, повторіть спробу через декілька хвилин"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Додатково"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Пол.щодо реж.сну Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Укажіть, коли переключ. від Wi-Fi до моб. даних"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Під час налашт. політ. реж. сну стал. помилка."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Діапазон частот Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Укажіть діапазон частот операції"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Виникла проблема із встановл. діапазону частот."</string>
@@ -524,7 +500,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> портат. точка дост. Wi-Fi"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Звук"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"На екран"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Відображ."</string>
<string name="sound_settings" msgid="5007659014828162881">"Налашт-ня звуку"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Беззвуч. режим"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Вимкнути всі звуки, крім медіа та сповіщень"</string>
@@ -595,8 +571,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Автомат. переключ. орієнтацію при обертанні телефону"</string>
<string name="brightness" msgid="2354961343555249270">"Яскравість"</string>
<string name="brightness_summary" msgid="838917350127550703">"Налаштуйте яскравість екрана"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Час очікування"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Екран автоматично відключається через <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Час очік. екрана"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Автоматична яскравість"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Налашт. блокув. SIM-карти"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Налашт. блок. SIM-карти"</string>
@@ -633,14 +610,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Недоступний"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Стан"</string>
<string name="device_status" msgid="607405385799807324">"Стан"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Стан батареї, мережі та інша інформація"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Номер телефону, сигнал тощо"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Номер телефону, сигнал тощо"</string>
<string name="storage_settings" msgid="4211799979832404953">"Пам\'ять"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Налаштув-ня пам\'яті"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Відключити носій USB, перегл. доступні носії"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Відключ. карту SD, перегл. доступ. сховище"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Мій номер телеф."</string>
+ <string name="status_number" msgid="5123197324870153205">"Мій номер телеф."</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Версія PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +634,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Внутрішня пам\'ять"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Носій USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Карта SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Вільно"</string>
- <string name="memory_size" msgid="5458889090691922288">"Усього"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Обчислення…"</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Програми"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Медіа-файли"</string>
+ <string name="memory_available" msgid="418542433817289474">"Вільне місце"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Заг. простір"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Використання програм"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Використання носіїв"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Відключ. спільне сховище"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Відключ. карту SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Відключити внутр. носій USB"</string>
@@ -676,7 +653,7 @@
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"Очистити носій USB"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"Очистити карту SD"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"Видаляє всі дані на внутрішньому носії USB, такі як музика та фото"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"Стирає всі дані на карті SD, як-от музику та фото"</string>
+ <string name="sd_format_summary" product="default" msgid="212703692181793109">"Видаляє всі дані на карті SD, такі як музика та фото"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"Недоступна"</string>
<string name="read_only" msgid="6702420168629076340">" (Лише чит.)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"Відключити носій USB"</string>
@@ -732,9 +709,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Це видалить усі дані з "<b>"внутрішньої пам\'яті"</b>" вашого пристрою, зокрема:"\n\n<li>"ваш обліковий запис Google"</li>\n<li>"дані й налаштування системи та програм"</li>\n<li>"завантажені програми"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Це видалить усі дані з "<b>"внутрішньої пам\'яті"</b>" вашого телефону, зокрема:"\n\n<li>"ваш обліковий запис Google"</li>\n<li>"дані й налаштування системи та програм"</li>\n<li>"завантажені програми"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Наразі ви ввійшли в такі облікові записи:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Музика"</li>\n<li>"Фото"</li>\n<li>"Інші дані користувача"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Щоб також видалити музику, зображення й інші дані користувача, треба очистити "<b>"носій USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Щоб також видалити музику, зображення й інші дані користувача, треба стерти "<b>"карту SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Щоб також видалити музику, зображ. й інші дані користувача, треба очистити "<b>"карту SD"</b>"."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Очистити носій USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Очистити карту SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Видаляє всі дані на внутрішньому носії USB, такі як музика чи фото."</string>
@@ -807,9 +783,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Використ. A-GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Викор. сервер для доп. GPS (знім. прап., щоб не вик. мережу)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Викор. сервер, щоб доп. GPS (знім. прап., щоб покращ. роб. GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Використовувати місцезнаходження для Пошуку Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Використовувати місцезнаходження для Пошуку й інших служб Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Місцезнаходження використовується для покращення результатів Пошуку й інших служб Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Використовувати місцезнаходження для пошуку Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Використовувати місцезнаходження для пошуку й інших служб Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Місцезнаходження використовується для покращення результатів пошуку й інших служб Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Про пристрій"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Про телефон"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Переглянути правову інф-ю, стан, версію ПЗ"</string>
@@ -829,18 +805,21 @@
<string name="settings_safetylegal_activity_unreachable" msgid="170670055116721810">"Відсутнє з\'єднання з мережею. Щоб див. цю інф-ю зараз, перейдіть до %s з будь-якого комп-ра, з\'єднаного з Інтернетом."</string>
<string name="settings_safetylegal_activity_loading" msgid="8059022597639516348">"Завантаж…"</string>
<string name="lockpassword_choose_your_password_header" msgid="8624900666929394990">"Виберіть пароль"</string>
- <string name="lockpassword_choose_your_pattern_header" msgid="6949761069941694050">"Виберіть шаблон"</string>
+ <!-- no translation found for lockpassword_choose_your_pattern_header (6949761069941694050) -->
+ <skip />
<string name="lockpassword_choose_your_pin_header" msgid="7598849519816138302">"Виберіть свій PIN"</string>
<string name="lockpassword_confirm_your_password_header" msgid="6308478184889846633">"Підтвердьте свій пароль"</string>
- <string name="lockpassword_confirm_your_pattern_header" msgid="7543433733032330821">"Підтвердьте шаблон"</string>
+ <!-- no translation found for lockpassword_confirm_your_pattern_header (7543433733032330821) -->
+ <skip />
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"Підтверд. свій PIN"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"Паролі не збігаються"</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"PIN не збігаються"</string>
- <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"Вибір методу розблокування"</string>
+ <!-- no translation found for lockpassword_choose_lock_generic_header (3811438094903786145) -->
+ <skip />
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Пароль установлено"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN-код установлено"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Ключ установлено"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Блокування екрана"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Розблок. екрана"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Змінити ключ розблокув."</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Змініть PIN розблок."</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Підтвердьте збереж. ключ"</string>
@@ -870,7 +849,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Далі"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Захист вашого пристрою"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Захист вашого телефону"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Захистіть свій пристрій від несанкціонованого використання, створивши особистий шаблон розблокування екрана. На наступному крані пальцем з\'єднайте крапки в будь-якому порядку. Потрібно з\'єднати принаймні чотири крапки. "\n\n"Готові? Натисніть \"Далі\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Захистіть свій тел. від несанкціон. використ., створ. особистий ключ розблок. екрана. "\n<font height="17">\n</font><b>"1"</b>" На наст. екрані перегляньте приклад малювання ключа. "\n<font height="17">\n</font><b>"2"</b>" Коли будете готові, намалюйте власний особистий ключ розблок. Експеримент. з різними ключами, але з\'єднайте принаймні чотири точки. "\n<font height="17">\n</font><b>"3"</b>" Ще раз намал. ключ для підтвердж. "\n<font height="17">\n</font><b>"Готові? Натисніть \"Далі\""</b>". "\n<font height="3">\n</font>"Щоб залиш. тел. незахищ., натисніть \"Скасувати\"."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Керувати програмами"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Керувати та видаляти встановлені програми"</string>
@@ -893,8 +875,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Усього"</string>
<string name="application_size_label" msgid="5055196275624686382">"Програма"</string>
<string name="data_size_label" msgid="8679376373625710107">"Дані"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Носій USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Карта SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Видалити"</string>
<string name="disable_text" msgid="6544054052049395202">"Вимкнути"</string>
<string name="enable_text" msgid="9217362512327828987">"Увімкнути"</string>
@@ -991,8 +971,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Зупин. системну службу?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Дійсно припинити роботу системної служби? У такому випадку деякі функції пристрою можуть працювати неправильно, поки живлення не буде вимкнено та знову ввімкнено."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Дійсно припинити роботу системної служби? У такому випадку деякі функції телефону можуть працювати неправильно, поки живлення не буде вимк. та знову ввімкнено."</string>
- <string name="language_settings" msgid="5292716747264442359">"Мова та введення"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Мова та введення"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Мова та клавіатура"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Налаштування мови та клавіатури"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Налаштування мови"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Налашт-ня клавіат."</string>
<string name="phone_language" msgid="1165758957501090679">"Вибір мови"</string>
@@ -1033,17 +1013,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Ярлики"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Текст. введ."</string>
<string name="input_method" msgid="5434026103176856164">"Метод введення"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Поточний метод введення"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Вибір методу введення"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Автоматично"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Завжди показувати"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Завжди ховати"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Налаштувати методи введення"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Налаштування"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Активні методи введення"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Використовувати мову системи"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Налашт-ня <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Вибрати активні методи введення"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Керув. методами введ."</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Налашт-ня екранної клавіатури"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Вбудована клавіатура"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Налашт-ня вбудованої, фіз. клавіатури"</string>
@@ -1106,8 +1095,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Час роботи Wi-Fi"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Час роботи Wi-Fi"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> – <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Деталі історії"</string>
- <string name="details_title" msgid="3792801565213935385">"Деталі використання"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Деталі викор. батареї"</string>
<string name="details_subtitle" msgid="32593908269911734">"Деталі викор."</string>
<string name="controls_subtitle" msgid="390468421138288702">"Налашт. викор.живл."</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Уключені пакети"</string>
@@ -1242,7 +1232,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Помилка переговорів із сервером. Сервер може не погоджуватися з варіантом шифрування. Перевірити варіант шифрування?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Додати VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Додати VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Деталі VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Додати VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Деталі <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1276,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Устан. і керуйте віртуальними приватн. мережами (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(незмін.)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(не встан.)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Сховище облікових даних"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Сховище облік. даних"</string>
<string name="credentials_access" msgid="4843187230913860492">"Викор. безпечні обл. дані"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Дозвол. програмі отр. доступ до безпечних сертифікатів й інших обл. даних"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Установити з носія USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Установити з карти SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Установлювати сертифікати з носія USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Установлювати сертифікати з карти SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Устан. пароль"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Установлювати чи змінювати пароль для сховища облікових даних"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Видалити облікові дані"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Видалити весь вміст і змінити пароль"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Введіть пароль"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Ввести пароль для сховища облікових даних."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Установіть пароль для сховища облікових даних. Він має складатися щонайменше з 8 символів."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Введіть пароль сховища облікових даних."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Установити з носія USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Установити з карти SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Установлюв. зашифровані сертифікати з носія USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Установ. зашифровані сертифікати з карти SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Устан. пароль"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Устан. або змініть пароль сховища облік. даних"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Очистити сховище"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Очищає весь вміст сховища облікових даних і змінює його пароль"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Дійсно видалити всі облікові дані та змінити пароль сховища облікових даних?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Поточний пароль:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Новий пароль:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Підтвердьте нов. пароль:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Увесь вміст буде видалено, а пароль буде змінено. Дійсно це зробити?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Установіть пароль для сховища облік. даних (мінімум 8 символів)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Введіть правильний пароль."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Введіть правильний пароль. У вас залишилася ще одна спроба ввести правильний пароль до видалення сховища облікових даних."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Введіть правильний пароль. У вас залишилося <xliff:g id="NUMBER">%1$d</xliff:g> спроб ввести правильний пароль до видалення сховища облікових даних."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Паролі не збігаються."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Потрібно ввести та підтвердити пароль."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Введіть пароль."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Пароль має складатися принаймні з 8 символів."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Неправильний пароль."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Неправильний пароль. У вас залишилася ще одна спроба до очищення сховища облікових даних."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Неправильний пароль. У вас залишилося ще стільки спроб: <xliff:g id="NUMBER">%1$d</xliff:g> до очищення сховища облікових даних."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Сховище облік. даних очищено."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Сховище облікових даних видалено."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Сховище облік. даних увімкнено."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Сховище облікових даних вимкнено."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Аварійний сингал"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Устан. поведінку при розміщ. аварійного виклику"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Конфід-сть"</string>
@@ -1318,8 +1332,10 @@
<string name="personal_data_section_title" msgid="7815209034443782061">"Особисті дані"</string>
<string name="backup_data_title" msgid="1239105919852668016">"Рез. коп. даних"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"Створювати рез. копії даних прогр., паролів Wi-Fi й ін. налашт. на серверах Google"</string>
- <string name="backup_configure_account_title" msgid="3790872965773196615">"Резервний обліковий запис"</string>
- <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"Наразі жоден обліковий запис не зберігає резервних копій даних"</string>
+ <!-- no translation found for backup_configure_account_title (3790872965773196615) -->
+ <skip />
+ <!-- no translation found for backup_configure_account_default_summary (2436933224764745553) -->
+ <skip />
<string name="auto_restore_title" msgid="5397528966329126506">"Автомат. відновлення"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"У разі повторн. встановл. прогр. відновл. налашт. чи ін. дані з рез. копій"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"Рез. коп."</string>
@@ -1339,11 +1355,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Вхідні дзвінки"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Сповіщення"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Відгук"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Налаштування Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"З\'єднатися з мережею Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"З\'єднання з мережею Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"З\'єднано з мережею Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Додати мережу"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Налашт. WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Не з\'єднано"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Додати мережу"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Оновити список"</string>
@@ -1356,58 +1368,80 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Зберегти"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Скасувати"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Сканування мереж..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Торкніться мережі, щоб з\'єднатися з нею"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"З\'єдн. з існуючою мережею"</string>
- <string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Під\'єднатися до незахищеної мережі"</string>
+ <!-- no translation found for wifi_setup_status_unsecured_network (8143046977328718252) -->
+ <skip />
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Введіть конфігурацію мережі"</string>
<string name="wifi_setup_status_new_network" msgid="7468952850452301083">"З\'єдн. з новою мережею"</string>
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"З\'єднання..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Перейдіть до наступного кроку"</string>
- <string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"Протокол EAP не підтримується"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Під час налаштування неможливо встановити конфігурацію з\'єднання Wi-Fi за протоколом EAP. Після налаштування це можна зробити в меню \"Налаштування\" в розділі "<b>"Бездротовий зв\'язок і мережі"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Підключення може зайняти кілька хвилин..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Торкніться опції "<b>"Далі"</b>", щоб продовжити налаштування."\n\n"Торкніться опції "<b>"Назад"</b>", щоб з\'єднатися з іншою мережею Wi-Fi."</string>
+ <!-- no translation found for wifi_setup_status_eap_not_supported (3196386445567501484) -->
+ <skip />
+ <!-- no translation found for wifi_setup_eap_not_supported (5083895763075722698) -->
+ <skip />
<string name="account_sync_settings_title" msgid="4578227872921044660">"Налаштування синхронізації"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Наразі виникли проблеми із синхронізацією. Незабаром вона відновиться."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Додати облік. запис"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Загальні налашт-ня синхроніз."</string>
<string name="background_data" msgid="5779592891375473817">"Фонові дані"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Програми можуть будь-коли синхроніз., надсил. й отрим. дані"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Увага"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Вимкнення фонових даних продовжує час роботи батареї та зменшує використання даних. Деякі програми все ще можуть використовувати передавання фонових даних."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Авто-синхронізація"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Програми автоматично синхронізують дані"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Керування обліковими записами"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Синхроніз. ВВІМКНЕНО"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Синхроніз. ВИМКНЕНО"</string>
<string name="sync_error" msgid="5060969083117872149">"Помилка синхр-ції"</string>
<string name="settings_backup" msgid="2274732978260797031">"Налаштування резервного копіювання"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Створити резервну копію налаштувань"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Синхронізувати зараз"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Скасувати синхронізацію"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Торкніться для синхронізації зараз<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Календар"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Контакти"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Вітаємо в Google Sync!"</font>" "\n"Підхід Google до синхронізації даних для надання доступу до ваших контактів, подій та іншого з будь-якого місця, де ви перебуваєте."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Налаштування синхронізації програми"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Дані та синхронізація"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Змінити пароль"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Параметри облікового запису"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Видалити обліковий запис"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Додати обліковий запис"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Закінчити"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Видалити обліковий запис"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Дійсно видалити цей обліковий запис? Усі повідомлення, контакти й інші дані буде видалено з пристрою. "\n"Продовжити?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Дійсно видалити цей обліковий запис? Усі повідомлення, контакти й інші дані буде видалено з телефону. "\n"Продовжити?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Цей обліковий запис потрібен для деяких програм. Його можна видалити, лише відновивши заводські налаштування (буде видалено всі ваші особисті дані). Це можна зробити в розділі \"Конфіденційність\" програми \"Налаштування\"."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Цей обліковий запис потрібен для деяких програм. Його можна видалити, лише відновивши заводські налаштування (буде видалено всі ваші особисті дані). Це можна зробити в розділі \"Конфіденційність\" програми \"Налаштування\"."</string>
- <string name="provider_label" msgid="7724593781904508866">"Надіслати підписки"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Синхронізувати <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Неможливо синхронізувати вручну"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Синхронізацію для цього елемента вимкнено. Щоб змінити цей параметр, тимчасово ввімкніть фонові дані й автоматичну синхронізацію."</string>
- <string name="enter_password" msgid="3268224850821675915">"Введіть пароль, щоб розшифрувати носій"</string>
- <string name="try_again" msgid="5904121494468643129">"Спробуйте ще"</string>
- <string name="service_busy" msgid="225227519012409130">"Служба зайнята, спробуйте ще"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-vi/arrays.xml b/res/values-vi/arrays.xml
index da8234b..8750dc2 100644
--- a/res/values-vi/arrays.xml
+++ b/res/values-vi/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"Một số hoạt ảnh trên cửa sổ được hiển thị"</item>
<item msgid="488968798204105119">"Tất cả hoạt ảnh trên cửa sổ được hiển thị"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 giây"</item>
- <item msgid="8881760709354815449">"30 giây"</item>
- <item msgid="7589406073232279088">"1 phút"</item>
- <item msgid="7001195990902244174">"2 phút"</item>
- <item msgid="7489864775127957179">"5 phút"</item>
- <item msgid="2314124409517439288">"10 phút"</item>
- <item msgid="6864027152847611413">"30 phút"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"ngay lập tức"</item>
- <item msgid="6736512735606834431">"5 giây"</item>
- <item msgid="8044619388267891375">"15 giây"</item>
- <item msgid="1822002388249545488">"30 giây"</item>
- <item msgid="8538071621211916519">"1 phút"</item>
- <item msgid="5663439580228932882">"2 phút"</item>
- <item msgid="49888496216106852">"5 phút"</item>
- <item msgid="9002737361305019353">"10 phút"</item>
- <item msgid="4322676235684793329">"30 phút"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"Rất chậm"</item>
<item msgid="2361722960903353554">"Chậm"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"Tuyệt vời"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"Khi màn hình tắt"</item>
+ <item msgid="3804733751095821976">"Khi màn hình tắt"</item>
<item msgid="1549288661423279207">"Không bao giờ khi được cắm vào"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"Không bao giờ"</item>
+ <item msgid="1986753720941888596">"Chưa bao giờ"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"Tự động"</item>
diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml
index 6dd2de4..d366ea4 100644
--- a/res/values-vi/strings.xml
+++ b/res/values-vi/strings.xml
@@ -111,9 +111,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"Đang quét"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"Yêu cầu ghép nối Bluetooth"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"Yêu cầu ghép nối"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"Chọn để ghép nối với <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"Hiển thị các tệp đã nhận"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"Hiển thị danh sách các tệp đã nhận qua Bluetooth"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"Trình chọn thiết bị Bluetooth"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"Yêu cầu quyền Bluetooth"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"Ứng dụng đang yêu cầu quyền bật Bluetooth. Bạn có muốn thực hiện thao tác này không?"</string>
@@ -122,7 +121,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"Ứng dụng trên máy tính bảng của bạn đang yêu cầu quyền bật Bluetooth và đặt máy tính bảng của bạn ở chế độ có thể phát hiện bởi các thiết bị khác trong <xliff:g id="TIMEOUT">%1$d</xliff:g> giây. Bạn có muốn thực hiện thao tác này không?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"Ứng dụng trên điện thoại của bạn đang yêu cầu quyền bật Bluetooth và đặt điện thoại của bạn ở chế độ có thể phát hiện bởi các thiết bị khác trong <xliff:g id="TIMEOUT">%1$d</xliff:g> giây. Bạn có muốn thực hiện thao tác này không?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"Đang bật Bluetooth…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"Kết nối tự động"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"Cài đặt ngày & giờ"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"1:00 chiều"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +137,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"Bắt đầu <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"Tài khoản:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Cài đặt proxy"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Cài đặt proxy"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"Đặt proxy HTTP chung và danh sách loại trừ"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"Xoá"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"Cổng"</string>
@@ -226,7 +226,7 @@
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"Đang vô hiệu hoá kết nối không dây…"</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"Đang bật kết nối không dây…"</string>
<string name="radio_controls_title" msgid="5868688473587168882">"Không dây & mạng"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Không dây & mạng"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"Cài đặt không dây & mạng"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"Quản lý Wi-Fi, Bluetooth, chế độ trên máy bay, mạng di động, & VPN"</string>
<string name="roaming" msgid="3596055926335478572">"Chuyển vùng dữ liệu"</string>
<string name="roaming_enable" msgid="3737380951525303961">"Kết nối với dịch vụ dữ liệu khi chuyển vùng"</string>
@@ -238,7 +238,6 @@
<string name="networks" msgid="6333316876545927039">"Chọn nhà cung cấp dịch vụ"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"Chọn nhà cung cấp dịch vụ mạng"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"Ngày & giờ"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"Đặt ngày giờ"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"Đặt ngày, giờ, múi giờ & định dạng"</string>
<string name="date_time_auto" msgid="7076906458515908345">"Ngày & giờ tự động"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"Sử dụng thời gian do mạng cung cấp"</string>
@@ -255,8 +254,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"Sắp xếp theo múi giờ"</string>
<string name="date_picker_title" msgid="1338210036394128512">"Ngày"</string>
<string name="time_picker_title" msgid="483460752287255019">"Thời gian"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"Thời gian chờ"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"Khóa màn hình <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g> sau khi màn hình tự động tắt"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"Khóa thiết bị sau khi hết thời gian chờ"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"Hiển thị th.tin chủ sở hữu trên màn hình khóa"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"Thông tin chủ sở hữu"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +266,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"Đặt Vị trí của tôi, mở khoá màn hình, khoá thẻ SIM, khoá bộ nhớ thông tin xác thực"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"Đặt Vị trí của tôi, mở khoá màn hình, khoá bộ nhớ thông tin xác thực"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"Mật khẩu"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"Mã hóa thiết bị"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"Mã hóa dữ liệu trên thiết bị"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"Mã hóa dữ liệu trên thiết bị"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"Yêu cầu bạn đặt mật khẩu hoặc số pin mở khóa thiết bị"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"Yêu cầu bạn đặt mật khẩu hoặc số pin mở khóa thiết bị"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"Đã mã hóa"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"Bạn có thể mã hóa các tài khoản, cài đặt, ứng dụng đã tải xuống cũng như dữ liệu của chúng, phương tiện và các tệp khác của bạn. Khi mã hóa điện thoại, bạn sẽ không thể hủy mã hóa trừ khi đặt lại dữ liệu mặc định khi xuất xưởng, xóa tất cả dữ liệu trên điện thoại của bạn."\n\n"Quá trình mã hóa mất tối đa một giờ. Bạn phải bắt đầu bằng việc sạc pin và cắm điện thoại cho đến khi quá trình mã hóa hoàn tất. Nếu bạn làm gián đoạn quá trình mã hóa, bạn sẽ mất một vài hoặc tất cả dữ liệu của mình."</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"Bạn có thể mã hóa các tài khoản, cài đặt, ứng dụng đã tải xuống cũng như dữ liệu của chúng, phương tiện và các tệp khác của bạn. Khi mã hóa điện thoại, bạn sẽ không thể hủy mã hóa trừ khi đặt lại dữ liệu mặc định khi xuất xưởng, xóa tất cả dữ liệu trên điện thoại của bạn."\n\n"Quá trình mã hóa mất tối đa một giờ. Bạn phải bắt đầu bằng việc sạc pin và cắm điện thoại cho đến khi quá trình mã hóa hoàn tất. Nếu bạn làm gián đoạn quá trình mã hóa, bạn sẽ mất một vài hoặc tất cả dữ liệu của mình."</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"Mã hóa máy tính bảng"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"Mã hóa điện thoại"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"Xác nhận mã hóa"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"Bạn muốn mã hóa dữ liệu người dùng? Thao tác này không thể hoàn nguyên và có thể mất dữ liệu nếu bị gián đoạn! Quá trình mã hóa có thể mất tối đa một giờ."</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"Bạn muốn mã hóa dữ liệu người dùng? Thao tác này không thể hoàn nguyên và có thể mất dữ liệu nếu bị gián đoạn! Quá trình mã hóa có thể mất tối đa một giờ."</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"Đang mã hóa"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"Hãy thử lại sau ^1 giây."</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"Định cấu hình màn hình khóa"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Định cấu hình màn hình khóa"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"Bảo mật mở khoá màn hình"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"Thiết lập khoá màn hình"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"Thay đổi khoá màn hình"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"Thay đổi hoặc vô hiệu hoá hình, mã PIN hoặc bảo mật mật khẩu"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"Chọn phương thức khóa màn hình"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"Tắt"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Không khóa màn hình"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Không bảo mật"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Không yêu cầu hình, PIN hoặc mật khẩu để mở khóa màn hình"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"Không hiển thị màn hình khóa"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"Không"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"Vô hiệu hoá bảo mật mở khoá màn hình"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"Hình"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Yêu cầu hình để mở khóa màn hình"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"Vẽ hình để mở khoá màn hình"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"Mã PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Yêu cầu PIN số để mở khóa màn hình"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"Nhập mã PIN số để mở khoá màn hình"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"Mật khẩu"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Yêu cầu mật khẩu để mở khóa màn hình"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"Nhập mật khẩu để mở khoá màn hình"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"Bị vô hiệu hóa bởi quản trị viên điện thoại từ xa"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"Tắt"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"Không bảo mật"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"Được bảo mật bằng hình"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"Được bảo mật bằng PIN"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"Được bảo mật bằng mật khẩu"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"Tắt khoá màn hình"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"Xoá hình mở khoá"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"Xoá mã PIN mở khoá"</string>
@@ -368,8 +338,10 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"Quản trị viên thiết bị không cho phép sử dụng mật khẩu hiện tại"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"OK"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"Huỷ"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"Hủy"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"Tiếp theo"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"Quản trị viên thiết bị"</string>
<string name="manage_device_admin" msgid="5059296715271077278">"Quản trị viên thiết bị"</string>
<string name="manage_device_admin_summary" msgid="7672709110988761075">"Xem hoặc hủy kích hoạt quản trị viên điện thoại"</string>
@@ -379,11 +351,14 @@
<string name="bluetooth_settings_title" msgid="2824020086246268296">"Cài đặt Bluetooth"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"Quản lý kết nối, đặt tên thiết bị & khả năng phát hiện thiết bị"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"Yêu cầu ghép nối Bluetooth"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"Nhập PIN để ghép nối với \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\". (Thử 0000 hoặc 1234). Có thể bạn cần phải nhập cùng một PIN đó vào thiết bị Bluetooth."</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"Nhập mã xác nhận để ghép nối với \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\"."</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"Để ghép nối với \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\", hãy xác nhận rằng thiết bị đang hiển thị mã xác nhận: <xliff:g id="PASSKEY">%2$s</xliff:g>."</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"muốn ghép nối."</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"Nhập \"<xliff:g id="PASSKEY">%2$s</xliff:g>\" trên \"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>\" để ghép nối, sau đó quay lại hoặc nhập."</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"Ghép nối"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"Không Ghép nối"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"thiết bị bluetooth"</string>
@@ -406,12 +381,13 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"Tuỳ chọn…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"Kết nối với…"</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"Phương tiện"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"Thiết bị rảnh tay"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"Máy tính bảng"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"Chuyển"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"Thiết bị nhập"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"Đang dùng làm điểm truy cập Internet"</string>
<string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sẽ bị ngắt kết nối khỏi âm thanh phương tiện."</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sẽ bị ngắt kết nối khỏi âm thanh thiết bị rảnh tay."</string>
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
<string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sẽ bị ngắt kết nối khỏi thiết bị nhập."</string>
<string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> sẽ bị ngắt kết nối khỏi dùng làm điểm truy cập Internet."</string>
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"Tuỳ chọn <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
@@ -431,7 +407,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"Sử dụng cho âm thanh điện thoại"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"Sử dụng để chuyển tệp"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"Sử dụng để nhập"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"Sử dụng để truy cập Internet"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"Cài đặt Đế"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"Sử dụng đế cho âm thanh"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"Làm loa ngoài"</string>
@@ -452,9 +429,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"Không thể quét mạng"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"Thông báo mạng"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"Thông báo cho tôi khi mạng mở khả dụng"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Chính sách về chế độ ngủ của Wi-Fi"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Chỉ định thời điểm sẽ chuyển từ Wi-Fi sang dữ liệu di động"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"Đã xảy ra sự cố khi đặt chính sách về chế độ ngủ."</string>
<string name="wifi_add_network" msgid="1671334951296205616">"Thêm mạng Wi-Fi"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Mạng Wi-Fi"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"Quét"</string>
@@ -464,10 +438,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"Sửa đổi mạng"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"Thiết lập mạng"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"Nhập pin từ điểm truy cập"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"Thiết lập WPS"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"Cấu hình phương thức pin của WPS"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"Nhập pin <xliff:g id="WPS_PIN">%1$s</xliff:g> trên điểm truy cập"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS đang tải lên và có thể mất mười giây để hoàn tất"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"Không thể khởi động WPS, vui lòng thử lại"</string>
<string name="wifi_ssid" msgid="641393708309146745">"SSID Mạng"</string>
<string name="wifi_security" msgid="6603611185592956936">"Bảo mật"</string>
<string name="wifi_signal" msgid="5514120261628065287">"Cường độ tín hiệu"</string>
@@ -496,8 +468,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"Quên"</string>
<string name="wifi_save" msgid="3331121567988522826">"Lưu"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"Huỷ"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"Đã phát hiện một phiên WPS khác, vui lòng thử lại sau vài phút"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"Nâng cao"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Chính sách về chế độ ngủ của Wi-Fi"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"Chỉ định thời điểm sẽ chuyển từ Wi-Fi sang dữ liệu di động"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"Đã xảy ra sự cố khi đặt chính sách về chế độ ngủ."</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Dải tần số Wi-Fi"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"Chỉ định dải tần số hoạt động"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"Đã xảy ra sự cố khi thiết đặt dải tần số."</string>
@@ -524,7 +498,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> điểm phát sóng Wi-Fi di động"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"AndroidHotspot"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"Âm thanh"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"Màn hình"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"Hiển thị"</string>
<string name="sound_settings" msgid="5007659014828162881">"Cài đặt âm thanh"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"Chế độ im lặng"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"Đặt chế độ im lặng cho tất cả âm thanh ngoại trừ phương tiện & báo thức"</string>
@@ -595,8 +569,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"Tự động chuyển hướng khi xoay điện thoại"</string>
<string name="brightness" msgid="2354961343555249270">"Độ sáng"</string>
<string name="brightness_summary" msgid="838917350127550703">"Điều chỉnh độ sáng của màn hình"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"Thời gian chờ"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"Màn hình tự động tắt sau <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"Thời gian chờ khoá màn hình"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"Độ sáng tự động"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"Cài đặt khoá thẻ SIM"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"Thiết lập khoá thẻ SIM"</string>
@@ -633,14 +608,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"Không khả dụng"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"Trạng thái"</string>
<string name="device_status" msgid="607405385799807324">"Trạng thái"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Trạng thái của pin, mạng và thông tin khác"</string>
+ <!-- outdated translation 2599162787451519618 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"Số điện thoại, tín hiệu, v.v..."</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"Số điện thoại, tín hiệu, v.v..."</string>
<string name="storage_settings" msgid="4211799979832404953">"Dung lượng"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"Cài đặt dung lượng"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"Ngắt kết nối bộ nhớ USB, xem dung lượng sẵn có"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"Tháo thẻ SD, xem dung lượng còn trống"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"SỐ THƯ MỤC DI ĐỘNG (MDN)"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"Số điện thoại của tôi"</string>
+ <string name="status_number" msgid="5123197324870153205">"Số điện thoại của tôi"</string>
<string name="status_min_number" msgid="3519504522179420597">"TỐI THIỂU"</string>
<string name="status_prl_version" msgid="8499039751817386529">"Phiên bản PRL"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +632,12 @@
<string name="internal_memory" msgid="9129595691484260784">"Bộ nhớ trong"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"Bộ nhớ USB"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"Thẻ SD"</string>
- <string name="memory_available" msgid="5052397223077021181">"Sẵn có"</string>
- <string name="memory_size" msgid="5458889090691922288">"Tổng"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"Đang tính toán..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"Ứng dụng"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"Phương tiện"</string>
+ <string name="memory_available" msgid="418542433817289474">"Dung lượng còn trống"</string>
+ <string name="memory_size" msgid="6629067715017232195">"Tổng dung lượng"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"Sử dụng ứng dụng"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"Sử dụng phương tiện"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"Ngắt kết nối bộ nhớ được chia sẻ"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"Tháo thẻ SD"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"Ngắt kết nối bộ nhớ trong USB"</string>
@@ -732,9 +707,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"Tác vụ này sẽ xóa tất cả dữ liệu khỏi "<b>"bộ nhớ trong"</b>" của máy tính bảng của bạn, bao gồm:"\n\n<li>"Tài khoản Google của bạn"</li>\n<li>"Dữ liệu và cài đặt hệ thống và ứng dụng"</li>\n<li>"Ứng dụng đã tải xuống"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"Tác vụ này sẽ xóa tất cả dữ liệu khỏi "<b>"bộ nhớ trong"</b>" của điện thoại của bạn, bao gồm:"\n\n<li>"Tài khoản Google của bạn"</li>\n<li>"Dữ liệu và cài đặt hệ thống và ứng dụng"</li>\n<li>"Ứng dụng đã tải xuống"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"Bạn hiện đã đăng nhập vào các tài khoản sau đây:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"Nhạc"</li>\n<li>"Ảnh"</li>\n<li>"Dữ liệu người dùng khác"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"Đồng thời, để xóa nhạc, hình ảnh và dữ liệu người dùng khác, cần xóa "<b>"bộ nhớ USB"</b>"."</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Đồng thời, để xóa nhạc, hình ảnh và dữ liệu người dùng khác, cần xóa "<b>"thẻ SD"</b>"."</string>
+ <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"Để cùng xóa nhạc, hình ảnh và dữ liệu người dùng khác, "<b>"thẻ SD"</b>" cần được xóa."</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"Xóa bộ nhớ USB"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"Xóa thẻ SD"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"Xóa tất cả dữ liệu trên bộ nhớ trong USB, chẳng hạn như nhạc hoặc ảnh."</string>
@@ -807,9 +781,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"Sử dụng GPS được hỗ trợ"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"Sử dụng máy chủ đề hỗ trợ GPS (bỏ chọn để giảm việc sử dụng mạng)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"Sử dụng máy chủ để hỗ trợ GPS (bỏ chọn để cải thiện hiệu suất GPS)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"Sử dụng vị trí cho Tìm kiếm của Google"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"Sử dụng vị trí cho Tìm kiếm của Google và các dịch vụ khác của Google"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"Vị trí được sử dụng để cải thiện các kết quả tìm kiếm của Google và các dịch vụ khác của Google"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"Sử dụng vị trí cho tìm kiếm của Google"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"Sử dụng vị trí cho tìm kiếm của Google và các dịch vụ khác của Google"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"Vị trí được sử dụng để cải thiện các kết quả tìm kiếm của Google và các dịch vụ khác của Google"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"Giới thiệu về máy tính bảng"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"Giới thiệu về điện thoại"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"Xem thông tin pháp lý, trạng thái, phiên bản phần mềm"</string>
@@ -840,7 +814,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"Mật khẩu đã được đặt"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"Mã PIN đã được đặt"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"Hình đã được đặt"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"Khóa màn hình"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"Mở khoá màn hình"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"Thay đổi hình mở khoá"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"Thay đổi mã PIN mở khoá"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"Xác nhận hình đã lưu"</string>
@@ -870,7 +844,10 @@
<string name="next_button_label" msgid="8890792540116568321">"Tiếp theo"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"Đang bảo vệ máy tính bảng của bạn"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"Đang bảo vệ điện thoại của bạn"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"Bảo vệ máy tính bảng của bạn khỏi việc sử dụng trái phép bằng cách tạo hình mở khóa màn hình cá nhân. Sử dụng ngón tay để kết nối các điểm theo bất kỳ thứ tự nào trên màn hình. Bạn phải kết nối ít nhất bốn điểm. "\n\n"Bạn đã sẵn sàng bắt đầu? Chạm vào \"Tiếp theo\"."</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"Bảo vệ điện thoại của bạn khỏi việc sử dụng trái phép bằng cách tạo hình mở khoá màn hình cá nhân. "\n<font height="17">\n</font><b>"1"</b>" Trên màn hình tiếp theo, hãy xem khi một hình ví dụ được vẽ. "\n<font height="17">\n</font><b>"2"</b>" Khi đã sẵn sàng, hãy vẽ hình mở khoá cá nhân của riêng bạn. Thử nghiệm với các hình khác nhau nhưng kết nối ít nhất bốn điểm. "\n<font height="17">\n</font><b>"3"</b>" Vẽ lại hình của bạn để xác nhận. "\n<font height="17">\n</font><b>"Bạn đã sẵn sàng bắt đầu? Chạm vào “Tiếp theo”"</b>". "\n<font height="3">\n</font>"Để điện thoại không được bảo vệ, hãy chạm vào “Huỷ”."</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"Quản lý ứng dụng"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"Quản lý và xoá ứng dụng đã cài đặt"</string>
@@ -893,8 +870,6 @@
<string name="total_size_label" msgid="1048676419552557254">"Tổng"</string>
<string name="application_size_label" msgid="5055196275624686382">"Ứng dụng"</string>
<string name="data_size_label" msgid="8679376373625710107">"Dữ liệu"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"Bộ nhớ USB"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"Thẻ SD"</string>
<string name="uninstall_text" msgid="3644892466144802466">"Gỡ cài đặt"</string>
<string name="disable_text" msgid="6544054052049395202">"Tắt"</string>
<string name="enable_text" msgid="9217362512327828987">"Bật"</string>
@@ -991,8 +966,8 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"Dừng dịch vụ hệ thống?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"Bạn có chắc chắn muốn dừng dịch vụ hệ thống này không? Nếu bạn dừng thì một số tính năng của máy tính bảng của bạn có thể dừng hoạt động chính xác cho đến khi bạn tắt máy tính bảng rồi sau đó bật lại."</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"Bạn có chắc chắn muốn dừng dịch vụ hệ thống này không? Nếu bạn dừng thì một số tính năng của điện thoại của bạn có thể dừng hoạt động đúng cho đến khi bạn tắt điện thoại rồi sau đó bật lại."</string>
- <string name="language_settings" msgid="5292716747264442359">"Ngôn ngữ & phương thức nhập"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"Ngôn ngữ & phương thức nhập"</string>
+ <!-- outdated translation 502219872342167227 --> <string name="language_settings" msgid="5292716747264442359">"Ngôn ngữ & bàn phím"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"Cài đặt ngôn ngữ & bàn phím"</string>
<string name="language_settings_category" msgid="2288258489940617043">"Cài đặt ngôn ngữ"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"Cài đặt bàn phím"</string>
<string name="phone_language" msgid="1165758957501090679">"Chọn ngôn ngữ"</string>
@@ -1033,17 +1008,26 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"Lối tắt"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"Nhập văn bản"</string>
<string name="input_method" msgid="5434026103176856164">"Phương thức nhập"</string>
- <string name="current_input_method" msgid="2146807723398303917">"Phương pháp nhập liệu hiện tại"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"Bộ chọn phương thức nhập"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"Tự động"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"Luôn hiển thị"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"Luôn ẩn"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"Định cấu hình phương pháp nhập liệu"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"Cài đặt"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"Phương pháp nhập liệu hoạt động"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"Sử dụng ngôn ngữ hệ thống"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"Cài đặt <xliff:g id="IME_NAME">%1$s</xliff:g>"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Chọn phương pháp nhập liệu hoạt động"</string>
+ <!-- outdated translation 6850705060511001699 --> <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"Quản lý phương thức nhập"</string>
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"Cài đặt bàn phím ảo"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"Bàn phím được cài sẵn"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"Cài đặt bàn phím vật lý, được cài sẵn"</string>
@@ -1106,8 +1090,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Thời gian Wi-Fi bật"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Thời gian Wi-Fi bật"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"Chi tiết lịch sử"</string>
- <string name="details_title" msgid="3792801565213935385">"Sử dụng các chi tiết"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"Chi tiết sử dụng pin"</string>
<string name="details_subtitle" msgid="32593908269911734">"Sử dụng các chi tiết"</string>
<string name="controls_subtitle" msgid="390468421138288702">"Điều chỉnh việc sử dụng nguồn"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"Gói bao gồm"</string>
@@ -1242,7 +1227,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"Thương lượng máy chủ không thành công. Máy chủ có thể không đồng ý với tuỳ chọn mã hoá của bạn. Bạn có muốn kiểm tra cài đặt mã hoá của mình không?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"Thêm VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"Thêm VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"Chi tiết về VPN"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"Thêm VPN <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"Chi tiết <xliff:g id="NAME">%s</xliff:g>"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1271,54 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"Thiết lập & quản lý Mạng Riêng Ảo (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(không thay đổi)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(chưa được đặt)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"Bộ nhớ thông tin xác thực"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"Bộ nhớ thông tin xác thực"</string>
<string name="credentials_access" msgid="4843187230913860492">"Sử dụng thông tin xác thực bảo mật"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"Cho phép các ứng dụng truy cập vào chứng chỉ bảo mật và thông tin xác thực khác"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"Cài đặt từ bộ nhớ USB"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"Cài đặt từ thẻ SD"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"Cài đặt chứng chỉ từ bộ nhớ USB"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"Cài đặt chứng chỉ từ thẻ SD"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"Đặt mật khẩu"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"Đặt hoặc thay đổi mật khẩu cho bộ nhớ thông tin xác thực"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"Xóa thông tin xác thực"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"Xóa tất cả nội dung và đặt lại mật khẩu"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"Nhập mật khẩu"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"Nhập mật khẩu cho bộ nhớ thông tin xác thực."</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"Đặt mật khẩu cho bộ nhớ thông tin xác thực. Mật khẩu phải có ít nhất 8 ký tự."</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"Nhập mật khẩu bộ nhớ thông tin xác thực."</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"Cài đặt từ bộ nhớ USB"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"Cài đặt từ thẻ SD"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"Cài đặt chứng chỉ đã mã hóa từ bộ nhớ USB"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"Cài đặt chứng chỉ đã mã hoá từ thẻ SD"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"Đặt mật khẩu"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"Đặt hoặc thay đổi mật khẩu bộ nhớ thông tin xác thực"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"Xoá bộ nhớ"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"Xoá bộ nhớ thông tin xác thực của tất cả nội dung và đặt lại mật khẩu của nó"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"Bạn có chắc chắn muốn xoá tất cả thông tin xác thực và đặt lại mật khẩu lưu trữ thông tin xác thực không?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"Mật khẩu hiện tại:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"Mật khẩu mới:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"Xác nhận mật khẩu mới:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"Tất cả nội dung sẽ bị xóa và mật khẩu sẽ được đặt lại. Bạn có chắc chắn việc đó không?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"Đặt mật khẩu cho bộ nhớ thông tin xác thực (ít nhất 8 ký tự)."</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"Vui lòng nhập mật khẩu chính xác."</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"Vui lòng nhập mật khẩu chính xác. Bạn có một lần nhập mật khẩu chính xác trước khi bộ nhớ thông tin xác thực bị xoá."</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"Vui lòng nhập mật khẩu chính xác. Bạn có <xliff:g id="NUMBER">%1$d</xliff:g> lần nhập mật khẩu chính xác trước khi bộ nhớ thông tin xác thực bị xoá."</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"Mật khẩu không khớp."</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"Bạn phải nhập và xác nhận mật khẩu."</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"Vui lòng nhập mật khẩu."</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"Mật khẩu phải có ít nhất 8 ký tự."</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"Mật khẩu không chính xác."</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"Mật khẩu không chính xác. Bạn còn một cơ hội nữa trước khi bộ nhớ thông tin xác thực bị xóa."</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"Mật khẩu không chính xác. Bạn có <xliff:g id="NUMBER">%1$d</xliff:g> cơ hội nữa trước khi bộ nhớ thông tin xác thực bị xóa."</string>
- <string name="credentials_erased" msgid="2907836028586342969">"Bộ nhớ thông tin xác thực đã bị xóa."</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"Bộ nhớ thông tin xác thực đã bị xoá."</string>
<string name="credentials_enabled" msgid="7588607413349978930">"Bộ nhớ thông tin xác thực đã bật."</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"Bộ nhớ thông tin xác thực bị vô hiệu hoá."</string>
+ <!-- no translation found for encrypted_fs_category (1841367653663913956) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable (3884033081603327729) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_summary (5635188119509076089) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_dialog (919487211207214266) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_dialog (6960413613985682501) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_enable_button (8453841319751433751) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_disable_button (8468354944060220496) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_button (4785921255266305799) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_cancel_confirm (853572431153803557) -->
+ <skip />
+ <!-- no translation found for encrypted_fs_alert_dialog_title (583462447886934755) -->
+ <skip />
<string name="emergency_tone_title" msgid="1055954530111587114">"Âm khẩn cấp"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"Đặt chế độ khi cuộc gọi khẩn cấp được thực hiện"</string>
<string name="privacy_settings" msgid="9206631214140954954">"Bảo mật"</string>
@@ -1339,11 +1348,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"Cuộc gọi đến"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"Thông báo"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"Phản hồi"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Thiết lập Wi-Fi"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"Kết nối với mạng Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"Đang kết nối với mạng Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"Đã kết nối với mạng Wi-Fi <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"Thêm mạng"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"Thiết đặt WiFi"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"Chưa được kết nối"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"Thêm mạng"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"Làm mới danh sách"</string>
@@ -1356,7 +1361,8 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"Lưu"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"Hủy"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"Đang quét mạng..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"Chạm vào một mạng để kết nối với mạng đó"</string>
+ <!-- no translation found for wifi_setup_status_select_network (7519563569903137003) -->
+ <skip />
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"Kết nối tới mạng hiện có"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"Kết nối với mạng không an toàn"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"Nhập cấu hình mạng"</string>
@@ -1364,50 +1370,68 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"Đang kết nối..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"Tiếp tục tới bước tiếp theo"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"EAP không được hỗ trợ"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"Bạn không thể cấu hình kết nối EAP Wi-Fi trong khi thiết lập. Sau khi thiết lập, bạn có thể thực hiện trong Cài đặt, trong phần "<b>"Mạng & không dây"</b>"."</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"Kết nối có thể mất vài phút..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"Chạm "<b>"Tiếp theo"</b>" để tiếp tục cài đặt."\n\n"Chạm "<b>"Trở lại"</b>" để kết nối mạng Wi-Fi khác."</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"Bạn không thể cấu hình kết nối EAP Wi-Fi trong khi thiết lập. Sau khi thiết lập, bạn có thể thực hiện trong Cài đặt, trong Mạng & Không dây."</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"Đồng bộ hóa cài đặt"</string>
- <!-- outdated translation 7257854052606796327 --> <string name="sync_is_failing" msgid="1591561768344128377">"Đồng bộ hóa hiện đang gặp sự cố. Đồng bộ hóa sẽ sớm hoạt động trở lại."</string>
+ <!-- no translation found for sync_is_failing (1591561768344128377) -->
+ <skip />
<string name="add_account_label" msgid="7811707265834013767">"Thêm tài khoản"</string>
<string name="header_general_sync_settings" msgid="3487451896424238469">"Cài đặt đồng bộ hóa chung"</string>
<string name="background_data" msgid="5779592891375473817">"Dữ liệu nền"</string>
<string name="background_data_summary" msgid="3630389249212620467">"Ứng dụng có thể đồng bộ hóa, gửi và nhận dữ liệu bất kỳ lúc nào"</string>
<string name="background_data_dialog_title" msgid="745974259246047425">"Chú ý"</string>
<string name="background_data_dialog_message" msgid="9155730118215371308">"Vô hiệu hóa dữ liệu nền sẽ kéo dài tuổi thọ pin và giảm việc sử dụng dữ liệu. Một số ứng dụng vẫn có thể sử dụng kết nối dữ liệu nền."</string>
- <!-- outdated translation 7232356254121075216 --> <string name="sync_automatically" msgid="7558810110682562376">"Tự động đồng bộ hóa"</string>
+ <!-- no translation found for sync_automatically (7558810110682562376) -->
+ <skip />
<string name="sync_automatically_summary" msgid="6662623174608419931">"Ứng dụng tự động đồng bộ hóa dữ liệu"</string>
<string name="header_manage_accounts" msgid="6869002423884539607">"Quản lý tài khoản"</string>
<string name="sync_enabled" msgid="4551148952179416813">"Đồng bộ hóa BẬT"</string>
<string name="sync_disabled" msgid="8511659877596511991">"Đồng bộ hóa TẮT"</string>
<string name="sync_error" msgid="5060969083117872149">"Lỗi đồng bộ hóa"</string>
<string name="settings_backup" msgid="2274732978260797031">"Sao lưu cài đặt"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"Sao lưu cài đặt của tôi"</string>
- <!-- outdated translation 4438555069848430041 --> <string name="sync_menu_sync_now" msgid="6154608350395805683">"Đồng bộ hóa ngay bây giờ"</string>
- <!-- outdated translation 260091941807229790 --> <string name="sync_menu_sync_cancel" msgid="8292379009626966949">"Hủy đồng bộ hóa"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"Chạm để đồng bộ hóa ngay bây giờ<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
- <!-- outdated translation 2427506589849697841 --> <string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
- <!-- outdated translation 6328872198278573611 --> <string name="sync_calendar" msgid="9056527206714733735">"Lịch"</string>
- <!-- outdated translation 6010441370923919977 --> <string name="sync_contacts" msgid="9174914394377828043">"Danh bạ"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"Chào mừng bạn đến với Google sync!"</font>" "\n"Một giải pháp đồng bộ hóa dữ liệu của Google cho phép quyền truy cập vào danh bạ, các cuộc hẹn và hơn thế nữa cho dù bạn ở đâu."</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"Cài đặt đồng bộ hóa ứng dụng"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"Dữ liệu & đồng bộ hóa"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"Thay đổi mật khẩu"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"Cài đặt tài khoản"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"Xóa tài khoản"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"Thêm tài khoản"</string>
- <string name="finish_button_label" msgid="481587707657751116">"Hoàn tất"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"Xóa tài khoản"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_now (6154608350395805683) -->
+ <skip />
+ <!-- no translation found for sync_menu_sync_cancel (8292379009626966949) -->
+ <skip />
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
+ <!-- no translation found for sync_gmail (714886122098006477) -->
+ <skip />
+ <!-- no translation found for sync_calendar (9056527206714733735) -->
+ <skip />
+ <!-- no translation found for sync_contacts (9174914394377828043) -->
+ <skip />
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"Bạn có thực sự muốn xóa tài khoản này? Xóa tài khoản này cũng sẽ xóa tất cả tin nhắn, danh sách liên hệ và các dữ liệu khác khỏi máy tính bảng. "\n"Tiếp tục?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"Bạn có thực sự muốn xóa tài khoản này? Xóa tài khoản này cũng sẽ xóa tất cả tin nhắn, danh sách liên hệ và các dữ liệu khác khỏi điện thoại. "\n"Tiếp tục?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"Tài khoản này được một số ứng dụng yêu cầu. Bạn chỉ có thể xóa tài khoản này bằng cách đặt lại máy tính bảng về mặc định ban đầu (thao tác này sẽ xóa tất cả dữ liệu cá nhân của bạn). Bạn thực hiện thao tác này trong ứng dụng Cài đặt trong mục Bảo mật."</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"Tài khoản này được một số ứng dụng yêu cầu. Bạn chỉ có thể xóa tài khoản này bằng cách đặt lại điện thoại về mặc định ban đầu (thao tác này sẽ xóa tất cả dữ liệu cá nhân của bạn). Bạn thực hiện thao tác này trong ứng dụng Cài đặt trong mục Bảo mật."</string>
- <string name="provider_label" msgid="7724593781904508866">"Đăng ký dịch vụ đẩy"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"Đồng bộ hóa <xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"Không thể đồng bộ hóa theo cách thủ công"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"Đồng bộ hóa cho mục này hiện đã bị vô hiệu hóa. Để thay đổi tùy chọn của bạn, hãy tạm thời bật dữ liệu nền và đồng bộ hóa tự động."</string>
- <string name="enter_password" msgid="3268224850821675915">"Nhập mật khẩu để mã hóa dung lượng lưu trữ"</string>
- <string name="try_again" msgid="5904121494468643129">"Rất tiếc, hãy thử lại"</string>
- <string name="service_busy" msgid="225227519012409130">"Dịch vụ bận, thử lại"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-zh-rCN/arrays.xml b/res/values-zh-rCN/arrays.xml
index 5444dbf..01af948 100644
--- a/res/values-zh-rCN/arrays.xml
+++ b/res/values-zh-rCN/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"显示部分窗口动画"</item>
<item msgid="488968798204105119">"显示所有窗口动画"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 秒"</item>
- <item msgid="8881760709354815449">"30 秒"</item>
- <item msgid="7589406073232279088">"1 分钟"</item>
- <item msgid="7001195990902244174">"2 分钟"</item>
- <item msgid="7489864775127957179">"5 分钟"</item>
- <item msgid="2314124409517439288">"10 分钟"</item>
- <item msgid="6864027152847611413">"30 分钟"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"无延迟"</item>
- <item msgid="6736512735606834431">"5 秒"</item>
- <item msgid="8044619388267891375">"15 秒"</item>
- <item msgid="1822002388249545488">"30 秒"</item>
- <item msgid="8538071621211916519">"1 分钟"</item>
- <item msgid="5663439580228932882">"2 分钟"</item>
- <item msgid="49888496216106852">"5 分钟"</item>
- <item msgid="9002737361305019353">"10 分钟"</item>
- <item msgid="4322676235684793329">"30 分钟"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"很慢"</item>
<item msgid="2361722960903353554">"慢"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"强"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"屏幕关闭时休眠"</item>
+ <item msgid="3804733751095821976">"屏幕关闭时休眠"</item>
<item msgid="1549288661423279207">"充电时永不休眠"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"从不"</item>
+ <item msgid="1986753720941888596">"永不休眠"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"自动"</item>
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
index 99b5d19..6775d05 100644
--- a/res/values-zh-rCN/strings.xml
+++ b/res/values-zh-rCN/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"没电"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"过电压"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"未知错误"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"电量低"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"蓝牙"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"可检测性"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"<xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> 秒内可检测到..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"正在扫描"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"蓝牙配对请求"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"配对请求"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"选择与<xliff:g id="DEVICE_NAME">%1$s</xliff:g>配对"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"显示收到的文件"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"显示通过蓝牙收到的文件列表"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"蓝牙设备选择器"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"蓝牙权限请求"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"某一应用程序正在请求相应权限,以便打开蓝牙。要授予该权限吗?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"您平板电脑上的某一应用程序正在请求相应权限,以便打开蓝牙,从而让其他设备可在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内检测到您的平板电脑。要授予该权限吗?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"您手机上的某一应用程序正在请求相应权限以便打开蓝牙,从而使其他设备可在 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒内检测到您的手机。是否要授予这种权限?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"正在打开蓝牙…"</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"自动连接"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"日期和时间设置"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"下午 1:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"启动<xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"帐户:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"代理设置"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"代理设置"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"设置全局 HTTP 代理和排除列表"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"清除"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"端口"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"取消"</string>
<string name="settings_label" msgid="1626402585530130914">"设置"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"设置"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"选择设置快捷方式"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"设置"</string>
<string name="airplane_mode" msgid="8837269988154128601">"飞行模式"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"停用所有无线连接"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"正在停用无线连接..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"正在启用无线连接..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"无线和网络"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"无线和网络"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"无线和网络设置"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"管理 Wi-Fi、蓝牙、飞行模式、移动网络和虚拟专用网"</string>
<string name="roaming" msgid="3596055926335478572">"数据漫游"</string>
<string name="roaming_enable" msgid="3737380951525303961">"漫游时连接到数据服务"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"运营商选择"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"选择网络运营商"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"日期和时间"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"设置日期和时间"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"设置日期、时间、时区和格式"</string>
<string name="date_time_auto" msgid="7076906458515908345">"自动确定日期和时间"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"使用网络上的时间"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"按时区排序"</string>
<string name="date_picker_title" msgid="1338210036394128512">"日期"</string>
<string name="time_picker_title" msgid="483460752287255019">"时间"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"超时"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"屏幕自动关闭的 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>后锁定屏幕"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"超时后锁定设备"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"在锁定屏幕上显示拥有者信息"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"拥有者信息"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"设置我的位置、屏幕解锁、SIM 卡锁定和凭据存储锁定"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"设置我的位置、屏幕解锁和凭据存储锁定"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"密码"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"设备加密"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"加密设备上的数据"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"加密设备上的数据"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"要求您设置设备解锁 PIN 码或密码"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"要求您设置设备解锁 PIN 码或密码"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"已加密"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"您可以加密自己的帐户、设置、已下载的应用程序及其数据、媒体以及其他文件。加密手机后,唯一的解密方法就是恢复出厂设置,而这会清除手机上的所有数据。"\n\n"加密过程最多需要一个小时。在开始加密前,您必须先给电池充电,并在加密完成前始终连接电源。如果加密过程中出现中断会导致您的部分或全部数据丢失。"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"您可以加密自己的帐户、设置、已下载的应用程序及其数据、媒体以及其他文件。加密手机后,唯一的解密方法就是恢复出厂设置,而这会清除手机上的所有数据。"\n\n"加密过程最多需要一个小时。在开始加密前,您必须先给电池充电,并在加密完成前始终连接电源。如果加密过程中出现中断会导致您的部分或全部数据丢失。"</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"加密平板电脑"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"加密手机"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"确认加密"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"要加密用户数据吗?此操作不可逆,而且一旦中断就会导致数据丢失!加密过程最多需要一个小时。"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"要加密用户数据吗?此操作不可逆,而且一旦中断就会导致数据丢失!加密过程最多需要一个小时。"</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"正在加密"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"^1 秒后重试。"</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"配置锁定屏幕"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"配置锁定屏幕"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"屏幕解锁保护"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"设置屏幕锁定"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"更改屏幕锁定"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"更改或停用图案、PIN 或密码保护"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"选择锁定屏幕的方法"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"关闭"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"从不锁定屏幕"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"不设置安全保护"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"不需要图案、PIN 或密码即可解锁屏幕"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"不显示锁定屏幕"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"无"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"停用屏幕解锁保护"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"图案"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"需要图案才能解锁屏幕"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"绘制图案给屏幕解锁"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"需要数字 PIN 才能解锁屏幕"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"输入数字 PIN 给屏幕解锁"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"密码"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"需要密码才能解锁屏幕"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"输入密码给屏幕解锁"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"已由远程设备管理员停用"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"关闭"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"不设置安全保护"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"使用图案设置安全保护"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"使用 PIN 进行保护"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"通过密码设置安全保护"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"关闭屏幕锁定"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"删除解锁图案"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"删除解锁 PIN"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"设备管理员不允许使用最近的密码"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"确定"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"取消"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"取消"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"下一页"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"设备管理"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"设备管理器"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"查看或停用设备管理器"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"选择设备管理器"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"添加或删除设备管理器"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"蓝牙"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"打开蓝牙"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"蓝牙设置"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"蓝牙设置"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"管理连接、设置设备名称和可检测性"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"蓝牙配对请求"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"输入 PIN 与<xliff:g id="DEVICE_NAME">%1$s</xliff:g>配对。(请尝试 0000 或 1234。)您可能需要在蓝牙设备上输入同样的 PIN。"</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"键入匹配密钥可与<xliff:g id="DEVICE_NAME">%1$s</xliff:g>配对。"</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"要与“<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”配对,请核实其中是否显示匹配密钥:<xliff:g id="PASSKEY">%2$s</xliff:g>。"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"想要配对。"</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"在“<xliff:g id="DEVICE_NAME">%1$s</xliff:g>”上输入“<xliff:g id="PASSKEY">%2$s</xliff:g>”进行配对,然后返回或输入。"</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"配对"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"不要配对"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"蓝牙设备"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"选项…"</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"连接到..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"媒体"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"免提"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"平板电脑"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"传输"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"输入设备"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"绑定"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>将与媒体音频断开连接。"</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>将与免提音频断开连接。"</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>将与输入设备断开连接。"</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>将与绑定断开连接。"</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>选项"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"设备操作"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"连接"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"用于手机音频"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"用于文件传输"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"用于输入"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"用于访问互联网"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"底座设置"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"底座用于音频"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"将底座用作免提电话"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"记住设置"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"使用近距离通信读取和交换标签"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"出现错误。"</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"打开 Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi 设置"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"无法通过扫描查找网络"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"网络通知"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"附近有开放网络时通知我"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi 休眠策略"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"指定何时要从 Wi-Fi 切换到手机数据"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"设置休眠策略时出现问题。"</string>
<string name="wifi_add_network" msgid="1671334951296205616">"添加 Wi-Fi 网络"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi 网络"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"扫描"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"修改网络"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"网络设置"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"从接入点输入 PIN"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS 设置"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN 方法配置"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"请输入接入点上的 PIN <xliff:g id="WPS_PIN">%1$s</xliff:g>"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"正在进行 WPS,这一过程可能需要数十秒的时间"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"启动 WPS 失败,请重试"</string>
<string name="wifi_ssid" msgid="641393708309146745">"网络 SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"安全性"</string>
<string name="wifi_signal" msgid="5514120261628065287">"信号强度"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"不保存"</string>
<string name="wifi_save" msgid="3331121567988522826">"保存"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"取消"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"系统检测到其他的 WPS 会话,请过几分钟再试"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"高级"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi 休眠策略"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"指定何时要从 Wi-Fi 切换到手机数据"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"设置休眠策略时出现问题。"</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi 频带"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"指定操作的频率范围"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"设置频带时出现问题。"</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> 便携式 Wi-Fi 热点"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android 热点"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"声音"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"屏幕"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"显示"</string>
<string name="sound_settings" msgid="5007659014828162881">"声音设置"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"静音模式"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"除媒体和闹钟以外,所有声音均设为静音"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"旋转手机时自动改变显示方向"</string>
<string name="brightness" msgid="2354961343555249270">"亮度"</string>
<string name="brightness_summary" msgid="838917350127550703">"调整屏幕亮度"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"超时"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"屏幕会在 <xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>后自动关闭"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"屏幕超时"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"自动调整亮度"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM 卡锁定设置"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"设置 SIM 卡锁定"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"不可用"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"状态消息"</string>
<string name="device_status" msgid="607405385799807324">"状态消息"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"电池状态、网络状态和其他信息"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"移动通信国际识别码、电话号码、信号等"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"电话号码、信号等"</string>
<string name="storage_settings" msgid="4211799979832404953">"存储"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"存储设置"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"卸载 USB 存储设备,查看可用存储设备"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"卸载 SD 卡,查看可用存储设备"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"移动目录编号 (MDN)"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"本机号码"</string>
+ <string name="status_number" msgid="5123197324870153205">"本机号码"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL 版本"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -655,14 +635,15 @@
<string name="status_unavailable" msgid="7862009036663793314">"不可用"</string>
<string name="status_up_time" msgid="7294859476816760399">"开机时间"</string>
<string name="status_awake_time" msgid="2393949909051183652">"唤醒时间"</string>
- <string name="internal_memory" msgid="9129595691484260784">"内部存储空间"</string>
+ <string name="internal_memory" msgid="9129595691484260784">"内部存储设备"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB 存储设备"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD 卡"</string>
- <string name="memory_available" msgid="5052397223077021181">"可用空间"</string>
- <string name="memory_size" msgid="5458889090691922288">"总存储空间"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"正在计算..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"应用程序"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"媒体"</string>
+ <string name="memory_available" msgid="418542433817289474">"可用空间"</string>
+ <string name="memory_size" msgid="6629067715017232195">"总容量"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"应用程序使用情况"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"媒体使用情况"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"卸载共享存储设备"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"卸载 SD 卡"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"卸载内部 USB 存储设备"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"插入 SD 卡进行安装"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"装载 USB 存储设备"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"安装 SD 卡"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"装载 USB 存储器"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"装载内部 USB 存储设备"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"安装 SD 卡"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"格式化 USB 存储设备"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"格式化 SD 卡"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"清除内部 USB 存储设备中的全部数据,例如音乐和照片"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"清除 SD 卡中的全部数据,例如音乐和照片"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"清除内部 USB 存储设备中的全部数据,例如音乐和照片"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"不可用"</string>
<string name="read_only" msgid="6702420168629076340">" (只读)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"卸载 USB 存储设备"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"此操作会清除您手机的"<b>"内部存储设备"</b>"中的全部数据,包括:"\n\n<li>"您的 Google 帐户"</li>\n<li>"系统和应用程序数据和设置"</li>\n<li>"已下载的应用程序"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"此操作会清除您手机的"<b>"内部存储设备"</b>"中的全部数据,包括:"\n\n<li>"您的 Google 帐户"</li>\n<li>"系统和应用程序数据和设置"</li>\n<li>"已下载的应用程序"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"目前,您已登录以下帐户:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"音乐"</li>\n<li>"照片"</li>\n<li>"其他的用户数据"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"要清除音乐、照片和其他用户数据,请格式化 "<b>"USB 存储设备"</b>"。"</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"如果也要删除音乐、图片和其他用户数据,则需要清除 "<b>"SD 卡"</b>"。"</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"要清除音乐、照片和其他用户数据,请格式化 "<b>"USB 存储设备"</b>"。"</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"格式化 USB 存储设备"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"格式化 SD 卡"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"清除内部 USB 存储设备中的全部数据,例如音乐或照片。"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"使用增强型 GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"使用服务器来辅助 GPS(取消选中可降低网络使用率)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"使用服务器来辅助 GPS(取消选中可提高 GPS 性能)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"将位置信息用于 Google 搜索"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"将位置信息用于 Google 搜索和 Google 的其他服务"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"已将位置信息用于改善 Google 搜索结果和 Google 的其他服务"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"将位置用于 Google 搜索"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"将位置用于 Google 搜索和 Google 的其他服务"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"已将位置用于改进 Google 搜索结果和 Google 的其他服务"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"关于平板电脑"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"关于手机"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"查看法律信息、状态和软件版本"</string>
@@ -840,7 +820,7 @@
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"密码已设置"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"PIN 已设置"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"图案已设置"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"锁定屏幕"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"屏幕解锁"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"更改解锁图案"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"更改解锁 PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"确认已保存的图案"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"下一步"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"保护您的平板电脑"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"手机安全设置"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"通过创建个人屏幕解锁图案,防止他人未经授权使用您的平板电脑。用手指按任意顺序连接下一屏幕上的点,但至少要连接四个点。"\n\n"可以开始了吗?触摸“下一步”。"</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">"通过创建个人屏幕解锁图案,防止他人未经授权使用您的手机。"\n<font height="17">\n</font><b>"1"</b>" 在下一屏幕上,观看示例图案的绘制过程。"\n<font height="17">\n</font><b>"2"</b>" 准备就绪后,绘制您自己的个人解锁图案。可尝试不同的图案,但至少要连接四个点。"\n<font height="17">\n</font><b>"3"</b>" 重新绘制您的图案进行确认。"\n<font height="17">\n</font><b>"可以开始了吗?触摸“下一步”"</b>"。"\n<font height="3">\n</font>"要让手机处于不受保护的状态,请触摸“取消”。"</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"管理应用程序"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"管理和删除安装的应用程序"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"总计"</string>
<string name="application_size_label" msgid="5055196275624686382">"应用程序"</string>
<string name="data_size_label" msgid="8679376373625710107">"数据"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB 存储器"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD 卡"</string>
<string name="uninstall_text" msgid="3644892466144802466">"卸载"</string>
<string name="disable_text" msgid="6544054052049395202">"停用"</string>
<string name="enable_text" msgid="9217362512327828987">"启用"</string>
@@ -918,7 +899,7 @@
<string name="filter_apps_onsdcard" product="default" msgid="1477351142334784771">"SD 卡中"</string>
<string name="disabled" msgid="9206776641295849915">"已停用"</string>
<string name="no_applications" msgid="5190227407135243904">"无应用程序。"</string>
- <string name="internal_storage" msgid="1584700623164275282">"内部存储空间"</string>
+ <string name="internal_storage" msgid="1584700623164275282">"内部存储设备"</string>
<string name="sd_card_storage" product="nosdcard" msgid="2673203150465132465">"USB 存储设备"</string>
<string name="sd_card_storage" product="default" msgid="7623513618171928235">"SD 卡存储设备"</string>
<string name="recompute_size" msgid="7722567982831691718">"正在重新计算大小..."</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"要停止系统服务吗?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"确定要停止此系统服务吗?如果停止,您平板电脑上的某些功能也会立即停止工作,除非您将其关闭后再重新打开。"</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"确定要停止此系统服务吗?如果停止,您手机上的某些功能也会立即停止工作,除非您将其关闭后再重新打开。"</string>
- <string name="language_settings" msgid="5292716747264442359">"语言和输入设备"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"语言和输入设备"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"语言区域和文字"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"语言和键盘设置"</string>
<string name="language_settings_category" msgid="2288258489940617043">"语言设置"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"键盘设置"</string>
<string name="phone_language" msgid="1165758957501090679">"选择语言"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"自动替换"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"更正错误输入的字词"</string>
- <string name="auto_caps" msgid="6379232078052591265">"自动大写"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"自动大写"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"将句首字母大写"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"自动加标点"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"物理键盘设置"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"快捷方式"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"文字输入"</string>
<string name="input_method" msgid="5434026103176856164">"输入法"</string>
- <string name="current_input_method" msgid="2146807723398303917">"当前输入法"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"输入法选择器"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"自动"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"总是显示"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"始终隐藏"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"配置输入法"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"设置"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"有效的输入法"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"使用系统语言"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> 设置"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"选择有效的输入法"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"屏幕键盘设置"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"内置键盘"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"内置物理键盘设置"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"Wi-Fi 开启时间"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"Wi-Fi 开启时间"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"历史记录详细信息"</string>
- <string name="details_title" msgid="3792801565213935385">"使用详情"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"电量使用详情"</string>
<string name="details_subtitle" msgid="32593908269911734">"详细使用情况"</string>
<string name="controls_subtitle" msgid="390468421138288702">"调配电量"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"包括的软件包"</string>
@@ -1193,7 +1185,7 @@
<string name="tts_engine_error_reselect" msgid="3071453963296013376">"选择其他引擎"</string>
<string name="tts_engine_security_warning" msgid="8786238102020223650">"此语音合成引擎能够收集语音中出现的所有信息,包括密码和信用卡号码之类的个人数据。此功能由 <xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g> 引擎提供。是否启用此语音合成引擎?"</string>
<string name="tts_engines_section" msgid="7515470972378742429">"引擎"</string>
- <string name="tts_engine_name_settings" msgid="4974538563074395920">"<xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g>设置"</string>
+ <string name="tts_engine_name_settings" msgid="4974538563074395920">"<xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g> 设置"</string>
<string name="tts_engine_name_is_enabled_summary" msgid="4909484006804022115">"已启用 <xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g>"</string>
<string name="tts_engine_name_is_disabled_summary" msgid="7644198182255168200">"已停用 <xliff:g id="TTS_PLUGIN_ENGINE_NAME">%s</xliff:g>"</string>
<string name="pico_languages_and_voices" msgid="4611320375917773238">"语言和语音"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"服务器协商失败。该服务器可能不认可您的加密选项。是否要检查您的加密设置?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"添加虚拟专用网"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"添加虚拟专用网"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN 详细信息"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"添加 VPN“<xliff:g id="NAME">%s</xliff:g>”"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"“<xliff:g id="NAME">%s</xliff:g>”详情"</string>
<string name="vpns" msgid="3148141862835492816">"虚拟专用网"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"设置和管理虚拟专用网"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(未更改)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(未设置)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"凭据存储"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"凭证存储"</string>
<string name="credentials_access" msgid="4843187230913860492">"使用安全凭证"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"允许应用程序访问安全凭证和其他凭证"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"从 USB 存储设备安装"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"从 SD 卡安装"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"从 USB 存储设备安装证书"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"从 SD 卡安装证书"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"设置密码"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"设置或更改凭据存储密码"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"清除凭据"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"删除所有内容并重置密码"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"输入密码"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"输入凭据存储密码。"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"设置凭据存储密码(至少 8 个字符)。"</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"输入凭证存储密码。"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"从 USB 存储设备安装"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"从 SD 卡安装"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"从 USB 存储设备安装已加密的证书"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"从 SD 卡安装加密的证书"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"设置密码"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"设置或更改凭证存储密码"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"清除存储"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"清除所有内容的凭证存储并重置其密码"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"确定要删除所有凭证,并且重置凭证存储密码吗?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"当前密码:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"新密码:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"确认新密码:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"系统会删除所有内容并重置密码。您确定要执行此操作吗?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"设置凭证存储密码(至少 8 个字符)。"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"请输入正确的密码。"</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"请输入正确的密码。在系统删除该凭证存储之前,您还有一次输入正确密码的机会。"</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"请输入正确的密码。在系统删除该凭证存储之前,您还有 <xliff:g id="NUMBER">%1$d</xliff:g> 次输入正确密码的机会。"</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"密码不匹配。"</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"您需要输入并确认密码。"</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"请输入密码。"</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"密码至少应包含 8 个字符。"</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"密码不正确。"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"密码不正确。您还可以重试一次,如果输入的密码仍不正确,系统将删除凭据存储。"</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"密码不正确。您还可以重试 <xliff:g id="NUMBER">%1$d</xliff:g> 次,如果输入的密码仍不正确,系统将删除凭据存储。"</string>
- <string name="credentials_erased" msgid="2907836028586342969">"凭据存储已删除。"</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"该凭证存储已删除。"</string>
<string name="credentials_enabled" msgid="7588607413349978930">"凭证存储已启用。"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"凭证存储已停用。"</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"加密文件系统"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"加密用户私人数据"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"在此设备中针对用户私人数据启用加密文件系统存储"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"必须清除设备数据才能启用加密文件系统。"</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"必须清除设备数据才能停用加密文件系统。"</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"启用"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"停用"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"取消"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"已取消加密文件系统的模式更改。"</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"加密文件系统警告。"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"紧急提示音"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"设置进行紧急呼救时的行为"</string>
<string name="privacy_settings" msgid="9206631214140954954">"隐私权"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"来电"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"通知"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"反馈"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi 设置"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"连接到 Wi-Fi 网络<xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"正在连接到 Wi-Fi 网络<xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"已连接到 Wi-Fi 网络<xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"添加网络"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi 设置"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"未连接"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"添加网络"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"刷新列表"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"保存"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"取消"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"正在查找网络..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"触摸某个网络即可与其连接"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"触摸以选择网络"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"连接到现有网络"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"连接到不受保护的网络"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"输入网络配置"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"正在连接..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"继续下一步"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"不支持 EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"不能在设置过程中配置 EAP Wi-Fi 连接。设置完成后,您可以在“设置”下的"<b>"无线和网络"</b>"中进行配置。"</string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"建立连接可能需要几分钟的时间..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"触摸"<b>"下一步"</b>"可继续进行设置。"\n\n"触摸"<b>"返回"</b>"可连接到其他 Wi-Fi 网络。"</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"不能在设置过程中配置 EAP Wi-Fi 连接。设置完成后,您可以在“设置”下的“无线和网络”中进行配置。"</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"同步设置"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"同步操作当前遇到了一些问题,很快便可恢复。"</string>
<string name="add_account_label" msgid="7811707265834013767">"添加帐户"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"同步功能已关闭"</string>
<string name="sync_error" msgid="5060969083117872149">"同步出错"</string>
<string name="settings_backup" msgid="2274732978260797031">"备份设置"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"备份我的设置"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"立即同步"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"取消同步"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"触摸可立即同步(<xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>)"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"日历"</string>
<string name="sync_contacts" msgid="9174914394377828043">"联系人"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"欢迎使用“Google Sync”!"</font>\n"Google 的这款同步数据工具可让您随时随地访问您的联系人、约会以及更多信息。"</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"应用程序同步设置"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"数据与同步"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"更改密码"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"帐户设置"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"删除帐户"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"添加帐户"</string>
- <string name="finish_button_label" msgid="481587707657751116">"完成"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"删除帐户"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"确实要删除此帐户吗?删除该帐户会同时从平板设备中删除其所有讯息、联系人以及其他数据。"\n"是否继续?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"确实要删除此帐户吗?删除该帐户会同时从手机中删除其所有讯息、联系人以及其他数据。"\n"是否继续?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"某些应用程序需要使用此帐户。您只有将平板电脑重置为出厂默认设置(此操作会删除您的所有个人数据),才能删除此帐户。您可以在“设置”应用程序的“隐私”下执行此操作。"</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"某些应用程序需要使用此帐户。您只有将手机重置为出厂默认设置(此操作会删除您所有的个人数据),才能删除此帐户。您可以在“设置”应用程序的“隐私”下执行此操作。"</string>
- <string name="provider_label" msgid="7724593781904508866">"推送订阅"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"同步<xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"无法手动同步"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"当前已停止同步此条目。要更改您的偏好设置,请暂时启用背景数据和自动同步功能。"</string>
- <string name="enter_password" msgid="3268224850821675915">"输入密码,解密存储设备"</string>
- <string name="try_again" msgid="5904121494468643129">"很抱歉,请重试"</string>
- <string name="service_busy" msgid="225227519012409130">"服务正忙,请重试"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values-zh-rTW/arrays.xml b/res/values-zh-rTW/arrays.xml
index 8467fa8..b8d757a 100644
--- a/res/values-zh-rTW/arrays.xml
+++ b/res/values-zh-rTW/arrays.xml
@@ -39,26 +39,8 @@
<item msgid="4460915688877708508">"顯示部分視窗動畫"</item>
<item msgid="488968798204105119">"顯示所有視窗動畫"</item>
</string-array>
- <string-array name="screen_timeout_entries">
- <item msgid="3342301044271143016">"15 秒"</item>
- <item msgid="8881760709354815449">"30 秒"</item>
- <item msgid="7589406073232279088">"1 分鐘"</item>
- <item msgid="7001195990902244174">"2 分鐘"</item>
- <item msgid="7489864775127957179">"5 分鐘"</item>
- <item msgid="2314124409517439288">"10 分鐘"</item>
- <item msgid="6864027152847611413">"30 分鐘"</item>
- </string-array>
- <string-array name="lock_after_timeout_entries">
- <item msgid="5416834369150305288">"立即"</item>
- <item msgid="6736512735606834431">"5 秒"</item>
- <item msgid="8044619388267891375">"15 秒"</item>
- <item msgid="1822002388249545488">"30 秒"</item>
- <item msgid="8538071621211916519">"1 分鐘"</item>
- <item msgid="5663439580228932882">"2 分鐘"</item>
- <item msgid="49888496216106852">"5 分鐘"</item>
- <item msgid="9002737361305019353">"10 分鐘"</item>
- <item msgid="4322676235684793329">"30 分鐘"</item>
- </string-array>
+ <!-- no translation found for screen_timeout_entries:6 (6864027152847611413) -->
+ <!-- no translation found for lock_after_timeout_entries:8 (4322676235684793329) -->
<string-array name="tts_rate_entries">
<item msgid="6041212618892492920">"非常慢"</item>
<item msgid="2361722960903353554">"慢"</item>
@@ -123,9 +105,9 @@
<item msgid="5702329417707689835">"優"</item>
</string-array>
<string-array name="wifi_sleep_policy_entries">
- <!-- outdated translation 163219032483706640 --> <item msgid="643915340724070374">"關上螢幕時"</item>
+ <item msgid="3804733751095821976">"關上螢幕時"</item>
<item msgid="1549288661423279207">"插入時絕不"</item>
- <!-- outdated translation 7873912268524057699 --> <item msgid="6592896328877671197">"永不"</item>
+ <item msgid="1986753720941888596">"永不"</item>
</string-array>
<string-array name="wifi_frequency_band_entries">
<item msgid="624340809384223320">"自動"</item>
diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml
index f89bed0..3af344d 100644
--- a/res/values-zh-rTW/strings.xml
+++ b/res/values-zh-rTW/strings.xml
@@ -87,7 +87,8 @@
<string name="battery_info_health_dead" msgid="1725917445762829059">"電池耗盡"</string>
<string name="battery_info_health_over_voltage" msgid="2420269351664490121">"電壓過高"</string>
<string name="battery_info_health_unspecified_failure" msgid="6347021103185471590">"未知的錯誤"</string>
- <string name="battery_info_health_cold" msgid="3835692786176707318">"冷"</string>
+ <!-- no translation found for battery_info_health_cold (3835692786176707318) -->
+ <skip />
<string name="bluetooth" msgid="5549625000628014477">"藍牙"</string>
<string name="bluetooth_visibility" msgid="2930835434091839916">"可偵測性"</string>
<string name="bluetooth_is_discoverable" msgid="1205694503775884903">"可供偵測 <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> 秒..."</string>
@@ -111,9 +112,8 @@
<string name="progress_scanning" msgid="3760897655335759141">"掃描中"</string>
<string name="bluetooth_notif_ticker" msgid="4726721390078512173">"藍牙配對要求"</string>
<string name="bluetooth_notif_title" msgid="2485175521845371514">"配對要求"</string>
- <string name="bluetooth_notif_message" msgid="618099089987569242">"選取即可與 <xliff:g id="DEVICE_NAME">%1$s</xliff:g> 進行配對"</string>
- <string name="bluetooth_show_received_files_title" msgid="816172853268536399">"顯示已接收的檔案"</string>
- <string name="bluetooth_show_received_files_summary" msgid="7322193220909480775">"顯示已透過藍牙接收的檔案清單"</string>
+ <!-- no translation found for bluetooth_notif_message (618099089987569242) -->
+ <skip />
<string name="device_picker" msgid="8721012448931226323">"藍牙裝置選取器"</string>
<string name="bluetooth_permission_request" msgid="1523129741266262748">"藍牙權限要求"</string>
<string name="bluetooth_ask_enablement" msgid="8211158472876087588">"某個應用程式要求開啟藍牙功能,您想要允許要求嗎?"</string>
@@ -122,7 +122,8 @@
<string name="bluetooth_ask_enablement_and_discovery" product="tablet" msgid="5716077575971497298">"平板電腦上的某個應用程式要求開啟藍牙功能 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒,讓其他藍牙裝置在這段時間內可以搜尋到您的平板電腦。您想要允許這項要求嗎?"</string>
<string name="bluetooth_ask_enablement_and_discovery" product="default" msgid="7220210326619399542">"手機上的某個應用程式要求開啟藍牙裝置,這表示您的藍牙連線將開放 <xliff:g id="TIMEOUT">%1$d</xliff:g> 秒,讓其他裝置可在時間內搜尋到您的手機。您想要允許要求嗎?"</string>
<string name="bluetooth_turning_on" msgid="3107102168379705771">"正在開啟藍牙..."</string>
- <string name="bluetooth_auto_connect" msgid="8013003320667198460">"自動連線"</string>
+ <!-- no translation found for bluetooth_auto_connect (8013003320667198460) -->
+ <skip />
<string name="date_and_time" msgid="4114084177056654663">"日期與時間設定"</string>
<string name="date_time_12_hour_sample" msgid="3259617262618020574">"下午 1:00"</string>
<string name="date_time_24_hour_sample" msgid="8916857570746212357">"13:00"</string>
@@ -137,7 +138,7 @@
<string name="intent_sender_startactivity_text" msgid="5080516029580421895">"開始 <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
<string name="intent_sender_resource_label" msgid="6963659726895482829">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
<string name="intent_sender_account_label" msgid="465210404475603404">"帳戶:"</string>
- <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy 設定"</string>
+ <!-- outdated translation 6262282922722097473 --> <string name="proxy_settings_title" msgid="5912878565897294401">"Proxy 設定"</string>
<string name="proxy_settings_summary" msgid="7898928000758321486">"設定全域 HTTP Proxy 和排除清單"</string>
<string name="proxy_clear_text" msgid="5555400754952012657">"清除"</string>
<string name="proxy_port_label" msgid="2623639656638472491">"連接埠"</string>
@@ -220,13 +221,13 @@
<string name="cancel" msgid="6859253417269739139">"取消"</string>
<string name="settings_label" msgid="1626402585530130914">"設定"</string>
<string name="settings_label_launcher" msgid="8344735489639482340">"設定"</string>
- <string name="settings_shortcut" msgid="8597387747077828217">"選取設定捷徑"</string>
+ <!-- outdated translation 3672145147925639262 --> <string name="settings_shortcut" msgid="8597387747077828217">"設定"</string>
<string name="airplane_mode" msgid="8837269988154128601">"飛航模式"</string>
<string name="airplane_mode_summary" msgid="3154817401368780988">"停用所有的無線網路連線"</string>
<string name="airplane_mode_turning_on" msgid="8871739222526957255">"停用無線網路連線中..."</string>
<string name="airplane_mode_turning_off" msgid="3393168549611505996">"啟用無線網路連線中..."</string>
<string name="radio_controls_title" msgid="5868688473587168882">"無線與網路"</string>
- <string name="wireless_networks_settings_title" msgid="3643009077742794212">"無線裝置與網路"</string>
+ <!-- outdated translation 149274247949769551 --> <string name="wireless_networks_settings_title" msgid="3643009077742794212">"無線裝置和網路設定"</string>
<string name="radio_controls_summary" msgid="2998818677094465517">"管理 Wi-Fi、藍牙、飛行模式、行動網路和 VPN"</string>
<string name="roaming" msgid="3596055926335478572">"漫游服務"</string>
<string name="roaming_enable" msgid="3737380951525303961">"漫遊時連線到資料傳輸服務"</string>
@@ -238,7 +239,6 @@
<string name="networks" msgid="6333316876545927039">"選取電信業者"</string>
<string name="sum_carrier_select" msgid="6648929373316748020">"選取電信業者"</string>
<string name="date_and_time_settings_title" msgid="3350640463596716780">"日期與時間"</string>
- <string name="date_and_time_settings_title_setup_wizard" msgid="2391530758339384324">"設定日期和時間"</string>
<string name="date_and_time_settings_summary" msgid="2435705040205950381">"設定日期、時間、時區與格式"</string>
<string name="date_time_auto" msgid="7076906458515908345">"自動判定日期和時間"</string>
<string name="date_time_auto_summaryOn" msgid="4609619490075140381">"使用網路提供的時間"</string>
@@ -255,8 +255,9 @@
<string name="zone_list_menu_sort_by_timezone" msgid="2720190443744884114">"依時區排序"</string>
<string name="date_picker_title" msgid="1338210036394128512">"日期"</string>
<string name="time_picker_title" msgid="483460752287255019">"時間"</string>
- <string name="lock_after_timeout" msgid="940509402681580537">"逾時"</string>
- <string name="lock_after_timeout_summary" msgid="4726009794344934278">"自動關閉螢幕 <xliff:g id="TIMEOUT_STRING">%1$s</xliff:g>後鎖定螢幕"</string>
+ <!-- outdated translation 9100576335787336455 --> <string name="lock_after_timeout" msgid="940509402681580537">"發生逾時錯誤時鎖定裝置"</string>
+ <!-- no translation found for lock_after_timeout_summary (4726009794344934278) -->
+ <skip />
<string name="show_owner_info_on_lockscreen_label" msgid="5074906168357568434">"在鎖定畫面上顯示擁有者資訊"</string>
<string name="owner_info_settings_title" msgid="2723190010708381889">"擁有者資訊"</string>
<string name="owner_info_settings_summary" msgid="3800834657847339570"></string>
@@ -266,62 +267,32 @@
<string name="security_settings_summary" msgid="967393342537986570">"設定我的位置、畫面解鎖、SIM 卡鎖定、認證儲存空間鎖定"</string>
<string name="cdma_security_settings_summary" msgid="6068799952798901542">"設定我的位置、解除鎖定畫面及鎖定認證儲存空間"</string>
<string name="security_passwords_title" msgid="2930627259125138363">"密碼"</string>
- <!-- outdated translation 2288841695457542418 --> <string name="crypt_keeper_settings_title" msgid="4219233835490520414">"裝置加密"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="tablet" msgid="1060273569887301457">"對裝置上的資料進行加密"</string>
- <!-- outdated translation 5790930764432654508 --> <string name="crypt_keeper_encrypt_title" product="default" msgid="1878996487755806122">"對裝置上的資料進行加密"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="tablet" msgid="6291564408810586">"您必須設定裝置解鎖 PIN 或密碼"</string>
- <!-- outdated translation 1447090863225003474 --> <string name="crypt_keeper_encrypt_summary" product="default" msgid="514138079795442371">"您必須設定裝置解鎖 PIN 或密碼"</string>
- <string name="crypt_keeper_encrypted_summary" msgid="1868233637888132906">"已加密"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="tablet" msgid="2150571569618349332">"您可以針對帳戶、設定、已下載的應用程式及其資料、媒體和其他檔案進行加密。一旦您對手機進行加密,則必須恢復原廠設定,才能解除加密狀態,但這樣會清除手機上的所有資料。"\n\n"加密過程可能需要 1 個小時的時間。進行加密前必須將電池充滿,並且在過程中讓手機維持連接電源狀態,直到加密完成為止。如果加密過程中斷,您將失去部分或所有資料。"</string>
- <!-- outdated translation 942926028858386912 --> <string name="crypt_keeper_desc" product="default" msgid="7366703764847750586">"您可以針對帳戶、設定、已下載的應用程式及其資料、媒體和其他檔案進行加密。一旦您對手機進行加密,則必須恢復原廠設定,才能解除加密狀態,但這樣會清除手機上的所有資料。"\n\n"加密過程可能需要 1 個小時的時間。進行加密前必須將電池充滿,並且在過程中讓手機維持連接電源狀態,直到加密完成為止。如果加密過程中斷,您將失去部分或所有資料。"</string>
- <string name="crypt_keeper_button_text" product="tablet" msgid="1189623490604750854">"對平板電腦進行加密"</string>
- <string name="crypt_keeper_button_text" product="default" msgid="2008346408473255519">"對手機進行加密"</string>
- <!-- no translation found for crypt_keeper_low_charge_text (5920622844033087792) -->
- <skip />
- <!-- no translation found for crypt_keeper_unplugged_text (3360883915598669748) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_title (4058971800557767) -->
- <skip />
- <!-- no translation found for crypt_keeper_dialog_need_password_message (17076329416977176) -->
- <skip />
- <string name="crypt_keeper_confirm_title" msgid="3637925350381905012">"確認加密"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="tablet" msgid="2496639211575162172">"確定要對使用者資料進行加密?您無法復原這項操作,也無法中斷加密過程,否則將失去資料!加密過程可能需要 1 個小時的時間。"</string>
- <!-- outdated translation 4150888307809341579 --> <string name="crypt_keeper_final_desc" product="default" msgid="3248595818246515395">"確定要對使用者資料進行加密?您無法復原這項操作,也無法中斷加密過程,否則將失去資料!加密過程可能需要 1 個小時的時間。"</string>
- <string name="crypt_keeper_setup_title" msgid="1783951453124244969">"加密中"</string>
- <!-- no translation found for crypt_keeper_setup_description (3975741105437032042) -->
- <skip />
- <!-- no translation found for crypt_keeper_setup_description (8820144832981707567) -->
- <skip />
- <string name="crypt_keeper_cooldown" msgid="6736063610343230255">"^1 秒內再試一次。"</string>
- <!-- no translation found for crypt_keeper_enter_password (1492603008983893532) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_title (1166918236711686187) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (1075638996134310507) -->
- <skip />
- <!-- no translation found for crypt_keeper_failed_summary (3394708817932222518) -->
- <skip />
- <string name="lock_settings_picker_title" msgid="8665454308380158195">"設定螢幕鎖定"</string>
- <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"設定螢幕鎖定"</string>
+ <!-- outdated translation 3973555216065628262 --> <string name="lock_settings_picker_title" msgid="8665454308380158195">"螢幕解鎖安全性"</string>
+ <!-- outdated translation 1129684221223017902 --> <string name="unlock_set_unlock_launch_picker_title" msgid="4461562893699328786">"設定螢幕鎖定"</string>
<string name="unlock_set_unlock_launch_picker_change_title" msgid="6987228635944678726">"變更螢幕鎖定"</string>
<string name="unlock_set_unlock_launch_picker_change_summary" msgid="2790960639554590668">"變更或停用圖案、PIN 或密碼安全性"</string>
<string name="unlock_set_unlock_launch_picker_enable_summary" msgid="4791110798817242301">"選擇您要鎖定螢幕的方式"</string>
<string name="unlock_set_unlock_off_title" msgid="1613932765246180079">"關閉"</string>
- <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"永不鎖定螢幕"</string>
- <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"不設安全保護"</string>
- <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"不需畫出圖形或輸入 PIN 或密碼,直接解鎖螢幕"</string>
+ <!-- outdated translation 2992485517488881365 --> <string name="unlock_set_unlock_off_summary" msgid="2791013557563587655">"不顯示鎖定畫面"</string>
+ <!-- outdated translation 3760684669884671990 --> <string name="unlock_set_unlock_none_title" msgid="5165705762615690332">"無"</string>
+ <!-- outdated translation 2658550480388272618 --> <string name="unlock_set_unlock_none_summary" msgid="2609139908913114644">"停用螢幕解鎖安全性"</string>
<string name="unlock_set_unlock_pattern_title" msgid="2912067603917311700">"圖形"</string>
- <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"需畫出圖形替螢幕解鎖"</string>
+ <!-- outdated translation 3018395214738645405 --> <string name="unlock_set_unlock_pattern_summary" msgid="8467282436608077882">"畫出解鎖圖形以解鎖螢幕"</string>
<string name="unlock_set_unlock_pin_title" msgid="5846029709462329515">"PIN"</string>
- <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"需輸入數字 PIN 替螢幕解鎖"</string>
+ <!-- outdated translation 4131169672844263316 --> <string name="unlock_set_unlock_pin_summary" msgid="5556722736289132512">"輸入解鎖數字 PIN 以解鎖螢幕"</string>
<string name="unlock_set_unlock_password_title" msgid="8775603825675090937">"密碼"</string>
- <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"需輸入密碼替螢幕解鎖"</string>
+ <!-- outdated translation 4623254789833899286 --> <string name="unlock_set_unlock_password_summary" msgid="7871968012198279034">"輸入解鎖密碼以解鎖螢幕"</string>
<string name="unlock_set_unlock_disabled_summary" msgid="8816944391772300580">"已由遠端裝置管理員停用"</string>
- <string name="unlock_set_unlock_mode_off" msgid="378729687629105388">"關閉"</string>
- <string name="unlock_set_unlock_mode_none" msgid="7953821968316697309">"不設安全保護"</string>
- <string name="unlock_set_unlock_mode_pattern" msgid="464022606293547390">"以解鎖圖形設定安全保護"</string>
- <string name="unlock_set_unlock_mode_pin" msgid="1379365142708807163">"以 PIN 設定安全保護"</string>
- <string name="unlock_set_unlock_mode_password" msgid="6955742995327081060">"以密碼設定安全保護"</string>
+ <!-- no translation found for unlock_set_unlock_mode_off (378729687629105388) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_none (7953821968316697309) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pattern (464022606293547390) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_pin (1379365142708807163) -->
+ <skip />
+ <!-- no translation found for unlock_set_unlock_mode_password (6955742995327081060) -->
+ <skip />
<string name="unlock_disable_lock_title" msgid="1427036227416979120">"關閉螢幕鎖定"</string>
<string name="unlock_disable_lock_pattern_summary" msgid="6801602880568869201">"移除解鎖圖形"</string>
<string name="unlock_disable_lock_pin_summary" msgid="8856842745366993387">"移除解鎖 PIN"</string>
@@ -368,22 +339,27 @@
<string name="lockpassword_password_recently_used" msgid="2739642871806935825">"裝置管理員不允許使用最近用過的密碼"</string>
<string name="lockpassword_ok_label" msgid="313822574062553672">"確定"</string>
<string name="lockpassword_cancel_label" msgid="8818529276331121899">"取消"</string>
- <string name="lockpattern_tutorial_cancel_label" msgid="6431583477570493261">"取消"</string>
- <string name="lockpattern_tutorial_continue_label" msgid="3559793618653400434">"繼續"</string>
+ <!-- no translation found for lockpattern_tutorial_cancel_label (6431583477570493261) -->
+ <skip />
+ <!-- no translation found for lockpattern_tutorial_continue_label (3559793618653400434) -->
+ <skip />
<string name="device_admin_title" msgid="3562216873644263804">"裝置管理"</string>
- <string name="manage_device_admin" msgid="5059296715271077278">"裝置管理員"</string>
- <string name="manage_device_admin_summary" msgid="7672709110988761075">"查看或撤銷裝置管理員"</string>
+ <!-- outdated translation 3864120111085199551 --> <string name="manage_device_admin" msgid="5059296715271077278">"選取裝置管理員"</string>
+ <!-- outdated translation 915390201809231575 --> <string name="manage_device_admin_summary" msgid="7672709110988761075">"新增或移除裝置管理員"</string>
<string name="bluetooth_quick_toggle_title" msgid="1037056952714061893">"藍牙"</string>
<string name="bluetooth_quick_toggle_summary" msgid="5293641680139873341">"開啟藍牙"</string>
<string name="bluetooth_settings" msgid="2725796451253089609">"藍牙設定"</string>
<string name="bluetooth_settings_title" msgid="2824020086246268296">"藍牙設定"</string>
<string name="bluetooth_settings_summary" msgid="2091062709530570462">"管理連線、設定裝置名稱與可偵測性"</string>
<string name="bluetooth_pairing_request" msgid="6385750334766370310">"藍牙配對要求"</string>
- <string name="bluetooth_enter_pin_msg" msgid="1499285355129256289">\n"輸入 PIN 與「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」進行配對 (如 0000 或 1234)。您可能也需要在藍牙裝置上輸入相同的 PIN。"</string>
- <string name="bluetooth_enter_passkey_msg" msgid="8301499416158195044">\n"請輸入密碼金鑰與「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」進行配對。"</string>
+ <!-- no translation found for bluetooth_enter_pin_msg (1499285355129256289) -->
+ <skip />
+ <!-- no translation found for bluetooth_enter_passkey_msg (8301499416158195044) -->
+ <skip />
<string name="bluetooth_confirm_passkey_msg" msgid="1205362283945104263">"如要與「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」配對,請確定裝置顯示以下密碼金鑰:<xliff:g id="PASSKEY">%2$s</xliff:g>。"</string>
<string name="bluetooth_incoming_pairing_msg" msgid="1076613564387784476">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n"想要進行配對。"</string>
- <string name="bluetooth_display_passkey_pin_msg" msgid="9139892462102104755">"在「<xliff:g id="DEVICE_NAME">%1$s</xliff:g>」上輸入「<xliff:g id="PASSKEY">%2$s</xliff:g>」進行配對,然後按下 Return 或 Enter 鍵。"</string>
+ <!-- no translation found for bluetooth_display_passkey_pin_msg (9139892462102104755) -->
+ <skip />
<string name="bluetooth_pairing_accept" msgid="6163520056536604875">"配對"</string>
<string name="bluetooth_pairing_decline" msgid="930951069988011471">"不要配對"</string>
<string name="bluetooth_remote_device" msgid="2406662802908395389">"藍牙裝置"</string>
@@ -406,14 +382,18 @@
<string name="bluetooth_device_context_connect_advanced" msgid="2643129703569788771">"選項..."</string>
<string name="bluetooth_connect_specific_profiles_title" msgid="6952214406025825164">"連線到..."</string>
<string name="bluetooth_profile_a2dp" msgid="3259633293424539529">"媒體"</string>
- <string name="bluetooth_profile_headset" msgid="81844079120986198">"免持聽筒"</string>
+ <!-- outdated translation 2252738313413646294 --> <string name="bluetooth_profile_headset" msgid="81844079120986198">"平板電腦"</string>
<string name="bluetooth_profile_opp" msgid="3799470046565284440">"傳輸"</string>
<string name="bluetooth_profile_hid" msgid="3000858580917633478">"輸入裝置"</string>
<string name="bluetooth_profile_pan" msgid="4225813400648547154">"數據連線"</string>
- <string name="bluetooth_disconnect_a2dp_profile" msgid="3524648279150937177">"即將中斷 <xliff:g id="DEVICE_NAME">%1$s</xliff:g> 與媒體音訊的連線。"</string>
- <string name="bluetooth_disconnect_headset_profile" msgid="8635908811168780720">"即將中斷 <xliff:g id="DEVICE_NAME">%1$s</xliff:g> 與免持聽筒音訊的連線。"</string>
- <string name="bluetooth_disconnect_hid_profile" msgid="3282295189719352075">"即將中斷 <xliff:g id="DEVICE_NAME">%1$s</xliff:g> 與輸入裝置的連線。"</string>
- <string name="bluetooth_disconnect_pan_profile" msgid="877883150720888525">"即將中斷 <xliff:g id="DEVICE_NAME">%1$s</xliff:g> 的網際網路共用連線。"</string>
+ <!-- no translation found for bluetooth_disconnect_a2dp_profile (3524648279150937177) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_headset_profile (8635908811168780720) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_hid_profile (3282295189719352075) -->
+ <skip />
+ <!-- no translation found for bluetooth_disconnect_pan_profile (877883150720888525) -->
+ <skip />
<string name="bluetooth_device_advanced_title" msgid="528816860793581131">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g> 選項"</string>
<string name="bluetooth_device_advanced_device_actions_title" msgid="3793430949811946844">"裝置動作"</string>
<string name="bluetooth_device_advanced_online_mode_title" msgid="3689050071425683114">"連線"</string>
@@ -431,7 +411,8 @@
<string name="bluetooth_headset_profile_summary_use_for" msgid="8705753622443862627">"用於電話音訊"</string>
<string name="bluetooth_opp_profile_summary_use_for" msgid="1255674547144769756">"用於傳輸檔案"</string>
<string name="bluetooth_hid_profile_summary_use_for" msgid="232727040453645139">"用於輸入"</string>
- <string name="bluetooth_pan_profile_summary_use_for" msgid="5664884523822068653">"用於網際網路存取"</string>
+ <!-- no translation found for bluetooth_pan_profile_summary_use_for (5664884523822068653) -->
+ <skip />
<string name="bluetooth_dock_settings" msgid="3218335822716052885">"座架設定"</string>
<string name="bluetooth_dock_settings_title" msgid="5543069893044375188">"使用座架播放音訊"</string>
<string name="bluetooth_dock_settings_headset" msgid="1001821426078644650">"當成手機喇叭"</string>
@@ -439,7 +420,9 @@
<string name="bluetooth_dock_settings_remember" msgid="5551459057010609115">"記住設定"</string>
<string name="nfc_quick_toggle_title" msgid="6769159366307299004">"NFC"</string>
<string name="nfc_quick_toggle_summary" msgid="1988408027741447231">"使用近距離無線通訊讀取和交換標記"</string>
- <string name="nfc_toggle_error" msgid="2233172102497535522">"發生錯誤。"</string>
+ <!-- no translation found for nfc_toggle_error (2233172102497535522) -->
+ <!-- no translation found for nfc_toggle_error (8998642457947607263) -->
+ <skip />
<string name="wifi_quick_toggle_title" msgid="874495178395350104">"Wi-Fi"</string>
<string name="wifi_quick_toggle_summary" msgid="1047950931623694366">"開啟 Wi-Fi"</string>
<string name="wifi_settings" msgid="4746946030627213196">"Wi-Fi 設定"</string>
@@ -452,9 +435,6 @@
<string name="wifi_fail_to_scan" msgid="6194542252808587669">"無法掃描網路"</string>
<string name="wifi_notify_open_networks" msgid="3755768188029653293">"網路通知"</string>
<string name="wifi_notify_open_networks_summary" msgid="3038290727701553612">"有開放網路時通知我"</string>
- <!-- outdated translation 5261009844232680030 --> <string name="wifi_setting_sleep_policy_title" msgid="2256739245628081979">"Wi-Fi 休眠設定"</string>
- <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"指定何時要從 Wi-Fi 切換到行動數據"</string>
- <!-- outdated translation 5279411355928343243 --> <string name="wifi_setting_sleep_policy_error" msgid="8174902072673071961">"設定休眠政策時發生問題。"</string>
<string name="wifi_add_network" msgid="1671334951296205616">"新增 Wi-Fi 網路"</string>
<string name="wifi_access_points" msgid="2664629396767022441">"Wi-Fi 網路"</string>
<string name="wifi_menu_scan" msgid="1470911530412095868">"掃描"</string>
@@ -464,10 +444,8 @@
<string name="wifi_menu_modify" msgid="2068554918652440105">"修改網路"</string>
<string name="wifi_network_setup" msgid="7974851890019344870">"網路設定"</string>
<string name="wifi_wps_pin" msgid="5471842298708321115">"從存取點輸入 Pin"</string>
- <string name="wifi_wps_setup_title" msgid="150518971269252336">"WPS 設定"</string>
+ <string name="wifi_wps_pin_method_configuration" msgid="9019042137789692817">"WPS PIN 方法設定"</string>
<string name="wifi_wps_pin_output" msgid="8682102965680650853">"在存取點上輸入 PIN <xliff:g id="WPS_PIN">%1$s</xliff:g>"</string>
- <string name="wifi_wps_in_progress" msgid="2776555137392461525">"WPS 已在處理中,需要數十秒才能完成"</string>
- <string name="wifi_wps_failed" msgid="2277409652621482331">"無法啟動 WPS,請再試一次"</string>
<string name="wifi_ssid" msgid="641393708309146745">"網路 SSID"</string>
<string name="wifi_security" msgid="6603611185592956936">"安全性"</string>
<string name="wifi_signal" msgid="5514120261628065287">"訊號強度"</string>
@@ -496,8 +474,10 @@
<string name="wifi_forget" msgid="8168174695608386644">"清除"</string>
<string name="wifi_save" msgid="3331121567988522826">"儲存"</string>
<string name="wifi_cancel" msgid="6763568902542968964">"取消"</string>
- <string name="wifi_wps_overlap_error" msgid="6820987241637459748">"已偵測到其他 WPS 工作階段,請在幾分鐘後重試"</string>
<string name="wifi_advanced_titlebar" msgid="5419052271935350999">"進階"</string>
+ <string name="wifi_setting_sleep_policy_title" msgid="1367731352485585528">"Wi-Fi 休眠設定"</string>
+ <string name="wifi_setting_sleep_policy_summary" msgid="7573693311804602041">"指定何時要從 Wi-Fi 切換到行動數據"</string>
+ <string name="wifi_setting_sleep_policy_error" msgid="5103670439972135148">"休眠設定時發生問題。"</string>
<string name="wifi_setting_frequency_band_title" msgid="7493768705046080060">"Wi-Fi 頻帶"</string>
<string name="wifi_setting_frequency_band_summary" msgid="3250740757118009784">"指定作業的頻率範圍"</string>
<string name="wifi_setting_frequency_band_error" msgid="837281974489794378">"設定頻帶時發生問題。"</string>
@@ -524,7 +504,7 @@
<string name="wifi_tether_configure_subtext" msgid="1927454307836232128">"<xliff:g id="NETWORK_SSID">%1$s</xliff:g> <xliff:g id="NETWORK_SECURITY">%2$s</xliff:g> 可攜式 Wi-Fi 無線基地台"</string>
<string name="wifi_tether_configure_ssid_default" msgid="8467525402622138547">"Android 無線基地台"</string>
<string name="sound_settings_title" msgid="8735891486683305886">"音效"</string>
- <string name="display_settings_title" msgid="2378894265964357591">"螢幕"</string>
+ <!-- outdated translation 1708697328627382561 --> <string name="display_settings_title" msgid="2378894265964357591">"顯示"</string>
<string name="sound_settings" msgid="5007659014828162881">"音效設定"</string>
<string name="silent_mode_title" msgid="3181479108593217704">"靜音模式"</string>
<string name="silent_mode_summary" msgid="3309650676072917899">"將所有非媒體音效及鬧鐘音效設為靜音"</string>
@@ -595,8 +575,9 @@
<string name="accelerometer_summary_off" product="default" msgid="5485489363715740761">"旋轉手機時自動改變顯示方向"</string>
<string name="brightness" msgid="2354961343555249270">"亮度"</string>
<string name="brightness_summary" msgid="838917350127550703">"調整螢幕亮度"</string>
- <string name="screen_timeout" msgid="6962654593018319466">"逾時"</string>
- <string name="screen_timeout_summary" msgid="4471347210332380587">"<xliff:g id="TIMEOUT_DESCRIPTION">%1$s</xliff:g>後自動關閉螢幕"</string>
+ <!-- outdated translation 4882669461447531301 --> <string name="screen_timeout" msgid="6962654593018319466">"螢幕逾時"</string>
+ <!-- no translation found for screen_timeout_summary (4471347210332380587) -->
+ <skip />
<string name="automatic_brightness" msgid="5014143533884135461">"自動調整亮度"</string>
<string name="sim_lock_settings" msgid="3392331196873564292">"SIM 卡鎖定設定"</string>
<string name="sim_lock_settings_category" msgid="5136244267576697004">"設定 SIM 卡鎖定"</string>
@@ -633,14 +614,13 @@
<string name="device_info_not_available" msgid="8062521887156825182">"無法取得"</string>
<string name="device_status_activity_title" msgid="1411201799384697904">"狀態"</string>
<string name="device_status" msgid="607405385799807324">"狀態"</string>
- <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"電池、網路狀態及其他資訊"</string>
+ <!-- outdated translation 1393072115751923019 --> <string name="device_status_summary" product="tablet" msgid="3292717754497039686">"IMEI、電話號碼、訊號等。"</string>
<string name="device_status_summary" product="default" msgid="2599162787451519618">"電話號碼、訊號等。"</string>
<string name="storage_settings" msgid="4211799979832404953">"儲存空間"</string>
<string name="storage_settings_title" msgid="8746016738388094064">"儲存設定"</string>
<string name="storage_settings_summary" product="nosdcard" msgid="3543813623294870759">"卸載 USB 儲存裝置,瀏覽可用的儲存裝置"</string>
<string name="storage_settings_summary" product="default" msgid="9176693537325988610">"卸載 SD 卡,檢視可用儲存媒體。"</string>
- <string name="status_number" product="tablet" msgid="1138837891091222272">"MDN"</string>
- <string name="status_number" product="default" msgid="5123197324870153205">"我的電話號碼"</string>
+ <string name="status_number" msgid="5123197324870153205">"我的電話號碼"</string>
<string name="status_min_number" msgid="3519504522179420597">"MIN"</string>
<string name="status_prl_version" msgid="8499039751817386529">"PRL 版本"</string>
<string name="status_meid_number" msgid="1751442889111731088">"MEID"</string>
@@ -658,11 +638,12 @@
<string name="internal_memory" msgid="9129595691484260784">"內存空間"</string>
<string name="sd_memory" product="nosdcard" msgid="2510246194083052841">"USB 儲存裝置"</string>
<string name="sd_memory" product="default" msgid="151871913888051515">"SD 卡"</string>
- <string name="memory_available" msgid="5052397223077021181">"可用空間"</string>
- <string name="memory_size" msgid="5458889090691922288">"大小總計"</string>
- <string name="memory_calculating_size" msgid="2188358544203768588">"計算中..."</string>
- <string name="memory_apps_usage" msgid="9079237985722858506">"應用程式"</string>
- <string name="memory_media_usage" msgid="3738830697707880405">"媒體"</string>
+ <string name="memory_available" msgid="418542433817289474">"可用空間"</string>
+ <string name="memory_size" msgid="6629067715017232195">"總空間"</string>
+ <!-- no translation found for memory_calculating_size (2188358544203768588) -->
+ <skip />
+ <string name="memory_apps_usage" msgid="5818922761412589352">"應用程式使用量"</string>
+ <string name="memory_media_usage" msgid="5655498435493764372">"媒體使用量"</string>
<string name="sd_eject" product="nosdcard" msgid="4988563376492400073">"卸載共用儲存裝置"</string>
<string name="sd_eject" product="default" msgid="6915293408836853020">"卸載 SD 卡"</string>
<string name="sd_eject_summary" product="nosdcard" msgid="5009296896648072891">"卸載內部 USB 儲存裝置"</string>
@@ -671,12 +652,12 @@
<string name="sd_insert_summary" product="default" msgid="2048640010381803841">"插入要掛載的 SD 卡"</string>
<string name="sd_mount" product="nosdcard" msgid="8966695015677343116">"掛接 USB 儲存裝置"</string>
<string name="sd_mount" product="default" msgid="5940523765187704135">"掛載 SD 卡"</string>
- <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"掛接 USB 儲存裝置"</string>
+ <!-- outdated translation 6733254203291665551 --> <string name="sd_mount_summary" product="nosdcard" msgid="1794150364965145726">"掛接內部 USB 儲存裝置"</string>
<string name="sd_mount_summary" product="default" msgid="4936591681679097699">"掛載 SD 卡"</string>
<string name="sd_format" product="nosdcard" msgid="2148179271623099054">"清除 USB 儲存裝置"</string>
<string name="sd_format" product="default" msgid="2576054280507119870">"清除 SD 卡"</string>
<string name="sd_format_summary" product="nosdcard" msgid="6331905044907914603">"清除內部 USB 儲存裝置中的所有資料,例如音樂和相片"</string>
- <string name="sd_format_summary" product="default" msgid="212703692181793109">"清除 SD 卡中的所有資料,例如音樂和相片"</string>
+ <!-- outdated translation 6331905044907914603 --> <string name="sd_format_summary" product="default" msgid="212703692181793109">"清除內部 USB 儲存裝置中的所有資料,例如音樂和相片"</string>
<string name="sd_unavailable" msgid="8580107589533213904">"無法取得資訊"</string>
<string name="read_only" msgid="6702420168629076340">" (唯讀)"</string>
<string name="dlg_confirm_unmount_title" product="nosdcard" msgid="2349876662428231297">"無法卸載 USB 儲存裝置"</string>
@@ -732,9 +713,8 @@
<string name="master_clear_desc" product="tablet" msgid="1305457209008369655">"這會清除您平板電腦"<b>"內部儲存裝置"</b>"中的所有資料,包含:"\n\n<li>"您的 Google 帳戶"</li>\n<li>"系統和應用程式資料及設定"</li>\n<li>"已下載的應用程式"</li></string>
<string name="master_clear_desc" product="default" msgid="2950536633526374209">"這會清除您手機"<b>"內部儲存裝置"</b>"中的所有資料,包含:"\n\n<li>"您的 Google 帳戶"</li>\n<li>"系統和應用程式資料及設定"</li>\n<li>"已下載的應用程式"</li></string>
<string name="master_clear_accounts" product="default" msgid="6412857499147999073">\n\n"您目前已登入下列帳戶:"\n</string>
- <string name="master_clear_desc_also_erases_external" msgid="1903185203791274237"><li>"音樂"</li>\n<li>"相片"</li>\n<li>"其他使用者資料"</li></string>
<string name="master_clear_desc_erase_external_storage" product="nosdcard" msgid="4740866328425123395">\n\n"如要一併清除音樂、圖片及其他使用者資料,則需清除 "<b>"USB 儲存裝置"</b>"。"</string>
- <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"如要一併清除音樂、圖片及其他使用者資料,請清除 "<b>"SD 卡"</b>"。"</string>
+ <!-- outdated translation 4740866328425123395 --> <string name="master_clear_desc_erase_external_storage" product="default" msgid="7339100478676372901">\n\n"如要一併清除音樂、圖片及其他使用者資料,則需清除 "<b>"USB 儲存裝置"</b>"。"</string>
<string name="erase_external_storage" product="nosdcard" msgid="969364037450286809">"清除 USB 儲存裝置"</string>
<string name="erase_external_storage" product="default" msgid="1397239046334307625">"清除 SD 卡"</string>
<string name="erase_external_storage_description" product="nosdcard" msgid="444834593696342279">"清除內部 USB 儲存裝置中的所有資料,例如音樂或相片。"</string>
@@ -807,9 +787,9 @@
<string name="assisted_gps" msgid="4649317129586736885">"使用輔助 GPS"</string>
<string name="assisted_gps_enabled" msgid="8751899609589792803">"使用伺服器輔助 GPS (取消勾選即可降低網路使用量)"</string>
<string name="assisted_gps_disabled" msgid="6982698333968010748">"使用伺服器輔助 GPS (取消勾選即可提升 GPS 效能)"</string>
- <string name="use_location_title" msgid="3659340070401464551">"將位置資訊用於 Google 搜尋"</string>
- <string name="use_location_summary_disabled" msgid="6518008620918354403">"將位置資訊用於 Google 搜尋等服務"</string>
- <string name="use_location_summary_enabled" msgid="8110246289085796179">"將位置資訊用於改善 Google 搜尋結果等服務"</string>
+ <!-- outdated translation 3214740644957841179 --> <string name="use_location_title" msgid="3659340070401464551">"將位置資訊用於 Google 搜尋"</string>
+ <!-- outdated translation 1876901471649359806 --> <string name="use_location_summary_disabled" msgid="6518008620918354403">"將位置資訊用於 Google 搜尋和其他 Google 服務"</string>
+ <!-- outdated translation 984549156918597265 --> <string name="use_location_summary_enabled" msgid="8110246289085796179">"系統已採用位置資訊來改善 Google 搜尋結果和其他 Google 服務"</string>
<string name="about_settings" product="tablet" msgid="593457295516533765">"關於平板電腦"</string>
<string name="about_settings" product="default" msgid="1743378368185371685">"關於手機"</string>
<string name="about_settings_summary" msgid="3371517697156165959">"查看法律資訊、狀態、軟體版本"</string>
@@ -836,11 +816,11 @@
<string name="lockpassword_confirm_your_pin_header" msgid="49038294648213197">"確認 PIN"</string>
<string name="lockpassword_confirm_passwords_dont_match" msgid="6850677112663979120">"密碼不符"</string>
<string name="lockpassword_confirm_pins_dont_match" msgid="4757532830594400147">"PIN 不符"</string>
- <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"選擇解鎖方式"</string>
+ <string name="lockpassword_choose_lock_generic_header" msgid="3811438094903786145">"解鎖選項"</string>
<string name="lockpassword_password_set_toast" msgid="4875050283108629383">"已設定密碼"</string>
<string name="lockpassword_pin_set_toast" msgid="6011826444725291475">"已設定 PIN"</string>
<string name="lockpassword_pattern_set_toast" msgid="6867259621331406236">"已設定圖形"</string>
- <string name="lock_settings_title" msgid="8943058958424073651">"鎖定畫面"</string>
+ <!-- outdated translation 975088518210629938 --> <string name="lock_settings_title" msgid="8943058958424073651">"螢幕解鎖"</string>
<string name="lockpattern_change_lock_pattern_label" msgid="5679630792003440352">"變更解鎖圖形"</string>
<string name="lockpattern_change_lock_pin_label" msgid="266707138486731661">"變更解鎖 PIN"</string>
<string name="lockpattern_need_to_unlock" msgid="757935356911054465">"確認儲存的圖形"</string>
@@ -870,7 +850,10 @@
<string name="next_button_label" msgid="8890792540116568321">"下一步"</string>
<string name="lock_title" product="tablet" msgid="2909697418179419990">"保護平板電腦的安全"</string>
<string name="lock_title" product="default" msgid="4059246467204273930">"手機安全設定"</string>
- <string name="lock_intro_message" product="tablet" msgid="3692151094288835065">"建立個人螢幕解鎖圖形,避免有人擅自使用您的平板電腦。在下個畫面中,手指以任意順序連續按螢幕中的點,至少有四點要連結。"\n\n"準備好要開始了嗎?請輕觸 [下一步]。"</string>
+ <!-- unknown placeholder TAG_FONT_0 in lock_intro_message -->
+ <skip />
+ <!-- no translation found for lock_intro_message (3692151094288835065) -->
+ <skip />
<string name="lock_intro_message" product="default" msgid="9100785646737118042"><font size="17">" 建立個人螢幕解鎖圖形,可避免手機在未經授權的狀態下遭人使用 "\n<font height="17">\n</font><b>" 1 "</b>" 在下一個畫面中,您將可檢視範例圖形繪畫示範。"\n<font height="17">\n</font><b>" 2 "</b>" 準備好後,便可畫出個人解鎖圖形。您可以嘗試不同的圖形,但需要至少連接四點。 "\n<font height="17">\n</font><b>" 3 "</b>" 再次畫出圖形以確認。"\n<font height="17">\n</font><b>" 準備開始了嗎?點一下 [繼續]"</b>"。"\n<font height="3">\n</font>" 如要維持不受保護的狀態,請點一下 [取消]。"</font></string>
<string name="manageapplications_settings_title" msgid="5712405848153426706">"管理應用程式"</string>
<string name="manageapplications_settings_summary" msgid="6097117021500651232">"管理及移除已安裝的應用程式"</string>
@@ -893,8 +876,6 @@
<string name="total_size_label" msgid="1048676419552557254">"總共"</string>
<string name="application_size_label" msgid="5055196275624686382">"應用程式"</string>
<string name="data_size_label" msgid="8679376373625710107">"資料"</string>
- <string name="external_size_label" product="nosdcard" msgid="4465530017830945766">"USB 儲存裝置"</string>
- <string name="external_size_label" product="default" msgid="2107155737635944440">"SD 卡"</string>
<string name="uninstall_text" msgid="3644892466144802466">"解除安裝"</string>
<string name="disable_text" msgid="6544054052049395202">"停用"</string>
<string name="enable_text" msgid="9217362512327828987">"啟用"</string>
@@ -991,15 +972,15 @@
<string name="runningservicedetails_stop_dlg_title" msgid="4253292537154337233">"停止系統服務?"</string>
<string name="runningservicedetails_stop_dlg_text" product="tablet" msgid="5420033091144016389">"您確定要停止這項系統服務嗎?如果停止的話,您的平板電腦上的某些功能可能會停止正常運作,待您重新開機後才會恢復正常。"</string>
<string name="runningservicedetails_stop_dlg_text" product="default" msgid="6929716497425738387">"您確定要停止這項系統服務嗎?如果停止的話,您的某些手機功能可能會停止正常運作,待您重新開機後才會恢復正常。"</string>
- <string name="language_settings" msgid="5292716747264442359">"語言與輸入裝置"</string>
- <string name="language_keyboard_settings_title" msgid="243220021717425813">"語言與輸入裝置"</string>
+ <!-- outdated translation 2939555761536357092 --> <string name="language_settings" msgid="5292716747264442359">"地區設定與文字"</string>
+ <!-- outdated translation 3455826933385341107 --> <string name="language_keyboard_settings_title" msgid="243220021717425813">"語言與鍵盤設定"</string>
<string name="language_settings_category" msgid="2288258489940617043">"語言設定"</string>
<string name="keyboard_settings_category" msgid="7060453865544070642">"鍵盤設定"</string>
<string name="phone_language" msgid="1165758957501090679">"選取語言"</string>
<string name="phone_language_summary" msgid="3871309445655554211"></string>
<string name="auto_replace" msgid="6199184757891937822">"自動替換"</string>
<string name="auto_replace_summary" msgid="370288728200084466">"修改不正確的字"</string>
- <string name="auto_caps" msgid="6379232078052591265">"自動大寫"</string>
+ <!-- outdated translation 581633131114124121 --> <string name="auto_caps" msgid="6379232078052591265">"自動大寫"</string>
<string name="auto_caps_summary" msgid="6358102538315261466">"句首字母大寫"</string>
<string name="auto_punctuate" msgid="4595367243950425833">"自動標點"</string>
<string name="hardkeyboard_category" msgid="5957168411305769899">"實體鍵盤設定"</string>
@@ -1033,17 +1014,27 @@
<string name="quick_launch_display_mode_shortcuts" msgid="4177934019174169042">"快速鍵"</string>
<string name="input_methods_settings_title" msgid="6800066636850553887">"文字輸入法"</string>
<string name="input_method" msgid="5434026103176856164">"輸入方式"</string>
- <string name="current_input_method" msgid="2146807723398303917">"目前的輸入方式"</string>
- <string name="input_method_selector" msgid="4311213129681430709">"輸入方式選取工具"</string>
- <string name="input_method_selector_show_automatically_title" msgid="1001612945471546158">"自動"</string>
- <string name="input_method_selector_always_show_title" msgid="3891824124222371634">"永遠顯示"</string>
- <string name="input_method_selector_always_hide_title" msgid="7699647095118680424">"永遠隱藏"</string>
- <string name="configure_input_method" msgid="7773992829158322455">"設定輸入方式"</string>
- <string name="input_method_settings" msgid="5801295625486269553">"設定"</string>
- <string name="active_input_method_subtypes" msgid="3596398805424733238">"要用的輸入方式"</string>
- <string name="use_system_language_to_select_input_method_subtypes" msgid="3346751753141428573">"使用系統設定"</string>
+ <!-- no translation found for current_input_method (2146807723398303917) -->
+ <skip />
+ <!-- no translation found for input_method_selector (4311213129681430709) -->
+ <skip />
+ <!-- no translation found for input_method_selector_show_automatically_title (1001612945471546158) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_show_title (3891824124222371634) -->
+ <skip />
+ <!-- no translation found for input_method_selector_always_hide_title (7699647095118680424) -->
+ <skip />
+ <!-- no translation found for configure_input_method (7773992829158322455) -->
+ <skip />
+ <!-- no translation found for input_method_settings (5801295625486269553) -->
+ <skip />
+ <!-- no translation found for active_input_method_subtypes (3596398805424733238) -->
+ <skip />
+ <!-- no translation found for use_system_language_to_select_input_method_subtypes (3346751753141428573) -->
+ <skip />
<string name="input_methods_settings_label_format" msgid="6002887604815693322">"<xliff:g id="IME_NAME">%1$s</xliff:g> 設定"</string>
- <string name="input_methods_and_subtype_enabler_title" msgid="4018402267502337338">"選取要用的輸入方式"</string>
+ <!-- no translation found for input_methods_and_subtype_enabler_title (4018402267502337338) -->
+ <skip />
<string name="onscreen_keyboard_settings_summary" msgid="5841558383556238653">"螢幕鍵盤設定"</string>
<string name="builtin_keyboard_settings_title" msgid="5274990495405941804">"內建鍵盤"</string>
<string name="builtin_keyboard_settings_summary" msgid="7990296351888096836">"內建實體鍵盤設定"</string>
@@ -1106,8 +1097,9 @@
<string name="wifi_on_time" msgid="6310209835617490616">"開啟 Wi-Fi 的時間"</string>
<string name="bluetooth_on_time" msgid="6157799524996162271">"開啟 Wi-Fi 的時間"</string>
<string name="usage_name_percent" msgid="7976919382448235858">"<xliff:g id="NAME">%1$s</xliff:g> - <xliff:g id="NUMBER">%2$s</xliff:g><xliff:g id="PERCENT">%%</xliff:g>"</string>
- <string name="history_details_title" msgid="3608240585315506067">"詳細記錄"</string>
- <string name="details_title" msgid="3792801565213935385">"詳細使用狀況"</string>
+ <!-- no translation found for history_details_title (3608240585315506067) -->
+ <skip />
+ <!-- outdated translation 7564809986329021063 --> <string name="details_title" msgid="3792801565213935385">"電池使用狀況詳細資料"</string>
<string name="details_subtitle" msgid="32593908269911734">"使用狀況詳細資訊"</string>
<string name="controls_subtitle" msgid="390468421138288702">"調整電力使用"</string>
<string name="packages_subtitle" msgid="4736416171658062768">"已包含封裝檔案"</string>
@@ -1242,7 +1234,8 @@
<string name="vpn_ppp_negotiation_failed_dialog_msg" msgid="4611293656718340994">"伺服器協商失敗;伺服器不同意您的加密選項。要查看您的加密設定嗎?"</string>
<string name="vpn_type_title" msgid="6392933604218676224">"新增 VPN"</string>
<string name="vpn_add_new_vpn" msgid="5438260689052714550">"新增 VPN"</string>
- <string name="vpn_details_title" msgid="418806440938510331">"VPN 詳細資訊"</string>
+ <!-- no translation found for vpn_details_title (418806440938510331) -->
+ <skip />
<string name="vpn_edit_title_add" msgid="2121313217989682890">"新增 <xliff:g id="NAME">%s</xliff:g> VPN"</string>
<string name="vpn_edit_title_edit" msgid="2457278794066617935">"<xliff:g id="NAME">%s</xliff:g>的詳細資料"</string>
<string name="vpns" msgid="3148141862835492816">"VPN"</string>
@@ -1285,31 +1278,44 @@
<string name="vpn_settings_summary" msgid="8849924181594963972">"設定與管理虛擬私人網路 (VPN)"</string>
<string name="vpn_secret_unchanged" msgid="8700613973594154529">"(未變更)"</string>
<string name="vpn_secret_not_set" msgid="1037792636371641845">"(未設定)"</string>
- <string name="credentials_title" msgid="4446234003860769883">"憑證儲存空間"</string>
+ <string name="credentials_category" msgid="8536992056377271234">"認證儲存空間"</string>
<string name="credentials_access" msgid="4843187230913860492">"使用安全認證"</string>
<string name="credentials_access_summary" msgid="319662078718574168">"允許應用程式存取安全認證及其他認證"</string>
- <string name="credentials_install" product="nosdcard" msgid="1395748667227729987">"從 USB 儲存裝置安裝"</string>
- <string name="credentials_install" product="default" msgid="953914549998062317">"從 SD 卡安裝"</string>
- <string name="credentials_install_summary" product="nosdcard" msgid="3679446246093149828">"從 USB 儲存裝置安裝憑證"</string>
- <string name="credentials_install_summary" product="default" msgid="5737658257407822713">"從 SD 卡安裝憑證"</string>
- <string name="credentials_set_password" msgid="9104473585811899989">"設定密碼"</string>
- <string name="credentials_set_password_summary" msgid="6756719720826053228">"設定或變更憑證儲存空間的密碼"</string>
- <string name="credentials_reset" msgid="3239382277144980418">"清除憑證"</string>
- <string name="credentials_reset_summary" msgid="3810369467217453606">"移除所有內容並重設密碼"</string>
<string name="credentials_unlock" msgid="1463040326264133844">"輸入密碼"</string>
- <string name="credentials_unlock_hint" msgid="5889551635843338639">"輸入憑證儲存空間的密碼。"</string>
- <string name="credentials_password_hint" msgid="4915128717409363024">"設定憑證儲存空間的密碼,密碼至少必須包含 8 個字元。"</string>
+ <string name="credentials_unlock_hint" msgid="594679530407918031">"輸入認證儲存空間密碼。"</string>
+ <string name="credentials_install_certificates" product="nosdcard" msgid="619171634797689906">"從 USB 儲存裝置安裝"</string>
+ <string name="credentials_install_certificates" product="default" msgid="177337517568022236">"從 SD 卡安裝"</string>
+ <string name="credentials_install_certificates_summary" product="nosdcard" msgid="8920330112631198575">"從 USB 儲存裝置安裝已加密的憑證"</string>
+ <string name="credentials_install_certificates_summary" product="default" msgid="7737001268684193093">"從 SD 卡安裝加密憑證"</string>
+ <string name="credentials_set_password" msgid="9104473585811899989">"設定密碼"</string>
+ <string name="credentials_set_password_summary" msgid="8287876917562085701">"設定或變更認證儲存空間密碼"</string>
+ <string name="credentials_reset" msgid="9170150870552453457">"清除儲存空間"</string>
+ <string name="credentials_reset_summary" msgid="1530388094693731636">"清除認證儲存空間的所有內容,並重新設定密碼"</string>
+ <string name="credentials_reset_hint" msgid="819990295796804516">"確定要刪除所有認證,並重新設定認證儲存空間密碼嗎?"</string>
<string name="credentials_old_password" msgid="7553393815538684028">"目前的密碼:"</string>
<string name="credentials_new_password" msgid="267487774686796938">"新密碼:"</string>
<string name="credentials_confirm_password" msgid="4732250000633424345">"確認新密碼:"</string>
- <string name="credentials_reset_hint" msgid="2336340927894094814">"這會移除所有內容並重設密碼,您確定要繼續進行嗎?"</string>
+ <string name="credentials_first_time_hint" msgid="1567821077545346039">"設定認證儲存空間密碼 (最少 8 個字元)。"</string>
+ <string name="credentials_wrong_password" msgid="7525192410790152041">"請輸入正確的密碼。"</string>
+ <string name="credentials_reset_warning" msgid="6392481296673345268">"請輸入正確的密碼。您還有 1 次輸入密碼的機會,如果輸入錯誤,認證儲存空間將遭到清除。"</string>
+ <string name="credentials_reset_warning_plural" msgid="454828369803055270">"請輸入正確的密碼。您還有 <xliff:g id="NUMBER">%1$d</xliff:g> 次輸入密碼的機會,如果輸入錯誤,認證儲存空間將遭到清除。"</string>
<string name="credentials_passwords_mismatch" msgid="5288565139590031733">"密碼不符。"</string>
+ <string name="credentials_passwords_empty" msgid="8647631321684363549">"請輸入您的密碼,並加以確認。"</string>
+ <string name="credentials_password_empty" msgid="8292138152983330473">"請輸入密碼。"</string>
<string name="credentials_password_too_short" msgid="7502749986405522663">"密碼最少必須包含 8 個字元。"</string>
- <string name="credentials_wrong_password" msgid="2541932597104054807">"密碼不正確。"</string>
- <string name="credentials_reset_warning" msgid="5320653011511797600">"密碼不正確。您還有 1 次輸入密碼的機會,如果輸入錯誤,憑證儲存空間將遭到清除。"</string>
- <string name="credentials_reset_warning_plural" msgid="6514085665301095279">"密碼不正確。您還有 <xliff:g id="NUMBER">%1$d</xliff:g> 次輸入密碼的機會,如果輸入錯誤,憑證儲存空間將遭到清除。"</string>
- <string name="credentials_erased" msgid="2907836028586342969">"憑證儲存空間已清除。"</string>
+ <string name="credentials_erased" msgid="7700309135582200849">"已清除認證儲存空間內容。"</string>
<string name="credentials_enabled" msgid="7588607413349978930">"已啟用認證儲存空間。"</string>
+ <string name="credentials_disabled" msgid="7453188089059045380">"已停用認證儲存空間。"</string>
+ <string name="encrypted_fs_category" msgid="1841367653663913956">"加密檔案系統"</string>
+ <string name="encrypted_fs_enable" msgid="3884033081603327729">"加密使用者隱私資訊"</string>
+ <string name="encrypted_fs_enable_summary" msgid="5635188119509076089">"啟用加密檔案系統,以儲存此裝置的使用者隱私資訊"</string>
+ <string name="encrypted_fs_enable_dialog" msgid="919487211207214266">"啟用加密檔案系統前必須抹除裝置資料。"</string>
+ <string name="encrypted_fs_disable_dialog" msgid="6960413613985682501">"停用加密檔案系統前必須抹除裝置資料。"</string>
+ <string name="encrypted_fs_enable_button" msgid="8453841319751433751">"啟用"</string>
+ <string name="encrypted_fs_disable_button" msgid="8468354944060220496">"停用"</string>
+ <string name="encrypted_fs_cancel_button" msgid="4785921255266305799">"取消"</string>
+ <string name="encrypted_fs_cancel_confirm" msgid="853572431153803557">"已取消變更加密檔案系統模式。"</string>
+ <string name="encrypted_fs_alert_dialog_title" msgid="583462447886934755">"加密檔案系統警告。"</string>
<string name="emergency_tone_title" msgid="1055954530111587114">"緊急警示音"</string>
<string name="emergency_tone_summary" msgid="722259232924572153">"設定撥打緊急電話時的運作方式"</string>
<string name="privacy_settings" msgid="9206631214140954954">"隱私設定"</string>
@@ -1319,7 +1325,7 @@
<string name="backup_data_title" msgid="1239105919852668016">"備份我的資料"</string>
<string name="backup_data_summary" msgid="6515285107793232815">"將應用程式資料、Wi-Fi 密碼,以及其他設定備份到 Google 伺服器"</string>
<string name="backup_configure_account_title" msgid="3790872965773196615">"備份帳戶"</string>
- <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"目前沒有帳戶正在儲存備份資料"</string>
+ <string name="backup_configure_account_default_summary" msgid="2436933224764745553">"目前沒有任何帳戶在儲存備份資料"</string>
<string name="auto_restore_title" msgid="5397528966329126506">"自動還原功能"</string>
<string name="auto_restore_summary" msgid="83177150536734378">"當我重新安裝應用程式時,還原我已經備份的設定或其他資料"</string>
<string name="backup_erase_dialog_title" msgid="3438255037256586237">"備份"</string>
@@ -1339,11 +1345,7 @@
<string name="sound_category_calls_title" msgid="3688531959256239012">"來電"</string>
<string name="sound_category_notification_title" msgid="3502115998790286943">"通知"</string>
<string name="sound_category_feedback_title" msgid="4399742321363475393">"意見"</string>
- <string name="wifi_setup_title" msgid="661074868726906436">"Wi-Fi 設定"</string>
- <string name="wifi_setup_title_editing_network" msgid="7304321031985059969">"連線至 Wi-Fi 網路 <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_connecting_network" msgid="2408378435027118687">"正在連線至 Wi-Fi 網路 <xliff:g id="NETWORK_NAME">%s</xliff:g>..."</string>
- <string name="wifi_setup_title_connected_network" msgid="209755856836003839">"已連線至 Wi-Fi 網路 <xliff:g id="NETWORK_NAME">%s</xliff:g>"</string>
- <string name="wifi_setup_title_add_network" msgid="6932651000151032301">"新增網路"</string>
+ <!-- outdated translation 3130584822275278425 --> <string name="wifi_setup_title" msgid="661074868726906436">"WiFi 設定"</string>
<string name="wifi_setup_not_connected" msgid="6997432604664057052">"尚未連線"</string>
<string name="wifi_setup_add_network" msgid="5939624680150051807">"新增網路"</string>
<string name="wifi_setup_refresh_list" msgid="3411615711486911064">"重新整理清單"</string>
@@ -1356,7 +1358,7 @@
<string name="wifi_setup_save" msgid="3659235094218508211">"儲存"</string>
<string name="wifi_setup_cancel" msgid="3185216020264410239">"取消"</string>
<string name="wifi_setup_status_scanning" msgid="7424598483871053657">"正在掃描網路..."</string>
- <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"請輕觸要連接的網路"</string>
+ <!-- outdated translation 4438531984292574854 --> <string name="wifi_setup_status_select_network" msgid="7519563569903137003">"輕觸即可選取網路"</string>
<string name="wifi_setup_status_existing_network" msgid="6394925174802598186">"連線至現有網路"</string>
<string name="wifi_setup_status_unsecured_network" msgid="8143046977328718252">"連線至無安全保護措施的網路"</string>
<string name="wifi_setup_status_edit_network" msgid="6582036394332822032">"輸入網路設定"</string>
@@ -1364,9 +1366,7 @@
<string name="wifi_setup_status_connecting" msgid="2594117697215042584">"連線中..."</string>
<string name="wifi_setup_status_proceed_to_next" msgid="9071951312604559022">"前往下一個步驟"</string>
<string name="wifi_setup_status_eap_not_supported" msgid="3196386445567501484">"不支援 EAP"</string>
- <string name="wifi_setup_eap_not_supported" msgid="683540356393542939">"安裝期間無法設定 EAP Wi-Fi 連線,如要設定連線,請於安裝完成後,在 [設定] 的 [無線與網路] 中進行設定。"<b></b></string>
- <string name="wifi_setup_description_connecting" msgid="1884664966455980182">"連線中,可能需要稍候幾分鐘的時間..."</string>
- <string name="wifi_setup_description_connected" msgid="5235991893829582459">"輕觸 [下一步]"<b></b>" 即可繼續安裝;"\n\n"輕觸 [返回]"<b></b>" 則可連線至其他 Wi-Fi 網路。"</string>
+ <string name="wifi_setup_eap_not_supported" msgid="5083895763075722698">"安裝期間無法設定 EAP Wi-Fi 連線,如要設定連線,請在安裝完成後,前往 [設定] 中的 [無線與網路]。"</string>
<string name="account_sync_settings_title" msgid="4578227872921044660">"同步處理設定"</string>
<string name="sync_is_failing" msgid="1591561768344128377">"目前同步處理發生問題。稍後會回復正常。"</string>
<string name="add_account_label" msgid="7811707265834013767">"新增帳戶"</string>
@@ -1382,32 +1382,45 @@
<string name="sync_disabled" msgid="8511659877596511991">"已關閉同步處理功能"</string>
<string name="sync_error" msgid="5060969083117872149">"同步處理錯誤"</string>
<string name="settings_backup" msgid="2274732978260797031">"備份設定"</string>
- <string name="settings_backup_summary" msgid="7916877705938054035">"備份我的設定"</string>
+ <!-- no translation found for settings_backup_summary (7916877705938054035) -->
+ <skip />
<string name="sync_menu_sync_now" msgid="6154608350395805683">"現在進行同步處理"</string>
<string name="sync_menu_sync_cancel" msgid="8292379009626966949">"取消同步處理"</string>
- <string name="sync_one_time_sync" msgid="6766593624598183090">"輕觸此處可開始同步化 <xliff:g id="LAST_SYNC_TIME">
-%1$s</xliff:g>"</string>
+ <!-- no translation found for sync_one_time_sync (6766593624598183090) -->
+ <skip />
<string name="sync_gmail" msgid="714886122098006477">"Gmail"</string>
<string name="sync_calendar" msgid="9056527206714733735">"日曆"</string>
<string name="sync_contacts" msgid="9174914394377828043">"聯絡人"</string>
- <string name="sync_plug" msgid="5952575609349860569"><font fgcolor="#ffffffff">"歡迎使用 Google Sync!"</font>\n"這是 Google 提供的資料同步處理工具,可讓您隨時隨地存取聯絡人、約會等資料。"</string>
- <string name="header_application_sync_settings" msgid="5514539555293976035">"應用程式同步處理設定"</string>
- <string name="header_data_and_synchronization" msgid="5165024023936509896">"資料及同步處理"</string>
- <string name="preference_change_password_title" msgid="8955581790270130056">"變更密碼"</string>
- <string name="header_account_settings" msgid="5382475087121880626">"帳戶設定"</string>
- <string name="remove_account_label" msgid="5921986026504804119">"移除帳戶"</string>
- <string name="header_add_an_account" msgid="756108499532023798">"新增帳戶"</string>
- <string name="finish_button_label" msgid="481587707657751116">"完成"</string>
- <string name="really_remove_account_title" msgid="6574643117748564960">"移除帳戶"</string>
+ <!-- no translation found for sync_plug (5952575609349860569) -->
+ <skip />
+ <!-- no translation found for header_application_sync_settings (5514539555293976035) -->
+ <skip />
+ <!-- no translation found for header_data_and_synchronization (5165024023936509896) -->
+ <skip />
+ <!-- no translation found for preference_change_password_title (8955581790270130056) -->
+ <skip />
+ <!-- no translation found for header_account_settings (5382475087121880626) -->
+ <skip />
+ <!-- no translation found for remove_account_label (5921986026504804119) -->
+ <skip />
+ <!-- no translation found for header_add_an_account (756108499532023798) -->
+ <skip />
+ <!-- no translation found for finish_button_label (481587707657751116) -->
+ <skip />
+ <!-- no translation found for really_remove_account_title (6574643117748564960) -->
+ <skip />
<string name="really_remove_account_message" product="tablet" msgid="4448645571715719563">"確定要移除帳戶嗎?移除帳戶後,平板電腦上的訊息、聯絡人和其他資料將一併遭到刪除。"\n"您要繼續嗎?"</string>
<string name="really_remove_account_message" product="default" msgid="1005751790899989319">"確定要移除帳戶嗎?移除帳戶後,手機上的訊息、聯絡人和其他資料將一併遭到刪除。"\n"您要繼續嗎?"</string>
- <string name="remove_account_failed" product="tablet" msgid="1093911989149396624">"部分應用程式需要使用這個帳戶。如要移除此帳戶,請前往 [設定] 應用程式中的 [隱私設定],將平手機設回原廠設定 (這麼做會刪除您全部的個人資料)。"</string>
- <string name="remove_account_failed" product="default" msgid="9174390193652391412">"部分應用程式需要使用這個帳戶。如要移除此帳戶,請前往 [設定] 應用程式中的 [隱私設定],將手機設回原廠設定 (這麼做會刪除您全部的個人資料)。"</string>
- <string name="provider_label" msgid="7724593781904508866">"發送訂閱"</string>
- <string name="sync_item_title" msgid="1931551540462877488">"同步處理<xliff:g id="AUTHORITY">%s</xliff:g>"</string>
- <string name="cant_sync_dialog_title" msgid="7185199796123573317">"無法手動同步處理"</string>
- <string name="cant_sync_dialog_message" msgid="2372359241135295930">"這個項目的同步處理功能已停用。如要變更您的偏好設定,請暫時開啟背景資料與自動同步處理功能。"</string>
- <string name="enter_password" msgid="3268224850821675915">"輸入密碼即可為儲存裝置解密"</string>
- <string name="try_again" msgid="5904121494468643129">"很抱歉,請再試一次"</string>
- <string name="service_busy" msgid="225227519012409130">"服務忙碌中,請再試一次"</string>
+ <!-- no translation found for remove_account_failed (1093911989149396624) -->
+ <skip />
+ <!-- no translation found for remove_account_failed (9174390193652391412) -->
+ <skip />
+ <!-- no translation found for provider_label (7724593781904508866) -->
+ <skip />
+ <!-- no translation found for sync_item_title (1931551540462877488) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_title (7185199796123573317) -->
+ <skip />
+ <!-- no translation found for cant_sync_dialog_message (2372359241135295930) -->
+ <skip />
</resources>
diff --git a/res/values/arrays.xml b/res/values/arrays.xml
index 3ef465a..6d55264 100644
--- a/res/values/arrays.xml
+++ b/res/values/arrays.xml
@@ -294,6 +294,24 @@
<item>TTLS</item>
</string-array>
+ <!-- Bluetooth Settings -->
+
+ <!-- Discoverable mode timeout options -->
+ <string-array name="bluetooth_visibility_timeout_entries">
+ <item>2 Minutes</item>
+ <item>5 Minutes</item>
+ <item>1 Hour</item>
+ <item>Never</item>
+ </string-array>
+
+ <!-- Values for visibility_duration_entries matching constants in BluetoothSettings. Do not translate. -->
+ <string-array name="bluetooth_visibility_timeout_values" translatable="false">
+ <item>twomin</item>
+ <item>fivemin</item>
+ <item>onehour</item>
+ <item>never</item>
+ </string-array>
+
<!-- Match this with drawable.wifi_signal. --> <skip />
<!-- Wi-Fi settings. The signal strength a Wi-Fi network has. -->
<string-array name="wifi_signal">
@@ -446,6 +464,22 @@
<item>3</item>
</string-array>
+ <!-- Authentication Types used in APN editor -->
+ <string-array name="apn_protocol_entries">
+ <item>IPv4</item>
+ <item>IPv6</item>
+ <item>IPv4/IPv6</item>
+ </string-array>
+
+ <string-array translatable="false" name="apn_protocol_values">
+ <!-- Do not translate. -->
+ <item>IP</item>
+ <!-- Do not translate. -->
+ <item>IPV6</item>
+ <!-- Do not translate. -->
+ <item>IPV4V6</item>
+ </string-array>
+
<!-- Apps on SD instalaltion location options in ApplicationSettings -->
<string-array name="app_install_location_entries">
<item>Internal device storage</item>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 131fe6b..5cc4d73 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -183,9 +183,14 @@
<string name="bluetooth_visibility">Discoverable</string>
<!-- Bluetooth settings screen, summary after selecting Discoverable check box -->
<string name="bluetooth_is_discoverable">Discoverable for <xliff:g id="discoverable_time_period">%1$s</xliff:g> seconds\u2026</string>
+ <!-- Bluetooth settings screen, Discoverable checkbox summary text when Discoverable duration is set to "forever" -->
+ <string name="bluetooth_is_discoverable_always">Discoverable</string>
<!-- Bluetooth settings screen, Discoverable checkbox summary text -->
<string name="bluetooth_not_discoverable">Make device discoverable</string>
- <!-- Bluetooth settings screen, heading above the list of nearby bluetooth devices -->
+ <!-- Bluetooth settings screen, option name to pick discoverability timeout duration (a list dialog comes up) -->
+ <string name="bluetooth_visibility_timeout">Discoverable timeout</string>
+ <!-- Bluetooth settings screen, Discoverable timout list dialog summary text -->
+ <string name="bluetooth_visibility_timeout_summary">Set how long device will be discoverable</string>
<!-- Bluetooth settings screen, check box label whether or not to allow
bluetooth voice dialing when lock screen is up-->
<string name="bluetooth_lock_voice_dialing">Lock voice dialing</string>
@@ -193,7 +198,7 @@
<string name="bluetooth_lock_voice_dialing_summary">
Prevent use of the bluetooth dialer when the screen is locked
</string>
-
+ <!-- Bluetooth settings screen, heading above the list of nearby bluetooth devices -->
<string name="bluetooth_devices">Bluetooth devices</string>
<!-- Bluetooth settings screen, title for the current bluetooth name setting -->
<string name="bluetooth_device_name">Device name</string>
@@ -248,11 +253,19 @@
<!-- Strings for asking to the user whether to allow an app to enable discovery mode -->
<string name="bluetooth_ask_discovery" product="default">"An application on your phone is requesting permission to make your phone discoverable by other Bluetooth devices for <xliff:g id="timeout">%1$d</xliff:g> seconds. Do you want to do this?"</string>
+ <!-- Strings for asking to the user whether to allow an app to enable lasting discovery mode -->
+ <string name="bluetooth_ask_lasting_discovery" product="tablet">"An application on your tablet is requesting permission to make your tablet \u201calways discoverable\u201d by other Bluetooth devices. Do you want to do this?"</string>
+ <string name="bluetooth_ask_lasting_discovery" product="default">"An application on your phone is requesting permission to make your phone \u201calways discoverable\u201d by other Bluetooth devices. Do you want to do this?"</string>
+
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode -->
<string name="bluetooth_ask_enablement_and_discovery" product="tablet">"An application on your tablet is requesting permission to turn on Bluetooth and to make your tablet discoverable by other devices for <xliff:g id="timeout">%1$d</xliff:g> seconds. Do you want to do this?"</string>
<!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode -->
<string name="bluetooth_ask_enablement_and_discovery" product="default">"An application on your phone is requesting permission to turn on Bluetooth and to make your phone discoverable by other devices for <xliff:g id="timeout">%1$d</xliff:g> seconds. Do you want to do this?"</string>
+ <!-- Strings for asking to the user whether to allow an app to enable bluetooth and discovery mode -->
+ <string name="bluetooth_ask_enablement_and_lasting_discovery" product="tablet">"An application on your tablet is requesting permission to turn on Bluetooth and to make your tablet discoverable by other devices. Do you want to do this?"</string>
+ <string name="bluetooth_ask_enablement_and_lasting_discovery" product="default">"An application on your phone is requesting permission to turn on Bluetooth and to make your phone discoverable by other devices. Do you want to do this?"</string>
+
<!-- Strings for msg to display to user while bluetooth is turning on -->
<string name="bluetooth_turning_on">"Turning on Bluetooth\u2026"</string>
@@ -1664,6 +1677,8 @@
<string name="apn_auth_type_pap_chap">PAP or CHAP</string>
<!-- Edit access point labels: The type of APN -->
<string name="apn_type">APN type</string>
+ <!-- Edit access point labels: The protocol of the APN, e.g., "IPv4", "IPv6", or "IPv4/IPv6". -->
+ <string name="apn_protocol">APN protocol</string>
<!-- Edit access point screen menu option to delete this APN -->
<string name="menu_delete">Delete APN</string>
<!-- APNs screen menu option to create a brand spanking new APN -->
diff --git a/res/xml/apn_editor.xml b/res/xml/apn_editor.xml
index 68a1b31..f000dd0 100644
--- a/res/xml/apn_editor.xml
+++ b/res/xml/apn_editor.xml
@@ -114,4 +114,11 @@
android:singleLine="true"
android:inputType="textNoSuggestions"
/>
+ <ListPreference
+ android:title="@string/apn_protocol"
+ android:dialogTitle="@string/apn_protocol"
+ android:key="apn_protocol"
+ android:entries="@array/apn_protocol_entries"
+ android:entryValues="@array/apn_protocol_values"
+ />
</PreferenceScreen>
diff --git a/res/xml/bluetooth_settings.xml b/res/xml/bluetooth_settings.xml
index 64e6377..b441ab4 100644
--- a/res/xml/bluetooth_settings.xml
+++ b/res/xml/bluetooth_settings.xml
@@ -43,6 +43,14 @@
android:summaryOff="@string/bluetooth_not_discoverable"
android:persistent="false" />
+ <ListPreference
+ android:key="bt_discoverable_timeout"
+ android:title="@string/bluetooth_visibility_timeout"
+ android:dependency="bt_discoverable"
+ android:summary="@string/bluetooth_visibility_timeout_summary"
+ android:entries="@array/bluetooth_visibility_timeout_entries"
+ android:entryValues="@array/bluetooth_visibility_timeout_values" />
+
<Preference
android:key="bt_show_received_files"
android:dependency="bt_checkbox"
diff --git a/src/com/android/settings/ApnEditor.java b/src/com/android/settings/ApnEditor.java
index 9328c14..f738823 100644
--- a/src/com/android/settings/ApnEditor.java
+++ b/src/com/android/settings/ApnEditor.java
@@ -48,6 +48,7 @@
private final static String SAVED_POS = "pos";
private final static String KEY_AUTH_TYPE = "auth_type";
+ private final static String KEY_PROTOCOL = "apn_protocol";
private static final int MENU_DELETE = Menu.FIRST;
private static final int MENU_SAVE = Menu.FIRST + 1;
@@ -69,6 +70,7 @@
private EditTextPreference mMmsPort;
private ListPreference mAuthType;
private EditTextPreference mApnType;
+ private ListPreference mProtocol;
private String mCurMnc;
private String mCurMcc;
@@ -99,6 +101,7 @@
Telephony.Carriers.MMSPORT, // 13
Telephony.Carriers.AUTH_TYPE, // 14
Telephony.Carriers.TYPE, // 15
+ Telephony.Carriers.PROTOCOL, // 16
};
private static final int ID_INDEX = 0;
@@ -116,6 +119,7 @@
private static final int MMSPORT_INDEX = 13;
private static final int AUTH_TYPE_INDEX = 14;
private static final int TYPE_INDEX = 15;
+ private static final int PROTOCOL_INDEX = 16;
@Override
@@ -139,9 +143,12 @@
mMnc = (EditTextPreference) findPreference("apn_mnc");
mApnType = (EditTextPreference) findPreference("apn_type");
- mAuthType = (ListPreference) findPreference("auth_type");
+ mAuthType = (ListPreference) findPreference(KEY_AUTH_TYPE);
mAuthType.setOnPreferenceChangeListener(this);
+ mProtocol = (ListPreference) findPreference(KEY_PROTOCOL);
+ mProtocol.setOnPreferenceChangeListener(this);
+
mRes = getResources();
final Intent intent = getIntent();
@@ -238,6 +245,7 @@
mAuthType.setValue(null);
}
+ mProtocol.setValue(mCursor.getString(PROTOCOL_INDEX));
}
mName.setSummary(checkNull(mName.getText()));
@@ -264,6 +272,28 @@
} else {
mAuthType.setSummary(sNotSet);
}
+
+ mProtocol.setSummary(
+ checkNull(protocolDescription(mProtocol.getValue())));
+ }
+
+ /**
+ * Returns the UI choice (e.g., "IPv4/IPv6") corresponding to the given
+ * raw value of the protocol preference (e.g., "IPV4V6"). If unknown,
+ * return null.
+ */
+ private String protocolDescription(String raw) {
+ int protocolIndex = mProtocol.findIndexOfValue(raw);
+ if (protocolIndex == -1) {
+ return null;
+ } else {
+ String[] values = mRes.getStringArray(R.array.apn_protocol_entries);
+ try {
+ return values[protocolIndex];
+ } catch (ArrayIndexOutOfBoundsException e) {
+ return null;
+ }
+ }
}
public boolean onPreferenceChange(Preference preference, Object newValue) {
@@ -278,6 +308,16 @@
} catch (NumberFormatException e) {
return false;
}
+ return true;
+ }
+
+ if (KEY_PROTOCOL.equals(key)) {
+ String protocol = protocolDescription((String) newValue);
+ if (protocol == null) {
+ return false;
+ }
+ mProtocol.setSummary(protocol);
+ mProtocol.setValue((String) newValue);
}
return true;
}
@@ -389,6 +429,8 @@
values.put(Telephony.Carriers.AUTH_TYPE, Integer.parseInt(authVal));
}
+ values.put(Telephony.Carriers.PROTOCOL, checkNotSet(mProtocol.getValue()));
+
values.put(Telephony.Carriers.TYPE, checkNotSet(mApnType.getText()));
values.put(Telephony.Carriers.MCC, mcc);
diff --git a/src/com/android/settings/DateTimeSettingsSetupWizard.java b/src/com/android/settings/DateTimeSettingsSetupWizard.java
index c3d3bfd..08c0227 100644
--- a/src/com/android/settings/DateTimeSettingsSetupWizard.java
+++ b/src/com/android/settings/DateTimeSettingsSetupWizard.java
@@ -95,8 +95,6 @@
mAutoTimeZoneButton.setText(autoTimeZoneEnabled ? R.string.zone_auto_summaryOn :
R.string.zone_auto_summaryOff);*/
- setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
-
final TimeZone tz = TimeZone.getDefault();
mSelectedTimeZone = tz;
mTimeZoneButton = (Button)findViewById(R.id.time_zone_button);
diff --git a/src/com/android/settings/accounts/SyncStateCheckBoxPreference.java b/src/com/android/settings/accounts/SyncStateCheckBoxPreference.java
index b200eb6..4b9ca81 100644
--- a/src/com/android/settings/accounts/SyncStateCheckBoxPreference.java
+++ b/src/com/android/settings/accounts/SyncStateCheckBoxPreference.java
@@ -20,6 +20,7 @@
import android.content.Context;
import android.graphics.drawable.AnimationDrawable;
+import android.os.Handler;
import android.preference.CheckBoxPreference;
import android.util.AttributeSet;
import android.view.View;
@@ -40,7 +41,7 @@
* toggling whether the provider will do autosync.
*/
private boolean mOneTimeSyncMode = false;
-
+
public SyncStateCheckBoxPreference(Context context, AttributeSet attrs) {
super(context, attrs);
setWidgetLayoutResource(R.layout.preference_widget_sync_toggle);
@@ -67,7 +68,7 @@
boolean showError;
boolean showPending;
if (mIsActive) {
- syncActiveView.post(new Runnable() {
+ new Handler(getContext().getMainLooper()).post(new Runnable() {
public void run() {
anim.start();
}
@@ -87,11 +88,11 @@
syncFailedView.setVisibility(showError ? View.VISIBLE : View.GONE);
syncPendingView.setVisibility((showPending && !mIsActive) ? View.VISIBLE : View.GONE);
-
+
View checkBox = view.findViewById(android.R.id.checkbox);
if (mOneTimeSyncMode) {
checkBox.setVisibility(View.GONE);
-
+
/*
* Override the summary. Fill in the %1$s with the existing summary
* (what ends up happening is the old summary is shown on the next
@@ -138,7 +139,7 @@
mOneTimeSyncMode = oneTimeSyncMode;
notifyChanged();
}
-
+
/**
* Gets whether the preference is in one-time sync mode.
*/
@@ -152,7 +153,7 @@
// checkbox state
if (!mOneTimeSyncMode) {
super.onClick();
- }
+ }
}
public Account getAccount() {
diff --git a/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java b/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java
index 37e48ff..166e4ae 100644
--- a/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java
+++ b/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java
@@ -26,8 +26,11 @@
import android.content.SharedPreferences;
import android.os.Handler;
import android.os.SystemProperties;
+import android.preference.ListPreference;
import android.preference.Preference;
import android.preference.CheckBoxPreference;
+import android.provider.Settings;
+import android.util.Log;
/**
* BluetoothDiscoverableEnabler is a helper to manage the "Discoverable"
@@ -39,14 +42,26 @@
private static final String SYSTEM_PROPERTY_DISCOVERABLE_TIMEOUT =
"debug.bt.discoverable_time";
- /* package */ static final int DEFAULT_DISCOVERABLE_TIMEOUT = 120;
- /* package */ static final String SHARED_PREFERENCES_KEY_DISCOVERABLE_END_TIMESTAMP =
- "discoverable_end_timestamp";
+ static final int DISCOVERABLE_TIMEOUT_TWO_MINUTES = 120;
+ static final int DISCOVERABLE_TIMEOUT_FIVE_MINUTES = 300;
+ static final int DISCOVERABLE_TIMEOUT_ONE_HOUR = 3600;
+ static final int DISCOVERABLE_TIMEOUT_NEVER = 0;
+
+ static final String SHARED_PREFERENCES_KEY_DISCOVERABLE_END_TIMESTAMP =
+ "discoverable_end_timestamp";
+
+ private static final String VALUE_DISCOVERABLE_TIMEOUT_TWO_MINUTES = "twomin";
+ private static final String VALUE_DISCOVERABLE_TIMEOUT_FIVE_MINUTES = "fivemin";
+ private static final String VALUE_DISCOVERABLE_TIMEOUT_ONE_HOUR = "onehour";
+ private static final String VALUE_DISCOVERABLE_TIMEOUT_NEVER = "never";
+
+ static final int DEFAULT_DISCOVERABLE_TIMEOUT = DISCOVERABLE_TIMEOUT_TWO_MINUTES;
private final Context mContext;
private final Handler mUiHandler;
private final CheckBoxPreference mCheckBoxPreference;
+ private final ListPreference mTimeoutListPreference;
private final LocalBluetoothManager mLocalManager;
@@ -69,12 +84,16 @@
}
};
- public BluetoothDiscoverableEnabler(Context context, CheckBoxPreference checkBoxPreference) {
+ public BluetoothDiscoverableEnabler(Context context,
+ CheckBoxPreference checkBoxPreference, ListPreference timeoutListPreference) {
mContext = context;
mUiHandler = new Handler();
mCheckBoxPreference = checkBoxPreference;
+ mTimeoutListPreference = timeoutListPreference;
checkBoxPreference.setPersistent(false);
+ // we actually want to persist this since can't infer from BT device state
+ mTimeoutListPreference.setPersistent(true);
mLocalManager = LocalBluetoothManager.getInstance(context);
if (mLocalManager == null) {
@@ -91,7 +110,7 @@
IntentFilter filter = new IntentFilter(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);
mContext.registerReceiver(mReceiver, filter);
mCheckBoxPreference.setOnPreferenceChangeListener(this);
-
+ mTimeoutListPreference.setOnPreferenceChangeListener(this);
handleModeChanged(mLocalManager.getBluetoothAdapter().getScanMode());
}
@@ -102,12 +121,18 @@
mUiHandler.removeCallbacks(mUpdateCountdownSummaryRunnable);
mCheckBoxPreference.setOnPreferenceChangeListener(null);
+ mTimeoutListPreference.setOnPreferenceChangeListener(null);
mContext.unregisterReceiver(mReceiver);
}
public boolean onPreferenceChange(Preference preference, Object value) {
- // Turn on/off BT discoverability
- setEnabled((Boolean) value);
+ if (preference == mCheckBoxPreference) {
+ // Turn on/off BT discoverability
+ setEnabled((Boolean) value);
+ } else if (preference == mTimeoutListPreference) {
+ mTimeoutListPreference.setValue((String) value);
+ setEnabled(true);
+ }
return true;
}
@@ -116,26 +141,52 @@
BluetoothAdapter manager = mLocalManager.getBluetoothAdapter();
if (enable) {
-
int timeout = getDiscoverableTimeout();
manager.setDiscoverableTimeout(timeout);
- mCheckBoxPreference.setSummaryOn(
- mContext.getResources().getString(R.string.bluetooth_is_discoverable, timeout));
-
- long endTimestamp = System.currentTimeMillis() + timeout * 1000;
+ long endTimestamp = System.currentTimeMillis() + timeout * 1000L;
persistDiscoverableEndTimestamp(endTimestamp);
- manager.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE);
+ updateCountdownSummary();
+
+ manager.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, timeout);
} else {
manager.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE);
}
}
+ private void updateTimerDisplay(int timeout) {
+ if (getDiscoverableTimeout() == DISCOVERABLE_TIMEOUT_NEVER) {
+ mCheckBoxPreference.setSummaryOn(
+ mContext.getResources()
+ .getString(R.string.bluetooth_is_discoverable_always));
+ } else {
+ mCheckBoxPreference.setSummaryOn(
+ mContext.getResources()
+ .getString(R.string.bluetooth_is_discoverable, timeout));
+ }
+ }
+
private int getDiscoverableTimeout() {
int timeout = SystemProperties.getInt(SYSTEM_PROPERTY_DISCOVERABLE_TIMEOUT, -1);
- if (timeout <= 0) {
- timeout = DEFAULT_DISCOVERABLE_TIMEOUT;
+ if (timeout < 0) {
+ String timeoutValue = null;
+ if (mTimeoutListPreference != null && mTimeoutListPreference.getValue() != null) {
+ timeoutValue = mTimeoutListPreference.getValue().toString();
+ } else {
+ mTimeoutListPreference.setValue(VALUE_DISCOVERABLE_TIMEOUT_TWO_MINUTES);
+ return DISCOVERABLE_TIMEOUT_TWO_MINUTES;
+ }
+
+ if (timeoutValue.equals(VALUE_DISCOVERABLE_TIMEOUT_NEVER)) {
+ timeout = DISCOVERABLE_TIMEOUT_NEVER;
+ } else if (timeoutValue.equals(VALUE_DISCOVERABLE_TIMEOUT_ONE_HOUR)) {
+ timeout = DISCOVERABLE_TIMEOUT_ONE_HOUR;
+ } else if (timeoutValue.equals(VALUE_DISCOVERABLE_TIMEOUT_FIVE_MINUTES)) {
+ timeout = DISCOVERABLE_TIMEOUT_FIVE_MINUTES;
+ } else {
+ timeout = DISCOVERABLE_TIMEOUT_TWO_MINUTES;
+ }
}
return timeout;
@@ -151,7 +202,6 @@
if (mode == BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) {
mCheckBoxPreference.setChecked(true);
updateCountdownSummary();
-
} else {
mCheckBoxPreference.setChecked(false);
}
@@ -173,11 +223,8 @@
return;
}
- String formattedTimeLeft = String.valueOf((endTimestamp - currentTimestamp) / 1000);
-
- mCheckBoxPreference.setSummaryOn(
- mContext.getResources().getString(R.string.bluetooth_is_discoverable,
- formattedTimeLeft));
+ int timeLeft = (int) ((endTimestamp - currentTimestamp) / 1000L);
+ updateTimerDisplay(timeLeft);
synchronized (this) {
mUiHandler.removeCallbacks(mUpdateCountdownSummaryRunnable);
diff --git a/src/com/android/settings/bluetooth/BluetoothSettings.java b/src/com/android/settings/bluetooth/BluetoothSettings.java
index c1fda6b..07121e9 100644
--- a/src/com/android/settings/bluetooth/BluetoothSettings.java
+++ b/src/com/android/settings/bluetooth/BluetoothSettings.java
@@ -20,8 +20,11 @@
import android.bluetooth.BluetoothDevice;
import android.content.Intent;
import android.preference.CheckBoxPreference;
+import android.preference.ListPreference;
import android.preference.Preference;
+import android.preference.PreferenceCategory;
import android.preference.PreferenceScreen;
+import android.text.TextUtils;
import android.util.Log;
import android.view.View;
@@ -38,6 +41,7 @@
private static final String KEY_BT_CHECKBOX = "bt_checkbox";
private static final String KEY_BT_DISCOVERABLE = "bt_discoverable";
+ private static final String KEY_BT_DISCOVERABLE_TIMEOUT = "bt_discoverable_timeout";
private static final String KEY_BT_NAME = "bt_name";
private static final String KEY_BT_SHOW_RECEIVED = "bt_show_received_files";
@@ -56,7 +60,8 @@
(CheckBoxPreference) findPreference(KEY_BT_CHECKBOX));
mDiscoverableEnabler = new BluetoothDiscoverableEnabler(activity,
- (CheckBoxPreference) findPreference(KEY_BT_DISCOVERABLE));
+ (CheckBoxPreference) findPreference(KEY_BT_DISCOVERABLE),
+ (ListPreference) findPreference(KEY_BT_DISCOVERABLE_TIMEOUT));
mNamePreference = (BluetoothNamePreference) findPreference(KEY_BT_NAME);
}
diff --git a/src/com/android/settings/bluetooth/RequestPermissionActivity.java b/src/com/android/settings/bluetooth/RequestPermissionActivity.java
index 97ec017..93d05bc 100644
--- a/src/com/android/settings/bluetooth/RequestPermissionActivity.java
+++ b/src/com/android/settings/bluetooth/RequestPermissionActivity.java
@@ -43,7 +43,7 @@
private static final String TAG = "RequestPermissionActivity";
- private static final int MAX_DISCOVERABLE_TIMEOUT = 300;
+ private static final int MAX_DISCOVERABLE_TIMEOUT = 3600; // 1 hr
// Non-error return code: BT is starting or has started successfully. Used
// by this Activity and RequestPermissionHelperActivity
@@ -157,7 +157,14 @@
builder.setCancelable(false);
} else {
// Ask the user whether to turn on discovery mode or not
- builder.setMessage(getString(R.string.bluetooth_ask_enablement_and_discovery, mTimeout));
+ // For lasting discoverable mode there is a different message
+ if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
+ builder.setMessage(
+ getString(R.string.bluetooth_ask_lasting_discovery));
+ } else {
+ builder.setMessage(
+ getString(R.string.bluetooth_ask_discovery, mTimeout));
+ }
builder.setPositiveButton(getString(R.string.yes), this);
builder.setNegativeButton(getString(R.string.no), this);
}
@@ -241,11 +248,9 @@
mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
BluetoothDiscoverableEnabler.DEFAULT_DISCOVERABLE_TIMEOUT);
- Log.e(TAG, "Timeout = " + mTimeout);
+ Log.d(TAG, "Setting Bluetooth Discoverable Timeout = " + mTimeout);
- if (mTimeout > MAX_DISCOVERABLE_TIMEOUT) {
- mTimeout = MAX_DISCOVERABLE_TIMEOUT;
- } else if (mTimeout <= 0) {
+ if (mTimeout < 0 || mTimeout > MAX_DISCOVERABLE_TIMEOUT) {
mTimeout = BluetoothDiscoverableEnabler.DEFAULT_DISCOVERABLE_TIMEOUT;
}
} else {
diff --git a/src/com/android/settings/bluetooth/RequestPermissionHelperActivity.java b/src/com/android/settings/bluetooth/RequestPermissionHelperActivity.java
index c869868..2657d91 100644
--- a/src/com/android/settings/bluetooth/RequestPermissionHelperActivity.java
+++ b/src/com/android/settings/bluetooth/RequestPermissionHelperActivity.java
@@ -75,7 +75,11 @@
if (mEnableOnly) {
tv.setText(getString(R.string.bluetooth_ask_enablement));
} else {
- tv.setText(getString(R.string.bluetooth_ask_enablement_and_discovery, mTimeout));
+ if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
+ tv.setText(getString(R.string.bluetooth_ask_enablement_and_lasting_discovery));
+ } else {
+ tv.setText(getString(R.string.bluetooth_ask_enablement_and_discovery, mTimeout));
+ }
}
p.mPositiveButtonText = getString(R.string.yes);
diff --git a/src/com/android/settings/inputmethod/InputMethodAndSubtypeUtil.java b/src/com/android/settings/inputmethod/InputMethodAndSubtypeUtil.java
index 8003041..362fbb5 100644
--- a/src/com/android/settings/inputmethod/InputMethodAndSubtypeUtil.java
+++ b/src/com/android/settings/inputmethod/InputMethodAndSubtypeUtil.java
@@ -159,7 +159,7 @@
HashSet<String> disabledSystemIMEs = getDisabledSystemIMEs(resolver);
final boolean onlyOneIME = inputMethodInfos.size() == 1;
- boolean existsSelectedSubtype = false;
+ boolean needsToResetSelectedSubtype = false;
for (InputMethodInfo imi : inputMethodInfos) {
final String imiId = imi.getId();
Preference pref = context.findPreference(imiId);
@@ -178,7 +178,7 @@
}
HashSet<String> subtypesSet = enabledIMEAndSubtypesMap.get(imiId);
- boolean subtypeCleared = false;
+ boolean subtypePrefFound = false;
final int subtypeCount = imi.getSubtypeCount();
for (int i = 0; i < subtypeCount; ++i) {
InputMethodSubtype subtype = imi.getSubtypeAt(i);
@@ -187,17 +187,21 @@
imiId + subtypeHashCodeStr);
// In the Configure input method screen which does not have subtype preferences.
if (subtypePref == null) continue;
- // Once subtype checkbox is found, subtypeSet needs to be cleared.
- // Because of system change, hashCode value could have been changed.
- if (!subtypeCleared) {
+ if (!subtypePrefFound) {
+ // Once subtype checkbox is found, subtypeSet needs to be cleared.
+ // Because of system change, hashCode value could have been changed.
subtypesSet.clear();
- subtypeCleared = true;
+ // If selected subtype preference is disabled, needs to reset.
+ needsToResetSelectedSubtype = true;
+ subtypePrefFound = true;
}
if (subtypePref.isChecked()) {
subtypesSet.add(subtypeHashCodeStr);
if (isCurrentInputMethod) {
if (selectedInputMethodSubtype == subtype.hashCode()) {
- existsSelectedSubtype = true;
+ // Selected subtype is still enabled, there is no need to reset
+ // selected subtype.
+ needsToResetSelectedSubtype = false;
}
}
} else {
@@ -241,12 +245,14 @@
Log.d(TAG, "--- Save disable system inputmethod settings. :"
+ disabledSysImesBuilder.toString());
Log.d(TAG, "--- Save default inputmethod settings. :" + currentInputMethodId);
+ Log.d(TAG, "--- Needs to reset the selected subtype :" + needsToResetSelectedSubtype);
+ Log.d(TAG, "--- Subtype is selected :" + isInputMethodSubtypeSelected(resolver));
}
// Redefines SelectedSubtype when all subtypes are unchecked or there is no subtype
// selected. And if the selected subtype of the current input method was disabled,
// We should reset the selected input method's subtype.
- if (!existsSelectedSubtype || !isInputMethodSubtypeSelected(resolver)) {
+ if (needsToResetSelectedSubtype || !isInputMethodSubtypeSelected(resolver)) {
if (DEBUG) {
Log.d(TAG, "--- Reset inputmethod subtype because it's not defined.");
}
diff --git a/src/com/android/settings/vpn/VpnSettings.java b/src/com/android/settings/vpn/VpnSettings.java
index 539a51e..ba6258c 100644
--- a/src/com/android/settings/vpn/VpnSettings.java
+++ b/src/com/android/settings/vpn/VpnSettings.java
@@ -683,7 +683,7 @@
}
private void startVpnTypeSelection() {
- if (getActivity() == null) return;
+ if ((getActivity() == null) || isRemoving()) return;
((PreferenceActivity) getActivity()).startPreferencePanel(
VpnTypeSelection.class.getCanonicalName(), null, R.string.vpn_type_title, null,
@@ -738,7 +738,7 @@
}
private void startVpnEditor(final VpnProfile profile, boolean add) {
- if (getActivity() == null) return;
+ if ((getActivity() == null) || isRemoving()) return;
Bundle args = new Bundle();
args.putParcelable(KEY_VPN_PROFILE, profile);
diff --git a/src/com/android/settings/wifi/WifiSettingsForSetupWizardXL.java b/src/com/android/settings/wifi/WifiSettingsForSetupWizardXL.java
index caafabc..b619145 100644
--- a/src/com/android/settings/wifi/WifiSettingsForSetupWizardXL.java
+++ b/src/com/android/settings/wifi/WifiSettingsForSetupWizardXL.java
@@ -21,6 +21,7 @@
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
+import android.content.res.Configuration;
import android.net.NetworkInfo.DetailedState;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiManager;
@@ -189,9 +190,7 @@
private void restoreFirstButtonVisibilityState() {
showDefaultTitle();
- // TODO: uncomment this when the layout for it is ready. Note that we also have to remove
- // android:visibility="gone" in xml then.
- // mAddNetworkButton.setVisibility(View.VISIBLE);
+ mAddNetworkButton.setVisibility(View.VISIBLE);
mRefreshButton.setVisibility(View.VISIBLE);
mSkipOrNextButton.setVisibility(View.VISIBLE);
mConnectButton.setVisibility(View.GONE);
@@ -672,7 +671,8 @@
* Replace the current background with a new background whose id is resId if needed.
*/
private void trySetBackground(int resId) {
- if (mBackgroundId != resId) {
+ final int orientation = getResources().getConfiguration().orientation;
+ if (orientation == Configuration.ORIENTATION_LANDSCAPE && mBackgroundId != resId) {
getWindow().setBackgroundDrawable(getResources().getDrawable(resId));
mBackgroundId = resId;
}
diff --git a/tests/res/values-ru/strings.xml b/tests/res/values-ru/strings.xml
index a38f367..1cd6334 100644
--- a/tests/res/values-ru/strings.xml
+++ b/tests/res/values-ru/strings.xml
@@ -16,7 +16,7 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <string name="discoverable" msgid="3169265480789026010">"Видимость"</string>
+ <string name="discoverable" msgid="3169265480789026010">"Видимый"</string>
<string name="start_scan" msgid="6035699220942169744">"Начать поиск"</string>
<string name="stop_scan" msgid="527546916633745779">"Остановить поиск"</string>
<string name="operator_hello" msgid="292208161864910159">"Привет, оператор!"</string>