[automerger skipped] Import translations. DO NOT MERGE am: 6a5435f7f8  -s ours
am: 628ad0e4a6  -s ours

Change-Id: I34c09dde2616f05424a7e5a63c3533e2418072f3
diff --git a/Android.mk b/Android.mk
index 4a6a325..5834d36 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,14 +14,14 @@
 LOCAL_ASSET_DIR := $(addprefix $(LOCAL_PATH)/, $(asset_dirs))
 
 LOCAL_STATIC_ANDROID_LIBRARIES := \
-    $(ANDROID_SUPPORT_DESIGN_TARGETS) \
-    android-support-transition \
-    android-support-v13 \
-    android-support-v7-appcompat \
-    android-support-v7-cardview \
-    android-support-v7-recyclerview \
-    android-support-v7-palette \
-    android-support-v4
+    androidx.design_design \
+    androidx.transition_transition \
+    androidx.legacy_legacy-support-v13 \
+    androidx.appcompat_appcompat \
+    androidx.cardview_cardview \
+    androidx.recyclerview_recyclerview \
+    androidx.palette_palette \
+    androidx.legacy_legacy-support-v4
 
 LOCAL_STATIC_JAVA_LIBRARIES := \
     android-common \
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index df17359..4caa981 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -594,7 +594,7 @@
             android:permission="android.permission.BIND_JOB_SERVICE"/>
 
         <provider
-            android:name="android.support.v4.content.FileProvider"
+            android:name="androidx.core.content.FileProvider"
             android:authorities="@string/contacts_file_provider_authority"
             android:exported="false"
             android:grantUriPermissions="true">
diff --git a/res/layout-land/contact_editor_fragment.xml b/res/layout-land/contact_editor_fragment.xml
index 7f98765..6f026aa 100644
--- a/res/layout-land/contact_editor_fragment.xml
+++ b/res/layout-land/contact_editor_fragment.xml
@@ -15,41 +15,49 @@
      limitations under the License.
 -->
 
-<com.android.contacts.editor.RawContactEditorView
-        xmlns:android="http://schemas.android.com/apk/res/android"
+<FrameLayout
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/contact_editor_fragment"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:background="@color/background_primary" >
+
+    <com.android.contacts.editor.RawContactEditorView
         android:id="@+id/raw_contacts_editor_view"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
-        android:background="@color/background_primary"
         android:orientation="horizontal"
         android:visibility="invisible">
 
-    <include layout="@layout/photo_editor_view" />
+        <include layout="@layout/photo_editor_view" />
 
-    <!-- Dummy view so the first input field is not initially focused. b/21644158 -->
-    <View
+        <!-- Dummy view so the first input field is not initially focused. b/21644158 -->
+        <View
             android:layout_width="0dp"
             android:layout_height="0dp"
             android:focusable="true"
             android:focusableInTouchMode="true"/>
 
-    <ScrollView
+        <ScrollView
+            android:id="@+id/contact_editor_scroller"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:fadingEdge="none"
             android:fillViewport="true">
 
-        <LinearLayout
+            <LinearLayout
+                android:id="@+id/editor_fields_container"
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:orientation="vertical">
 
-            <include layout="@layout/editor_account_header" />
+                <include layout="@layout/editor_account_header" />
 
-            <include layout="@layout/contact_editor_fields" />
+                <include layout="@layout/contact_editor_fields" />
 
-        </LinearLayout>
+            </LinearLayout>
 
-    </ScrollView>
+        </ScrollView>
 
-</com.android.contacts.editor.RawContactEditorView>
\ No newline at end of file
+    </com.android.contacts.editor.RawContactEditorView>
+</FrameLayout>
diff --git a/res/layout-land/people_activity_toolbar.xml b/res/layout-land/people_activity_toolbar.xml
index 8fb0dc1..15f12f6 100644
--- a/res/layout-land/people_activity_toolbar.xml
+++ b/res/layout-land/people_activity_toolbar.xml
@@ -32,7 +32,7 @@
         android:background="?attr/colorPrimary">
 
         <!-- the attribute padding removes the gap between this Toolbar and its parent FrameLayout on tablet -->
-        <android.support.v7.widget.Toolbar
+        <androidx.appcompat.widget.Toolbar
             android:layout_width="match_parent"
             android:layout_height="?attr/actionBarSize"
             android:id="@+id/toolbar"
diff --git a/res/layout/contact_editor_activity.xml b/res/layout/contact_editor_activity.xml
index 36fc64a..5843a58 100644
--- a/res/layout/contact_editor_activity.xml
+++ b/res/layout/contact_editor_activity.xml
@@ -22,7 +22,7 @@
     android:layout_height="match_parent"
     android:orientation="vertical">
 
-    <android.support.v7.widget.Toolbar
+    <androidx.appcompat.widget.Toolbar
         android:id="@+id/toolbar"
         style="@style/EditorActionBarStyle"
         android:layout_width="match_parent"
@@ -33,4 +33,11 @@
         app:navigationIcon="@drawable/quantum_ic_close_vd_theme_24"
         app:title="@string/contact_editor_title_existing_contact" />
 
-</LinearLayout>
\ No newline at end of file
+    <fragment
+        android:id="@+id/contact_editor_fragment"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:name="com.android.contacts.editor.ContactEditorFragment"
+        android:tag="editor_fragment"/>
+
+</LinearLayout>
diff --git a/res/layout/contact_editor_fragment.xml b/res/layout/contact_editor_fragment.xml
index 690be8c..03a84e1 100644
--- a/res/layout/contact_editor_fragment.xml
+++ b/res/layout/contact_editor_fragment.xml
@@ -15,34 +15,41 @@
      limitations under the License.
 -->
 
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/contact_editor_fragment"
+<FrameLayout
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/contact_editor_fragment"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:background="@color/background_primary" >
+
+    <ScrollView 
+        android:id="@+id/contact_editor_scroller"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
-        android:background="@color/background_primary"
         android:fadingEdge="none"
         android:fillViewport="true">
 
-    <com.android.contacts.editor.RawContactEditorView
+        <com.android.contacts.editor.RawContactEditorView
             android:id="@+id/raw_contacts_editor_view"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:orientation="vertical"
             android:visibility="invisible">
 
-        <include layout="@layout/photo_editor_view" />
+            <include layout="@layout/photo_editor_view" />
 
-        <!-- Dummy view so the first input field is not initially focused. b/21644158 -->
-        <View
-            android:layout_width="0dp"
-            android:layout_height="0dp"
-            android:focusable="true"
-            android:focusableInTouchMode="true"/>
+            <!-- Dummy view so the first input field is not initially focused. b/21644158 -->
+            <View
+                android:layout_width="0dp"
+                android:layout_height="0dp"
+                android:focusable="true"
+                android:focusableInTouchMode="true"/>
 
-        <include layout="@layout/editor_account_header" />
+            <include layout="@layout/editor_account_header" />
 
-        <include layout="@layout/contact_editor_fields" />
+            <include layout="@layout/contact_editor_fields" />
 
-    </com.android.contacts.editor.RawContactEditorView>
+        </com.android.contacts.editor.RawContactEditorView>
 
-</ScrollView>
+    </ScrollView>
+</FrameLayout>
diff --git a/res/layout/contact_list_content.xml b/res/layout/contact_list_content.xml
index d9b113f..901e04c 100644
--- a/res/layout/contact_list_content.xml
+++ b/res/layout/contact_list_content.xml
@@ -71,7 +71,7 @@
 
         <include layout="@layout/contact_list_card"/>
 
-        <android.support.v4.widget.SwipeRefreshLayout
+        <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
             android:id="@+id/swipe_refresh"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
@@ -91,7 +91,7 @@
                 android:fastScrollEnabled="true"
 		android:visibility="gone"
                 android:fadingEdge="none" />
-        </android.support.v4.widget.SwipeRefreshLayout>
+        </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
 
         <ProgressBar
             android:id="@+id/search_progress"
diff --git a/res/layout/contacts_drawer_activity.xml b/res/layout/contacts_drawer_activity.xml
index 84e536b..a59e1db 100644
--- a/res/layout/contacts_drawer_activity.xml
+++ b/res/layout/contacts_drawer_activity.xml
@@ -15,7 +15,7 @@
      limitations under the License.
 -->
 
-<android.support.v4.widget.DrawerLayout
+<androidx.drawerlayout.widget.DrawerLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/drawer_layout"
@@ -48,4 +48,4 @@
         android:layout_width="@dimen/drawer_width"
         android:layout_height="match_parent" />
 
-</android.support.v4.widget.DrawerLayout>
+</androidx.drawerlayout.widget.DrawerLayout>
diff --git a/res/layout/fragment_sim_import.xml b/res/layout/fragment_sim_import.xml
index 09e2c66..bea50d1 100644
--- a/res/layout/fragment_sim_import.xml
+++ b/res/layout/fragment_sim_import.xml
@@ -13,7 +13,7 @@
      See the License for the specific language governing permissions and
      limitations under the License.
 -->
-<android.support.design.widget.CoordinatorLayout
+<androidx.coordinatorlayout.widget.CoordinatorLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:layout_width="match_parent"
@@ -24,7 +24,7 @@
         android:layout_height="match_parent"
         android:orientation="vertical">
 
-        <android.support.v7.widget.Toolbar
+        <androidx.appcompat.widget.Toolbar
             android:id="@+id/toolbar"
             style="@style/LightToolbarStyle"
             android:layout_width="match_parent"
@@ -43,7 +43,7 @@
                 android:layout_gravity="end|center_vertical"
                 android:text="@string/sim_import_button_text"
                 />
-        </android.support.v7.widget.Toolbar>
+        </androidx.appcompat.widget.Toolbar>
 
 
         <!-- This is managed by AccountHeaderPresenter so the IDs in this section must
@@ -110,7 +110,7 @@
                 android:clipToPadding="false"
                 android:paddingTop="8dp"/>
 
-            <android.support.v4.widget.ContentLoadingProgressBar
+            <androidx.core.widget.ContentLoadingProgressBar
                 android:id="@+id/loading_progress"
                 style="@style/Widget.AppCompat.ProgressBar"
                 android:layout_width="wrap_content"
@@ -130,4 +130,4 @@
         </FrameLayout>
 
     </LinearLayout>
-</android.support.design.widget.CoordinatorLayout>
+</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/res/layout/group_name_edit_dialog.xml b/res/layout/group_name_edit_dialog.xml
index 94db3dd..333ac43 100644
--- a/res/layout/group_name_edit_dialog.xml
+++ b/res/layout/group_name_edit_dialog.xml
@@ -27,6 +27,9 @@
     app:errorEnabled="true"
     app:hintEnabled="false">
 
+    <!-- In Android P there is no initial focus by default in touch mode. See b/77244371 -->
+    <requestFocus />
+
     <android.support.design.widget.TextInputEditText
         android:id="@android:id/text1"
         android:layout_width="match_parent"
@@ -39,4 +42,4 @@
         android:minHeight="@dimen/dialog_edit_text_min_height"
         android:textAlignment="viewStart"
         android:singleLine="true"/>
-</android.support.design.widget.TextInputLayout>
\ No newline at end of file
+</android.support.design.widget.TextInputLayout>
diff --git a/res/layout/people_activity.xml b/res/layout/people_activity.xml
index 978f47a..7570b97 100644
--- a/res/layout/people_activity.xml
+++ b/res/layout/people_activity.xml
@@ -14,7 +14,7 @@
      limitations under the License.
 -->
 
-<android.support.design.widget.CoordinatorLayout
+<androidx.coordinatorlayout.widget.CoordinatorLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/root"
     android:layout_width="match_parent"
@@ -34,4 +34,4 @@
         android:layout_width="match_parent" />
 
     <include layout="@layout/floating_action_button" />
-</android.support.design.widget.CoordinatorLayout>
+</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/res/layout/people_activity_toolbar.xml b/res/layout/people_activity_toolbar.xml
index 3599f0c..4e8ea2f 100644
--- a/res/layout/people_activity_toolbar.xml
+++ b/res/layout/people_activity_toolbar.xml
@@ -28,7 +28,7 @@
         android:background="?attr/colorPrimary">
 
         <!-- the attribute padding removes the gap between this Toolbar and its parent FrameLayout on tablet -->
-        <android.support.v7.widget.Toolbar
+        <androidx.appcompat.widget.Toolbar
             android:layout_width="match_parent"
             android:layout_height="?attr/actionBarSize"
             android:id="@+id/toolbar"
diff --git a/res/layout/quickcontact_collapsed_suggestion_card.xml b/res/layout/quickcontact_collapsed_suggestion_card.xml
index 64bac99..ac2ec49 100644
--- a/res/layout/quickcontact_collapsed_suggestion_card.xml
+++ b/res/layout/quickcontact_collapsed_suggestion_card.xml
@@ -13,7 +13,7 @@
      See the License for the specific language governing permissions and
      limitations under the License.
 -->
-<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
+<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:card_view="http://schemas.android.com/apk/res-auto"
     style="@style/ExpandingEntryCardStyle"
     android:layout_height="@dimen/quickcontact_collapse_view_height"
@@ -61,4 +61,4 @@
                 android:paddingBottom="@dimen/editor_round_button_padding_bottom"/>
     </LinearLayout>>
 
-</android.support.v7.widget.CardView>
\ No newline at end of file
+</androidx.cardview.widget.CardView>
\ No newline at end of file
diff --git a/res/layout/quickcontact_expand_suggestion_card.xml b/res/layout/quickcontact_expand_suggestion_card.xml
index 1d91f87..1867c35 100644
--- a/res/layout/quickcontact_expand_suggestion_card.xml
+++ b/res/layout/quickcontact_expand_suggestion_card.xml
@@ -17,7 +17,7 @@
 <!--
   Layout for the expand suggestion card in QuickContact.
 -->
-<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
+<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:card_view="http://schemas.android.com/apk/res-auto"
     style="@style/ExpandingEntryCardStyle"
     android:layout_height="wrap_content"
@@ -160,4 +160,4 @@
                 android:text="@string/quickcontact_suggestion_link_button"/>
         </LinearLayout>
     </LinearLayout>
-</android.support.v7.widget.CardView>
\ No newline at end of file
+</androidx.cardview.widget.CardView>
\ No newline at end of file
diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml
index e6d1ecb..e9ada0c 100644
--- a/res/values-ar/strings.xml
+++ b/res/values-ar/strings.xml
@@ -92,8 +92,8 @@
     <string name="title_from_google" msgid="4664084747121207202">"‏من Google"</string>
     <string name="title_from_other_accounts" msgid="8307885412426754288">"من <xliff:g id="ACCOUNT">%s</xliff:g>"</string>
     <string name="menu_set_ring_tone" msgid="8728345772068064946">"تعيين نغمة رنين"</string>
-    <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"إرسال إلى البريد الصوتي"</string>
-    <string name="menu_unredirect_calls_to_vm" msgid="8725542534701811737">"عدم إرسال إلى البريد الصوتي"</string>
+    <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"الإرسال إلى البريد الصوتي"</string>
+    <string name="menu_unredirect_calls_to_vm" msgid="8725542534701811737">"عدم الإرسال إلى البريد الصوتي"</string>
     <string name="readOnlyContactWarning" msgid="7514475664695089411">"جهة الاتصال هذه للقراءة فقط. لا يمكن حذفها، ولكن يمكنك إخفاؤها."</string>
     <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"إخفاء جهة الاتصال"</string>
     <string name="readOnlyContactDeleteConfirmation" msgid="4717023505914239809">"سيتم فقط إخفاء حسابات القراءة فقط الموجودة في جهة الاتصال هذه، ولم يتم حذفها."</string>
@@ -161,8 +161,8 @@
     <string name="group_name_dialog_update_title" msgid="6328021162869677383">"إعادة تسمية التصنيف"</string>
     <string name="group_name_dialog_hint" msgid="7624523157537700160">"اسم التصنيف"</string>
     <string name="label_name_dialog_hint" msgid="1276051790427638142">"اسم التصنيف"</string>
-    <string name="audio_chat" msgid="2535716629358298691">"دردشة صوتية"</string>
-    <string name="video_chat" msgid="1872255818640336072">"دردشة فيديو"</string>
+    <string name="audio_chat" msgid="2535716629358298691">"محادثة صوتية"</string>
+    <string name="video_chat" msgid="1872255818640336072">"محادثة فيديو"</string>
     <string name="account_type_format" msgid="718948015590343010">"جهة اتصال <xliff:g id="SOURCE">%1$s</xliff:g>"</string>
     <string name="google_account_type_format" msgid="5283997303922067997">"حساب <xliff:g id="SOURCE">%1$s</xliff:g>"</string>
     <string name="take_photo" msgid="7496128293167402354">"التقاط صورة"</string>
@@ -192,7 +192,7 @@
     <string name="toast_join_with_empty_contact" msgid="1215465657839085613">"اكتب اسم جهة الاتصال قبل ربطها بجهة اتصال أخرى."</string>
     <string name="copy_text" msgid="3257145021583508761">"نسخ إلى الحافظة"</string>
     <string name="set_default" msgid="4417505153468300351">"تعيين كافتراضي"</string>
-    <string name="clear_default" msgid="7193185801596678067">"محو الإعدادات الافتراضية"</string>
+    <string name="clear_default" msgid="7193185801596678067">"محو الإعدادات التلقائية"</string>
     <string name="toast_text_copied" msgid="5143776250008541719">"تم نسخ النص"</string>
     <string name="cancel_confirmation_dialog_message" msgid="9008214737653278989">"هل تريد إلغاء التغييرات؟"</string>
     <string name="cancel_confirmation_dialog_cancel_editing_button" msgid="3057023972074640671">"تجاهل"</string>
@@ -302,7 +302,7 @@
     <string name="sms_fax_work" msgid="8028189067816907075">"إرسال رسالة نصية قصيرة إلى فاكس العمل"</string>
     <string name="sms_fax_home" msgid="9204042076306809634">"إرسال رسالة نصية إلى فاكس المنزل"</string>
     <string name="sms_pager" msgid="7730404569637015192">"إرسال رسالة نصية إلى جهاز النداء"</string>
-    <string name="sms_other" msgid="806127844607642331">"إرسال رسالة نصية"</string>
+    <string name="sms_other" msgid="806127844607642331">"رسالة نصية"</string>
     <string name="sms_callback" msgid="5004824430094288752">"إرسال رسالة إلى هاتف معاودة الاتصال"</string>
     <string name="sms_car" msgid="7444227058437359641">"إرسال رسالة نصية إلى هاتف السيارة"</string>
     <string name="sms_company_main" msgid="118970873419678087">"إرسال رسالة نصية قصيرة على الهاتف الرئيسي للشركة"</string>
@@ -378,15 +378,15 @@
     <string name="map_work" msgid="1360474076921878088">"عرض عنوان العمل"</string>
     <string name="map_other" msgid="3817820803587012641">"عرض عنوان"</string>
     <string name="map_custom" msgid="8761800628069473526">"عرض عنوان <xliff:g id="CUSTOM_LABEL">%s</xliff:g>"</string>
-    <string name="chat_aim" msgid="2588492205291249142">"‏الدردشة باستخدام AIM"</string>
-    <string name="chat_msn" msgid="8041633440091073484">"‏الدردشة باستخدام Windows Live"</string>
-    <string name="chat_yahoo" msgid="6629211142719943666">"‏الدردشة باستخدام Yahoo"</string>
-    <string name="chat_skype" msgid="1210045020427480566">"‏الدردشة باستخدام Skype"</string>
-    <string name="chat_qq" msgid="4294637812847719693">"‏الدردشة باستخدام QQ"</string>
-    <string name="chat_gtalk" msgid="981575737258117697">"‏الدردشة باستخدام Google Talk"</string>
-    <string name="chat_icq" msgid="8438405386153745775">"‏الدردشة باستخدام ICQ"</string>
-    <string name="chat_jabber" msgid="7561444230307829609">"‏الدردشة باستخدام Jabber"</string>
-    <string name="chat" msgid="9025361898797412245">"دردشة"</string>
+    <string name="chat_aim" msgid="2588492205291249142">"‏المحادثة باستخدام AIM"</string>
+    <string name="chat_msn" msgid="8041633440091073484">"‏المحادثة باستخدام Windows Live"</string>
+    <string name="chat_yahoo" msgid="6629211142719943666">"‏المحادثة باستخدام Yahoo"</string>
+    <string name="chat_skype" msgid="1210045020427480566">"‏المحادثة باستخدام Skype"</string>
+    <string name="chat_qq" msgid="4294637812847719693">"‏المحادثة باستخدام QQ"</string>
+    <string name="chat_gtalk" msgid="981575737258117697">"‏المحادثة باستخدام Google Talk"</string>
+    <string name="chat_icq" msgid="8438405386153745775">"‏المحادثة باستخدام ICQ"</string>
+    <string name="chat_jabber" msgid="7561444230307829609">"‏المحادثة باستخدام Jabber"</string>
+    <string name="chat" msgid="9025361898797412245">"محادثة"</string>
     <string name="description_minus_button" msgid="6908099247930477551">"حذف"</string>
     <string name="expand_name_fields_description" msgid="6948274252874552543">"عرض المزيد من حقول الأسماء"</string>
     <string name="collapse_name_fields_description" msgid="4757877385895561556">"تصغير حقول الأسماء"</string>
@@ -437,7 +437,7 @@
     <string name="fail_reason_could_not_open_file" msgid="2067725459821997463">"تعذر فتح \"<xliff:g id="FILE_NAME">%1$s</xliff:g>\": <xliff:g id="EXACT_REASON">%2$s</xliff:g>."</string>
     <string name="fail_reason_could_not_initialize_exporter" msgid="707260459259688510">"تعذر بدء المُصدر: \"<xliff:g id="EXACT_REASON">%s</xliff:g>\"."</string>
     <string name="fail_reason_no_exportable_contact" msgid="8728506011371262065">"ليست هناك جهة اتصال قابلة للتصدير."</string>
-    <string name="missing_required_permission" msgid="5865884842972833120">"لقد عطلت إذنًا مطلوبًا."</string>
+    <string name="missing_required_permission" msgid="5865884842972833120">"لقد أوقفت إذنًا مطلوبًا."</string>
     <string name="fail_reason_error_occurred_during_export" msgid="3018855323913649063">"حدث خطأ أثناء التصدير: \"<xliff:g id="EXACT_REASON">%s</xliff:g>\"."</string>
     <string name="fail_reason_io_error" msgid="6748358842976073255">"‏خطأ I/O"</string>
     <string name="fail_reason_low_memory_during_import" msgid="875222757734882898">"الذاكرة غير كافية. ربما يكون الملف أكبر مما يجب."</string>
@@ -526,7 +526,7 @@
     <string name="callDurationSecondFormat" msgid="7067644915903528776">"<xliff:g id="SECONDS">%s</xliff:g> ثانية"</string>
     <string name="callDurationMinuteFormat" msgid="4647095486747447674">"<xliff:g id="MINUTES">%1$s</xliff:g> دقيقة <xliff:g id="SECONDS">%2$s</xliff:g> ثانية"</string>
     <string name="callDurationHourFormat" msgid="7392254193808506640">"<xliff:g id="MINUTES_0">%1$s</xliff:g> ساعة <xliff:g id="MINUTES_1">%2$s</xliff:g> دقيقة <xliff:g id="SECONDS">%3$s</xliff:g> ثانية"</string>
-    <string name="dynamic_shortcut_disabled_message" msgid="249939425761315252">"تم تعطيل هذا الاختصار"</string>
+    <string name="dynamic_shortcut_disabled_message" msgid="249939425761315252">"تم إيقاف هذا الاختصار"</string>
     <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"تمت إزالة جهة الاتصال"</string>
     <string name="sim_import_button_text" msgid="4270841592496619317">"استيراد"</string>
     <string name="sim_import_title_none_selected" msgid="6910517331401970693">"تحديد جهات الاتصال"</string>
diff --git a/res/values-as/strings.xml b/res/values-as/strings.xml
new file mode 100644
index 0000000..9c9f6d8
--- /dev/null
+++ b/res/values-as/strings.xml
@@ -0,0 +1,534 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--  Copyright (C) 2006 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+ -->
+
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+    <string name="applicationLabel" msgid="3906689777043645443">"সম্পর্কবোৰ"</string>
+    <string name="contactsList" msgid="8661624236494819731">"সম্পর্কবোৰ"</string>
+    <string name="shortcut_add_contact" msgid="7476283631356909204">"সম্পর্ক যোগ কৰক"</string>
+    <string name="shortcutContact" msgid="749243779392912958">"সম্পৰ্ক"</string>
+    <string name="shortcutDialContact" msgid="746622101599186779">"পোনপটীয়াকৈ ডায়েল কৰক"</string>
+    <string name="shortcutMessageContact" msgid="2460337253595976198">"পোনপটীয়া বাৰ্তা"</string>
+    <string name="shortcutActivityTitle" msgid="1504383567778497348">"সম্পৰ্ক বাছনি কৰক"</string>
+    <string name="contactInsertOrEditActivityTitle" msgid="6527505405325862674">"সম্পৰ্কত যোগ কৰক"</string>
+    <string name="contactPickerActivityTitle" msgid="4301062192337417640">"সম্পৰ্ক বাছক"</string>
+    <string name="groupMemberPickerActivityTitle" msgid="1431750793695262522">"বাছনি কৰক"</string>
+    <string name="header_entry_contact_list_adapter_header_title" msgid="2436981165830115659">"নতুন সম্পৰ্ক সৃষ্টি কৰক"</string>
+    <string name="searchHint" msgid="8482945356247760701">"সম্পৰ্কসূচীত সন্ধান কৰক"</string>
+    <string name="menu_addStar" msgid="2908478235715404876">"প্ৰিয়সমূহত যোগ কৰক"</string>
+    <string name="menu_removeStar" msgid="5844227078364227030">"প্ৰিয়সমূহৰ পৰা আঁতৰাওক"</string>
+    <string name="description_action_menu_remove_star" msgid="4699640108012265178">"প্ৰিয়সমূহৰ পৰা আঁতৰোৱা হ\'ল"</string>
+    <string name="description_action_menu_add_star" msgid="3327186327234177456">"প্ৰিয়সমূহত যোগ কৰা হ\'ল"</string>
+    <string name="menu_editContact" msgid="9042415603857662633">"সম্পাদনা কৰক"</string>
+    <string name="menu_deleteContact" msgid="6788644058868189393">"মচক"</string>
+    <string name="menu_change_photo" msgid="7769177631511496210">"ফট\' সলনি কৰক"</string>
+    <string name="menu_create_contact_shortcut" msgid="1663022219127343858">"শ্বৰ্টকাট সৃষ্টি কৰক"</string>
+    <string name="menu_splitAggregate" msgid="2627252205317945563">"আনলিংক কৰক"</string>
+    <string name="menu_editGroup" msgid="6696843438454341063">"সম্পৰ্কসমূহ আঁতৰাওক"</string>
+    <string name="menu_renameGroup" msgid="7169512355179757182">"লেবেলৰ নতুন নাম দিয়ক"</string>
+    <string name="menu_deleteGroup" msgid="1126469629233412249">"লেবেল মচক"</string>
+    <string name="menu_addToGroup" msgid="3267409983764370041">"সম্পর্ক যোগ কৰক"</string>
+    <string name="menu_selectForGroup" msgid="3999234528229376098">"সম্পৰ্কসমূহ বাছনি কৰক"</string>
+    <string name="menu_addContactsToGroup" msgid="655196688840626483">"সম্পৰ্ক যোগ কৰক"</string>
+    <string name="menu_removeFromGroup" msgid="6720354305399961978">"লেবেলৰ পৰা আঁতৰাওক"</string>
+    <string name="menu_new_group_action_bar" msgid="3127059073617415221">"লেবেল সৃষ্টি কৰক"</string>
+    <string name="splitConfirmation" msgid="7342030840130187290">"একাধিক সম্পৰ্কসূচীৰ পৰা এই সম্পৰ্কটো আনলিংক কৰিবনে?"</string>
+    <string name="splitConfirmation_positive_button" msgid="9129409098807939699">"আনলিংক কৰক"</string>
+    <string name="splitConfirmationWithPendingChanges" msgid="7719062163511895696">"আপুনি ইতিমধ্য়ে কৰা সলনিসমূহ ছেভ কৰিব আৰু একাধিক সম্পৰ্কসূচীৰ পৰা এই সম্পৰ্কটো আনলিংক কৰিব বিচাৰেনে?"</string>
+    <string name="splitConfirmationWithPendingChanges_positive_button" msgid="9073444264887244032">"ছেভ কৰি আনলিংক কৰক"</string>
+    <string name="joinConfirmation" msgid="8262614843581924365">"আপুনি ইতিমধ্য়ে কৰা সলনিসমূহ ছেভ কৰিব আৰু বাছনি কৰা সম্পৰ্কসমূহলৈ লিংক কৰিব বিচাৰেনে?"</string>
+    <string name="joinConfirmation_positive_button" msgid="4573092849769149516">"ছেভ আৰু লিংক কৰক"</string>
+    <string name="contacts_linking_progress_bar" msgid="2846494347384549277">"লিংক কৰি থকা হৈছে"</string>
+    <string name="contacts_unlinking_progress_bar" msgid="5989310198163726929">"আনলিংক কৰিথকা হৈছে"</string>
+    <string name="menu_joinAggregate" msgid="3599512127797513606">"লিংক"</string>
+    <string name="menu_linkedContacts" msgid="400444389718855621">"লিংক কৰা সম্পৰ্কসমূহ চাওক"</string>
+    <string name="menu_save" msgid="1727844363591825909">"ছেভ কৰক"</string>
+    <string name="titleJoinContactDataWith" msgid="6825255752748313944">"সম্পৰ্কসমূহ লিংক কৰক"</string>
+    <string name="blurbJoinContactDataWith" msgid="5864256698061641841">"আপুনি <xliff:g id="NAME">%s</xliff:g>ৰ সৈতে লিংক কৰিব বিচৰা সম্পৰ্ক বাছনি কৰক:"</string>
+    <string name="separatorJoinAggregateSuggestions" msgid="2831414448851313345">"পৰামৰ্শ দিয়া সম্পৰ্কবোৰ"</string>
+    <string name="separatorJoinAggregateAll" msgid="7939932265026181043">"সকলো সম্পৰ্ক"</string>
+    <string name="contactsJoinedNamedMessage" msgid="1299418263439579455">"<xliff:g id="NAME">%s</xliff:g> লিংক কৰা হ\'ল"</string>
+    <string name="contactsJoinedMessage" msgid="3343535986195643136">"সম্পৰ্কবোৰ লিংক কৰা হ\'ল"</string>
+    <string name="contacts_deleted_one_named_toast" msgid="2252551736301363193">"<xliff:g id="NAME">%1$s</xliff:g> মচা হ\'ল"</string>
+    <string name="contacts_deleted_two_named_toast" msgid="3642082931473111791">"<xliff:g id="NAME_0">%1$s</xliff:g> আৰু <xliff:g id="NAME_1">%2$s</xliff:g> মচা হ\'ল"</string>
+    <string name="contacts_deleted_many_named_toast" msgid="7731565342428031249">"<xliff:g id="NAME_0">%1$s</xliff:g>, <xliff:g id="NAME_1">%2$s</xliff:g>, <xliff:g id="NAME_2">%3$s</xliff:g>… মচা হ\'ল"</string>
+    <plurals name="contacts_deleted_toast" formatted="false" msgid="1477708624197262295">
+      <item quantity="one">সম্পৰ্কবোৰ মচা হ\'ল</item>
+      <item quantity="other">সম্পৰ্কবোৰ মচা হ\'ল</item>
+    </plurals>
+    <plurals name="contacts_count" formatted="false" msgid="8696793457340503668">
+      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g>টা সম্পৰ্ক</item>
+      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g>টা সম্পৰ্ক</item>
+    </plurals>
+    <plurals name="contacts_count_with_account" formatted="false" msgid="7402583111980220575">
+      <item quantity="one"><xliff:g id="COUNT_2">%1$d</xliff:g>টা সম্পৰ্ক · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
+      <item quantity="other"><xliff:g id="COUNT_2">%1$d</xliff:g>টা সম্পৰ্ক · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
+    </plurals>
+    <string name="title_from_google" msgid="4664084747121207202">"Googleৰ পৰা"</string>
+    <string name="title_from_other_accounts" msgid="8307885412426754288">"<xliff:g id="ACCOUNT">%s</xliff:g>ৰ পৰা"</string>
+    <string name="menu_set_ring_tone" msgid="8728345772068064946">"ৰিংট\'ন ছেট কৰক"</string>
+    <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"ভইচমেললৈ লৈ যাওক"</string>
+    <string name="menu_unredirect_calls_to_vm" msgid="8725542534701811737">"ভইচমেইললৈ নোযোৱা কৰক"</string>
+    <string name="readOnlyContactWarning" msgid="7514475664695089411">"এই সম্পৰ্ক পঢ়া-মাত্ৰ সম্পৰ্ক হয়। ইয়াক মচিব নোৱাৰি, কিন্তু আপুনি ইয়াক লুকুৱাব পাৰে।"</string>
+    <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"সম্পৰ্ক লুকুৱাওক"</string>
+    <string name="readOnlyContactDeleteConfirmation" msgid="4717023505914239809">"পঢ়া-মাত্ৰ একাউণ্টসমূহৰ সবিশেষ লুকুওৱাএ হয়, মচা নহয়।"</string>
+    <string name="single_delete_confirmation" msgid="3106905986948679720">"এই সম্পৰ্কটো মচিবনে?"</string>
+    <string name="batch_delete_confirmation" msgid="3984346060324014108">"বাছনি কৰা সম্পৰ্কসমূহ মচিবনে?"</string>
+    <string name="batch_delete_read_only_contact_confirmation" msgid="8411117621035639964">"আপোনাৰ পঢ়া-মাত্ৰ একাউণ্টৰ সম্পৰ্কসমূহ মচিব নোৱাৰি, লুকুওৱাবহে পাৰি।"</string>
+    <string name="batch_delete_multiple_accounts_confirmation" msgid="8207205649127030030">"মচিবলগীয়া সম্পৰ্কসমূহত একাধিক একাউণ্টৰ সবিশেষ থাকে। পঢ়া-মাত্ৰ একাউণ্টসমূহৰ সবিশেষ লুকুওৱাএ হয়, মচা নহয়।"</string>
+    <string name="multipleContactDeleteConfirmation" msgid="5235324124905653550">"এই সম্পৰ্ক আঁতৰোৱা কাৰ্যই একাধিক একাউণ্টৰ সবিশেষ মচিব।"</string>
+    <string name="deleteConfirmation" msgid="3512271779086656043">"এই সম্পৰ্কটো মচিবনে?"</string>
+    <string name="deleteConfirmation_positive_button" msgid="7857888845028586365">"মচক"</string>
+    <string name="invalidContactMessage" msgid="8215051456181842274">"এই সম্পৰ্কটো নাই।"</string>
+    <string name="createContactShortcutSuccessful_NoName" msgid="8831303345367275472">"সম্পৰ্কক গৃহ স্ক্ৰীণত যোগ কৰা হ\'ল।"</string>
+    <string name="createContactShortcutSuccessful" msgid="953651153238790069">"<xliff:g id="NAME">%s</xliff:g>ক গৃহ স্ক্ৰীণত যোগ কৰা হ\'ল।"</string>
+    <string name="photoPickerNotFoundText" msgid="2052542573853433204">"এই ডিভাইচত কোনো চিত্ৰ নাই।"</string>
+    <string name="attach_photo_dialog_title" msgid="5599827035558557169">"সম্পৰ্ক ব্য়ক্তিৰ ফট\'"</string>
+    <string name="customLabelPickerTitle" msgid="1081475101983255212">"উপযোগিতা অনুসৰি লেবেলৰ নাম"</string>
+    <string name="removePhoto" msgid="4898105274130284565">"ফট\' আঁতৰাওক"</string>
+    <string name="noContacts" msgid="2228592924476426108">"আপোনাৰ সম্পৰ্কসূচী খালী আছে"</string>
+    <string name="emptyGroup" msgid="5102411903247859575">"এই লেবেলত কোনো সম্পৰ্ক ব্য়ক্তি নাই"</string>
+    <string name="emptyAccount" msgid="6873962901497975964">"এই একাউণ্টত কোনো সম্পৰ্ক ব্য়ক্তি নাই"</string>
+    <string name="emptyMainList" msgid="2772242747899664460">"আপোনাৰ সম্পৰ্কসূচী খালী আছে"</string>
+    <string name="contactSavedNamedToast" msgid="895136068894549611">"<xliff:g id="DISPLAY_NAME">%s</xliff:g> ছেভ কৰা হ\'ল"</string>
+    <string name="contactSavedToast" msgid="9171862279493213075">"সম্পৰ্ক ছেভ কৰা হ\'ল"</string>
+    <string name="contactUnlinkedToast" msgid="7122823195786012553">"সম্পৰ্কসমূহ আনলিংক কৰা হ\'ল"</string>
+    <string name="contactSavedErrorToast" msgid="4827033473908688031">"সম্পৰ্কত কৰা সালসলনি ছেভ কৰিব পৰা নগ\'ল"</string>
+    <string name="contactUnlinkErrorToast" msgid="2706297508166952431">"সম্পৰ্ক আনলিংক কৰিবপৰা নগ\'ল"</string>
+    <string name="contactJoinErrorToast" msgid="5735129234573327701">"সম্পৰ্ক লিংক কৰিব পৰা নগ\'ল"</string>
+    <string name="contactGenericErrorToast" msgid="3885457515665783976">"সম্পৰ্ক ছেভ কৰাত আঁসোৱাহ"</string>
+    <string name="contactPhotoSavedErrorToast" msgid="6860883564984042194">"সম্পৰ্কসূচীৰ ফট\' সলনি কৰা কাৰ্যটো ছেভ কৰিবপৰা নগ\'ল"</string>
+    <string name="groupLoadErrorToast" msgid="7536267148196064554">"লেবেল ল\'ড কৰিবপৰা নগ\'ল"</string>
+    <string name="groupDeletedToast" msgid="520896687873262027">"লেবেল মচা হ\'ল"</string>
+    <string name="groupCreatedToast" msgid="1924195126172834870">"লেবেল সৃষ্টি কৰা হ\'ল"</string>
+    <string name="groupCreateFailedToast" msgid="4359093891863474299">"লেবেল সৃষ্টি কৰিব নোৱাৰি"</string>
+    <string name="groupUpdatedToast" msgid="3667977658676267687">"লেবেল আপডেট কৰা হ\'ল"</string>
+    <string name="groupMembersRemovedToast" msgid="3510563559799376603">"লেবেলৰপৰা আঁতৰোৱা হ\'ল"</string>
+    <string name="groupMembersAddedToast" msgid="4824834898718972768">"লেবেলত যোগ কৰা হ\'ল"</string>
+    <string name="groupSavedErrorToast" msgid="2355891714292740162">"লেবেলত কৰা পৰিবৰ্তনবোৰ ছেভ কৰিব পৰা নগ\'ল"</string>
+    <string name="groupExistsErrorMessage" msgid="5196811283836946189">"সেই লেবেলটো আগৰে পৰা আছে"</string>
+    <string name="groupSomeContactsNoEmailsToast" msgid="8211161470235548732">"কিছুমান সম্পৰ্কৰ ইমেইল ঠিকনা নাই।"</string>
+    <string name="groupSomeContactsNoPhonesToast" msgid="5530760834827530509">"কিছুমান সম্পৰ্কৰ ফ\'ন নম্বৰ নাই।"</string>
+    <string name="menu_sendEmailOption" msgid="5978319931321657780">"ইমেইল পঠিয়াওক"</string>
+    <string name="menu_sendMessageOption" msgid="8850168125274916426">"বাৰ্তা পঠিয়াওক"</string>
+    <string name="pickerSelectContactsActivityTitle" msgid="1936544190231136729">"সম্পৰ্কসমূহ বাছনি কৰক"</string>
+    <string name="send_to_selection" msgid="2251339182881603540">"পঠিয়াওক"</string>
+    <string name="listFoundAllContactsZero" msgid="922980883593159444">"কোনো সম্পৰ্ক নাই"</string>
+    <string name="add_contact_dlg_message_fmt" msgid="7986472669444326576">"\"<xliff:g id="EMAIL">%s</xliff:g>\"ক সম্পৰ্কসমূহলৈ যোগ কৰিবনে?"</string>
+    <string name="search_settings_description" msgid="2675223022992445813">"আপোনাৰ সম্পৰ্কবোৰৰ নাম"</string>
+    <string name="quickcontact_transparent_view_description" msgid="987959416759562455">"পূৰ্বৰ স্ক্ৰীণলৈ উভতি যাবলৈ ক্লিক কৰক"</string>
+    <string name="quickcontact_add_phone_number" msgid="731665835910658965">"ফোন নম্বৰ যোগ কৰক"</string>
+    <string name="quickcontact_add_email" msgid="739298028384348482">"ইমেইল যোগ কৰক"</string>
+    <string name="missing_app" msgid="1466111003546611387">"এই কাৰ্য কৰিবলৈ কোনো এপ্ বিচাৰি পোৱা নগ\'ল।"</string>
+    <string name="menu_share" msgid="943789700636542260">"শ্বেয়াৰ কৰক"</string>
+    <string name="menu_add_contact" msgid="3198704337220892684">"সর্ম্পক সূচীত যোগ কৰক"</string>
+    <string name="menu_add_contacts" msgid="4465646512002163011">"যোগ কৰক"</string>
+    <plurals name="title_share_via" formatted="false" msgid="5886112726191455415">
+      <item quantity="one">ইয়াৰ জৰিয়তে সম্পৰ্কসমূহ শ্বেয়াৰ কৰক</item>
+      <item quantity="other">ইয়াৰ জৰিয়তে সম্পৰ্কসমূহ শ্বেয়াৰ কৰক</item>
+    </plurals>
+    <string name="dialog_new_group_account" msgid="3451312333591556651">"একাউণ্ট বাছনি কৰক"</string>
+    <string name="group_name_dialog_insert_title" msgid="2668452090427027941">"লেবেল সৃষ্টি কৰক"</string>
+    <string name="group_name_dialog_update_title" msgid="6328021162869677383">"লেবেলৰ নতুন নাম দিয়ক"</string>
+    <string name="group_name_dialog_hint" msgid="7624523157537700160">"লেবেলৰ নাম"</string>
+    <string name="label_name_dialog_hint" msgid="1276051790427638142">"লেবেলৰ নাম"</string>
+    <string name="audio_chat" msgid="2535716629358298691">"ভইচ চ্চাট"</string>
+    <string name="video_chat" msgid="1872255818640336072">"ভিডিঅ’ চ্চাট"</string>
+    <string name="account_type_format" msgid="718948015590343010">"<xliff:g id="SOURCE">%1$s</xliff:g>ৰ সম্পৰ্ক"</string>
+    <string name="google_account_type_format" msgid="5283997303922067997">"<xliff:g id="SOURCE">%1$s</xliff:g> একাউণ্ট"</string>
+    <string name="take_photo" msgid="7496128293167402354">"ফট\' লওক"</string>
+    <string name="take_new_photo" msgid="7341354729436576304">"নতুন ফট\' লওক"</string>
+    <string name="pick_photo" msgid="2129509985223564942">"ফট\' বাছনি কৰক"</string>
+    <string name="pick_new_photo" msgid="9122450996263688237">"নতুন ফট\' বাছনি কৰক"</string>
+    <string name="search_results_searching" msgid="3984833028938569930">"সন্ধান কৰি থকা হৈছে…"</string>
+    <string name="event_edit_field_hint_text" msgid="5794424930242630477">"তাৰিখ"</string>
+    <string name="group_edit_field_hint_text" msgid="8038224059926963133">"লেবেল"</string>
+    <string name="cancel_button_content_description" msgid="1288652456274531846">"বাতিল কৰক"</string>
+    <string name="back_arrow_content_description" msgid="4355362760545735065">"উভতি যাওক"</string>
+    <string name="action_menu_back_from_edit_select" msgid="6435476408621731420">"বন্ধ কৰক"</string>
+    <string name="aggregation_suggestion_edit_dialog_message" msgid="6549585283910518095">"বাছনি কৰা সম্পৰ্ক সম্পাদনা কৰা ম\'ডলৈ যাবনে? আপুনি এতিয়ালৈকে দিয়া তথ্য়ৰ প্ৰতিলিপি কৰা হ\'ব।"</string>
+    <string name="contact_directory_description" msgid="683398073603909119">"ডাইৰেক্টৰী <xliff:g id="TYPE">%1$s</xliff:g>"</string>
+    <string name="activity_title_settings" msgid="5464130076132770781">"ছেটিংবোৰ"</string>
+    <string name="menu_settings" msgid="377929915873428211">"ছেটিংবোৰ"</string>
+    <string name="menu_help" msgid="1680178646764069976">"সহায় আৰু মতামত"</string>
+    <string name="organization_company_and_title" msgid="6718207751363732025">"<xliff:g id="COMPANY_0">%2$s</xliff:g>, <xliff:g id="COMPANY_1">%1$s</xliff:g>"</string>
+    <string name="non_phone_caption" msgid="1541655052330027380">"ফ\'ন নম্বৰ"</string>
+    <string name="non_phone_add_to_contacts" msgid="6590985286250471169">"সর্ম্পক সূচীত যোগ কৰক"</string>
+    <string name="non_phone_close" msgid="7608506439725515667">"বন্ধ কৰক"</string>
+    <string name="date_year_toggle" msgid="7122002148518724139">"বছৰ অন্তৰ্ভুক্ত কৰক"</string>
+    <string name="contacts_unavailable_add_account" msgid="4347232421410561500">"একাউণ্ট যোগ কৰক"</string>
+    <string name="contacts_unavailable_import_contacts" msgid="3182801738595937144">"আমদানি কৰক"</string>
+    <string name="create_group_item_label" msgid="3263064599743742865">"নতুন সৃষ্টি কৰক…"</string>
+    <string name="delete_group_dialog_message" msgid="335713829185261371">"লেবেল \"<xliff:g id="GROUP_LABEL">%1$s</xliff:g>\" মচিবনে? (সম্পৰ্কবোৰ নিজে মচা নাযাব।)"</string>
+    <string name="toast_join_with_empty_contact" msgid="1215465657839085613">"সম্পৰ্কক আনটোৰ সৈতে লিংক কৰাৰ পূৰ্বে সম্পৰ্কৰ নাম টাইপ কৰক।"</string>
+    <string name="copy_text" msgid="3257145021583508761">"ক্লিপব\'ৰ্ডত প্ৰতিলিপি কৰক"</string>
+    <string name="set_default" msgid="4417505153468300351">"ডিফ\'ল্ট ছেট কৰক"</string>
+    <string name="clear_default" msgid="7193185801596678067">"ডিফ\'ল্ট মচক"</string>
+    <string name="toast_text_copied" msgid="5143776250008541719">"পাঠৰ প্ৰতিলিপি কৰা হ\'ল"</string>
+    <string name="cancel_confirmation_dialog_message" msgid="9008214737653278989">"সলনি কৰা কার্যসমূহ প্ৰত্য়াখ্য়ান কৰিবনে?"</string>
+    <string name="cancel_confirmation_dialog_cancel_editing_button" msgid="3057023972074640671">"প্ৰত্যাখ্যান কৰক"</string>
+    <string name="cancel_confirmation_dialog_keep_editing_button" msgid="3316573928085916146">"বাতিল কৰক"</string>
+    <string name="leave_customize_confirmation_dialog_message" msgid="4277114551206032979">"উপযোগিতা অনুসৰি সৃষ্টি কৰা স্ক্ৰীণ প্ৰত্যাখ্যান কৰিবনে?"</string>
+    <string name="enter_contact_name" msgid="4594274696120278368">"সম্পৰ্কসূচীত সন্ধান কৰক"</string>
+    <string name="title_edit_group" msgid="8602752287270586734">"সম্পৰ্কসমূহ আঁতৰাওক"</string>
+    <string name="local_profile_title" msgid="2021416826991393684">"মোৰ স্থানীয় প্ৰ\'ফাইল"</string>
+    <string name="external_profile_title" msgid="8034998767621359438">"মোৰ <xliff:g id="EXTERNAL_SOURCE">%1$s</xliff:g> প্ৰ\'ফাইল"</string>
+    <string name="contact_editor_prompt_zero_accounts" msgid="6648376557574360096">"কোনো একাউণ্ট যোগ কৰিবলৈ কিছু সময় দিয়ক যিয়ে আপোনাৰ সম্পৰ্কসমূহক Googleলৈ বেক আপ ল\'ব।"</string>
+    <string name="contact_editor_prompt_one_account" msgid="3087691056345099310">"নতুন সম্পৰ্কসমূহক <xliff:g id="ACCOUNT_NAME">%1$s</xliff:g>ত ছেভ কৰা হ\'ব।"</string>
+    <string name="contact_editor_prompt_multiple_accounts" msgid="8565761674283473549">"নতুন সম্পৰ্কৰ বাবে কোনো ডিফ\'ল্ট একাউণ্ট বাছনি কৰক:"</string>
+    <string name="contact_editor_title_new_contact" msgid="3042788718983070111">"নতুন সম্পৰ্ক সৃষ্টি কৰক"</string>
+    <string name="contact_editor_title_existing_contact" msgid="4898475703683187798">"সম্পৰ্ক সম্পাদনা কৰক"</string>
+    <string name="contact_editor_title_read_only_contact" msgid="2443496574528842237">"চোৱা মাত্ৰ"</string>
+    <string name="contact_editor_pick_raw_contact_to_edit_dialog_title" msgid="4186699385645902152">"সম্পাদনা কৰিবলৈ সম্পৰ্ক ব্য়ক্তিজন বাছনি কৰক"</string>
+    <string name="contact_editor_pick_linked_contact_dialog_title" msgid="4618465940423857694">"লিংক কৰা সম্পৰ্কসমূহ"</string>
+    <string name="contact_editor_add_linked_contact" msgid="426142748048816297">"যোগ কৰক"</string>
+    <string name="contact_editor_unlink_contacts" msgid="4525214336177236653">"আনলিংক কৰক"</string>
+    <string name="add_account" msgid="8201790677994503186">"একাউণ্ট যোগ কৰক"</string>
+    <string name="add_new_account" msgid="5748627740680940264">"নতুন একাউণ্ট যোগ কৰক"</string>
+    <string name="menu_export_database" msgid="2659719297530170820">"ডেটাবেছ ফাইলসমূহ ৰপ্তানি কৰক"</string>
+    <string name="action_menu_add_new_contact_button" msgid="5506832825256203208">"নতুন সম্পৰ্ক সৃষ্টি কৰক"</string>
+    <string name="expanding_entry_card_view_see_more" msgid="3779194067124758079">"অধিক চাওক"</string>
+    <string name="expanding_entry_card_view_see_less" msgid="5344160551629714168">"কম চাওক"</string>
+    <string name="recent_card_title" msgid="8982782042698001695">"শেহতীয়া"</string>
+    <string name="about_card_title" msgid="2920942314212825637">"ইয়াৰ বিষয়ে"</string>
+    <string name="toast_making_personal_copy" msgid="288549957278065542">"ব্য়ক্তিগত প্ৰতিলিপ সৃষ্টি কৰিথকা হৈছে…"</string>
+    <string name="tomorrow" msgid="6241969467795308581">"কাইলৈ"</string>
+    <string name="today" msgid="8041090779381781781">"আজি"</string>
+    <string name="today_at_time_fmt" msgid="605665249491030460">"আজি <xliff:g id="TIME_INTERVAL">%s</xliff:g> বজাত"</string>
+    <string name="tomorrow_at_time_fmt" msgid="4856497969617819421">"কাইলৈ <xliff:g id="TIME_INTERVAL">%s</xliff:g> বজাত"</string>
+    <string name="date_time_fmt" msgid="5053178726906863812">"<xliff:g id="DATE">%1$s</xliff:g>, <xliff:g id="TIME_INTERVAL">%2$s</xliff:g>"</string>
+    <string name="untitled_event" msgid="3484859385405939366">"(শিৰোনামবিহীন কাৰ্যক্ৰম)"</string>
+    <string name="date_time_set" msgid="4761419824439606690">"ছেট কৰক"</string>
+    <string name="header_im_entry" msgid="3581720979640225615">"IM"</string>
+    <string name="header_organization_entry" msgid="8515394955666265406">"সংস্থা"</string>
+    <string name="header_nickname_entry" msgid="6743561883967451485">"উপনাম"</string>
+    <string name="header_note_entry" msgid="4320190426480612344">"টোকা"</string>
+    <string name="header_website_entry" msgid="1411467850000824745">"ৱেবছাইট"</string>
+    <string name="header_event_entry" msgid="6738250422744401460">"কাৰ্যক্ৰম"</string>
+    <string name="header_relation_entry" msgid="1520292958088146460">"সম্বন্ধ"</string>
+    <string name="header_name_entry" msgid="1592791008096288306">"নাম"</string>
+    <string name="header_email_entry" msgid="8666093061171624478">"ইমেইল"</string>
+    <string name="header_phone_entry" msgid="8450980572274173570">"ফ’ন"</string>
+    <string name="content_description_directions" msgid="2686791825798189335">"অৱস্থানলৈ যোৱা ৰাস্তাবোৰ"</string>
+    <string name="content_description_recent_sms" msgid="1666389577263317445">"শেহতীয়া এছএমএছ। <xliff:g id="MESSAGE_BODY">%1$s</xliff:g>। <xliff:g id="PHONE_NUMBER">%2$s</xliff:g>। <xliff:g id="DATE">%3$s</xliff:g>। প্ৰত্য়ুত্তৰ দিবলৈ ক্লিক কৰক"</string>
+    <string name="content_description_recent_call_type_incoming" msgid="5210739096863511410">"অন্তৰ্গামী"</string>
+    <string name="content_description_recent_call_type_outgoing" msgid="5156553338985232744">"বহিৰ্গামী"</string>
+    <string name="content_description_recent_call_type_missed" msgid="7371810920196048204">"মিচড"</string>
+    <string name="content_description_recent_call" msgid="5183800406316723676">"শেহতীয়া কল। <xliff:g id="CALL_TYPE">%1$s</xliff:g>। <xliff:g id="PHONE_NUMBER">%2$s</xliff:g>। <xliff:g id="DATE">%3$s</xliff:g>। ওভতাই কল কৰিবলৈ ক্লিক কৰক"</string>
+    <string name="message_from_you_prefix" msgid="7180706529908434482">"আপুনি: <xliff:g id="SMS_BODY">%s</xliff:g>"</string>
+    <string name="editor_more_fields" msgid="3630987771304393421">"অধিক ক্ষেত্ৰ"</string>
+    <string name="editor_change_photo_content_description" msgid="820879708069864340">"সম্পৰ্কৰ ফট\' সলনি কৰক"</string>
+    <string name="editor_add_photo_content_description" msgid="4194479313465418120">"সম্পৰ্ক ফট\' যোগ কৰক"</string>
+    <string name="editor_contact_photo_content_description" msgid="8571975622926162369">"সম্পৰ্ক ব্য়ক্তিৰ ফট\'"</string>
+    <string name="editor_failed_to_load" msgid="1623639078580475818">"সম্পাদক খুলিবপৰা নগ\'ল।"</string>
+    <string name="editor_account_selector_title" msgid="4426337993307015833">"ইয়ালৈ ছেভ কৰিথকা হৈছে"</string>
+    <string name="editor_account_selector_read_only_title" msgid="4137969650184457126">"<xliff:g id="ACCOUNT">%s</xliff:g>ৰ সম্পৰ্ক সম্পৰ্কীয় তথ্য় সম্পাদনাযোগ্য় নহয়"</string>
+    <string name="quickcontact_suggestion_link_button" msgid="3244619714781727946">"সম্পৰ্কসমূহ লিংক কৰক"</string>
+    <string name="quickcontact_suggestion_cancel_button" msgid="8236954313106630862">"বাতিল কৰক"</string>
+    <string name="suggestion_card_this_contact_title" msgid="3039457405374454914">"এই সম্পৰ্ক"</string>
+    <string name="suggestion_card_duplicates_title" msgid="9107788743178980902">"সম্ভাব্য ডুপ্লিকেটবোৰ"</string>
+    <string name="suggestion_card_help_message" msgid="4474061044387181093">"এই সম্পৰ্কসমূহ বোধহয় একেজন ব্য়ক্তিৰ হয়। আপুনি সেই সম্পৰ্কবোৰ একেখন সম্পৰ্কত লিংক কৰিব পাৰে।"</string>
+    <string name="editor_delete_view_description" msgid="8583095381562991959">"<xliff:g id="DATA_TYPE">%1$s </xliff:g><xliff:g id="DATA_KIND">%2$s</xliff:g> মচক"</string>
+    <string name="editor_delete_view_description_short" msgid="7335518371270844912">"<xliff:g id="DATA_KIND">%s</xliff:g> মচক"</string>
+    <string name="menu_assistant" msgid="5760693735722052454">"পৰামৰ্শাৱলী"</string>
+    <string name="menu_assistant_new_badge" msgid="3132884821616980034">"নতুন"</string>
+    <string name="navigation_drawer_open" msgid="1126498472143250642">"নেভিগেশ্বন ড্ৰৱাৰ খোলক"</string>
+    <string name="navigation_drawer_close" msgid="4137416137011817930">"নেভিগেশ্বন ড্ৰৱাৰ বন্ধ কৰক"</string>
+    <string name="navigation_drawer_label" msgid="4154758025620107419">"<xliff:g id="LABEL_NAME">%s</xliff:g> লেবেল"</string>
+    <string name="menu_title_groups" msgid="8356921831150278868">"লেবেলসমূহ"</string>
+    <string name="menu_title_filters" msgid="8210922220185114527">"একাউণ্টসমূহ"</string>
+    <string name="permission_explanation_header" msgid="5739405825039695327">"আপোনাৰ ইতিহাস একেলগে চাওক"</string>
+    <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"কাৰ্যক্ৰম আৰু বাৰ্তাসমূহ"</string>
+    <string name="permission_explanation_subheader_calendar" msgid="8785323496211704613">"কাৰ্যক্ৰমসমূহ"</string>
+    <string name="permission_explanation_subheader_SMS" msgid="1904552086449525567">"বাৰ্তাসমূহ"</string>
+    <string name="hamburger_feature_highlight_header" msgid="5762679188565585072">"পৰামৰ্শাৱলী"</string>
+    <string name="hamburger_feature_highlight_body" msgid="4403398269286898733">"নিজৰ সম্পৰ্কসমূহক সংগঠিত আৰু উপযোগী বনাই ৰাখক"</string>
+    <string name="undo" msgid="1425165101664071422">"আনডু কৰক"</string>
+    <string name="call_custom" msgid="6385303130912713318">"<xliff:g id="CUSTOM_LABEL">%s</xliff:g>ত কল কৰক"</string>
+    <string name="call_home" msgid="1990519474420545392">"ঘৰৰ ফ\'ন নম্বৰত কল কৰক"</string>
+    <string name="call_mobile" msgid="7502236805487609178">"ম\'বাইলত কল কৰক"</string>
+    <string name="call_work" msgid="5328785911463744028">"কৰ্মস্থানৰ ফ\'ন নম্বৰত কল কৰক"</string>
+    <string name="call_fax_work" msgid="7467763592359059243">"কর্মস্থানৰ ফেক্স নম্বৰত কল কৰক"</string>
+    <string name="call_fax_home" msgid="8342175628887571876">"ঘৰৰ ফেক্স নম্বৰত কল কৰক"</string>
+    <string name="call_pager" msgid="9003902812293983281">"পেজাৰ নম্বৰলৈ কল কৰক"</string>
+    <string name="call_other" msgid="8563753966926932052">"কল কৰক"</string>
+    <string name="call_callback" msgid="1910165691349426858">"কলবেক নম্বৰত কল কৰক"</string>
+    <string name="call_car" msgid="3280537320306436445">"কাৰৰ নম্বৰলৈ কল কৰক"</string>
+    <string name="call_company_main" msgid="6105120947138711257">"কোম্পানীৰ মুখ্য ফ\'ন নম্বৰলৈ কল কৰক"</string>
+    <string name="call_isdn" msgid="1541590690193403411">"ISDN নম্বৰলৈ কল কৰক"</string>
+    <string name="call_main" msgid="6082900571803441339">"মুখ্য় ফ\'ন নম্বৰত কল কৰক"</string>
+    <string name="call_other_fax" msgid="5745314124619636674">"ফেক্স নম্বৰলৈ কল কৰক"</string>
+    <string name="call_radio" msgid="8296755876398357063">"ৰেডিঅ\' ফ\'ন নম্বৰত কল কৰক"</string>
+    <string name="call_telex" msgid="2223170774548648114">"টেলেক্স ফ\'ন নম্বৰত কল কৰক"</string>
+    <string name="call_tty_tdd" msgid="8951266948204379604">"TTY/TDD নম্বৰলৈ কল কৰক"</string>
+    <string name="call_work_mobile" msgid="8707874281430105394">"কৰ্মস্থানৰ ম\'বাইলত কল কৰক"</string>
+    <string name="call_work_pager" msgid="3419348514157949008">"কৰ্মস্থানৰ পেজাৰৰ নম্বৰলৈ কল কৰক"</string>
+    <string name="call_assistant" msgid="670941612175068337">"<xliff:g id="CUSTOM_LABEL">%s</xliff:g>ত কল কৰক"</string>
+    <string name="call_mms" msgid="6274041545876221437">"এমএমএছ নম্বৰত কল কৰক"</string>
+    <string name="call_by_shortcut" msgid="2566802538698913124">"<xliff:g id="CONTACT_NAME">%s</xliff:g>ক (কল কৰক)"</string>
+    <string name="sms_custom" msgid="415060214233647603">"বাৰ্তা পঠিয়াওক <xliff:g id="CUSTOM_LABEL">%s</xliff:g>"</string>
+    <string name="sms_home" msgid="7524332261493162995">"ঘৰৰ নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_mobile" msgid="5200107250451030769">"ম\'বাইল নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_work" msgid="2269624156655267740">"কর্মস্থানৰ নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_fax_work" msgid="8028189067816907075">"কৰ্মস্থানৰ ফেক্স নম্বৰত বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_fax_home" msgid="9204042076306809634">"ঘৰৰ ফেক্স নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_pager" msgid="7730404569637015192">"পেজাৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_other" msgid="806127844607642331">"বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_callback" msgid="5004824430094288752">"কলবেক নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_car" msgid="7444227058437359641">"কাৰৰ নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_company_main" msgid="118970873419678087">"কোম্পানীৰ মুখ্য ফ\'ন নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_isdn" msgid="8153785037515047845">"ISDN নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_main" msgid="8621625784504541679">"মুখ্য নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_other_fax" msgid="3888842199855843152">"ফেক্স নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_radio" msgid="3329166673433967820">"ৰেডিঅ\'ৰ নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_telex" msgid="9034802430065267848">"টেলেক্স নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_tty_tdd" msgid="6782284969132531532">"TTY/TDD নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_work_mobile" msgid="2459939960512702560">"কৰ্মস্থানৰ ম\'বাইল নম্বৰলৈ বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_work_pager" msgid="5566924423316960597">"কৰ্মস্থানৰ পেজাৰ নম্বৰত বাৰ্তা পঠিয়াওক"</string>
+    <string name="sms_assistant" msgid="2773424339923116234">"বাৰ্তা পঠিয়াওক <xliff:g id="ASSISTANT">%s</xliff:g>"</string>
+    <string name="sms_mms" msgid="4069352461380762677">"এমএমএছ নম্বৰত বাৰ্তা পঠাওক"</string>
+    <string name="sms_by_shortcut" msgid="7741770672976099517">"<xliff:g id="CONTACT_NAME">%s</xliff:g> (বাৰ্তা)"</string>
+    <string name="description_video_call" msgid="7120921378651700947">"ভিডিঅ\' কল কৰক"</string>
+    <string name="clearFrequentsConfirmation_title" msgid="766292372438450432">"সঘনাই যোগাযোগ কৰা সূচী মচিবনে?"</string>
+    <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"আপুনি কন্টেক্ট আৰু ফ\'ন এপৰ সঘনাই যোগাযোগ কৰা সূচীটো মচিব আৰু ইমেইল এপসমূহক আপোনাৰ ঠিকনাৰ অগ্ৰাধিকাৰসমূহ আৰম্ভণিৰে পৰা শিকিবলৈ বাধ্য় কৰাব।"</string>
+    <string name="clearFrequentsProgress_title" msgid="5157001637482794212">"সঘনাই যোগাযোগ কৰা সম্পৰ্কবোৰ মচি থকা হৈছে…"</string>
+    <string name="status_available" msgid="5586870015822828392">"উপলব্ধ"</string>
+    <string name="status_away" msgid="1838861100379804730">"কাষত নাই"</string>
+    <string name="status_busy" msgid="9147992455450257136">"ব্যস্ত"</string>
+    <string name="local_invisible_directory" msgid="6046691709127661065">"অন্যান্য"</string>
+    <string name="directory_search_label" msgid="1887759056597975053">"ডাইৰেক্টৰী"</string>
+    <string name="directory_search_label_work" msgid="8618292129829443176">"কৰ্মস্থানৰ ডাইৰেক্টৰী"</string>
+    <string name="local_search_label" msgid="2551177578246113614">"সকলো সম্পৰ্ক"</string>
+    <string name="description_quick_contact_for" msgid="6737516415168327789">"<xliff:g id="NAME">%1$s</xliff:g>ৰ বাবে ক্ষিপ্ৰ সম্পৰ্ক"</string>
+    <string name="missing_name" msgid="8745511583852904385">"(কোনো নাম নাই)"</string>
+    <string name="favoritesFrequentContacted" msgid="6184232487472425690">"সঘনাই যোগাযোগ কৰা সম্পৰ্কবোৰ"</string>
+    <string name="list_filter_phones" msgid="735313795643493365">"ফ\'ন নম্বৰ থকা সকলো সম্পৰ্ক"</string>
+    <string name="list_filter_phones_work" msgid="1470173699551475015">"কৰ্মস্থানৰ প্ৰ’ফাইলসমূহৰ সম্পৰ্কসূচী"</string>
+    <string name="view_updates_from_group" msgid="1782685984905600034">"আপডেটসমূহ চাওক"</string>
+    <string name="account_phone" msgid="7128032778471187553">"ডিভাইচ"</string>
+    <string name="account_sim" msgid="6519016427905087952">"ছিম"</string>
+    <string name="nameLabelsGroup" msgid="2034640839640477827">"নাম"</string>
+    <string name="nicknameLabelsGroup" msgid="2891682101053358010">"উপনাম"</string>
+    <string name="name_given" msgid="4280790853455320619">"প্ৰথম নাম"</string>
+    <string name="name_family" msgid="7466985689626017037">"অন্তিম নাম"</string>
+    <string name="name_prefix" msgid="59756378548779822">"নামৰ উপসৰ্গ"</string>
+    <string name="name_middle" msgid="8467433655992690326">"মাজৰ নাম"</string>
+    <string name="name_suffix" msgid="3855278445375651441">"নাম প্ৰত্যয়"</string>
+    <string name="name_phonetic" msgid="4259595234312430484">"উচ্চাৰণ নাম"</string>
+    <string name="name_phonetic_given" msgid="8723179018384187631">"উচ্চাৰণ কৰা প্ৰথম নাম"</string>
+    <string name="name_phonetic_middle" msgid="8643721493320405200">"উচ্চাৰণ কৰা মাজৰ নাম"</string>
+    <string name="name_phonetic_family" msgid="2640133663656011626">"উচ্চাৰণ কৰা অন্তিম নাম"</string>
+    <string name="phoneLabelsGroup" msgid="6468091477851199285">"ফ’ন"</string>
+    <string name="emailLabelsGroup" msgid="8389931313045344406">"ইমেইল"</string>
+    <string name="postalLabelsGroup" msgid="3487738141112589324">"ঠিকনা"</string>
+    <string name="imLabelsGroup" msgid="3898238486262614027">"IM"</string>
+    <string name="organizationLabelsGroup" msgid="2478611760751832035">"সংস্থা"</string>
+    <string name="relationLabelsGroup" msgid="1854373894284572781">"সম্বন্ধ"</string>
+    <string name="eventLabelsGroup" msgid="7960408705307831289">"বিশেষ তাৰিখ"</string>
+    <string name="sms" msgid="1756857139634224222">"পাঠ বাৰ্তা"</string>
+    <string name="postal_address" msgid="8765560217149624536">"ঠিকনা"</string>
+    <string name="ghostData_company" msgid="5414421120553765775">"কোম্পানী"</string>
+    <string name="ghostData_title" msgid="7496735200318496110">"শিৰোনাম"</string>
+    <string name="label_notes" msgid="8337354953278341042">"টোকাবোৰ"</string>
+    <string name="label_custom_field" msgid="1994056912242214426">"নিজৰ উপযোগিতা অনুসৰি"</string>
+    <string name="label_sip_address" msgid="7252153678613978127">"SIP"</string>
+    <string name="websiteLabelsGroup" msgid="4202998982804009261">"ৱেবছাইট"</string>
+    <string name="groupsLabel" msgid="7000816729542098972">"লেবেলসমূহ"</string>
+    <string name="email_home" msgid="8573740658148184279">"ঘৰলৈ ইমেইল কৰক"</string>
+    <string name="email_mobile" msgid="2042889209787989814">"ম\'বাইললৈ ইমেইল কৰক"</string>
+    <string name="email_work" msgid="2807430017302722689">"কৰ্মস্থানলৈ ইমেইল কৰক"</string>
+    <string name="email_other" msgid="3454004077967657109">"ইমেইল"</string>
+    <string name="email_custom" msgid="5536404237099078802">"ইমেইল কৰক <xliff:g id="CUSTOM_LABEL">%s</xliff:g>"</string>
+    <string name="email" msgid="5668400997660065897">"ইমেইল"</string>
+    <string name="postal_street" msgid="8133143961580058972">"পথ"</string>
+    <string name="postal_city" msgid="6597491300084895548">"চহৰ"</string>
+    <string name="postal_region" msgid="6045263193478437672">"ৰাজ্য"</string>
+    <string name="postal_postcode" msgid="572136414136673751">"পিন ক\'ড"</string>
+    <string name="postal_country" msgid="7638264508416368690">"দেশ"</string>
+    <string name="map_home" msgid="1243547733423343982">"ঘৰৰ ঠিকনা চাওক"</string>
+    <string name="map_work" msgid="1360474076921878088">"কৰ্মস্থানৰ ঠিকনা চাওক"</string>
+    <string name="map_other" msgid="3817820803587012641">"ঠিকনা চাওক"</string>
+    <string name="map_custom" msgid="8761800628069473526">"<xliff:g id="CUSTOM_LABEL">%s</xliff:g>ৰ ঠিকনা চাওক"</string>
+    <string name="chat_aim" msgid="2588492205291249142">"AIM ব্য়ৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_msn" msgid="8041633440091073484">"ৱিণ্ড\'জ লাইভ ব্য়ৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_yahoo" msgid="6629211142719943666">"Yahoo ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_skype" msgid="1210045020427480566">"Skype ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_qq" msgid="4294637812847719693">"QQ ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_gtalk" msgid="981575737258117697">"Google Talk ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_icq" msgid="8438405386153745775">"ICQ ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat_jabber" msgid="7561444230307829609">"Jabber ব্যৱহাৰ কৰি চ্চাট কৰক"</string>
+    <string name="chat" msgid="9025361898797412245">"চ্চাট কৰক"</string>
+    <string name="description_minus_button" msgid="6908099247930477551">"মচক"</string>
+    <string name="expand_name_fields_description" msgid="6948274252874552543">"নামৰ অধিক ক্ষেত্ৰ দেখুৱাওক"</string>
+    <string name="collapse_name_fields_description" msgid="4757877385895561556">"নামৰ ক্ষেত্ৰ সংকুচিত কৰক"</string>
+    <string name="expand_phonetic_name_fields_description" msgid="9133052674087187927">"উচ্চাৰণ নামৰ অধিক ক্ষেত্ৰ দেখুৱাওক"</string>
+    <string name="collapse_phonetic_name_fields_description" msgid="9102249481855019452">"উচ্চাৰণ নামৰ ক্ষেত্ৰ সংকুচিত কৰক"</string>
+    <string name="expand_fields_description" msgid="8129294181216760037">"বিস্তাৰ কৰক"</string>
+    <string name="collapse_fields_description" msgid="1884143625854637874">"সংকুচিত কৰক"</string>
+    <string name="announce_expanded_fields" msgid="1075947220478530622">"বিস্তাৰিত কৰা আছে"</string>
+    <string name="announce_collapsed_fields" msgid="6414231530177338704">"সংকুচিত কৰা আছে"</string>
+    <string name="list_filter_all_accounts" msgid="8908683398914322369">"সকলো সম্পৰ্কবোৰ"</string>
+    <string name="list_filter_all_starred" msgid="5031734941601931356">"তৰাযুক্ত"</string>
+    <string name="list_filter_customize" msgid="4789963356004169321">"নিজৰ উপযোগিতা অনুসৰি কৰা"</string>
+    <string name="list_filter_single" msgid="5871400283515893087">"সম্পৰ্ক"</string>
+    <string name="display_ungrouped" msgid="6885954210243119591">"অন্য সকলো সম্পৰ্ক"</string>
+    <string name="display_all_contacts" msgid="2031647544742889505">"সকলো সম্পৰ্ক"</string>
+    <string name="menu_sync_remove" msgid="3266725887008450161">"ছিংক কৰা গোট আঁতৰাওক"</string>
+    <string name="dialog_sync_add" msgid="8267045393119375803">"ছিংক কৰা গোট যোগ কৰক"</string>
+    <string name="display_more_groups" msgid="2682547080423434170">"অধিক গোট…"</string>
+    <string name="display_warn_remove_ungrouped" msgid="8872290721676651414">"\"<xliff:g id="GROUP">%s</xliff:g>\"ক ছিংকৰ পৰা আঁতৰোৱা কাৰ্যই গোটত নভৰোৱা সকলো সম্পৰ্কও ছিংকৰ পৰা আঁতৰাব।"</string>
+    <string name="savingDisplayGroups" msgid="2133152192716475939">"ডিচপ্লে\' বিকল্পসমূহ ছেভ কৰি থকা হৈছে…"</string>
+    <string name="listCustomView" msgid="1840624396582117590">"নিজৰ উপযোগিতা অনুসৰি চাব পৰা সুবিধা"</string>
+    <string name="dialog_new_contact_account" msgid="4969619718062454756">"আমদানি কৰা সম্পৰ্কবোৰ ইয়াত ছেভ কৰক:"</string>
+    <string name="import_from_sim" msgid="6912071635295799131">"ছিম কাৰ্ড"</string>
+    <string name="import_from_sim_summary_fmt" msgid="5169032449686348118">"ছিম <xliff:g id="SIM_NAME">%1$s</xliff:g>"</string>
+    <plurals name="import_from_sim_secondary_contact_count_fmt" formatted="false" msgid="5821095773211149295">
+      <item quantity="one">%1$dটা সম্পৰ্ক</item>
+      <item quantity="other">%1$dটা সম্পৰ্ক</item>
+    </plurals>
+    <plurals name="import_from_sim_secondary_template" formatted="false" msgid="2484832025802907060">
+      <item quantity="one"><xliff:g id="COUNT_2">^1</xliff:g>টা সম্পৰ্ক• <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
+      <item quantity="other"><xliff:g id="COUNT_2">^1</xliff:g>টা সম্পৰ্ক• <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
+    </plurals>
+    <string name="import_from_vcf_file" msgid="8662528435646418203">".vcf ফাইল"</string>
+    <string name="nothing_to_import_message" msgid="1651921906873335656">"আমদানি কৰিবলৈ একো নাই"</string>
+    <string name="import_from_vcf_file_confirmation_message" msgid="967723361108008345">"ভি-কাৰ্ডৰ পৰা সম্পৰ্কসমূহ আমদানি কৰিবনে?"</string>
+    <string name="cancel_import_confirmation_message" msgid="3929951040347726757">"<xliff:g id="FILENAME">%s</xliff:g>ৰ আমদানি বাতিল কৰিবনে?"</string>
+    <string name="cancel_export_confirmation_message" msgid="1995462401949262638">"<xliff:g id="FILENAME">%s</xliff:g>ৰ ৰপ্তানি বাতিল কৰিবনে?"</string>
+    <string name="cancel_vcard_import_or_export_failed" msgid="6139900383366166706">"ভি-কাৰ্ডৰ আমদানি/ৰপ্তানি বাতিল কৰিবপৰা নগ\'ল"</string>
+    <string name="fail_reason_unknown" msgid="1714092345030570863">"অজ্ঞাত আসোঁৱাহ।"</string>
+    <string name="fail_reason_could_not_open_file" msgid="2067725459821997463">"\"<xliff:g id="FILE_NAME">%1$s</xliff:g>\" খুলিবপৰা নগ\'ল: <xliff:g id="EXACT_REASON">%2$s</xliff:g>।"</string>
+    <string name="fail_reason_could_not_initialize_exporter" msgid="707260459259688510">"ৰপ্তানি কৰা সুবিধা আৰম্ভ কৰিবপৰা নগ\'ল: \"<xliff:g id="EXACT_REASON">%s</xliff:g>\"।"</string>
+    <string name="fail_reason_no_exportable_contact" msgid="8728506011371262065">"ৰপ্তানি কৰিবপৰা কোনো সম্পৰ্ক নাই।"</string>
+    <string name="missing_required_permission" msgid="5865884842972833120">"আপুনি কোনো আৱশ্য়কীয় অনুমতিক অক্ষম কৰিছে।"</string>
+    <string name="fail_reason_error_occurred_during_export" msgid="3018855323913649063">"ৰপ্তানি কৰোঁতে কিবা আঁসোৱাহ হ\'ল: \"<xliff:g id="EXACT_REASON">%s</xliff:g>\"।"</string>
+    <string name="fail_reason_io_error" msgid="6748358842976073255">"I/O আঁসোৱাহ"</string>
+    <string name="fail_reason_low_memory_during_import" msgid="875222757734882898">"পৰ্যাপ্ত মেম\'ৰি নাই। হয়তো ফাইলটো অতি ডাঙৰ।"</string>
+    <string name="fail_reason_not_supported" msgid="8219562769267148825">"এই ফৰ্মেট ইয়াত ব্যৱহাৰ কৰিব নোৱাৰি।"</string>
+    <string name="exporting_vcard_finished_title" msgid="4767045779458185251">"<xliff:g id="FILENAME">%s</xliff:g> ৰপ্তানি কৰা কাৰ্য সম্পূৰ্ণ হ\'ল।"</string>
+    <string name="exporting_vcard_finished_title_fallback" msgid="6060472638008218274">"সম্পৰ্ক ৰপ্তানি কৰি কাৰ্য সম্পূৰ্ণ হ\'ল।"</string>
+    <string name="exporting_vcard_finished_toast" msgid="1739055986856453882">"সম্পৰ্ক ৰপ্তানি কৰি কাৰ্য সম্পূৰ্ণ হ\'ল, সম্পৰ্কসমূহ শ্বেয়াৰ কৰিবলৈ জাননীত ক্লিক কৰক।"</string>
+    <string name="touch_to_share_contacts" msgid="4882485525268469736">"সম্পৰ্কবোৰ শ্বেয়াৰ কৰিবলৈ টিপক।"</string>
+    <string name="exporting_vcard_canceled_title" msgid="2652222370493306887">"<xliff:g id="FILENAME">%s</xliff:g>ৰ ৰপ্তানি বাতিল কৰা হ\'ল।"</string>
+    <string name="exporting_contact_list_title" msgid="9072240631534457415">"সম্পৰ্ক ডেটা ৰপ্তানি কৰি থকা হৈছে"</string>
+    <string name="exporting_contact_list_message" msgid="3367949209642931952">"সম্পৰ্কৰ ডেটা ৰপ্তানি কৰিথকা হৈছে।"</string>
+    <string name="composer_failed_to_get_database_infomation" msgid="1765944280846236723">"ডেটাবেছৰ তথ্য় পোৱা নগ\'ল।"</string>
+    <string name="composer_has_no_exportable_contact" msgid="5712531702823346549">"ৰপ্তানি কৰিবপৰা কোনো সম্পৰ্ক নাই।"</string>
+    <string name="composer_not_initialized" msgid="2321648986367005254">"ভি-কাৰ্ড কম্প\'জাৰ সঠিকভাবে আৰম্ভ নহ\'ল।"</string>
+    <string name="exporting_contact_failed_title" msgid="4892358112409576342">"ৰপ্তানি কৰিবপৰা নগ\'ল"</string>
+    <string name="exporting_contact_failed_message" msgid="4938527850142003141">"সম্পৰ্কৰ ডেটা ৰপ্তানি কৰা হোৱা নাছিল।\nকাৰণ: <xliff:g id="FAIL_REASON">%s</xliff:g>"</string>
+    <string name="importing_vcard_description" msgid="4245275224298571351">"<xliff:g id="NAME">%s</xliff:g> আমদানি কৰি থকা হৈছে"</string>
+    <string name="reading_vcard_failed_title" msgid="4251647443358422855">"ভি-কাৰ্ডৰ ডেটা পঢ়িব পৰা নগ\'ল"</string>
+    <string name="importing_vcard_finished_title" msgid="3341541727268747967">"ভি-কাৰ্ড আমদানি কৰা কাৰ্য সম্পূৰ্ণ হ\'ল <xliff:g id="FILENAME">%s</xliff:g>"</string>
+    <string name="importing_vcard_canceled_title" msgid="2147475978165599336">"<xliff:g id="FILENAME">%s</xliff:g>ৰ আমদানি কৰা কাৰ্য বাতিল কৰা হ\'ল"</string>
+    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"<xliff:g id="FILENAME">%s</xliff:g> শীঘ্ৰেই আমদানি কৰা হ\'ব।"</string>
+    <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"এই ফাইলটো শীঘ্ৰেই আমদানি কৰা হ\'ব।"</string>
+    <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"ভি-কাৰ্ড আমদানি কৰা অনুৰোধ অগ্ৰাহ্য় কৰা হ\'ল। পিছত আকৌ চেষ্টা কৰক।"</string>
+    <string name="contacts_export_will_start_message" msgid="8538705791417534431">"সম্পৰ্কসমূহক সোনকালে ৰপ্তানি কৰা হ\'ব।"</string>
+    <string name="vcard_export_request_rejected_message" msgid="2844874826431327531">"ভি-কাৰ্ড ৰপ্তানি কৰা অনুৰোধ অগ্ৰাহ্য় কৰা হ\'ল। পিছত আকৌ চেষ্টা কৰক।"</string>
+    <string name="vcard_unknown_filename" msgid="7171709890959915954">"সম্পৰ্ক"</string>
+    <string name="caching_vcard_message" msgid="4926308675041506756">"ভি-কাৰ্ড (বোৰ)ক ডিভাইচৰ অস্থায়ী সঞ্চয়াগাৰত কেচ কৰিথকা হৈছে। আচল আমদানি কৰা কাৰ্য সোনকালে আৰম্ভ হ\'ব।"</string>
+    <string name="vcard_import_failed" msgid="5223531255894842406">"vCard আমদানি কৰিব পৰা নগ\'ল।"</string>
+    <string name="nfc_vcard_file_name" msgid="2823095213265993609">"NFCৰ জৰিয়তে সম্পৰ্ক পোৱা গ\'ল"</string>
+    <string name="caching_vcard_title" msgid="1226272312940516605">"কেচ কৰিথকা হৈছে"</string>
+    <string name="progress_notifier_message" msgid="2311011466908220528">"<xliff:g id="CURRENT_NUMBER">%1$s</xliff:g>/<xliff:g id="TOTAL_NUMBER">%2$s</xliff:g> ৰপ্তানি কৰিথকা হৈছে: <xliff:g id="NAME">%3$s</xliff:g>"</string>
+    <string name="export_to_vcf_file" msgid="4407527157056120858">".vcf ফাইললৈ ৰপ্তানি কৰক"</string>
+    <string name="display_options_sort_list_by" msgid="7028809117272018712">"এই অনুসৰি সজাওক"</string>
+    <string name="display_options_phonetic_name_fields" msgid="3771577099236534776">"উচ্চাৰণ নাম"</string>
+    <string name="editor_options_always_show_phonetic_names" msgid="7253911385818398903">"সদায় দেখুৱাওক"</string>
+    <string name="editor_options_hide_phonetic_names_if_empty" msgid="2672008764795671104">"খালী থাকিলে লুকুৱাওক"</string>
+    <string name="display_options_sort_by_given_name" msgid="2778421332815687873">"প্ৰথম নাম"</string>
+    <string name="display_options_sort_by_family_name" msgid="2684905041926954793">"অন্তিম নাম"</string>
+    <string name="display_options_view_names_as" msgid="6514632499276563482">"নামৰ ফৰ্মেট"</string>
+    <string name="display_options_view_given_name_first" msgid="3616004640258761473">"প্ৰথম নামটো প্ৰথমতে"</string>
+    <string name="display_options_view_family_name_first" msgid="956445100777296467">"অন্তিম নামটো প্ৰথমে"</string>
+    <string name="settings_accounts" msgid="350219740670774576">"একাউণ্টসমূহ"</string>
+    <string name="default_editor_account" msgid="699591683362420991">"নতুন সম্পৰ্কৰ বাবে ডিফ\'ল্ট একাউণ্ট"</string>
+    <string name="settings_my_info_title" msgid="1534272456405343119">"মোৰ তথ্য়"</string>
+    <string name="set_up_profile" msgid="7370213843590143771">"আপোনাৰ প্ৰ\'ফাইল ছেট আপ কৰক"</string>
+    <string name="setting_about" msgid="7014388749752042863">"সম্পৰ্কসূচীৰ বিষয়ে"</string>
+    <string name="share_favorite_contacts" msgid="4280926751003081042">"প্ৰিয় সম্পৰ্কবোৰ শ্বেয়াৰ কৰক"</string>
+    <string name="share_contacts" msgid="8109287987498711664">"সকলো সম্পৰ্ক শ্বেয়াৰ কৰক"</string>
+    <string name="share_contacts_failure" msgid="1216431977330560559">"সম্পৰ্কবোৰ শ্বেয়াৰ কৰিবপৰা নগ\'ল।"</string>
+    <string name="dialog_export" msgid="1628001095187741417">"সম্পৰ্কবোৰ ৰপ্তানি কৰক"</string>
+    <string name="dialog_import" msgid="2423592905927819672">"সম্পৰ্কবোৰ ইয়াৰ পৰা আমদানি কৰক"</string>
+    <string name="share_error" msgid="948429331673358107">"এই সম্পৰ্ক শ্বেয়াৰ কৰিব নোৱাৰি।"</string>
+    <string name="no_contact_to_share" msgid="1276397530378323033">"শ্বেয়াৰ কৰিবলৈ কোনো একাউণ্ট নাই।"</string>
+    <string name="menu_contacts_filter" msgid="2165153460860262501">"দেখুৱাবলগীয়া সম্পৰ্কসূচী"</string>
+    <string name="activity_title_contacts_filter" msgid="8275542497615516969">"দেখুৱাবলগীয়া সম্পৰ্কসূচী"</string>
+    <string name="custom_list_filter" msgid="9048525797111024204">"নিজৰ উপযোগিতা অনুসৰি চাব পৰা কৰক"</string>
+    <string name="menu_custom_filter_save" msgid="2679793632208086460">"ছেভ কৰক"</string>
+    <string name="hint_findContacts" msgid="7128627979899070325">"সম্পৰ্কসূচীত সন্ধান কৰক"</string>
+    <string name="contactsFavoritesLabel" msgid="8417039765586853670">"প্ৰিয়সমূহ"</string>
+    <string name="menu_import" msgid="6107961135813836467">"আমদানি কৰক"</string>
+    <string name="menu_export" msgid="2658783911863503902">"ৰপ্তানি কৰক"</string>
+    <string name="menu_blocked_numbers" msgid="5272951629083025995">"অৱৰোধ কৰা নম্বৰসমূহ"</string>
+    <string name="contact_status_update_attribution" msgid="752179367353018597">"<xliff:g id="SOURCE">%1$s</xliff:g>ৰ জৰিয়তে"</string>
+    <string name="contact_status_update_attribution_with_date" msgid="7358045508107825068">"<xliff:g id="DATE">%1$s</xliff:g> <xliff:g id="SOURCE">%2$s</xliff:g>ৰ জৰিয়তে"</string>
+    <string name="action_menu_back_from_search" msgid="8793348588949233348">"সন্ধান কৰা বন্ধ কৰক"</string>
+    <string name="description_clear_search" msgid="688023606766232904">"সন্ধান কৰা বস্তুবোৰ মচক"</string>
+    <string name="select_account_dialog_title" msgid="5478489655696599219">"একাউণ্ট"</string>
+    <string name="set_default_account" msgid="4311613760725609801">"কল কৰিবলৈ সদায় ইয়াক ব্যৱহাৰ কৰক"</string>
+    <string name="call_with_a_note" msgid="8389827628360791676">"টোকাৰ সৈতে কল কৰক"</string>
+    <string name="call_subject_hint" msgid="3043028982108363572">"কলৰ সৈতে পঠিয়াবলৈ টোকা এটা লিখক…"</string>
+    <string name="send_and_call_button" msgid="7740295432834590737">"পঠিয়াওক আৰু কল কৰক"</string>
+    <string name="call_subject_limit" msgid="4545212901205397669">"<xliff:g id="COUNT">%1$s</xliff:g> / <xliff:g id="LIMIT">%2$s</xliff:g>"</string>
+    <string name="call_subject_type_and_number" msgid="7667188212129152558">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
+    <string name="about_build_version" msgid="1765533099416999801">"বিল্ডৰ সংস্কৰণ"</string>
+    <string name="about_open_source_licenses" msgid="6479990452352919641">"মুক্ত উত্‍সৰ অনুজ্ঞাপত্ৰসমূহ"</string>
+    <string name="about_open_source_licenses_summary" msgid="57418386931763994">"মুক্ত উত্‍সৰ ছফ্টৱেৰৰ বাবে অনুজ্ঞাৰ সবিশেষ"</string>
+    <string name="about_privacy_policy" msgid="3705518622499152626">"গোপনীয়তাৰ নীতি"</string>
+    <string name="about_terms_of_service" msgid="4642400812150296723">"সেৱাৰ চৰ্তাৱলী"</string>
+    <string name="activity_title_licenses" msgid="5467767062737708066">"মুক্ত উত্‍সৰ অনুজ্ঞাপত্ৰসমূহ"</string>
+    <string name="url_open_error_toast" msgid="452592089815420457">"ইউআৰএল খুলিবপৰা নগ\'ল।"</string>
+    <string name="account_filter_view_checked" msgid="6696859503887762213">"<xliff:g id="ACCOUNT_INFO">%s</xliff:g> চোৱা হ\'ল"</string>
+    <string name="account_filter_view_not_checked" msgid="2248684521205038389">"<xliff:g id="ACCOUNT_INFO">%s</xliff:g> চোৱা হোৱা নাই"</string>
+    <string name="description_search_video_call" msgid="5841525580339803272">"ভিডিঅ’ কল কৰক"</string>
+    <string name="description_delete_contact" msgid="53835657343783663">"মচক"</string>
+    <string name="description_no_name_header" msgid="8884991311595943271">"এলিপ্সিছ"</string>
+    <string name="callDurationSecondFormat" msgid="7067644915903528776">"<xliff:g id="SECONDS">%s</xliff:g> ছেকেণ্ড"</string>
+    <string name="callDurationMinuteFormat" msgid="4647095486747447674">"<xliff:g id="MINUTES">%1$s</xliff:g> মিনিট <xliff:g id="SECONDS">%2$s</xliff:g> ছেকেণ্ড"</string>
+    <string name="callDurationHourFormat" msgid="7392254193808506640">"<xliff:g id="MINUTES_0">%1$s</xliff:g> ঘণ্টা <xliff:g id="MINUTES_1">%2$s</xliff:g> মিনিট <xliff:g id="SECONDS">%3$s</xliff:g> ছেকেণ্ড"</string>
+    <string name="dynamic_shortcut_disabled_message" msgid="249939425761315252">"এই শ্বৰ্টকাট অক্ষম কৰা হৈছে"</string>
+    <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"সম্পৰ্ক আঁতৰোৱা হ\'ল"</string>
+    <string name="sim_import_button_text" msgid="4270841592496619317">"আমদানি কৰক"</string>
+    <string name="sim_import_title_none_selected" msgid="6910517331401970693">"সম্পৰ্কসমূহ বাছনি কৰক"</string>
+    <string name="sim_import_empty_message" msgid="7743815244380189651">"আপোনাৰ ছিম কাৰ্ডত কোনো সম্পৰ্ক সূচী নাই"</string>
+    <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"সম্পৰ্কটো ইতিমধ্যে আপোনাৰ সূচীত আছে"</string>
+    <plurals name="sim_import_success_toast_fmt" formatted="false" msgid="8572156521110906443">
+      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g>টা ছিমৰ সম্পৰ্ক আমদানি কৰা হ\'ল</item>
+      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g>টা ছিমৰ সম্পৰ্ক আমদানি কৰা হ\'ল</item>
+    </plurals>
+    <string name="sim_import_failed_toast" msgid="5559267299793622705">"ছিমৰ সম্পৰ্কবোৰ আমদানি কৰিবপৰা নগ\'ল"</string>
+    <string name="sim_import_title" msgid="2511154832820812822">"ছিমৰপৰা আমদানি কৰক"</string>
+    <string name="sim_import_cancel_content_description" msgid="1619832410253424452">"বাতিল কৰক"</string>
+    <string name="auto_sync_off" msgid="2180147284456026587">"স্বংয়ক্ৰিয়ভাৱে ছিংক হোৱা সুবিধাটো অফ কৰা আছে। অন কৰিবলৈ টিপক।"</string>
+    <string name="dismiss_sync_alert" msgid="8941131776605093596">"অগ্ৰাহ্য কৰক"</string>
+    <string name="account_sync_off" msgid="7646143254066243924">"একাউণ্টৰ ছিংক অফ আছে। ইয়াক অন কৰিবলৈ টিপক।"</string>
+    <string name="turn_auto_sync_on_dialog_title" msgid="333965456829670541">"স্বয়ং-ছিংক অন কৰিবনে?"</string>
+    <string name="turn_auto_sync_on_dialog_body" msgid="5025336917533693997">"আপুনি Google কনটেক্টৰ উপৰিও সকলো এপ্ আৰু একাউণ্টত কৰা পৰিবৰ্তনবোৰ ৱেব আৰু আপোনাৰ ডিভাইচবোৰত আপ টু ডেট ৰখা হ\'ব।"</string>
+    <string name="turn_auto_sync_on_dialog_confirm_btn" msgid="1070332014838295599">"অন কৰক"</string>
+    <string name="connection_error_message" msgid="7046408921529247089">"ইণ্টাৰনেট নাই"</string>
+    <string name="single_sim_display_label" msgid="6985770499439371497">"ছিম"</string>
+    <string name="show_more_content_description" msgid="4277410425912984722">"অধিক দেখুৱাওক"</string>
+    <string name="importing_sim_finished_title" msgid="5196369441294050721">"ছিম কাৰ্ডৰ আমদানি কৰা কাৰ্য সম্পূৰ্ণ হ\'ল"</string>
+    <string name="importing_sim_failed_title" msgid="39706901030537985">"আমদানি কৰিব পৰা নগ\'ল"</string>
+    <string name="importing_sim_failed_message" msgid="3345258302998021066">"ছিম কাৰ্ডৰ পৰা সম্পৰ্কবোৰ আমদানি কৰিবপৰা নগ\'ল"</string>
+    <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"ছিম আমদানি কৰি থকা হৈছে"</string>
+    <string name="contacts_default_notification_channel" msgid="4754058700611188581">"জাননীসমূহ"</string>
+    <string name="yes_button" msgid="1268479086848288060">"হয়"</string>
+    <string name="no_button" msgid="5742815694687835125">"নহয়"</string>
+</resources>
diff --git a/res/values-bn/strings.xml b/res/values-bn/strings.xml
index 7afd389..a7e4089 100644
--- a/res/values-bn/strings.xml
+++ b/res/values-bn/strings.xml
@@ -222,7 +222,7 @@
     <string name="header_name_entry" msgid="1592791008096288306">"নাম"</string>
     <string name="header_email_entry" msgid="8666093061171624478">"ইমেল"</string>
     <string name="header_phone_entry" msgid="8450980572274173570">"ফোন"</string>
-    <string name="content_description_directions" msgid="2686791825798189335">"অবস্থান জানার দিকনির্দেশ"</string>
+    <string name="content_description_directions" msgid="2686791825798189335">"লোকেশন জানার দিকনির্দেশ"</string>
     <string name="content_description_recent_sms" msgid="1666389577263317445">"সাম্প্রতিক sms৷ <xliff:g id="MESSAGE_BODY">%1$s</xliff:g>৷ <xliff:g id="PHONE_NUMBER">%2$s</xliff:g>৷ <xliff:g id="DATE">%3$s</xliff:g>৷ প্রতিক্রিয়া জানাতে ক্লিক করুন"</string>
     <string name="content_description_recent_call_type_incoming" msgid="5210739096863511410">"আগত"</string>
     <string name="content_description_recent_call_type_outgoing" msgid="5156553338985232744">"আউটগোয়িং"</string>
diff --git a/res/values-bs/strings.xml b/res/values-bs/strings.xml
index 06dca7a..b62ef50 100644
--- a/res/values-bs/strings.xml
+++ b/res/values-bs/strings.xml
@@ -30,7 +30,7 @@
     <string name="searchHint" msgid="8482945356247760701">"Pretraži kontakte"</string>
     <string name="menu_addStar" msgid="2908478235715404876">"Dodaj u omiljeno"</string>
     <string name="menu_removeStar" msgid="5844227078364227030">"Ukloni iz omiljenih"</string>
-    <string name="description_action_menu_remove_star" msgid="4699640108012265178">"Uklonjeno iz omiljenih"</string>
+    <string name="description_action_menu_remove_star" msgid="4699640108012265178">"Uklonjeno iz omiljenog"</string>
     <string name="description_action_menu_add_star" msgid="3327186327234177456">"Dodano u omiljeno"</string>
     <string name="menu_editContact" msgid="9042415603857662633">"Uredi"</string>
     <string name="menu_deleteContact" msgid="6788644058868189393">"Izbriši"</string>
@@ -377,11 +377,11 @@
     <string name="chat" msgid="9025361898797412245">"Chat"</string>
     <string name="description_minus_button" msgid="6908099247930477551">"izbriši"</string>
     <string name="expand_name_fields_description" msgid="6948274252874552543">"Prikaži više polja za ime"</string>
-    <string name="collapse_name_fields_description" msgid="4757877385895561556">"Skupi polja za imena"</string>
+    <string name="collapse_name_fields_description" msgid="4757877385895561556">"Suzi polja za imena"</string>
     <string name="expand_phonetic_name_fields_description" msgid="9133052674087187927">"Prikaži više polja za fonetsko ime"</string>
-    <string name="collapse_phonetic_name_fields_description" msgid="9102249481855019452">"Skupi polja za fonetska imena"</string>
+    <string name="collapse_phonetic_name_fields_description" msgid="9102249481855019452">"Suzi polja za fonetska imena"</string>
     <string name="expand_fields_description" msgid="8129294181216760037">"Proširi"</string>
-    <string name="collapse_fields_description" msgid="1884143625854637874">"Skupi"</string>
+    <string name="collapse_fields_description" msgid="1884143625854637874">"Suzi"</string>
     <string name="announce_expanded_fields" msgid="1075947220478530622">"Prošireno"</string>
     <string name="announce_collapsed_fields" msgid="6414231530177338704">"Skupljeno"</string>
     <string name="list_filter_all_accounts" msgid="8908683398914322369">"Svi kontakti"</string>
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
index bae027d..d5e0403 100644
--- a/res/values-da/strings.xml
+++ b/res/values-da/strings.xml
@@ -122,7 +122,7 @@
     <string name="groupExistsErrorMessage" msgid="5196811283836946189">"Etiketten findes allerede"</string>
     <string name="groupSomeContactsNoEmailsToast" msgid="8211161470235548732">"Nogle kontaktpersoner har ikke e-mails."</string>
     <string name="groupSomeContactsNoPhonesToast" msgid="5530760834827530509">"Nogle kontaktpersoner har ikke telefonnumre."</string>
-    <string name="menu_sendEmailOption" msgid="5978319931321657780">"Send e-mail"</string>
+    <string name="menu_sendEmailOption" msgid="5978319931321657780">"Send mail"</string>
     <string name="menu_sendMessageOption" msgid="8850168125274916426">"Send besked"</string>
     <string name="pickerSelectContactsActivityTitle" msgid="1936544190231136729">"Vælg kontaktpersoner"</string>
     <string name="send_to_selection" msgid="2251339182881603540">"Send"</string>
@@ -131,7 +131,7 @@
     <string name="search_settings_description" msgid="2675223022992445813">"Navne på dine kontakter"</string>
     <string name="quickcontact_transparent_view_description" msgid="987959416759562455">"Klik for at gå tilbage til forrige skærmbillede"</string>
     <string name="quickcontact_add_phone_number" msgid="731665835910658965">"Tilføj telefonnummer"</string>
-    <string name="quickcontact_add_email" msgid="739298028384348482">"Tilføj e-mail"</string>
+    <string name="quickcontact_add_email" msgid="739298028384348482">"Tilføj mail"</string>
     <string name="missing_app" msgid="1466111003546611387">"Der blev ikke fundet nogen app, der kan håndtere denne handling."</string>
     <string name="menu_share" msgid="943789700636542260">"Del"</string>
     <string name="menu_add_contact" msgid="3198704337220892684">"Føj til kontaktpersoner"</string>
@@ -220,7 +220,7 @@
     <string name="header_event_entry" msgid="6738250422744401460">"Begivenhed"</string>
     <string name="header_relation_entry" msgid="1520292958088146460">"Relation"</string>
     <string name="header_name_entry" msgid="1592791008096288306">"Navn"</string>
-    <string name="header_email_entry" msgid="8666093061171624478">"E-mail"</string>
+    <string name="header_email_entry" msgid="8666093061171624478">"Mail"</string>
     <string name="header_phone_entry" msgid="8450980572274173570">"Telefon"</string>
     <string name="content_description_directions" msgid="2686791825798189335">"rutevejledning til placering"</string>
     <string name="content_description_recent_sms" msgid="1666389577263317445">"seneste sms-besked. <xliff:g id="MESSAGE_BODY">%1$s</xliff:g>. <xliff:g id="PHONE_NUMBER">%2$s</xliff:g>. <xliff:g id="DATE">%3$s</xliff:g>. Klik for at svare"</string>
@@ -332,7 +332,7 @@
     <string name="name_phonetic_middle" msgid="8643721493320405200">"Fonetisk mellemnavn"</string>
     <string name="name_phonetic_family" msgid="2640133663656011626">"Fonetisk efternavn"</string>
     <string name="phoneLabelsGroup" msgid="6468091477851199285">"Telefon"</string>
-    <string name="emailLabelsGroup" msgid="8389931313045344406">"E-mail"</string>
+    <string name="emailLabelsGroup" msgid="8389931313045344406">"Mail"</string>
     <string name="postalLabelsGroup" msgid="3487738141112589324">"Adresse"</string>
     <string name="imLabelsGroup" msgid="3898238486262614027">"Chat"</string>
     <string name="organizationLabelsGroup" msgid="2478611760751832035">"Organisation"</string>
@@ -347,12 +347,12 @@
     <string name="label_sip_address" msgid="7252153678613978127">"SIP"</string>
     <string name="websiteLabelsGroup" msgid="4202998982804009261">"Website"</string>
     <string name="groupsLabel" msgid="7000816729542098972">"Etiketter"</string>
-    <string name="email_home" msgid="8573740658148184279">"E-mail til hjem"</string>
-    <string name="email_mobile" msgid="2042889209787989814">"E-mail til mobil"</string>
-    <string name="email_work" msgid="2807430017302722689">"E-mail til arbejde"</string>
-    <string name="email_other" msgid="3454004077967657109">"E-mail"</string>
-    <string name="email_custom" msgid="5536404237099078802">"Send en e-mail til <xliff:g id="CUSTOM_LABEL">%s</xliff:g>"</string>
-    <string name="email" msgid="5668400997660065897">"E-mail"</string>
+    <string name="email_home" msgid="8573740658148184279">"Mail til hjem"</string>
+    <string name="email_mobile" msgid="2042889209787989814">"Mail til mobil"</string>
+    <string name="email_work" msgid="2807430017302722689">"Mail til arbejde"</string>
+    <string name="email_other" msgid="3454004077967657109">"Mail"</string>
+    <string name="email_custom" msgid="5536404237099078802">"Send en mail til <xliff:g id="CUSTOM_LABEL">%s</xliff:g>"</string>
+    <string name="email" msgid="5668400997660065897">"Mail"</string>
     <string name="postal_street" msgid="8133143961580058972">"Gade"</string>
     <string name="postal_city" msgid="6597491300084895548">"By"</string>
     <string name="postal_region" msgid="6045263193478437672">"Stat"</string>
@@ -472,7 +472,7 @@
     <string name="custom_list_filter" msgid="9048525797111024204">"Tilpas visning"</string>
     <string name="menu_custom_filter_save" msgid="2679793632208086460">"Gem"</string>
     <string name="hint_findContacts" msgid="7128627979899070325">"Søg efter kontaktpersoner"</string>
-    <string name="contactsFavoritesLabel" msgid="8417039765586853670">"Foretrukne"</string>
+    <string name="contactsFavoritesLabel" msgid="8417039765586853670">"Favoritter"</string>
     <string name="menu_import" msgid="6107961135813836467">"Importér"</string>
     <string name="menu_export" msgid="2658783911863503902">"Eksportér"</string>
     <string name="menu_blocked_numbers" msgid="5272951629083025995">"Blokerede telefonnumre"</string>
@@ -483,7 +483,7 @@
     <string name="select_account_dialog_title" msgid="5478489655696599219">"Konto"</string>
     <string name="set_default_account" msgid="4311613760725609801">"Brug altid ved opkald"</string>
     <string name="call_with_a_note" msgid="8389827628360791676">"Ring med en note"</string>
-    <string name="call_subject_hint" msgid="3043028982108363572">"Indtast en note, som skal sendes ved opkald…"</string>
+    <string name="call_subject_hint" msgid="3043028982108363572">"Angiv en note, som skal sendes ved opkald…"</string>
     <string name="send_and_call_button" msgid="7740295432834590737">"SEND, OG RING OP"</string>
     <string name="call_subject_limit" msgid="4545212901205397669">"<xliff:g id="COUNT">%1$s</xliff:g>/<xliff:g id="LIMIT">%2$s</xliff:g>"</string>
     <string name="call_subject_type_and_number" msgid="7667188212129152558">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
diff --git a/res/values-eu/strings.xml b/res/values-eu/strings.xml
index e8943af..0bfe841 100644
--- a/res/values-eu/strings.xml
+++ b/res/values-eu/strings.xml
@@ -107,7 +107,7 @@
     <string name="contactSavedToast" msgid="9171862279493213075">"Gorde da kontaktua"</string>
     <string name="contactUnlinkedToast" msgid="7122823195786012553">"Kendu dira kontaktuaren loturak"</string>
     <string name="contactSavedErrorToast" msgid="4827033473908688031">"Ezin izan dira gorde kontaktuari egindako aldaketak"</string>
-    <string name="contactUnlinkErrorToast" msgid="2706297508166952431">"Ezin izan da kendu kontaktuaren lotura"</string>
+    <string name="contactUnlinkErrorToast" msgid="2706297508166952431">"Ezin izan zaio kendu lotura kontaktuari"</string>
     <string name="contactJoinErrorToast" msgid="5735129234573327701">"Ezin izan da lotu kontaktua"</string>
     <string name="contactGenericErrorToast" msgid="3885457515665783976">"Errore bat gertatu da kontaktua gordetzean"</string>
     <string name="contactPhotoSavedErrorToast" msgid="6860883564984042194">"Ezin izan dira gorde kontaktuaren argazkiari egindako aldaketak"</string>
diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml
index 4fcedb1..0e26080 100644
--- a/res/values-fa/strings.xml
+++ b/res/values-fa/strings.xml
@@ -523,7 +523,7 @@
     <string name="turn_auto_sync_on_dialog_confirm_btn" msgid="1070332014838295599">"فعال کردن"</string>
     <string name="connection_error_message" msgid="7046408921529247089">"اتصال برقرار نیست"</string>
     <string name="single_sim_display_label" msgid="6985770499439371497">"سیم کارت"</string>
-    <string name="show_more_content_description" msgid="4277410425912984722">"نمایش موارد بیشتر"</string>
+    <string name="show_more_content_description" msgid="4277410425912984722">"بیشتر ببینید"</string>
     <string name="importing_sim_finished_title" msgid="5196369441294050721">"وارد کردن سیم کارت تمام شد"</string>
     <string name="importing_sim_failed_title" msgid="39706901030537985">"وارد نشد"</string>
     <string name="importing_sim_failed_message" msgid="3345258302998021066">"مخاطبین از سیم کارت وارد نشدند"</string>
diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml
index d1ccfcb..2eea855 100644
--- a/res/values-hi/strings.xml
+++ b/res/values-hi/strings.xml
@@ -85,12 +85,12 @@
     <string name="readOnlyContactWarning" msgid="7514475664695089411">"यह संपर्क केवल पढ़ने के लिए है. इसे हटाया नहीं जा सकता है, लेकिन आप इसे छिपा सकते हैं."</string>
     <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"संपर्क छिपाएं"</string>
     <string name="readOnlyContactDeleteConfirmation" msgid="4717023505914239809">"इस संपर्क के उन खातों को बस छिपाया जाएगा जो सिर्फ़ पढ़ने के लिए हैं, हटाया नहीं जाएगा."</string>
-    <string name="single_delete_confirmation" msgid="3106905986948679720">"यह संपर्क हटाएं?"</string>
+    <string name="single_delete_confirmation" msgid="3106905986948679720">"यह संपर्क मिटाएं?"</string>
     <string name="batch_delete_confirmation" msgid="3984346060324014108">"चयनित संपर्क हटाएं?"</string>
     <string name="batch_delete_read_only_contact_confirmation" msgid="8411117621035639964">"आपके केवल पढ़े जाने वाले खातों के संपर्क हटाए नहीं जा सकते, लेकिन उन्हें छिपाया जा सकता है."</string>
     <string name="batch_delete_multiple_accounts_confirmation" msgid="8207205649127030030">"जिन खातों को हटाया जाना है उनमें एकाधिक खातों के विवरण हैं. केवल पढ़ने के लिए खातों के विवरण छिपाए जाएंगे, उन्हें हटाया नहीं जाएगा."</string>
     <string name="multipleContactDeleteConfirmation" msgid="5235324124905653550">"इस संपर्क को हटाने से एकाधिक खातों से विवरण हट जाएंगे."</string>
-    <string name="deleteConfirmation" msgid="3512271779086656043">"यह संपर्क हटाएं?"</string>
+    <string name="deleteConfirmation" msgid="3512271779086656043">"यह संपर्क मिटाएं?"</string>
     <string name="deleteConfirmation_positive_button" msgid="7857888845028586365">"हटाएं"</string>
     <string name="invalidContactMessage" msgid="8215051456181842274">"संपर्क मौजूद नहीं है."</string>
     <string name="createContactShortcutSuccessful_NoName" msgid="8831303345367275472">"संपर्कों को होम स्क्रीन में जोड़ा गया."</string>
@@ -143,8 +143,8 @@
     <string name="dialog_new_group_account" msgid="3451312333591556651">"खाता चुनें"</string>
     <string name="group_name_dialog_insert_title" msgid="2668452090427027941">"लेबल बनाएं"</string>
     <string name="group_name_dialog_update_title" msgid="6328021162869677383">"लेबल का नाम बदलें"</string>
-    <string name="group_name_dialog_hint" msgid="7624523157537700160">"लेबल नाम"</string>
-    <string name="label_name_dialog_hint" msgid="1276051790427638142">"लेबल नाम"</string>
+    <string name="group_name_dialog_hint" msgid="7624523157537700160">"लेबल का नाम"</string>
+    <string name="label_name_dialog_hint" msgid="1276051790427638142">"लेबल का नाम"</string>
     <string name="audio_chat" msgid="2535716629358298691">"ध्वनि बातचीत"</string>
     <string name="video_chat" msgid="1872255818640336072">"वीडियो बातचीत"</string>
     <string name="account_type_format" msgid="718948015590343010">"<xliff:g id="SOURCE">%1$s</xliff:g> संपर्क"</string>
@@ -154,7 +154,7 @@
     <string name="pick_photo" msgid="2129509985223564942">"फ़ोटो चुनें"</string>
     <string name="pick_new_photo" msgid="9122450996263688237">"नई फ़ोटो चुनें"</string>
     <string name="search_results_searching" msgid="3984833028938569930">"खोज रहा है…"</string>
-    <string name="event_edit_field_hint_text" msgid="5794424930242630477">"दि‍नांक"</string>
+    <string name="event_edit_field_hint_text" msgid="5794424930242630477">"तारीख"</string>
     <string name="group_edit_field_hint_text" msgid="8038224059926963133">"लेबल"</string>
     <string name="cancel_button_content_description" msgid="1288652456274531846">"रद्द करें"</string>
     <string name="back_arrow_content_description" msgid="4355362760545735065">"वापस जाएं"</string>
@@ -170,7 +170,7 @@
     <string name="non_phone_close" msgid="7608506439725515667">"बंद करें"</string>
     <string name="date_year_toggle" msgid="7122002148518724139">"वर्ष शामिल करें"</string>
     <string name="contacts_unavailable_add_account" msgid="4347232421410561500">"खाता जोड़ें"</string>
-    <string name="contacts_unavailable_import_contacts" msgid="3182801738595937144">"आयात करें"</string>
+    <string name="contacts_unavailable_import_contacts" msgid="3182801738595937144">"संपर्क लेकर आएं"</string>
     <string name="create_group_item_label" msgid="3263064599743742865">"नया बनाएं…"</string>
     <string name="delete_group_dialog_message" msgid="335713829185261371">"लेबल \"<xliff:g id="GROUP_LABEL">%1$s</xliff:g>\" हटाएं? (संपर्क स्वयं नहीं हटाए जाएंगे.)"</string>
     <string name="toast_join_with_empty_contact" msgid="1215465657839085613">"अन्‍य संपर्क से लिंक करने से पहले संपर्क नाम लिखें."</string>
@@ -181,7 +181,7 @@
     <string name="cancel_confirmation_dialog_message" msgid="9008214737653278989">"क्या परिवर्तनों को छोड़ना चाहते हैं?"</string>
     <string name="cancel_confirmation_dialog_cancel_editing_button" msgid="3057023972074640671">"अभी नहीं"</string>
     <string name="cancel_confirmation_dialog_keep_editing_button" msgid="3316573928085916146">"रद्द करें"</string>
-    <string name="leave_customize_confirmation_dialog_message" msgid="4277114551206032979">"कस्‍टमाइज़ेशन छोड़ें?"</string>
+    <string name="leave_customize_confirmation_dialog_message" msgid="4277114551206032979">"पसंद के मुताबिक सेटिंग खारिज करें?"</string>
     <string name="enter_contact_name" msgid="4594274696120278368">"संपर्क खोजें"</string>
     <string name="title_edit_group" msgid="8602752287270586734">"संपर्क निकालें"</string>
     <string name="local_profile_title" msgid="2021416826991393684">"मेरी स्थानीय प्रोफ़ाइल"</string>
@@ -212,7 +212,7 @@
     <string name="date_time_fmt" msgid="5053178726906863812">"<xliff:g id="DATE">%1$s</xliff:g>, <xliff:g id="TIME_INTERVAL">%2$s</xliff:g>"</string>
     <string name="untitled_event" msgid="3484859385405939366">"(शीर्षक रहित इवेंट)"</string>
     <string name="date_time_set" msgid="4761419824439606690">"सेट करें"</string>
-    <string name="header_im_entry" msgid="3581720979640225615">"IM"</string>
+    <string name="header_im_entry" msgid="3581720979640225615">"आईएम"</string>
     <string name="header_organization_entry" msgid="8515394955666265406">"संगठन का नाम"</string>
     <string name="header_nickname_entry" msgid="6743561883967451485">"उपनाम"</string>
     <string name="header_note_entry" msgid="4320190426480612344">"नोट"</string>
@@ -251,7 +251,7 @@
     <string name="menu_title_groups" msgid="8356921831150278868">"लेबल"</string>
     <string name="menu_title_filters" msgid="8210922220185114527">"खाते"</string>
     <string name="permission_explanation_header" msgid="5739405825039695327">"अपना इतिहास एक साथ देखें"</string>
-    <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"इवेंट और संदेश"</string>
+    <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"इवेंट और मैसेज"</string>
     <string name="permission_explanation_subheader_calendar" msgid="8785323496211704613">"इवेंट"</string>
     <string name="permission_explanation_subheader_SMS" msgid="1904552086449525567">"संदेश"</string>
     <string name="hamburger_feature_highlight_header" msgid="5762679188565585072">"सुझाव"</string>
@@ -322,9 +322,9 @@
     <string name="account_sim" msgid="6519016427905087952">"सिम"</string>
     <string name="nameLabelsGroup" msgid="2034640839640477827">"नाम"</string>
     <string name="nicknameLabelsGroup" msgid="2891682101053358010">"प्रचलित नाम"</string>
-    <string name="name_given" msgid="4280790853455320619">"नाम"</string>
+    <string name="name_given" msgid="4280790853455320619">"पहला नाम"</string>
     <string name="name_family" msgid="7466985689626017037">"उपनाम"</string>
-    <string name="name_prefix" msgid="59756378548779822">"नाम उपसर्ग"</string>
+    <string name="name_prefix" msgid="59756378548779822">"नाम के पहले का टाइटल"</string>
     <string name="name_middle" msgid="8467433655992690326">"मध्य नाम"</string>
     <string name="name_suffix" msgid="3855278445375651441">"नाम का अंतिम भाग"</string>
     <string name="name_phonetic" msgid="4259595234312430484">"फ़ोनेटिक नाम"</string>
@@ -334,7 +334,7 @@
     <string name="phoneLabelsGroup" msgid="6468091477851199285">"फ़ोन"</string>
     <string name="emailLabelsGroup" msgid="8389931313045344406">"ईमेल"</string>
     <string name="postalLabelsGroup" msgid="3487738141112589324">"पता"</string>
-    <string name="imLabelsGroup" msgid="3898238486262614027">"IM"</string>
+    <string name="imLabelsGroup" msgid="3898238486262614027">"आईएम"</string>
     <string name="organizationLabelsGroup" msgid="2478611760751832035">"संगठन"</string>
     <string name="relationLabelsGroup" msgid="1854373894284572781">"संबंध"</string>
     <string name="eventLabelsGroup" msgid="7960408705307831289">"विशेष दिनांक"</string>
@@ -343,8 +343,8 @@
     <string name="ghostData_company" msgid="5414421120553765775">"कंपनी"</string>
     <string name="ghostData_title" msgid="7496735200318496110">"शीर्षक"</string>
     <string name="label_notes" msgid="8337354953278341042">"नोट"</string>
-    <string name="label_custom_field" msgid="1994056912242214426">"कस्टम"</string>
-    <string name="label_sip_address" msgid="7252153678613978127">"SIP"</string>
+    <string name="label_custom_field" msgid="1994056912242214426">"पसंद के मुताबिक"</string>
+    <string name="label_sip_address" msgid="7252153678613978127">"एसआईपी"</string>
     <string name="websiteLabelsGroup" msgid="4202998982804009261">"वेबसाइट"</string>
     <string name="groupsLabel" msgid="7000816729542098972">"लेबल"</string>
     <string name="email_home" msgid="8573740658148184279">"घर का ईमेल"</string>
@@ -382,7 +382,7 @@
     <string name="announce_collapsed_fields" msgid="6414231530177338704">"संक्षिप्त किया गया"</string>
     <string name="list_filter_all_accounts" msgid="8908683398914322369">"सभी संपर्क"</string>
     <string name="list_filter_all_starred" msgid="5031734941601931356">"तारांकित"</string>
-    <string name="list_filter_customize" msgid="4789963356004169321">"कस्‍टमाइज़ करें"</string>
+    <string name="list_filter_customize" msgid="4789963356004169321">"पसंद के मुताबिक"</string>
     <string name="list_filter_single" msgid="5871400283515893087">"संपर्क"</string>
     <string name="display_ungrouped" msgid="6885954210243119591">"अन्य सभी संपर्क"</string>
     <string name="display_all_contacts" msgid="2031647544742889505">"सभी संपर्क"</string>
@@ -446,14 +446,14 @@
     <string name="caching_vcard_title" msgid="1226272312940516605">"संचय कर रहा है"</string>
     <string name="progress_notifier_message" msgid="2311011466908220528">"<xliff:g id="CURRENT_NUMBER">%1$s</xliff:g>/<xliff:g id="TOTAL_NUMBER">%2$s</xliff:g> आयात कर रहा है: <xliff:g id="NAME">%3$s</xliff:g>"</string>
     <string name="export_to_vcf_file" msgid="4407527157056120858">".vcf फाइल में निर्यात करें"</string>
-    <string name="display_options_sort_list_by" msgid="7028809117272018712">"इससे क्रमित करें"</string>
+    <string name="display_options_sort_list_by" msgid="7028809117272018712">"क्रम से लगाएं"</string>
     <string name="display_options_phonetic_name_fields" msgid="3771577099236534776">"फ़ोनेटिक नाम"</string>
     <string name="editor_options_always_show_phonetic_names" msgid="7253911385818398903">"हमेशा दिखाएं"</string>
     <string name="editor_options_hide_phonetic_names_if_empty" msgid="2672008764795671104">"अगर खाली है तो छिपाएं"</string>
-    <string name="display_options_sort_by_given_name" msgid="2778421332815687873">"नाम"</string>
+    <string name="display_options_sort_by_given_name" msgid="2778421332815687873">"पहला नाम"</string>
     <string name="display_options_sort_by_family_name" msgid="2684905041926954793">"उपनाम"</string>
-    <string name="display_options_view_names_as" msgid="6514632499276563482">"नाम प्रारूप"</string>
-    <string name="display_options_view_given_name_first" msgid="3616004640258761473">"नाम पहले"</string>
+    <string name="display_options_view_names_as" msgid="6514632499276563482">"नाम का फ़ॉर्मैट"</string>
+    <string name="display_options_view_given_name_first" msgid="3616004640258761473">"पहला नाम पहले"</string>
     <string name="display_options_view_family_name_first" msgid="956445100777296467">"उपनाम पहले"</string>
     <string name="settings_accounts" msgid="350219740670774576">"खाते"</string>
     <string name="default_editor_account" msgid="699591683362420991">"नए संपर्कों के लिए डिफ़ॉल्ट खाता"</string>
@@ -464,18 +464,18 @@
     <string name="share_contacts" msgid="8109287987498711664">"सभी संपर्कों को साझा करें"</string>
     <string name="share_contacts_failure" msgid="1216431977330560559">"संपर्कों को साझा करना विफल रहा."</string>
     <string name="dialog_export" msgid="1628001095187741417">"संपर्क निर्यात करें"</string>
-    <string name="dialog_import" msgid="2423592905927819672">"संपर्क यहां से आयात करें"</string>
+    <string name="dialog_import" msgid="2423592905927819672">"संपर्क यहां से लाएं"</string>
     <string name="share_error" msgid="948429331673358107">"यह संपर्क साझा नहीं किया जा सकता."</string>
     <string name="no_contact_to_share" msgid="1276397530378323033">"साझा करने के लिए कोई भी संपर्क नहीं है."</string>
-    <string name="menu_contacts_filter" msgid="2165153460860262501">"प्रदर्शन के लिए संपर्क"</string>
-    <string name="activity_title_contacts_filter" msgid="8275542497615516969">"प्रदर्शन के लिए संपर्क"</string>
+    <string name="menu_contacts_filter" msgid="2165153460860262501">"डिसप्ले के लिए संपर्क"</string>
+    <string name="activity_title_contacts_filter" msgid="8275542497615516969">"डिसप्ले के लिए संपर्क"</string>
     <string name="custom_list_filter" msgid="9048525797111024204">"दृश्य कस्टमाइज़ करें"</string>
     <string name="menu_custom_filter_save" msgid="2679793632208086460">"सहेजें"</string>
     <string name="hint_findContacts" msgid="7128627979899070325">"संपर्क खोजें"</string>
     <string name="contactsFavoritesLabel" msgid="8417039765586853670">"पसंदीदा"</string>
-    <string name="menu_import" msgid="6107961135813836467">"आयात करें"</string>
-    <string name="menu_export" msgid="2658783911863503902">"निर्यात करें"</string>
-    <string name="menu_blocked_numbers" msgid="5272951629083025995">"अवरोधित नंबर"</string>
+    <string name="menu_import" msgid="6107961135813836467">"संपर्क लेकर आएं"</string>
+    <string name="menu_export" msgid="2658783911863503902">"संपर्क भेजें"</string>
+    <string name="menu_blocked_numbers" msgid="5272951629083025995">"ब्लॉक किए गए नंबर"</string>
     <string name="contact_status_update_attribution" msgid="752179367353018597">"<xliff:g id="SOURCE">%1$s</xliff:g> द्वारा"</string>
     <string name="contact_status_update_attribution_with_date" msgid="7358045508107825068">"<xliff:g id="SOURCE">%2$s</xliff:g> द्वारा <xliff:g id="DATE">%1$s</xliff:g>"</string>
     <string name="action_menu_back_from_search" msgid="8793348588949233348">"खोजना बंद करें"</string>
@@ -504,7 +504,7 @@
     <string name="callDurationHourFormat" msgid="7392254193808506640">"<xliff:g id="MINUTES_0">%1$s</xliff:g> घंटे <xliff:g id="MINUTES_1">%2$s</xliff:g> मिनट <xliff:g id="SECONDS">%3$s</xliff:g> सेकंड"</string>
     <string name="dynamic_shortcut_disabled_message" msgid="249939425761315252">"इस शॉर्टकट को अक्षम कर दिया गया है"</string>
     <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"संपर्क निकाल दिया गया था"</string>
-    <string name="sim_import_button_text" msgid="4270841592496619317">"आयात करें"</string>
+    <string name="sim_import_button_text" msgid="4270841592496619317">"संपर्क लेकर आएं"</string>
     <string name="sim_import_title_none_selected" msgid="6910517331401970693">"संपर्कों को चुनें"</string>
     <string name="sim_import_empty_message" msgid="7743815244380189651">"आपके सिम कार्ड पर कोई संपर्क नहीं है"</string>
     <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"संपर्क पहले से ही आपकी सूची में मौजूद है"</string>
@@ -528,7 +528,7 @@
     <string name="importing_sim_failed_title" msgid="39706901030537985">"आयात करना विफल रहा"</string>
     <string name="importing_sim_failed_message" msgid="3345258302998021066">"SIM कार्ड से संपर्क आयात नहीं किए जा सके"</string>
     <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"SIM को आयात किया जा रहा है"</string>
-    <string name="contacts_default_notification_channel" msgid="4754058700611188581">"नोटिफ़िकेशन"</string>
+    <string name="contacts_default_notification_channel" msgid="4754058700611188581">"सूचनाएं"</string>
     <string name="yes_button" msgid="1268479086848288060">"हां"</string>
     <string name="no_button" msgid="5742815694687835125">"नहीं"</string>
 </resources>
diff --git a/res/values-hy/strings.xml b/res/values-hy/strings.xml
index 4e9cee4..d097e8d 100644
--- a/res/values-hy/strings.xml
+++ b/res/values-hy/strings.xml
@@ -300,7 +300,7 @@
     <string name="sms_work_pager" msgid="5566924423316960597">"Հաղորդագրել աշտատանքային փեյջերին"</string>
     <string name="sms_assistant" msgid="2773424339923116234">"Հաղորդագրել <xliff:g id="ASSISTANT">%s</xliff:g>-ին"</string>
     <string name="sms_mms" msgid="4069352461380762677">"Հաղորդագրել MMS համարին"</string>
-    <string name="sms_by_shortcut" msgid="7741770672976099517">"<xliff:g id="CONTACT_NAME">%s</xliff:g> (Գրել ՍՄՍ)"</string>
+    <string name="sms_by_shortcut" msgid="7741770672976099517">"<xliff:g id="CONTACT_NAME">%s</xliff:g> (Գրել SMS)"</string>
     <string name="description_video_call" msgid="7120921378651700947">"Տեսազանգ սկսել"</string>
     <string name="clearFrequentsConfirmation_title" msgid="766292372438450432">"Մաքրե՞լ հաճախակի հաղորդակցվողները"</string>
     <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"Կոնտակտներ և Հեռախոս հավելվածներից կմաքրվի հաճախակի օգտագործվող կոնտակտների ցանկը, և էլփոստի հավելվածները զրոյից են սովորելու ձեր հաճախակի օգտագործվող կոնտակտները։"</string>
diff --git a/res/values-in/strings.xml b/res/values-in/strings.xml
index 19c2743..41f4068 100644
--- a/res/values-in/strings.xml
+++ b/res/values-in/strings.xml
@@ -488,11 +488,11 @@
     <string name="call_subject_limit" msgid="4545212901205397669">"<xliff:g id="COUNT">%1$s</xliff:g> / <xliff:g id="LIMIT">%2$s</xliff:g>"</string>
     <string name="call_subject_type_and_number" msgid="7667188212129152558">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
     <string name="about_build_version" msgid="1765533099416999801">"Versi build"</string>
-    <string name="about_open_source_licenses" msgid="6479990452352919641">"Lisensi sumber terbuka"</string>
+    <string name="about_open_source_licenses" msgid="6479990452352919641">"Lisensi open source"</string>
     <string name="about_open_source_licenses_summary" msgid="57418386931763994">"Detail lisensi untuk software sumber terbuka"</string>
     <string name="about_privacy_policy" msgid="3705518622499152626">"Kebijakan privasi"</string>
     <string name="about_terms_of_service" msgid="4642400812150296723">"Persyaratan layanan"</string>
-    <string name="activity_title_licenses" msgid="5467767062737708066">"Lisensi sumber terbuka"</string>
+    <string name="activity_title_licenses" msgid="5467767062737708066">"Lisensi open source"</string>
     <string name="url_open_error_toast" msgid="452592089815420457">"Gagal membuka url."</string>
     <string name="account_filter_view_checked" msgid="6696859503887762213">"<xliff:g id="ACCOUNT_INFO">%s</xliff:g> dicentang"</string>
     <string name="account_filter_view_not_checked" msgid="2248684521205038389">"<xliff:g id="ACCOUNT_INFO">%s</xliff:g> tidak dicentang"</string>
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
index 52c7b65..6b743d5 100644
--- a/res/values-it/strings.xml
+++ b/res/values-it/strings.xml
@@ -250,7 +250,7 @@
     <string name="navigation_drawer_label" msgid="4154758025620107419">"Etichetta <xliff:g id="LABEL_NAME">%s</xliff:g>"</string>
     <string name="menu_title_groups" msgid="8356921831150278868">"Etichette"</string>
     <string name="menu_title_filters" msgid="8210922220185114527">"Account"</string>
-    <string name="permission_explanation_header" msgid="5739405825039695327">"Visualizza la cronologia insieme"</string>
+    <string name="permission_explanation_header" msgid="5739405825039695327">"Vedi la vostra cronologia insieme"</string>
     <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"Eventi e messaggi"</string>
     <string name="permission_explanation_subheader_calendar" msgid="8785323496211704613">"Eventi"</string>
     <string name="permission_explanation_subheader_SMS" msgid="1904552086449525567">"Messaggi"</string>
@@ -469,7 +469,7 @@
     <string name="no_contact_to_share" msgid="1276397530378323033">"Nessun contatto da condividere."</string>
     <string name="menu_contacts_filter" msgid="2165153460860262501">"Contatti da visualizzare"</string>
     <string name="activity_title_contacts_filter" msgid="8275542497615516969">"Contatti da visualizzare"</string>
-    <string name="custom_list_filter" msgid="9048525797111024204">"Personalizza visualiz."</string>
+    <string name="custom_list_filter" msgid="9048525797111024204">"Personalizza visualizzazione"</string>
     <string name="menu_custom_filter_save" msgid="2679793632208086460">"Salva"</string>
     <string name="hint_findContacts" msgid="7128627979899070325">"Cerca contatti"</string>
     <string name="contactsFavoritesLabel" msgid="8417039765586853670">"Preferiti"</string>
diff --git a/res/values-kk/strings.xml b/res/values-kk/strings.xml
index a3dd957..bab2592 100644
--- a/res/values-kk/strings.xml
+++ b/res/values-kk/strings.xml
@@ -203,7 +203,7 @@
     <string name="expanding_entry_card_view_see_more" msgid="3779194067124758079">"Көбірек көру"</string>
     <string name="expanding_entry_card_view_see_less" msgid="5344160551629714168">"Азырақ көру"</string>
     <string name="recent_card_title" msgid="8982782042698001695">"Жақындағы"</string>
-    <string name="about_card_title" msgid="2920942314212825637">"Туралы"</string>
+    <string name="about_card_title" msgid="2920942314212825637">"Мәлімет"</string>
     <string name="toast_making_personal_copy" msgid="288549957278065542">"Жеке көшірме жасау…"</string>
     <string name="tomorrow" msgid="6241969467795308581">"Ертең"</string>
     <string name="today" msgid="8041090779381781781">"Бүгін"</string>
@@ -217,7 +217,7 @@
     <string name="header_nickname_entry" msgid="6743561883967451485">"Бүркеншік ат"</string>
     <string name="header_note_entry" msgid="4320190426480612344">"Ескертпе"</string>
     <string name="header_website_entry" msgid="1411467850000824745">"Веб-сайт"</string>
-    <string name="header_event_entry" msgid="6738250422744401460">"Оқиға"</string>
+    <string name="header_event_entry" msgid="6738250422744401460">"Іс-шара"</string>
     <string name="header_relation_entry" msgid="1520292958088146460">"Қатынас"</string>
     <string name="header_name_entry" msgid="1592791008096288306">"Аты"</string>
     <string name="header_email_entry" msgid="8666093061171624478">"Электрондық пошта"</string>
diff --git a/res/values-km/strings.xml b/res/values-km/strings.xml
index 7a49f8b..4425ce3 100644
--- a/res/values-km/strings.xml
+++ b/res/values-km/strings.xml
@@ -221,7 +221,7 @@
     <string name="header_relation_entry" msgid="1520292958088146460">"ទំនាក់ទំនង"</string>
     <string name="header_name_entry" msgid="1592791008096288306">"ឈ្មោះ"</string>
     <string name="header_email_entry" msgid="8666093061171624478">"អ៊ីមែល"</string>
-    <string name="header_phone_entry" msgid="8450980572274173570">"ទូរស័ព្ទ"</string>
+    <string name="header_phone_entry" msgid="8450980572274173570">"ទូរសព្ទ"</string>
     <string name="content_description_directions" msgid="2686791825798189335">"ទិសដៅ​ទៅ​ទីតាំង"</string>
     <string name="content_description_recent_sms" msgid="1666389577263317445">"សារ​ខ្លៗ​ថ្មី។ <xliff:g id="MESSAGE_BODY">%1$s</xliff:g>. <xliff:g id="PHONE_NUMBER">%2$s</xliff:g>. <xliff:g id="DATE">%3$s</xliff:g>. ចុច​ដើម្បី​ឆ្លើយតប"</string>
     <string name="content_description_recent_call_type_incoming" msgid="5210739096863511410">"ចូល"</string>
@@ -331,7 +331,7 @@
     <string name="name_phonetic_given" msgid="8723179018384187631">"នាម​ខ្លួន​តាម​សូរស័ព្ទ"</string>
     <string name="name_phonetic_middle" msgid="8643721493320405200">"សូរស័ព្ទ​ឈ្មោះ​កណ្ដាល"</string>
     <string name="name_phonetic_family" msgid="2640133663656011626">"នាមត្រកូល​តាម​សូរស័ព្ទ"</string>
-    <string name="phoneLabelsGroup" msgid="6468091477851199285">"ទូរស័ព្ទ"</string>
+    <string name="phoneLabelsGroup" msgid="6468091477851199285">"ទូរសព្ទ"</string>
     <string name="emailLabelsGroup" msgid="8389931313045344406">"អ៊ីមែល"</string>
     <string name="postalLabelsGroup" msgid="3487738141112589324">"អាសយដ្ឋាន"</string>
     <string name="imLabelsGroup" msgid="3898238486262614027">"IM"</string>
diff --git a/res/values-kn/strings.xml b/res/values-kn/strings.xml
index a96eb44..12fc25b 100644
--- a/res/values-kn/strings.xml
+++ b/res/values-kn/strings.xml
@@ -489,7 +489,7 @@
     <string name="call_subject_type_and_number" msgid="7667188212129152558">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
     <string name="about_build_version" msgid="1765533099416999801">"ಬಿಲ್ಡ್ ಆವೃತ್ತಿ"</string>
     <string name="about_open_source_licenses" msgid="6479990452352919641">"ತೆರೆದ ಮೂಲ ಪರವಾನಗಿಗಳು"</string>
-    <string name="about_open_source_licenses_summary" msgid="57418386931763994">"ಮುಕ್ತ ಮೂಲ ಸಾಫ್ಟ್‌ವೇರ್‌ಗಾಗಿ ಪರವಾನಗಿ ವಿವರಗಳು"</string>
+    <string name="about_open_source_licenses_summary" msgid="57418386931763994">"ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್‌ವೇರ್‌ಗಾಗಿ ಪರವಾನಗಿ ವಿವರಗಳು"</string>
     <string name="about_privacy_policy" msgid="3705518622499152626">"ಗೌಪ್ಯತೆ ನೀತಿ"</string>
     <string name="about_terms_of_service" msgid="4642400812150296723">"ಸೇವಾ ನಿಯಮಗಳು"</string>
     <string name="activity_title_licenses" msgid="5467767062737708066">"ತೆರೆದ ಮೂಲ ಪರವಾನಗಿಗಳು"</string>
diff --git a/res/values-ky/strings.xml b/res/values-ky/strings.xml
index f92dda8..749abb9 100644
--- a/res/values-ky/strings.xml
+++ b/res/values-ky/strings.xml
@@ -169,7 +169,7 @@
     <string name="non_phone_add_to_contacts" msgid="6590985286250471169">"Байланыштарга кошуу"</string>
     <string name="non_phone_close" msgid="7608506439725515667">"Жабуу"</string>
     <string name="date_year_toggle" msgid="7122002148518724139">"Жылы көрсөтүлсүн"</string>
-    <string name="contacts_unavailable_add_account" msgid="4347232421410561500">"Каттоо эсебин кошуу"</string>
+    <string name="contacts_unavailable_add_account" msgid="4347232421410561500">"Аккаунт кошуу"</string>
     <string name="contacts_unavailable_import_contacts" msgid="3182801738595937144">"Импорттоо"</string>
     <string name="create_group_item_label" msgid="3263064599743742865">"Жаңысын түзүү..."</string>
     <string name="delete_group_dialog_message" msgid="335713829185261371">"\"<xliff:g id="GROUP_LABEL">%1$s</xliff:g>\" энбелгиси өчүрүлсүнбү? (Байланыштардын өзү өчпөйт)."</string>
@@ -487,7 +487,7 @@
     <string name="send_and_call_button" msgid="7740295432834590737">"ЖӨНӨТҮҮ ЖАНА ЧАЛУУ"</string>
     <string name="call_subject_limit" msgid="4545212901205397669">"<xliff:g id="COUNT">%1$s</xliff:g> / <xliff:g id="LIMIT">%2$s</xliff:g>"</string>
     <string name="call_subject_type_and_number" msgid="7667188212129152558">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
-    <string name="about_build_version" msgid="1765533099416999801">"Куралма версиясы"</string>
+    <string name="about_build_version" msgid="1765533099416999801">"Курама версиясы"</string>
     <string name="about_open_source_licenses" msgid="6479990452352919641">"Баштапкы коду ачык программалардын уруксаттамалары"</string>
     <string name="about_open_source_licenses_summary" msgid="57418386931763994">"Баштапкы коду ачык программалардын уруксаттамаларынын чоо-жайы"</string>
     <string name="about_privacy_policy" msgid="3705518622499152626">"Купуялык саясаты"</string>
diff --git a/res/values-mk/strings.xml b/res/values-mk/strings.xml
index 196d097..cd65e9f 100644
--- a/res/values-mk/strings.xml
+++ b/res/values-mk/strings.xml
@@ -338,7 +338,7 @@
     <string name="organizationLabelsGroup" msgid="2478611760751832035">"Организација"</string>
     <string name="relationLabelsGroup" msgid="1854373894284572781">"Врска"</string>
     <string name="eventLabelsGroup" msgid="7960408705307831289">"Посебен датум"</string>
-    <string name="sms" msgid="1756857139634224222">"Текстуална порака"</string>
+    <string name="sms" msgid="1756857139634224222">"SMS-порака"</string>
     <string name="postal_address" msgid="8765560217149624536">"Адреса"</string>
     <string name="ghostData_company" msgid="5414421120553765775">"Компанија"</string>
     <string name="ghostData_title" msgid="7496735200318496110">"Наслов"</string>
diff --git a/res/values-mr/strings.xml b/res/values-mr/strings.xml
index 0d5ac49..c6ed286 100644
--- a/res/values-mr/strings.xml
+++ b/res/values-mr/strings.xml
@@ -133,12 +133,12 @@
     <string name="quickcontact_add_phone_number" msgid="731665835910658965">"फोन नंबर जोडा"</string>
     <string name="quickcontact_add_email" msgid="739298028384348482">"ईमेल जोडा"</string>
     <string name="missing_app" msgid="1466111003546611387">"ही क्रिया हाताळण्यासाठी कोणताही अ‍ॅप आढळला नाही."</string>
-    <string name="menu_share" msgid="943789700636542260">"सामायिक करा"</string>
+    <string name="menu_share" msgid="943789700636542260">"शेअर करा"</string>
     <string name="menu_add_contact" msgid="3198704337220892684">"संपर्कांमध्ये जोडा"</string>
     <string name="menu_add_contacts" msgid="4465646512002163011">"जोडा"</string>
     <plurals name="title_share_via" formatted="false" msgid="5886112726191455415">
-      <item quantity="one">संपर्क याद्वारे सामायिक करा</item>
-      <item quantity="other">संपर्क याद्वारे सामायिक करा</item>
+      <item quantity="one">संपर्क याद्वारे शेअर करा</item>
+      <item quantity="other">संपर्क याद्वारे शेअर करा</item>
     </plurals>
     <string name="dialog_new_group_account" msgid="3451312333591556651">"खाते निवडा"</string>
     <string name="group_name_dialog_insert_title" msgid="2668452090427027941">"लेबल बनवा"</string>
@@ -460,8 +460,8 @@
     <string name="settings_my_info_title" msgid="1534272456405343119">"माझी माहिती"</string>
     <string name="set_up_profile" msgid="7370213843590143771">"आपले प्रोफाईल सेट करा"</string>
     <string name="setting_about" msgid="7014388749752042863">"संपर्कांबद्दल"</string>
-    <string name="share_favorite_contacts" msgid="4280926751003081042">"आवडते संपर्क सामायिक करा"</string>
-    <string name="share_contacts" msgid="8109287987498711664">"सर्व संपर्क सामायिक करा"</string>
+    <string name="share_favorite_contacts" msgid="4280926751003081042">"आवडते संपर्क शेअर करा"</string>
+    <string name="share_contacts" msgid="8109287987498711664">"सर्व संपर्क शेअर करा"</string>
     <string name="share_contacts_failure" msgid="1216431977330560559">"संपर्क सामायिक करण्यात अयशस्वी झाले."</string>
     <string name="dialog_export" msgid="1628001095187741417">"संपर्क निर्यात करा"</string>
     <string name="dialog_import" msgid="2423592905927819672">"यावरून संपर्क आयात करा"</string>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index 2bf2b7d..3676dcc 100644
--- a/res/values-ru/strings.xml
+++ b/res/values-ru/strings.xml
@@ -84,9 +84,9 @@
       <item quantity="other"><xliff:g id="COUNT_2">%1$d</xliff:g> контакта · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
     </plurals>
     <string name="title_from_google" msgid="4664084747121207202">"Из Google"</string>
-    <string name="title_from_other_accounts" msgid="8307885412426754288">"Из аккаунта <xliff:g id="ACCOUNT">%s</xliff:g>"</string>
+    <string name="title_from_other_accounts" msgid="8307885412426754288">"От кого: <xliff:g id="ACCOUNT">%s</xliff:g>"</string>
     <string name="menu_set_ring_tone" msgid="8728345772068064946">"Задать рингтон"</string>
-    <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"Переключать на голосовую почту"</string>
+    <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"Направлять на голосовую почту"</string>
     <string name="menu_unredirect_calls_to_vm" msgid="8725542534701811737">"Исключить голосовую почту"</string>
     <string name="readOnlyContactWarning" msgid="7514475664695089411">"Этот контакт доступен только для чтения. Его нельзя удалить, но можно скрыть."</string>
     <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"Скрыть контакт"</string>
@@ -139,14 +139,14 @@
     <string name="quickcontact_add_phone_number" msgid="731665835910658965">"Добавить номер телефона"</string>
     <string name="quickcontact_add_email" msgid="739298028384348482">"Добавить адрес электронной почты"</string>
     <string name="missing_app" msgid="1466111003546611387">"Действие не поддерживается ни в одном приложении."</string>
-    <string name="menu_share" msgid="943789700636542260">"Отправить"</string>
+    <string name="menu_share" msgid="943789700636542260">"Поделиться"</string>
     <string name="menu_add_contact" msgid="3198704337220892684">"Добавить в контакты"</string>
     <string name="menu_add_contacts" msgid="4465646512002163011">"Добавить"</string>
     <plurals name="title_share_via" formatted="false" msgid="5886112726191455415">
-      <item quantity="one">Выберите способ отправки</item>
-      <item quantity="few">Выберите способ отправки</item>
-      <item quantity="many">Выберите способ отправки</item>
-      <item quantity="other">Выберите способ отправки</item>
+      <item quantity="one">Выберите способ</item>
+      <item quantity="few">Выберите способ</item>
+      <item quantity="many">Выберите способ</item>
+      <item quantity="other">Выберите способ</item>
     </plurals>
     <string name="dialog_new_group_account" msgid="3451312333591556651">"Выберите аккаунт"</string>
     <string name="group_name_dialog_insert_title" msgid="2668452090427027941">"Создание ярлыка"</string>
@@ -175,7 +175,7 @@
     <string name="organization_company_and_title" msgid="6718207751363732025">"<xliff:g id="COMPANY_0">%2$s</xliff:g>, <xliff:g id="COMPANY_1">%1$s</xliff:g>"</string>
     <string name="non_phone_caption" msgid="1541655052330027380">"Номер телефона"</string>
     <string name="non_phone_add_to_contacts" msgid="6590985286250471169">"Добавить в контакты"</string>
-    <string name="non_phone_close" msgid="7608506439725515667">"Закрыть"</string>
+    <string name="non_phone_close" msgid="7608506439725515667">"Скрыть"</string>
     <string name="date_year_toggle" msgid="7122002148518724139">"Указать год"</string>
     <string name="contacts_unavailable_add_account" msgid="4347232421410561500">"Добавить аккаунт"</string>
     <string name="contacts_unavailable_import_contacts" msgid="3182801738595937144">"Импортировать"</string>
@@ -218,7 +218,7 @@
     <string name="today_at_time_fmt" msgid="605665249491030460">"Сегодня, <xliff:g id="TIME_INTERVAL">%s</xliff:g>"</string>
     <string name="tomorrow_at_time_fmt" msgid="4856497969617819421">"Завтра, <xliff:g id="TIME_INTERVAL">%s</xliff:g>"</string>
     <string name="date_time_fmt" msgid="5053178726906863812">"<xliff:g id="DATE">%1$s</xliff:g>, <xliff:g id="TIME_INTERVAL">%2$s</xliff:g>"</string>
-    <string name="untitled_event" msgid="3484859385405939366">"(событие без названия)"</string>
+    <string name="untitled_event" msgid="3484859385405939366">"Мероприятие без названия"</string>
     <string name="date_time_set" msgid="4761419824439606690">"Установить"</string>
     <string name="header_im_entry" msgid="3581720979640225615">"Чат"</string>
     <string name="header_organization_entry" msgid="8515394955666265406">"Организация"</string>
@@ -259,7 +259,7 @@
     <string name="menu_title_groups" msgid="8356921831150278868">"Ярлыки"</string>
     <string name="menu_title_filters" msgid="8210922220185114527">"Аккаунты"</string>
     <string name="permission_explanation_header" msgid="5739405825039695327">"Показывать объединенную историю"</string>
-    <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"Мероприятия и сообщения"</string>
+    <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"(мероприятия и сообщения)"</string>
     <string name="permission_explanation_subheader_calendar" msgid="8785323496211704613">"Мероприятия"</string>
     <string name="permission_explanation_subheader_SMS" msgid="1904552086449525567">"Сообщения"</string>
     <string name="hamburger_feature_highlight_header" msgid="5762679188565585072">"Предложения"</string>
@@ -272,7 +272,7 @@
     <string name="call_fax_work" msgid="7467763592359059243">"Рабочий факс"</string>
     <string name="call_fax_home" msgid="8342175628887571876">"Домашний факс"</string>
     <string name="call_pager" msgid="9003902812293983281">"Пейджер"</string>
-    <string name="call_other" msgid="8563753966926932052">"Позвонить"</string>
+    <string name="call_other" msgid="8563753966926932052">"Вызов"</string>
     <string name="call_callback" msgid="1910165691349426858">"Обратный вызов"</string>
     <string name="call_car" msgid="3280537320306436445">"Тел. в машине"</string>
     <string name="call_company_main" msgid="6105120947138711257">"Офис"</string>
@@ -390,7 +390,7 @@
     <string name="announce_collapsed_fields" msgid="6414231530177338704">"Поля скрыты"</string>
     <string name="list_filter_all_accounts" msgid="8908683398914322369">"Все контакты"</string>
     <string name="list_filter_all_starred" msgid="5031734941601931356">"Помеченные"</string>
-    <string name="list_filter_customize" msgid="4789963356004169321">"Настроить"</string>
+    <string name="list_filter_customize" msgid="4789963356004169321">"Другой"</string>
     <string name="list_filter_single" msgid="5871400283515893087">"Контакт"</string>
     <string name="display_ungrouped" msgid="6885954210243119591">"Все контакты"</string>
     <string name="display_all_contacts" msgid="2031647544742889505">"Все контакты"</string>
@@ -449,7 +449,7 @@
     <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Импорт <xliff:g id="FILENAME">%s</xliff:g> начнется в ближайшее время."</string>
     <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"Файл будет импортирован в ближайшее время."</string>
     <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"Запрос на импорт данных vCard отклонен. Повторите попытку позже."</string>
-    <string name="contacts_export_will_start_message" msgid="8538705791417534431">"Контакты скоро будут экспортированы."</string>
+    <string name="contacts_export_will_start_message" msgid="8538705791417534431">"Контакты скоро будут экспортированы"</string>
     <string name="vcard_export_request_rejected_message" msgid="2844874826431327531">"Запрос на экспорт данных vCard отклонен. Повторите попытку позже."</string>
     <string name="vcard_unknown_filename" msgid="7171709890959915954">"контакт"</string>
     <string name="caching_vcard_message" msgid="4926308675041506756">"Выполняется кеширование файлов vCard в локальное временное хранилище. Импорт скоро начнется."</string>
@@ -462,13 +462,13 @@
     <string name="display_options_phonetic_name_fields" msgid="3771577099236534776">"Транскрипция имени"</string>
     <string name="editor_options_always_show_phonetic_names" msgid="7253911385818398903">"Всегда показывать"</string>
     <string name="editor_options_hide_phonetic_names_if_empty" msgid="2672008764795671104">"Скрывать пустое поле"</string>
-    <string name="display_options_sort_by_given_name" msgid="2778421332815687873">"Имя"</string>
-    <string name="display_options_sort_by_family_name" msgid="2684905041926954793">"Фамилия"</string>
+    <string name="display_options_sort_by_given_name" msgid="2778421332815687873">"По имени"</string>
+    <string name="display_options_sort_by_family_name" msgid="2684905041926954793">"По фамилии"</string>
     <string name="display_options_view_names_as" msgid="6514632499276563482">"Формат имени и фамилии"</string>
     <string name="display_options_view_given_name_first" msgid="3616004640258761473">"Сначала имя"</string>
     <string name="display_options_view_family_name_first" msgid="956445100777296467">"Сначала фамилия"</string>
     <string name="settings_accounts" msgid="350219740670774576">"Аккаунты"</string>
-    <string name="default_editor_account" msgid="699591683362420991">"Аккаунт по умолчанию для новых контактов"</string>
+    <string name="default_editor_account" msgid="699591683362420991">"Аккаунт для новых контактов"</string>
     <string name="settings_my_info_title" msgid="1534272456405343119">"Мои данные"</string>
     <string name="set_up_profile" msgid="7370213843590143771">"Настройте профиль"</string>
     <string name="setting_about" msgid="7014388749752042863">"О Контактах"</string>
@@ -476,12 +476,12 @@
     <string name="share_contacts" msgid="8109287987498711664">"Поделиться всеми контактами"</string>
     <string name="share_contacts_failure" msgid="1216431977330560559">"Не удалось поделиться контактами"</string>
     <string name="dialog_export" msgid="1628001095187741417">"Экспорт контактов"</string>
-    <string name="dialog_import" msgid="2423592905927819672">"Импорт контактов"</string>
+    <string name="dialog_import" msgid="2423592905927819672">"Импортировать"</string>
     <string name="share_error" msgid="948429331673358107">"Не удалось передать данные."</string>
     <string name="no_contact_to_share" msgid="1276397530378323033">"Видимых контактов нет"</string>
     <string name="menu_contacts_filter" msgid="2165153460860262501">"Фильтр контактов"</string>
     <string name="activity_title_contacts_filter" msgid="8275542497615516969">"Фильтр контактов"</string>
-    <string name="custom_list_filter" msgid="9048525797111024204">"Настроить просмотр"</string>
+    <string name="custom_list_filter" msgid="9048525797111024204">"Настроить фильтр"</string>
     <string name="menu_custom_filter_save" msgid="2679793632208086460">"Сохранить"</string>
     <string name="hint_findContacts" msgid="7128627979899070325">"Поиск в контактах"</string>
     <string name="contactsFavoritesLabel" msgid="8417039765586853670">"Избранное"</string>
@@ -530,7 +530,7 @@
     <string name="sim_import_title" msgid="2511154832820812822">"Импорт с SIM-карты"</string>
     <string name="sim_import_cancel_content_description" msgid="1619832410253424452">"Отмена"</string>
     <string name="auto_sync_off" msgid="2180147284456026587">"Автосинхронизация отключена. Нажмите, чтобы ее включить."</string>
-    <string name="dismiss_sync_alert" msgid="8941131776605093596">"Закрыть"</string>
+    <string name="dismiss_sync_alert" msgid="8941131776605093596">"Скрыть"</string>
     <string name="account_sync_off" msgid="7646143254066243924">"Синхронизация аккаунта отключена. Нажмите, чтобы ее включить."</string>
     <string name="turn_auto_sync_on_dialog_title" msgid="333965456829670541">"Включить автосинхронизацию?"</string>
     <string name="turn_auto_sync_on_dialog_body" msgid="5025336917533693997">"Изменения всех приложений и аккаунтов (не только Google Контактов) будут синхронизироваться между веб-интерфейсом и вашими устройствами."</string>
diff --git a/res/values-ta/strings.xml b/res/values-ta/strings.xml
index bc39fb6..19d3075 100644
--- a/res/values-ta/strings.xml
+++ b/res/values-ta/strings.xml
@@ -96,7 +96,7 @@
     <string name="createContactShortcutSuccessful_NoName" msgid="8831303345367275472">"தொடர்பு முகப்புத் திரையில் சேர்க்கப்பட்டது."</string>
     <string name="createContactShortcutSuccessful" msgid="953651153238790069">"<xliff:g id="NAME">%s</xliff:g> என்ற தொடர்பு முகப்புத் திரையில் சேர்க்கப்பட்டது."</string>
     <string name="photoPickerNotFoundText" msgid="2052542573853433204">"சாதனத்தில் படங்கள் எதுவுமில்லை."</string>
-    <string name="attach_photo_dialog_title" msgid="5599827035558557169">"தொடர்பு படம்"</string>
+    <string name="attach_photo_dialog_title" msgid="5599827035558557169">"தொடர்பின் படம்"</string>
     <string name="customLabelPickerTitle" msgid="1081475101983255212">"தனிப்பயன் லேபிள் பெயர்"</string>
     <string name="removePhoto" msgid="4898105274130284565">"படத்தை அகற்று"</string>
     <string name="noContacts" msgid="2228592924476426108">"தொடர்புகள் பட்டியல் காலியாக உள்ளது"</string>
diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml
index 5b76a2a..70c1017 100644
--- a/res/values-th/strings.xml
+++ b/res/values-th/strings.xml
@@ -181,7 +181,7 @@
     <string name="cancel_confirmation_dialog_message" msgid="9008214737653278989">"ยกเลิกการเปลี่ยนแปลงหรือไม่"</string>
     <string name="cancel_confirmation_dialog_cancel_editing_button" msgid="3057023972074640671">"ทิ้ง"</string>
     <string name="cancel_confirmation_dialog_keep_editing_button" msgid="3316573928085916146">"ยกเลิก"</string>
-    <string name="leave_customize_confirmation_dialog_message" msgid="4277114551206032979">"ยกเลิกการปรับแต่งหรือไม่"</string>
+    <string name="leave_customize_confirmation_dialog_message" msgid="4277114551206032979">"ทิ้งการปรับแต่งหรือไม่"</string>
     <string name="enter_contact_name" msgid="4594274696120278368">"ค้นหารายชื่อติดต่อ"</string>
     <string name="title_edit_group" msgid="8602752287270586734">"นำรายชื่อติดต่อออก"</string>
     <string name="local_profile_title" msgid="2021416826991393684">"โปรไฟล์ในอุปกรณ์ของฉัน"</string>
diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml
index 7b12ce2..5600efd 100644
--- a/res/values-uz/strings.xml
+++ b/res/values-uz/strings.xml
@@ -446,7 +446,7 @@
     <string name="caching_vcard_title" msgid="1226272312940516605">"Keshga yuklanmoqda"</string>
     <string name="progress_notifier_message" msgid="2311011466908220528">"Import qilinmoqda: <xliff:g id="CURRENT_NUMBER">%1$s</xliff:g>/<xliff:g id="TOTAL_NUMBER">%2$s</xliff:g> – <xliff:g id="NAME">%3$s</xliff:g>"</string>
     <string name="export_to_vcf_file" msgid="4407527157056120858">"VCF faylga eksport qilish"</string>
-    <string name="display_options_sort_list_by" msgid="7028809117272018712">"Saralash tartibi"</string>
+    <string name="display_options_sort_list_by" msgid="7028809117272018712">"Saralash"</string>
     <string name="display_options_phonetic_name_fields" msgid="3771577099236534776">"Ism talaffuzi"</string>
     <string name="editor_options_always_show_phonetic_names" msgid="7253911385818398903">"Har doim ko‘rsatish"</string>
     <string name="editor_options_hide_phonetic_names_if_empty" msgid="2672008764795671104">"Bo‘sh maydonni berkitish"</string>
diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml
index a07c254..583e0c3 100644
--- a/res/values-zh-rTW/strings.xml
+++ b/res/values-zh-rTW/strings.xml
@@ -250,7 +250,7 @@
     <string name="navigation_drawer_label" msgid="4154758025620107419">"「<xliff:g id="LABEL_NAME">%s</xliff:g>」標籤"</string>
     <string name="menu_title_groups" msgid="8356921831150278868">"標籤"</string>
     <string name="menu_title_filters" msgid="8210922220185114527">"帳戶"</string>
-    <string name="permission_explanation_header" msgid="5739405825039695327">"一併顯示紀錄"</string>
+    <string name="permission_explanation_header" msgid="5739405825039695327">"一併顯示記錄"</string>
     <string name="permission_explanation_subheader_calendar_and_SMS" msgid="5411144298889835768">"活動和簡訊"</string>
     <string name="permission_explanation_subheader_calendar" msgid="8785323496211704613">"活動"</string>
     <string name="permission_explanation_subheader_SMS" msgid="1904552086449525567">"訊息"</string>
@@ -310,13 +310,13 @@
     <string name="status_busy" msgid="9147992455450257136">"忙碌"</string>
     <string name="local_invisible_directory" msgid="6046691709127661065">"其他"</string>
     <string name="directory_search_label" msgid="1887759056597975053">"目錄"</string>
-    <string name="directory_search_label_work" msgid="8618292129829443176">"Work 聯絡人目錄"</string>
+    <string name="directory_search_label_work" msgid="8618292129829443176">"工作聯絡人目錄"</string>
     <string name="local_search_label" msgid="2551177578246113614">"所有聯絡人"</string>
     <string name="description_quick_contact_for" msgid="6737516415168327789">"<xliff:g id="NAME">%1$s</xliff:g>的快速聯絡人相片"</string>
     <string name="missing_name" msgid="8745511583852904385">"(無姓名)"</string>
     <string name="favoritesFrequentContacted" msgid="6184232487472425690">"常用聯絡人"</string>
     <string name="list_filter_phones" msgid="735313795643493365">"所有包含電話號碼的聯絡人資訊"</string>
-    <string name="list_filter_phones_work" msgid="1470173699551475015">"Work 設定檔聯絡人"</string>
+    <string name="list_filter_phones_work" msgid="1470173699551475015">"工作資料夾聯絡人"</string>
     <string name="view_updates_from_group" msgid="1782685984905600034">"查看更新"</string>
     <string name="account_phone" msgid="7128032778471187553">"裝置"</string>
     <string name="account_sim" msgid="6519016427905087952">"SIM 卡"</string>
diff --git a/src-bind/com/android/contactsbind/FeatureHighlightHelper.java b/src-bind/com/android/contactsbind/FeatureHighlightHelper.java
index be1833d..b5fabac 100644
--- a/src-bind/com/android/contactsbind/FeatureHighlightHelper.java
+++ b/src-bind/com/android/contactsbind/FeatureHighlightHelper.java
@@ -16,7 +16,7 @@
 
 package com.android.contactsbind;
 
-import android.support.v4.app.FragmentActivity;
+import androidx.fragment.app.FragmentActivity;
 
 public final class FeatureHighlightHelper {
 
diff --git a/src/com/android/contacts/ContactPhotoManager.java b/src/com/android/contacts/ContactPhotoManager.java
index fdcc9b3..e5f808d 100644
--- a/src/com/android/contacts/ContactPhotoManager.java
+++ b/src/com/android/contacts/ContactPhotoManager.java
@@ -46,8 +46,8 @@
 import android.provider.ContactsContract.Contacts.Photo;
 import android.provider.ContactsContract.Data;
 import android.provider.ContactsContract.Directory;
-import android.support.v4.graphics.drawable.RoundedBitmapDrawable;
-import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory;
+import androidx.core.graphics.drawable.RoundedBitmapDrawable;
+import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory;
 import android.text.TextUtils;
 import android.util.Log;
 import android.util.LruCache;
diff --git a/src/com/android/contacts/ContactSaveService.java b/src/com/android/contacts/ContactSaveService.java
index 4e2d178..d0be7d8 100755
--- a/src/com/android/contacts/ContactSaveService.java
+++ b/src/com/android/contacts/ContactSaveService.java
@@ -47,7 +47,7 @@
 import android.provider.ContactsContract.Profile;
 import android.provider.ContactsContract.RawContacts;
 import android.provider.ContactsContract.RawContactsEntity;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.support.v4.os.ResultReceiver;
 import android.text.TextUtils;
 import android.util.Log;
diff --git a/src/com/android/contacts/ContactsUtils.java b/src/com/android/contacts/ContactsUtils.java
index 4fd9cc1..69a8243 100644
--- a/src/com/android/contacts/ContactsUtils.java
+++ b/src/com/android/contacts/ContactsUtils.java
@@ -23,7 +23,7 @@
 import android.os.Build;
 import android.provider.ContactsContract.CommonDataKinds.Im;
 import android.provider.ContactsContract.DisplayPhoto;
-import android.support.annotation.IntDef;
+import androidx.annotation.IntDef;
 import android.text.TextUtils;
 import android.util.Pair;
 
diff --git a/src/com/android/contacts/DynamicShortcuts.java b/src/com/android/contacts/DynamicShortcuts.java
index ac950d9..8130776 100644
--- a/src/com/android/contacts/DynamicShortcuts.java
+++ b/src/com/android/contacts/DynamicShortcuts.java
@@ -45,9 +45,9 @@
 import android.os.PersistableBundle;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.Contacts;
-import android.support.annotation.VisibleForTesting;
-import android.support.v4.content.LocalBroadcastManager;
-import android.support.v4.os.BuildCompat;
+import androidx.annotation.VisibleForTesting;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
+import androidx.core.os.BuildCompat;
 import android.util.Log;
 
 import com.android.contacts.activities.RequestPermissionsActivity;
diff --git a/src/com/android/contacts/ShortcutIntentBuilder.java b/src/com/android/contacts/ShortcutIntentBuilder.java
index 5f480c6..5ea6b7e 100644
--- a/src/com/android/contacts/ShortcutIntentBuilder.java
+++ b/src/com/android/contacts/ShortcutIntentBuilder.java
@@ -40,10 +40,10 @@
 import android.provider.ContactsContract.CommonDataKinds.Photo;
 import android.provider.ContactsContract.Contacts;
 import android.provider.ContactsContract.Data;
-import android.support.v4.graphics.drawable.IconCompat;
-import android.support.v4.graphics.drawable.RoundedBitmapDrawable;
-import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory;
-import android.support.v4.os.BuildCompat;
+import androidx.core.graphics.drawable.IconCompat;
+import androidx.core.graphics.drawable.RoundedBitmapDrawable;
+import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory;
+import androidx.core.os.BuildCompat;
 import android.telecom.PhoneAccount;
 import android.text.TextPaint;
 import android.text.TextUtils;
diff --git a/src/com/android/contacts/SimImportFragment.java b/src/com/android/contacts/SimImportFragment.java
index 9393e1a..0a3c7f9 100644
--- a/src/com/android/contacts/SimImportFragment.java
+++ b/src/com/android/contacts/SimImportFragment.java
@@ -23,14 +23,14 @@
 import android.content.IntentFilter;
 import android.content.Loader;
 import android.os.Bundle;
-import android.support.annotation.NonNull;
-import android.support.annotation.Nullable;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
 import android.support.design.widget.Snackbar;
-import android.support.v4.content.LocalBroadcastManager;
-import android.support.v4.util.ArrayMap;
-import android.support.v4.view.ViewCompat;
-import android.support.v4.widget.ContentLoadingProgressBar;
-import android.support.v7.widget.Toolbar;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
+import androidx.collection.ArrayMap;
+import androidx.core.view.ViewCompat;
+import androidx.core.widget.ContentLoadingProgressBar;
+import androidx.appcompat.widget.Toolbar;
 import android.util.SparseBooleanArray;
 import android.view.LayoutInflater;
 import android.view.View;
diff --git a/src/com/android/contacts/SimImportService.java b/src/com/android/contacts/SimImportService.java
index 1e41af0..4c74731 100644
--- a/src/com/android/contacts/SimImportService.java
+++ b/src/com/android/contacts/SimImportService.java
@@ -25,9 +25,9 @@
 import android.os.AsyncTask;
 import android.os.IBinder;
 import android.os.RemoteException;
-import android.support.annotation.Nullable;
-import android.support.v4.app.NotificationCompat;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.annotation.Nullable;
+import androidx.core.app.NotificationCompat;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.util.TimingLogger;
 
 import com.android.contacts.activities.PeopleActivity;
diff --git a/src/com/android/contacts/activities/ActionBarAdapter.java b/src/com/android/contacts/activities/ActionBarAdapter.java
index 27bcc7a..e6f29a4 100644
--- a/src/com/android/contacts/activities/ActionBarAdapter.java
+++ b/src/com/android/contacts/activities/ActionBarAdapter.java
@@ -22,9 +22,9 @@
 import android.content.Context;
 import android.content.res.ColorStateList;
 import android.os.Bundle;
-import android.support.v4.content.ContextCompat;
-import android.support.v7.app.ActionBar;
-import android.support.v7.widget.Toolbar;
+import androidx.core.content.ContextCompat;
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.widget.Toolbar;
 import android.text.Editable;
 import android.text.TextUtils;
 import android.text.TextWatcher;
diff --git a/src/com/android/contacts/activities/AppCompatTransactionSafeActivity.java b/src/com/android/contacts/activities/AppCompatTransactionSafeActivity.java
index c638e26..f324193 100644
--- a/src/com/android/contacts/activities/AppCompatTransactionSafeActivity.java
+++ b/src/com/android/contacts/activities/AppCompatTransactionSafeActivity.java
@@ -17,7 +17,7 @@
 package com.android.contacts.activities;
 
 import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
+import androidx.appcompat.app.AppCompatActivity;
 
 /**
  * A common superclass that keeps track of whether an {@link AppCompatActivity} has saved its state
diff --git a/src/com/android/contacts/activities/ContactEditorActivity.java b/src/com/android/contacts/activities/ContactEditorActivity.java
index ec49d48..74a0df6 100644
--- a/src/com/android/contacts/activities/ContactEditorActivity.java
+++ b/src/com/android/contacts/activities/ContactEditorActivity.java
@@ -24,7 +24,7 @@
 import android.net.Uri;
 import android.os.Bundle;
 import android.provider.ContactsContract.QuickContact;
-import android.support.v7.widget.Toolbar;
+import androidx.appcompat.widget.Toolbar;
 import android.util.Log;
 import android.view.View;
 import android.view.inputmethod.InputMethodManager;
@@ -355,23 +355,15 @@
         // Set activity title for Talkback
         setTitle(mActionBarTitleResId);
 
-        if (savedState == null) {
-            // Create the editor and photo selection fragments
-            mFragment = new ContactEditorFragment();
-            getFragmentManager().beginTransaction()
-                    .add(R.id.fragment_container, getEditorFragment(), TAG_EDITOR_FRAGMENT)
-                    .commit();
-        } else {
+        mFragment =
+            (ContactEditor) getFragmentManager().findFragmentById(R.id.contact_editor_fragment);
+
+        if (savedState != null) {
             // Restore state
             mPhotoMode = savedState.getInt(STATE_PHOTO_MODE);
             mActionBarTitleResId = savedState.getInt(STATE_ACTION_BAR_TITLE);
             mPhotoUri = Uri.parse(savedState.getString(STATE_PHOTO_URI));
 
-            // Show/hide the editor and photo selection fragments (w/o animations)
-            mFragment = (ContactEditorFragment) getFragmentManager()
-                    .findFragmentByTag(TAG_EDITOR_FRAGMENT);
-            final FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
-            fragmentTransaction.show(getEditorFragment()).commit();
             mToolbar.setTitle(mActionBarTitleResId);
         }
 
@@ -388,16 +380,6 @@
     }
 
     @Override
-    protected void onPause() {
-        super.onPause();
-        final InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
-        final View currentFocus = getCurrentFocus();
-        if (imm != null && currentFocus != null) {
-            imm.hideSoftInputFromWindow(currentFocus.getWindowToken(), 0);
-        }
-    }
-
-    @Override
     protected void onNewIntent(Intent intent) {
         super.onNewIntent(intent);
 
diff --git a/src/com/android/contacts/activities/ContactSelectionActivity.java b/src/com/android/contacts/activities/ContactSelectionActivity.java
index eaa89a1..57669fa 100644
--- a/src/com/android/contacts/activities/ContactSelectionActivity.java
+++ b/src/com/android/contacts/activities/ContactSelectionActivity.java
@@ -24,8 +24,8 @@
 import android.net.Uri;
 import android.os.Bundle;
 import android.provider.ContactsContract.Contacts;
-import android.support.v4.content.ContextCompat;
-import android.support.v7.widget.Toolbar;
+import androidx.core.content.ContextCompat;
+import androidx.appcompat.widget.Toolbar;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.Menu;
diff --git a/src/com/android/contacts/activities/LicenseActivity.java b/src/com/android/contacts/activities/LicenseActivity.java
index 4ccaa93..e279a91 100644
--- a/src/com/android/contacts/activities/LicenseActivity.java
+++ b/src/com/android/contacts/activities/LicenseActivity.java
@@ -16,8 +16,8 @@
 package com.android.contacts.activities;
 
 import android.os.Bundle;
-import android.support.v7.app.ActionBar;
-import android.support.v7.app.AppCompatActivity;
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.app.AppCompatActivity;
 import android.view.MenuItem;
 import android.webkit.WebView;
 
diff --git a/src/com/android/contacts/activities/PeopleActivity.java b/src/com/android/contacts/activities/PeopleActivity.java
index 5a38043..05df4cf 100644
--- a/src/com/android/contacts/activities/PeopleActivity.java
+++ b/src/com/android/contacts/activities/PeopleActivity.java
@@ -35,17 +35,17 @@
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.Intents;
 import android.provider.ContactsContract.ProviderStatus;
-import android.support.annotation.LayoutRes;
-import android.support.design.widget.CoordinatorLayout;
+import androidx.annotation.LayoutRes;
+import androidx.coordinatorlayout.widget.CoordinatorLayout;
 import android.support.design.widget.Snackbar;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.content.LocalBroadcastManager;
-import android.support.v4.view.GravityCompat;
-import android.support.v4.widget.DrawerLayout;
-import android.support.v4.widget.SwipeRefreshLayout;
-import android.support.v7.app.ActionBarDrawerToggle;
-import android.support.v7.app.AppCompatActivity;
-import android.support.v7.widget.Toolbar;
+import androidx.core.content.ContextCompat;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
+import androidx.core.view.GravityCompat;
+import androidx.drawerlayout.widget.DrawerLayout;
+import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
+import androidx.appcompat.app.ActionBarDrawerToggle;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.appcompat.widget.Toolbar;
 import android.util.Log;
 import android.view.KeyCharacterMap;
 import android.view.KeyEvent;
diff --git a/src/com/android/contacts/activities/RequestPermissionsActivity.java b/src/com/android/contacts/activities/RequestPermissionsActivity.java
index bcfa128..e086cea 100644
--- a/src/com/android/contacts/activities/RequestPermissionsActivity.java
+++ b/src/com/android/contacts/activities/RequestPermissionsActivity.java
@@ -21,7 +21,7 @@
 import android.content.Context;
 import android.content.Intent;
 import android.content.pm.PackageManager;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.widget.Toast;
 
 import com.android.contacts.R;
diff --git a/src/com/android/contacts/activities/RequestPermissionsActivityBase.java b/src/com/android/contacts/activities/RequestPermissionsActivityBase.java
index 1c11905..9c3d8e1 100644
--- a/src/com/android/contacts/activities/RequestPermissionsActivityBase.java
+++ b/src/com/android/contacts/activities/RequestPermissionsActivityBase.java
@@ -22,7 +22,7 @@
 import android.content.pm.PackageManager;
 import android.os.Bundle;
 import android.os.Trace;
-import android.support.v4.app.ActivityCompat;
+import androidx.core.app.ActivityCompat;
 
 import com.android.contacts.model.AccountTypeManager;
 import com.android.contacts.util.PermissionsUtil;
diff --git a/src/com/android/contacts/compat/CompatUtils.java b/src/com/android/contacts/compat/CompatUtils.java
index 10b627b..086a64a 100644
--- a/src/com/android/contacts/compat/CompatUtils.java
+++ b/src/com/android/contacts/compat/CompatUtils.java
@@ -17,7 +17,7 @@
 
 import android.os.Build;
 import android.os.Build.VERSION;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.text.TextUtils;
 import android.util.Log;
 
diff --git a/src/com/android/contacts/compat/EdgeEffectCompat.java b/src/com/android/contacts/compat/EdgeEffectCompat.java
index b93ff90..84a5c26 100644
--- a/src/com/android/contacts/compat/EdgeEffectCompat.java
+++ b/src/com/android/contacts/compat/EdgeEffectCompat.java
@@ -20,7 +20,7 @@
 
 /**
  * Compatibility class for {@link android.widget.EdgeEffect}
- * The android.support.v4.widget.EdgeEffectCompat doesn't support customized color, so we write
+ * The androidx.core.widget.EdgeEffectCompat doesn't support customized color, so we write
  * our own and keep using EdgeEffect to customize color.
  */
 public class EdgeEffectCompat {
diff --git a/src/com/android/contacts/compat/PhoneAccountCompat.java b/src/com/android/contacts/compat/PhoneAccountCompat.java
index 5c396f5..2e2f8a9 100644
--- a/src/com/android/contacts/compat/PhoneAccountCompat.java
+++ b/src/com/android/contacts/compat/PhoneAccountCompat.java
@@ -18,7 +18,7 @@
 import android.content.Context;
 import android.graphics.drawable.Drawable;
 import android.graphics.drawable.Icon;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.telecom.PhoneAccount;
 import android.util.Log;
 
diff --git a/src/com/android/contacts/compat/TelephonyManagerCompat.java b/src/com/android/contacts/compat/TelephonyManagerCompat.java
index 07523b1..a8b0226 100644
--- a/src/com/android/contacts/compat/TelephonyManagerCompat.java
+++ b/src/com/android/contacts/compat/TelephonyManagerCompat.java
@@ -17,7 +17,7 @@
 package com.android.contacts.compat;
 
 import android.net.Uri;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.telecom.PhoneAccountHandle;
 import android.telephony.TelephonyManager;
 
diff --git a/src/com/android/contacts/compat/telecom/TelecomManagerCompat.java b/src/com/android/contacts/compat/telecom/TelecomManagerCompat.java
index 881c1a4..aa990ad 100644
--- a/src/com/android/contacts/compat/telecom/TelecomManagerCompat.java
+++ b/src/com/android/contacts/compat/telecom/TelecomManagerCompat.java
@@ -17,7 +17,7 @@
 
 import android.app.Activity;
 import android.content.Intent;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.telecom.TelecomManager;
 
 import com.android.contacts.compat.CompatUtils;
diff --git a/src/com/android/contacts/database/SimContactDao.java b/src/com/android/contacts/database/SimContactDao.java
index d6ed88d..430f423 100644
--- a/src/com/android/contacts/database/SimContactDao.java
+++ b/src/com/android/contacts/database/SimContactDao.java
@@ -19,7 +19,7 @@
 import android.content.Context;
 import android.content.OperationApplicationException;
 import android.os.RemoteException;
-import android.support.annotation.VisibleForTesting;
+import androidx.annotation.VisibleForTesting;
 
 import com.android.contacts.model.SimCard;
 import com.android.contacts.model.SimContact;
diff --git a/src/com/android/contacts/database/SimContactDaoImpl.java b/src/com/android/contacts/database/SimContactDaoImpl.java
index be6b323..5ba6bd5 100644
--- a/src/com/android/contacts/database/SimContactDaoImpl.java
+++ b/src/com/android/contacts/database/SimContactDaoImpl.java
@@ -32,8 +32,8 @@
 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
 import android.provider.ContactsContract.Data;
 import android.provider.ContactsContract.RawContacts;
-import android.support.annotation.VisibleForTesting;
-import android.support.v4.util.ArrayMap;
+import androidx.annotation.VisibleForTesting;
+import androidx.collection.ArrayMap;
 import android.telephony.SubscriptionInfo;
 import android.telephony.SubscriptionManager;
 import android.telephony.TelephonyManager;
diff --git a/src/com/android/contacts/drawer/DrawerAdapter.java b/src/com/android/contacts/drawer/DrawerAdapter.java
index 9ff2139..0c8423a 100644
--- a/src/com/android/contacts/drawer/DrawerAdapter.java
+++ b/src/com/android/contacts/drawer/DrawerAdapter.java
@@ -18,7 +18,7 @@
 
 import android.app.Activity;
 import android.graphics.PorterDuff;
-import android.support.annotation.LayoutRes;
+import androidx.annotation.LayoutRes;
 import android.view.LayoutInflater;
 import android.view.View;
 import android.view.ViewGroup;
diff --git a/src/com/android/contacts/editor/AccountHeaderPresenter.java b/src/com/android/contacts/editor/AccountHeaderPresenter.java
index 4e4f35a..190d401 100644
--- a/src/com/android/contacts/editor/AccountHeaderPresenter.java
+++ b/src/com/android/contacts/editor/AccountHeaderPresenter.java
@@ -17,8 +17,8 @@
 
 import android.content.Context;
 import android.os.Bundle;
-import android.support.annotation.NonNull;
-import android.support.annotation.StringRes;
+import androidx.annotation.NonNull;
+import androidx.annotation.StringRes;
 import android.view.View;
 import android.widget.AdapterView;
 import android.widget.ImageView;
diff --git a/src/com/android/contacts/editor/CancelEditDialogFragment.java b/src/com/android/contacts/editor/CancelEditDialogFragment.java
index 48cedff..7f39857 100644
--- a/src/com/android/contacts/editor/CancelEditDialogFragment.java
+++ b/src/com/android/contacts/editor/CancelEditDialogFragment.java
@@ -20,7 +20,7 @@
 import android.app.DialogFragment;
 import android.content.DialogInterface;
 import android.os.Bundle;
-import android.support.v7.app.AlertDialog;
+import androidx.appcompat.app.AlertDialog;
 
 import com.android.contacts.R;
 
diff --git a/src/com/android/contacts/editor/ContactEditorFragment.java b/src/com/android/contacts/editor/ContactEditorFragment.java
index 2abd509..a8e3cd8 100755
--- a/src/com/android/contacts/editor/ContactEditorFragment.java
+++ b/src/com/android/contacts/editor/ContactEditorFragment.java
@@ -31,6 +31,7 @@
 import android.graphics.Bitmap;
 import android.net.Uri;
 import android.os.Bundle;
+import android.os.Handler;
 import android.os.SystemClock;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.CommonDataKinds.Email;
@@ -41,7 +42,7 @@
 import android.provider.ContactsContract.CommonDataKinds.StructuredPostal;
 import android.provider.ContactsContract.Intents;
 import android.provider.ContactsContract.RawContacts;
-import android.support.v7.widget.Toolbar;
+import androidx.appcompat.widget.Toolbar;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.LayoutInflater;
@@ -50,6 +51,7 @@
 import android.view.MenuItem;
 import android.view.View;
 import android.view.ViewGroup;
+import android.view.inputmethod.InputMethodManager;
 import android.widget.AdapterView;
 import android.widget.BaseAdapter;
 import android.widget.EditText;
@@ -103,6 +105,7 @@
 import java.util.List;
 import java.util.Locale;
 import java.util.Set;
+import javax.annotation.Nullable;
 
 /**
  * Contact editor with only the most important fields displayed initially.
@@ -121,6 +124,11 @@
     private static final int LOADER_GROUPS = 2;
     private static final int LOADER_ACCOUNTS = 3;
 
+    // How long to delay before attempting to restore focus and keyboard
+    // visibility after view state has been restored (e.g. after rotation)
+    // See b/77246197
+    private static final long RESTORE_FOCUS_DELAY_MILLIS = 100L;
+
     private static final String KEY_PHOTO_RAW_CONTACT_ID = "photo_raw_contact_id";
     private static final String KEY_UPDATED_PHOTOS = "updated_photos";
 
@@ -164,6 +172,10 @@
     private static final String KEY_READ_ONLY_DISPLAY_NAME_ID = "readOnlyDisplayNameId";
     private static final String KEY_COPY_READ_ONLY_DISPLAY_NAME = "copyReadOnlyDisplayName";
 
+    private static final String KEY_FOCUSED_VIEW_ID = "focusedViewId";
+
+    private static final String KEY_RESTORE_SOFT_INPUT = "restoreSoftInput";
+
     protected static final int REQUEST_CODE_JOIN = 0;
     protected static final int REQUEST_CODE_ACCOUNTS_CHANGED = 1;
 
@@ -445,6 +457,8 @@
     private long mPhotoRawContactId;
     private Bundle mUpdatedPhotos = new Bundle();
 
+    private InputMethodManager inputMethodManager;
+
     @Override
     public Context getContext() {
         return getActivity();
@@ -469,6 +483,9 @@
 
         super.onCreate(savedState);
 
+        inputMethodManager =
+            (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
+
         if (savedState == null) {
             mViewIdGenerator = new ViewIdGenerator();
 
@@ -576,6 +593,15 @@
         }
     }
 
+    @Override
+    public void onViewStateRestored(@Nullable Bundle savedInstanceState) {
+        super.onViewStateRestored(savedInstanceState);
+        if (savedInstanceState == null) {
+            return;
+        }
+        maybeRestoreFocus(savedInstanceState);
+    }
+
     /**
      * Checks if the requested action is valid.
      *
@@ -629,6 +655,14 @@
 
         outState.putLong(KEY_PHOTO_RAW_CONTACT_ID, mPhotoRawContactId);
         outState.putParcelable(KEY_UPDATED_PHOTOS, mUpdatedPhotos);
+
+        // For b/77246197
+        View focusedView = getView() == null ? null : getView().findFocus();
+        if (focusedView != null) {
+            outState.putInt(KEY_FOCUSED_VIEW_ID, focusedView.getId());
+            outState.putBoolean(KEY_RESTORE_SOFT_INPUT, inputMethodManager.isActive(focusedView));
+        }
+
         super.onSaveInstanceState(outState);
     }
 
@@ -1761,4 +1795,46 @@
     private RawContactEditorView getContent() {
         return (RawContactEditorView) mContent;
     }
+
+    // TODO(b/77246197): figure out a better way to address focus being lost on rotation.
+    private void maybeRestoreFocus(Bundle savedInstanceState) {
+        int focusedViewId = savedInstanceState.getInt(KEY_FOCUSED_VIEW_ID, View.NO_ID);
+        if (focusedViewId == View.NO_ID) {
+            return;
+        }
+        boolean shouldRestoreSoftInput = savedInstanceState.getBoolean(KEY_RESTORE_SOFT_INPUT);
+        new Handler()
+            .postDelayed(
+                    () -> {
+                        if (!isResumed()) {
+                            return;
+                        }
+                        View root = getView();
+                        if (root == null) {
+                            return;
+                        }
+                        View focusedView = root.findFocus();
+                        if (focusedView != null) {
+                            return;
+                        }
+                        focusedView = getView().findViewById(focusedViewId);
+                        if (focusedView == null) {
+                            return;
+                        }
+                        boolean didFocus = focusedView.requestFocus();
+                        if (!didFocus) {
+                            Log.i(TAG, "requestFocus failed");
+                            return;
+                        }
+                        if (shouldRestoreSoftInput) {
+                            boolean didShow = inputMethodManager
+                                .showSoftInput(focusedView, InputMethodManager.SHOW_IMPLICIT);
+                            if (Log.isLoggable(TAG, Log.DEBUG)) {
+                                Log.d(TAG, "showSoftInput -> " + didShow);
+                            }
+                        }
+                    },
+            RESTORE_FOCUS_DELAY_MILLIS);
+    }
+
 }
diff --git a/src/com/android/contacts/editor/EditorUiUtils.java b/src/com/android/contacts/editor/EditorUiUtils.java
index 9aa5c8e..35f107e 100644
--- a/src/com/android/contacts/editor/EditorUiUtils.java
+++ b/src/com/android/contacts/editor/EditorUiUtils.java
@@ -40,7 +40,7 @@
 import android.provider.ContactsContract.CommonDataKinds.SipAddress;
 import android.provider.ContactsContract.CommonDataKinds.StructuredPostal;
 import android.provider.ContactsContract.CommonDataKinds.Website;
-import android.support.v4.content.res.ResourcesCompat;
+import androidx.core.content.res.ResourcesCompat;
 import android.text.TextUtils;
 import android.widget.ImageView;
 
diff --git a/src/com/android/contacts/editor/PhotoSourceDialogFragment.java b/src/com/android/contacts/editor/PhotoSourceDialogFragment.java
index 31d41b1..4ca4d30 100644
--- a/src/com/android/contacts/editor/PhotoSourceDialogFragment.java
+++ b/src/com/android/contacts/editor/PhotoSourceDialogFragment.java
@@ -22,7 +22,7 @@
 import android.content.DialogInterface;
 import android.content.DialogInterface.OnClickListener;
 import android.os.Bundle;
-import android.support.v7.app.AlertDialog;
+import androidx.appcompat.app.AlertDialog;
 import android.view.View;
 import android.widget.TextView;
 
diff --git a/src/com/android/contacts/editor/SuggestionEditConfirmationDialogFragment.java b/src/com/android/contacts/editor/SuggestionEditConfirmationDialogFragment.java
index 487a5ee..df22773 100644
--- a/src/com/android/contacts/editor/SuggestionEditConfirmationDialogFragment.java
+++ b/src/com/android/contacts/editor/SuggestionEditConfirmationDialogFragment.java
@@ -21,7 +21,7 @@
 import android.content.DialogInterface;
 import android.net.Uri;
 import android.os.Bundle;
-import android.support.v7.app.AlertDialog;
+import androidx.appcompat.app.AlertDialog;
 
 import com.android.contacts.R;
 
diff --git a/src/com/android/contacts/group/GroupMembersFragment.java b/src/com/android/contacts/group/GroupMembersFragment.java
index 9ed69ff..733894d 100644
--- a/src/com/android/contacts/group/GroupMembersFragment.java
+++ b/src/com/android/contacts/group/GroupMembersFragment.java
@@ -32,7 +32,7 @@
 import android.os.Message;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.Contacts;
-import android.support.v4.content.ContextCompat;
+import androidx.core.content.ContextCompat;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.Gravity;
diff --git a/src/com/android/contacts/group/GroupNameEditDialogFragment.java b/src/com/android/contacts/group/GroupNameEditDialogFragment.java
index e4fb89b..0662810 100644
--- a/src/com/android/contacts/group/GroupNameEditDialogFragment.java
+++ b/src/com/android/contacts/group/GroupNameEditDialogFragment.java
@@ -28,7 +28,7 @@
 import android.os.Bundle;
 import android.provider.ContactsContract.Groups;
 import android.support.design.widget.TextInputLayout;
-import android.support.v7.app.AlertDialog;
+import androidx.appcompat.app.AlertDialog;
 import android.text.Editable;
 import android.text.TextUtils;
 import android.text.TextWatcher;
diff --git a/src/com/android/contacts/interactions/ImportDialogFragment.java b/src/com/android/contacts/interactions/ImportDialogFragment.java
index 5d27086..41b1c71 100644
--- a/src/com/android/contacts/interactions/ImportDialogFragment.java
+++ b/src/com/android/contacts/interactions/ImportDialogFragment.java
@@ -26,8 +26,8 @@
 import android.content.Intent;
 import android.content.res.Resources;
 import android.os.Bundle;
-import android.support.v4.text.BidiFormatter;
-import android.support.v4.text.TextDirectionHeuristicsCompat;
+import androidx.core.text.BidiFormatter;
+import androidx.core.text.TextDirectionHeuristicsCompat;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.LayoutInflater;
diff --git a/src/com/android/contacts/list/ContactListItemView.java b/src/com/android/contacts/list/ContactListItemView.java
index 385aa7c..135dbce 100644
--- a/src/com/android/contacts/list/ContactListItemView.java
+++ b/src/com/android/contacts/list/ContactListItemView.java
@@ -30,11 +30,11 @@
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.Contacts;
 import android.provider.ContactsContract.SearchSnippets;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.content.res.ResourcesCompat;
-import android.support.v4.graphics.drawable.DrawableCompat;
-import android.support.v7.widget.AppCompatCheckBox;
-import android.support.v7.widget.AppCompatImageButton;
+import androidx.core.content.ContextCompat;
+import androidx.core.content.res.ResourcesCompat;
+import androidx.core.graphics.drawable.DrawableCompat;
+import androidx.appcompat.widget.AppCompatCheckBox;
+import androidx.appcompat.widget.AppCompatImageButton;
 import android.text.Spannable;
 import android.text.SpannableString;
 import android.text.TextUtils;
diff --git a/src/com/android/contacts/list/ContactsUnavailableFragment.java b/src/com/android/contacts/list/ContactsUnavailableFragment.java
index c13e475..048ce62 100644
--- a/src/com/android/contacts/list/ContactsUnavailableFragment.java
+++ b/src/com/android/contacts/list/ContactsUnavailableFragment.java
@@ -21,7 +21,7 @@
 import android.content.res.Configuration;
 import android.graphics.PorterDuff;
 import android.os.Bundle;
-import android.support.v4.content.ContextCompat;
+import androidx.core.content.ContextCompat;
 import android.view.Gravity;
 import android.view.LayoutInflater;
 import android.view.View;
diff --git a/src/com/android/contacts/list/DefaultContactBrowseListFragment.java b/src/com/android/contacts/list/DefaultContactBrowseListFragment.java
index f07c4a5..9851d2b 100644
--- a/src/com/android/contacts/list/DefaultContactBrowseListFragment.java
+++ b/src/com/android/contacts/list/DefaultContactBrowseListFragment.java
@@ -36,8 +36,8 @@
 import android.os.Handler;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.Directory;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.widget.SwipeRefreshLayout;
+import androidx.core.content.ContextCompat;
+import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
 import android.text.TextUtils;
 import android.util.Log;
 import android.view.Gravity;
diff --git a/src/com/android/contacts/list/MultiSelectContactsListFragment.java b/src/com/android/contacts/list/MultiSelectContactsListFragment.java
index 61e92b8..5e7f9e8 100644
--- a/src/com/android/contacts/list/MultiSelectContactsListFragment.java
+++ b/src/com/android/contacts/list/MultiSelectContactsListFragment.java
@@ -21,7 +21,7 @@
 import android.graphics.drawable.Drawable;
 import android.os.Bundle;
 import android.provider.ContactsContract;
-import android.support.v4.view.ViewCompat;
+import androidx.core.view.ViewCompat;
 import android.util.Log;
 import android.view.LayoutInflater;
 import android.view.View;
diff --git a/src/com/android/contacts/model/AccountTypeManager.java b/src/com/android/contacts/model/AccountTypeManager.java
index 9938695..f67f074 100644
--- a/src/com/android/contacts/model/AccountTypeManager.java
+++ b/src/com/android/contacts/model/AccountTypeManager.java
@@ -32,8 +32,8 @@
 import android.os.Handler;
 import android.os.Looper;
 import android.provider.ContactsContract;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.core.content.ContextCompat;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.text.TextUtils;
 import android.util.Log;
 
diff --git a/src/com/android/contacts/model/Cp2DeviceLocalAccountLocator.java b/src/com/android/contacts/model/Cp2DeviceLocalAccountLocator.java
index 307577d..32912dc 100644
--- a/src/com/android/contacts/model/Cp2DeviceLocalAccountLocator.java
+++ b/src/com/android/contacts/model/Cp2DeviceLocalAccountLocator.java
@@ -20,7 +20,7 @@
 import android.database.Cursor;
 import android.net.Uri;
 import android.provider.ContactsContract;
-import android.support.annotation.VisibleForTesting;
+import androidx.annotation.VisibleForTesting;
 
 import com.android.contacts.model.account.AccountWithDataSet;
 import com.android.contacts.util.DeviceLocalAccountTypeFactory;
diff --git a/src/com/android/contacts/model/SimCard.java b/src/com/android/contacts/model/SimCard.java
index 2105ac7..ea74379 100644
--- a/src/com/android/contacts/model/SimCard.java
+++ b/src/com/android/contacts/model/SimCard.java
@@ -16,7 +16,7 @@
 package com.android.contacts.model;
 
 import android.os.Build;
-import android.support.annotation.RequiresApi;
+import androidx.annotation.RequiresApi;
 import android.telephony.PhoneNumberUtils;
 import android.telephony.SubscriptionInfo;
 import android.telephony.TelephonyManager;
diff --git a/src/com/android/contacts/model/account/AccountDisplayInfo.java b/src/com/android/contacts/model/account/AccountDisplayInfo.java
index fe0c570..7d7393d 100644
--- a/src/com/android/contacts/model/account/AccountDisplayInfo.java
+++ b/src/com/android/contacts/model/account/AccountDisplayInfo.java
@@ -17,7 +17,7 @@
 
 import android.content.Context;
 import android.graphics.drawable.Drawable;
-import android.support.annotation.StringRes;
+import androidx.annotation.StringRes;
 import android.text.TextUtils;
 
 /**
diff --git a/src/com/android/contacts/model/account/FallbackAccountType.java b/src/com/android/contacts/model/account/FallbackAccountType.java
index 288a917..d7ea37a 100644
--- a/src/com/android/contacts/model/account/FallbackAccountType.java
+++ b/src/com/android/contacts/model/account/FallbackAccountType.java
@@ -20,8 +20,8 @@
 import android.content.Context;
 import android.graphics.PorterDuff;
 import android.graphics.drawable.Drawable;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.content.res.ResourcesCompat;
+import androidx.core.content.ContextCompat;
+import androidx.core.content.res.ResourcesCompat;
 
 import com.android.contacts.R;
 import com.android.contacts.model.dataitem.DataKind;
diff --git a/src/com/android/contacts/preference/ContactsPreferenceActivity.java b/src/com/android/contacts/preference/ContactsPreferenceActivity.java
index 1c7469f..1658f3d 100644
--- a/src/com/android/contacts/preference/ContactsPreferenceActivity.java
+++ b/src/com/android/contacts/preference/ContactsPreferenceActivity.java
@@ -22,12 +22,12 @@
 import android.preference.PreferenceActivity;
 import android.provider.ContactsContract.DisplayNameSources;
 import android.provider.ContactsContract.ProviderStatus;
-import android.support.annotation.LayoutRes;
-import android.support.annotation.NonNull;
-import android.support.annotation.StringRes;
-import android.support.v7.app.ActionBar;
-import android.support.v7.app.AppCompatDelegate;
-import android.support.v7.widget.Toolbar;
+import androidx.annotation.LayoutRes;
+import androidx.annotation.NonNull;
+import androidx.annotation.StringRes;
+import androidx.appcompat.app.ActionBar;
+import androidx.appcompat.app.AppCompatDelegate;
+import androidx.appcompat.widget.Toolbar;
 import android.text.TextUtils;
 import android.view.MenuInflater;
 import android.view.MenuItem;
diff --git a/src/com/android/contacts/preference/ContactsPreferences.java b/src/com/android/contacts/preference/ContactsPreferences.java
index 87b13f7..85da891 100644
--- a/src/com/android/contacts/preference/ContactsPreferences.java
+++ b/src/com/android/contacts/preference/ContactsPreferences.java
@@ -27,8 +27,8 @@
 import android.preference.PreferenceManager;
 import android.provider.Settings;
 import android.provider.Settings.SettingNotFoundException;
-import android.support.annotation.NonNull;
-import android.support.annotation.VisibleForTesting;
+import androidx.annotation.NonNull;
+import androidx.annotation.VisibleForTesting;
 import android.text.TextUtils;
 
 import com.android.contacts.R;
diff --git a/src/com/android/contacts/preference/DisplayOptionsPreferenceFragment.java b/src/com/android/contacts/preference/DisplayOptionsPreferenceFragment.java
index 82e90b3..4a71585 100644
--- a/src/com/android/contacts/preference/DisplayOptionsPreferenceFragment.java
+++ b/src/com/android/contacts/preference/DisplayOptionsPreferenceFragment.java
@@ -36,7 +36,7 @@
 import android.provider.ContactsContract.DisplayNameSources;
 import android.provider.ContactsContract.Profile;
 import android.support.design.widget.Snackbar;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.telecom.TelecomManager;
 import android.telephony.TelephonyManager;
 import android.text.BidiFormatter;
diff --git a/src/com/android/contacts/quickcontact/ExpandingEntryCardView.java b/src/com/android/contacts/quickcontact/ExpandingEntryCardView.java
index b0f7800..d462a0e 100644
--- a/src/com/android/contacts/quickcontact/ExpandingEntryCardView.java
+++ b/src/com/android/contacts/quickcontact/ExpandingEntryCardView.java
@@ -27,7 +27,7 @@
 import android.graphics.Rect;
 import android.graphics.drawable.Drawable;
 import android.os.Bundle;
-import android.support.v7.widget.CardView;
+import androidx.cardview.widget.CardView;
 import android.text.Spannable;
 import android.text.TextUtils;
 import android.transition.ChangeBounds;
diff --git a/src/com/android/contacts/quickcontact/QuickContactActivity.java b/src/com/android/contacts/quickcontact/QuickContactActivity.java
index e985bbf..df08112 100644
--- a/src/com/android/contacts/quickcontact/QuickContactActivity.java
+++ b/src/com/android/contacts/quickcontact/QuickContactActivity.java
@@ -74,11 +74,11 @@
 import android.provider.ContactsContract.Intents;
 import android.provider.ContactsContract.QuickContact;
 import android.provider.ContactsContract.RawContacts;
-import android.support.v4.app.ActivityCompat;
-import android.support.v4.content.LocalBroadcastManager;
-import android.support.v4.content.res.ResourcesCompat;
-import android.support.v4.os.BuildCompat;
-import android.support.v7.graphics.Palette;
+import androidx.core.app.ActivityCompat;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
+import androidx.core.content.res.ResourcesCompat;
+import androidx.core.os.BuildCompat;
+import androidx.palette.graphics.Palette;
 import android.telecom.PhoneAccount;
 import android.telecom.TelecomManager;
 import android.text.BidiFormatter;
diff --git a/src/com/android/contacts/util/AccountFilterUtil.java b/src/com/android/contacts/util/AccountFilterUtil.java
index 54c16e2..65ee69e 100644
--- a/src/com/android/contacts/util/AccountFilterUtil.java
+++ b/src/com/android/contacts/util/AccountFilterUtil.java
@@ -28,7 +28,7 @@
 import android.graphics.drawable.Drawable;
 import android.provider.ContactsContract.Contacts;
 import android.provider.ContactsContract.Intents;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.text.TextUtils;
 import android.util.Log;
 import android.widget.Toast;
diff --git a/src/com/android/contacts/util/ContactDisplayUtils.java b/src/com/android/contacts/util/ContactDisplayUtils.java
index 67b8e07..b69a088 100644
--- a/src/com/android/contacts/util/ContactDisplayUtils.java
+++ b/src/com/android/contacts/util/ContactDisplayUtils.java
@@ -20,7 +20,7 @@
 
 import android.content.Context;
 import android.content.res.Resources;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.text.Spannable;
 import android.text.SpannableString;
 import android.text.TextUtils;
diff --git a/src/com/android/contacts/util/ContactPhotoUtils.java b/src/com/android/contacts/util/ContactPhotoUtils.java
index 943f5dd..76b7226 100644
--- a/src/com/android/contacts/util/ContactPhotoUtils.java
+++ b/src/com/android/contacts/util/ContactPhotoUtils.java
@@ -24,7 +24,7 @@
 import android.graphics.BitmapFactory;
 import android.net.Uri;
 import android.provider.MediaStore;
-import android.support.v4.content.FileProvider;
+import androidx.core.content.FileProvider;
 import android.util.Log;
 
 import com.android.contacts.R;
diff --git a/src/com/android/contacts/util/ContactsNotificationChannelsUtil.java b/src/com/android/contacts/util/ContactsNotificationChannelsUtil.java
index fec3bda..0d01156 100644
--- a/src/com/android/contacts/util/ContactsNotificationChannelsUtil.java
+++ b/src/com/android/contacts/util/ContactsNotificationChannelsUtil.java
@@ -21,7 +21,7 @@
 import android.app.NotificationManager;
 import android.content.Context;
 import android.os.Build;
-import android.support.v4.os.BuildCompat;
+import androidx.core.os.BuildCompat;
 
 import com.android.contacts.R;
 
diff --git a/src/com/android/contacts/util/DeviceLocalAccountTypeFactory.java b/src/com/android/contacts/util/DeviceLocalAccountTypeFactory.java
index 59ee7e5..d3a8c16 100644
--- a/src/com/android/contacts/util/DeviceLocalAccountTypeFactory.java
+++ b/src/com/android/contacts/util/DeviceLocalAccountTypeFactory.java
@@ -16,7 +16,7 @@
 package com.android.contacts.util;
 
 import android.content.Context;
-import android.support.annotation.IntDef;
+import androidx.annotation.IntDef;
 
 import com.android.contacts.model.account.AccountType;
 import com.android.contacts.model.account.DeviceLocalAccountType;
diff --git a/src/com/android/contacts/util/MaterialColorMapUtils.java b/src/com/android/contacts/util/MaterialColorMapUtils.java
index 39f69c2..c1616ce 100644
--- a/src/com/android/contacts/util/MaterialColorMapUtils.java
+++ b/src/com/android/contacts/util/MaterialColorMapUtils.java
@@ -22,7 +22,7 @@
 import android.os.Parcel;
 import android.os.Parcelable;
 import android.os.Trace;
-import android.support.v4.content.ContextCompat;
+import androidx.core.content.ContextCompat;
 
 import com.android.contacts.R;
 import com.android.contacts.activities.PeopleActivity;
diff --git a/src/com/android/contacts/util/PermissionsUtil.java b/src/com/android/contacts/util/PermissionsUtil.java
index c56b13e..11f98d9 100644
--- a/src/com/android/contacts/util/PermissionsUtil.java
+++ b/src/com/android/contacts/util/PermissionsUtil.java
@@ -24,8 +24,8 @@
 import android.content.IntentFilter;
 import android.content.pm.PackageManager;
 import android.os.Process;
-import android.support.v4.content.ContextCompat;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.core.content.ContextCompat;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 
 /**
  * Utility class to help with runtime permissions.
diff --git a/src/com/android/contacts/util/concurrent/ContactsExecutors.java b/src/com/android/contacts/util/concurrent/ContactsExecutors.java
index 58a6c1f..3223384 100644
--- a/src/com/android/contacts/util/concurrent/ContactsExecutors.java
+++ b/src/com/android/contacts/util/concurrent/ContactsExecutors.java
@@ -4,7 +4,7 @@
 import android.os.AsyncTask;
 import android.os.Handler;
 import android.os.Looper;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
 
 import com.google.common.util.concurrent.ForwardingFuture;
 import com.google.common.util.concurrent.Futures;
diff --git a/src/com/android/contacts/util/concurrent/ListenableFutureLoader.java b/src/com/android/contacts/util/concurrent/ListenableFutureLoader.java
index 67d5259..18280d6 100644
--- a/src/com/android/contacts/util/concurrent/ListenableFutureLoader.java
+++ b/src/com/android/contacts/util/concurrent/ListenableFutureLoader.java
@@ -20,7 +20,7 @@
 import android.content.Intent;
 import android.content.IntentFilter;
 import android.content.Loader;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.util.Log;
 
 import com.google.common.util.concurrent.FutureCallback;
diff --git a/src/com/android/contacts/vcard/NotificationImportExportListener.java b/src/com/android/contacts/vcard/NotificationImportExportListener.java
index beabe26..f8f4320 100644
--- a/src/com/android/contacts/vcard/NotificationImportExportListener.java
+++ b/src/com/android/contacts/vcard/NotificationImportExportListener.java
@@ -28,7 +28,7 @@
 import android.os.Message;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.RawContacts;
-import android.support.v4.app.NotificationCompat;
+import androidx.core.app.NotificationCompat;
 import android.widget.Toast;
 
 import com.android.contacts.R;
diff --git a/src/com/android/contacts/vcard/ShareVCardActivity.java b/src/com/android/contacts/vcard/ShareVCardActivity.java
index 787ddc6..5873b7f 100644
--- a/src/com/android/contacts/vcard/ShareVCardActivity.java
+++ b/src/com/android/contacts/vcard/ShareVCardActivity.java
@@ -18,7 +18,7 @@
 import android.content.ComponentName;
 import android.net.Uri;
 import android.os.IBinder;
-import android.support.v4.content.FileProvider;
+import androidx.core.content.FileProvider;
 import android.util.Log;
 
 import com.android.contacts.R;
diff --git a/src/com/android/contacts/widget/MultiShrinkScroller.java b/src/com/android/contacts/widget/MultiShrinkScroller.java
index 263617b..3a9ba3f 100644
--- a/src/com/android/contacts/widget/MultiShrinkScroller.java
+++ b/src/com/android/contacts/widget/MultiShrinkScroller.java
@@ -15,8 +15,8 @@
 import android.graphics.drawable.GradientDrawable;
 import android.hardware.display.DisplayManager;
 import android.os.Trace;
-import android.support.v4.view.ViewCompat;
-import android.support.v4.view.animation.PathInterpolatorCompat;
+import androidx.core.view.ViewCompat;
+import androidx.core.view.animation.PathInterpolatorCompat;
 import android.util.AttributeSet;
 import android.util.TypedValue;
 import android.view.Display;
@@ -219,7 +219,7 @@
     };
 
     /**
-     * Interpolator from android.support.v4.view.ViewPager. Snappier and more elastic feeling
+     * Interpolator from androidx.viewpager.widget.ViewPager. Snappier and more elastic feeling
      * than the default interpolator.
      */
     private static final Interpolator sInterpolator = new Interpolator() {
diff --git a/tests/src/com/android/contacts/activities/SimImportActivityTest.java b/tests/src/com/android/contacts/activities/SimImportActivityTest.java
index ae8fb78..e738dd1 100644
--- a/tests/src/com/android/contacts/activities/SimImportActivityTest.java
+++ b/tests/src/com/android/contacts/activities/SimImportActivityTest.java
@@ -46,7 +46,7 @@
 import android.support.test.uiautomator.By;
 import android.support.test.uiautomator.UiDevice;
 import android.support.test.uiautomator.Until;
-import android.support.v4.content.LocalBroadcastManager;
+import androidx.localbroadcastmanager.content.LocalBroadcastManager;
 import android.telephony.TelephonyManager;
 import android.test.mock.MockContentResolver;
 
diff --git a/tests/src/com/android/contacts/database/SimContactDaoTests.java b/tests/src/com/android/contacts/database/SimContactDaoTests.java
index 18a3f09..e9e55d4 100644
--- a/tests/src/com/android/contacts/database/SimContactDaoTests.java
+++ b/tests/src/com/android/contacts/database/SimContactDaoTests.java
@@ -45,7 +45,7 @@
 import android.provider.ContactsContract.CommonDataKinds.Phone;
 import android.provider.ContactsContract.CommonDataKinds.StructuredName;
 import android.provider.ContactsContract.Data;
-import android.support.annotation.RequiresApi;
+import androidx.annotation.RequiresApi;
 import android.support.test.InstrumentationRegistry;
 import android.support.test.filters.LargeTest;
 import android.support.test.filters.SdkSuppress;
diff --git a/tests/src/com/android/contacts/model/Cp2DeviceLocalAccountLocatorTests.java b/tests/src/com/android/contacts/model/Cp2DeviceLocalAccountLocatorTests.java
index 12365a2..7dbf933 100644
--- a/tests/src/com/android/contacts/model/Cp2DeviceLocalAccountLocatorTests.java
+++ b/tests/src/com/android/contacts/model/Cp2DeviceLocalAccountLocatorTests.java
@@ -23,7 +23,7 @@
 import android.os.CancellationSignal;
 import android.provider.ContactsContract;
 import android.provider.ContactsContract.RawContacts;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 import android.test.AndroidTestCase;
 import android.test.mock.MockContentResolver;
 import android.test.suitebuilder.annotation.SmallTest;
diff --git a/tests/src/com/android/contacts/test/mocks/ForwardingContentProvider.java b/tests/src/com/android/contacts/test/mocks/ForwardingContentProvider.java
index b6ca983..993d0b7 100644
--- a/tests/src/com/android/contacts/test/mocks/ForwardingContentProvider.java
+++ b/tests/src/com/android/contacts/test/mocks/ForwardingContentProvider.java
@@ -27,7 +27,7 @@
 import android.os.CancellationSignal;
 import android.os.ParcelFileDescriptor;
 import android.os.RemoteException;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 
 import java.io.FileNotFoundException;
 import java.util.ArrayList;
diff --git a/tests/src/com/android/contacts/test/mocks/MockContentProvider.java b/tests/src/com/android/contacts/test/mocks/MockContentProvider.java
index 3b96e3a..1aeb839 100644
--- a/tests/src/com/android/contacts/test/mocks/MockContentProvider.java
+++ b/tests/src/com/android/contacts/test/mocks/MockContentProvider.java
@@ -21,7 +21,7 @@
 import android.database.Cursor;
 import android.database.MatrixCursor;
 import android.net.Uri;
-import android.support.annotation.Nullable;
+import androidx.annotation.Nullable;
 
 import com.google.common.base.Preconditions;
 import com.google.common.collect.Maps;
diff --git a/tests/src/com/android/contacts/tests/AccountsTestHelper.java b/tests/src/com/android/contacts/tests/AccountsTestHelper.java
index 2b2c16e..b65ba67 100644
--- a/tests/src/com/android/contacts/tests/AccountsTestHelper.java
+++ b/tests/src/com/android/contacts/tests/AccountsTestHelper.java
@@ -24,8 +24,8 @@
 import android.content.Context;
 import android.os.Build;
 import android.provider.ContactsContract.RawContacts;
-import android.support.annotation.NonNull;
-import android.support.annotation.RequiresApi;
+import androidx.annotation.NonNull;
+import androidx.annotation.RequiresApi;
 import android.support.test.InstrumentationRegistry;
 
 import com.android.contacts.model.account.AccountWithDataSet;
diff --git a/tests/src/com/android/contacts/tests/AdbHelpers.java b/tests/src/com/android/contacts/tests/AdbHelpers.java
index 59fc723..b981331 100644
--- a/tests/src/com/android/contacts/tests/AdbHelpers.java
+++ b/tests/src/com/android/contacts/tests/AdbHelpers.java
@@ -20,7 +20,7 @@
 import android.os.Build;
 import android.os.Bundle;
 import android.os.RemoteException;
-import android.support.annotation.RequiresApi;
+import androidx.annotation.RequiresApi;
 import android.support.test.InstrumentationRegistry;
 import android.util.Log;
 
diff --git a/tests/src/com/android/contacts/tests/SimContactsTestHelper.java b/tests/src/com/android/contacts/tests/SimContactsTestHelper.java
index ab10ed5..061e270 100644
--- a/tests/src/com/android/contacts/tests/SimContactsTestHelper.java
+++ b/tests/src/com/android/contacts/tests/SimContactsTestHelper.java
@@ -28,7 +28,7 @@
 import android.database.Cursor;
 import android.net.Uri;
 import android.os.RemoteException;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
 import android.support.test.InstrumentationRegistry;
 import android.telephony.TelephonyManager;