[automerger] Patch URI vulnerability in contact photo editing am: ccfd94b965 am: 2fc4d78bfc am: fc6e94648d am: 3ffe76ed9c am: 456f745849 am: 9df22bbe22 am: b96186029f am: 655ad64631 am: acdfb82c89
am: f7a8623a09

Change-Id: I1ccd77636a3383be1bd46cef2c998872250fb6e3
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-am/strings.xml b/res/values-am/strings.xml
index 2e9a060..89ed1cd 100644
--- a/res/values-am/strings.xml
+++ b/res/values-am/strings.xml
@@ -253,7 +253,7 @@
     <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="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>
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..988a4e4 100644
--- a/res/values-bn/strings.xml
+++ b/res/values-bn/strings.xml
@@ -153,7 +153,7 @@
     <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="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>
@@ -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>
@@ -478,8 +478,8 @@
     <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>
-    <string name="description_clear_search" msgid="688023606766232904">"অনুসন্ধান সাফ করুন"</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>
@@ -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">"বিল্ডের সংস্করণ"</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" 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="activity_title_licenses" msgid="5467767062737708066">"ওপেন সোর্স লাইসেন্স"</string>
     <string name="url_open_error_toast" msgid="452592089815420457">"url খুলতে ব্যর্থ হয়েছে৷"</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>
diff --git a/res/values-bs/strings.xml b/res/values-bs/strings.xml
index 06dca7a..39d6c3f 100644
--- a/res/values-bs/strings.xml
+++ b/res/values-bs/strings.xml
@@ -26,11 +26,11 @@
     <string name="contactInsertOrEditActivityTitle" msgid="6527505405325862674">"Dodaj u kontakt"</string>
     <string name="contactPickerActivityTitle" msgid="4301062192337417640">"Odabir kontakta"</string>
     <string name="groupMemberPickerActivityTitle" msgid="1431750793695262522">"Odaberi"</string>
-    <string name="header_entry_contact_list_adapter_header_title" msgid="2436981165830115659">"Izrada novog kontakta"</string>
+    <string name="header_entry_contact_list_adapter_header_title" msgid="2436981165830115659">"Kreiraj novi kontakt"</string>
     <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>
@@ -109,11 +109,11 @@
     <string name="contactSavedNamedToast" msgid="895136068894549611">"Kontakt <xliff:g id="DISPLAY_NAME">%s</xliff:g> je sačuvan"</string>
     <string name="contactSavedToast" msgid="9171862279493213075">"Kontakt je sačuvan"</string>
     <string name="contactUnlinkedToast" msgid="7122823195786012553">"Kontakti su razdvojeni"</string>
-    <string name="contactSavedErrorToast" msgid="4827033473908688031">"Nije moguće sačuvati promjene kontakta"</string>
+    <string name="contactSavedErrorToast" msgid="4827033473908688031">"Pohranjivanje promjena kontakta nije uspjelo"</string>
     <string name="contactUnlinkErrorToast" msgid="2706297508166952431">"Nije moguće razdvojiti kontakt"</string>
     <string name="contactJoinErrorToast" msgid="5735129234573327701">"Nije moguće povezati kontakt"</string>
     <string name="contactGenericErrorToast" msgid="3885457515665783976">"Greška prilikom spremanja kontakta"</string>
-    <string name="contactPhotoSavedErrorToast" msgid="6860883564984042194">"Nije moguće sačuvati promjene fotografije kontakta"</string>
+    <string name="contactPhotoSavedErrorToast" msgid="6860883564984042194">"Pohranjivanje promjena fotografije kontakta nije uspjelo"</string>
     <string name="groupLoadErrorToast" msgid="7536267148196064554">"Učitavanje oznake nije uspjelo"</string>
     <string name="groupDeletedToast" msgid="520896687873262027">"Oznaka je izbrisana"</string>
     <string name="groupCreatedToast" msgid="1924195126172834870">"Oznaka je napravljena"</string>
@@ -121,7 +121,7 @@
     <string name="groupUpdatedToast" msgid="3667977658676267687">"Oznaka je ažurirana"</string>
     <string name="groupMembersRemovedToast" msgid="3510563559799376603">"Uklonjeno iz oznake"</string>
     <string name="groupMembersAddedToast" msgid="4824834898718972768">"Dodano oznaci"</string>
-    <string name="groupSavedErrorToast" msgid="2355891714292740162">"Nije moguće sačuvati promjene oznake"</string>
+    <string name="groupSavedErrorToast" msgid="2355891714292740162">"Pohranjivanje promjena oznake nije uspjelo"</string>
     <string name="groupExistsErrorMessage" msgid="5196811283836946189">"Ta oznaka već postoji"</string>
     <string name="groupSomeContactsNoEmailsToast" msgid="8211161470235548732">"Neki kontakti nemaju adrese e-pošte."</string>
     <string name="groupSomeContactsNoPhonesToast" msgid="5530760834827530509">"Neki kontakti nemaju brojeve telefona."</string>
@@ -193,7 +193,7 @@
     <string name="contact_editor_prompt_zero_accounts" msgid="6648376557574360096">"Odvojite malo vremena da dodate račun putem kojeg će se kontakti sigurnosno kopirati na Google."</string>
     <string name="contact_editor_prompt_one_account" msgid="3087691056345099310">"Novi kontakti će biti sačuvani na račun <xliff:g id="ACCOUNT_NAME">%1$s</xliff:g>."</string>
     <string name="contact_editor_prompt_multiple_accounts" msgid="8565761674283473549">"Odaberite zadani račun za nove kontakte:"</string>
-    <string name="contact_editor_title_new_contact" msgid="3042788718983070111">"Izrada novog kontakta"</string>
+    <string name="contact_editor_title_new_contact" msgid="3042788718983070111">"Kreiraj novi kontakt"</string>
     <string name="contact_editor_title_existing_contact" msgid="4898475703683187798">"Uređivanje kontakta"</string>
     <string name="contact_editor_title_read_only_contact" msgid="2443496574528842237">"Samo prikaz"</string>
     <string name="contact_editor_pick_raw_contact_to_edit_dialog_title" msgid="4186699385645902152">"Odaberite kontakt za uređivanje"</string>
@@ -307,7 +307,7 @@
     <string name="sms_by_shortcut" msgid="7741770672976099517">"<xliff:g id="CONTACT_NAME">%s</xliff:g> (Poruka)"</string>
     <string name="description_video_call" msgid="7120921378651700947">"Uputi video poziv"</string>
     <string name="clearFrequentsConfirmation_title" msgid="766292372438450432">"Obrisati često kontaktirane osobe?"</string>
-    <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"Obrisat ćete listu često kontaktiranih osoba u aplikaciji Kontakti i Aplikaciji za telefon, pa će aplikacije za e-poštu morati ispočetka učiti vaše postavke adresa."</string>
+    <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"Obrisat ćete listu često kontaktiranih osoba u aplikacijama Kontakti i Telefon, pa će aplikacije za e-poštu morati ispočetka učiti vaše postavke adresa."</string>
     <string name="clearFrequentsProgress_title" msgid="5157001637482794212">"Brisanje često kontaktiranih osoba…"</string>
     <string name="status_available" msgid="5586870015822828392">"Dostupno"</string>
     <string name="status_away" msgid="1838861100379804730">"Odsutan"</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>
@@ -505,9 +505,9 @@
     <string name="description_search_video_call" msgid="5841525580339803272">"Uputi video poziv"</string>
     <string name="description_delete_contact" msgid="53835657343783663">"Izbriši"</string>
     <string name="description_no_name_header" msgid="8884991311595943271">"Elipsa"</string>
-    <string name="callDurationSecondFormat" msgid="7067644915903528776">"<xliff:g id="SECONDS">%s</xliff:g> sek."</string>
-    <string name="callDurationMinuteFormat" msgid="4647095486747447674">"<xliff:g id="MINUTES">%1$s</xliff:g> min. <xliff:g id="SECONDS">%2$s</xliff:g> sek."</string>
-    <string name="callDurationHourFormat" msgid="7392254193808506640">"<xliff:g id="MINUTES_0">%1$s</xliff:g> h <xliff:g id="MINUTES_1">%2$s</xliff:g> min. <xliff:g id="SECONDS">%3$s</xliff:g> sek."</string>
+    <string name="callDurationSecondFormat" msgid="7067644915903528776">"<xliff:g id="SECONDS">%s</xliff:g> s"</string>
+    <string name="callDurationMinuteFormat" msgid="4647095486747447674">"<xliff:g id="MINUTES">%1$s</xliff:g> min. <xliff:g id="SECONDS">%2$s</xliff:g> s"</string>
+    <string name="callDurationHourFormat" msgid="7392254193808506640">"<xliff:g id="MINUTES_0">%1$s</xliff:g> h <xliff:g id="MINUTES_1">%2$s</xliff:g> min. <xliff:g id="SECONDS">%3$s</xliff:g> s"</string>
     <string name="dynamic_shortcut_disabled_message" msgid="249939425761315252">"Ova prečica je onemogućena"</string>
     <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"Kontakt je uklonjen"</string>
     <string name="sim_import_button_text" msgid="4270841592496619317">"Uvezi"</string>
diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml
index 9d91b9e..f6d8726 100644
--- a/res/values-ca/strings.xml
+++ b/res/values-ca/strings.xml
@@ -329,7 +329,7 @@
     <string name="name_suffix" msgid="3855278445375651441">"Sufix del nom"</string>
     <string name="name_phonetic" msgid="4259595234312430484">"Nom fonètic"</string>
     <string name="name_phonetic_given" msgid="8723179018384187631">"Nom fonètic"</string>
-    <string name="name_phonetic_middle" msgid="8643721493320405200">"Primer cognom fonètic"</string>
+    <string name="name_phonetic_middle" msgid="8643721493320405200">"Segon nom fonètic"</string>
     <string name="name_phonetic_family" msgid="2640133663656011626">"Cognoms fonètics"</string>
     <string name="phoneLabelsGroup" msgid="6468091477851199285">"Telèfon"</string>
     <string name="emailLabelsGroup" msgid="8389931313045344406">"Correu electrònic"</string>
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
index bae027d..8bb2089 100644
--- a/res/values-da/strings.xml
+++ b/res/values-da/strings.xml
@@ -16,17 +16,17 @@
 
 <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">"Kontaktpersoner"</string>
-    <string name="contactsList" msgid="8661624236494819731">"Kontaktpersoner"</string>
-    <string name="shortcut_add_contact" msgid="7476283631356909204">"Tilføj kontaktperson"</string>
+    <string name="applicationLabel" msgid="3906689777043645443">"Kontakter"</string>
+    <string name="contactsList" msgid="8661624236494819731">"Kontakter"</string>
+    <string name="shortcut_add_contact" msgid="7476283631356909204">"Tilføj kontakt"</string>
     <string name="shortcutContact" msgid="749243779392912958">"Kontakt"</string>
     <string name="shortcutDialContact" msgid="746622101599186779">"Direkte opkald"</string>
     <string name="shortcutMessageContact" msgid="2460337253595976198">"Direkte besked"</string>
-    <string name="shortcutActivityTitle" msgid="1504383567778497348">"Vælg kontaktperson"</string>
-    <string name="contactInsertOrEditActivityTitle" msgid="6527505405325862674">"Føj til kontaktperson"</string>
-    <string name="contactPickerActivityTitle" msgid="4301062192337417640">"Vælg en kontaktperson"</string>
+    <string name="shortcutActivityTitle" msgid="1504383567778497348">"Vælg kontakt"</string>
+    <string name="contactInsertOrEditActivityTitle" msgid="6527505405325862674">"Føj til kontakt"</string>
+    <string name="contactPickerActivityTitle" msgid="4301062192337417640">"Vælg en kontakt"</string>
     <string name="groupMemberPickerActivityTitle" msgid="1431750793695262522">"Vælg"</string>
-    <string name="header_entry_contact_list_adapter_header_title" msgid="2436981165830115659">"Opret ny kontaktperson"</string>
+    <string name="header_entry_contact_list_adapter_header_title" msgid="2436981165830115659">"Opret ny kontakt"</string>
     <string name="searchHint" msgid="8482945356247760701">"Søg i kontakter"</string>
     <string name="menu_addStar" msgid="2908478235715404876">"Føj til foretrukne"</string>
     <string name="menu_removeStar" msgid="5844227078364227030">"Fjern fra foretrukne"</string>
@@ -40,16 +40,16 @@
     <string name="menu_editGroup" msgid="6696843438454341063">"Fjern kontaktpersoner"</string>
     <string name="menu_renameGroup" msgid="7169512355179757182">"Omdøb etiket"</string>
     <string name="menu_deleteGroup" msgid="1126469629233412249">"Slet etiket"</string>
-    <string name="menu_addToGroup" msgid="3267409983764370041">"Tilføj kontaktperson"</string>
+    <string name="menu_addToGroup" msgid="3267409983764370041">"Tilføj kontakt"</string>
     <string name="menu_selectForGroup" msgid="3999234528229376098">"Vælg kontaktpersoner"</string>
     <string name="menu_addContactsToGroup" msgid="655196688840626483">"Tilføj kontaktpersoner"</string>
     <string name="menu_removeFromGroup" msgid="6720354305399961978">"Fjern fra etiket"</string>
     <string name="menu_new_group_action_bar" msgid="3127059073617415221">"Opret etiket"</string>
-    <string name="splitConfirmation" msgid="7342030840130187290">"Vil du ophæve sammenfletningen og opdele denne kontaktperson i flere kontaktpersoner?"</string>
+    <string name="splitConfirmation" msgid="7342030840130187290">"Vil du ophæve sammenfletningen og opdele denne kontakt i flere kontakter?"</string>
     <string name="splitConfirmation_positive_button" msgid="9129409098807939699">"Ophæv sammenfletningen"</string>
     <string name="splitConfirmationWithPendingChanges" msgid="7719062163511895696">"Vil du gemme de ændringer, du allerede har foretaget, og ophæve sammenfletningen og opdele kontaktpersonen i flere kontaktpersoner?"</string>
     <string name="splitConfirmationWithPendingChanges_positive_button" msgid="9073444264887244032">"Gem, og ophæv sammenfletningen"</string>
-    <string name="joinConfirmation" msgid="8262614843581924365">"Vil du gemme de ændringer, du allerede har foretaget, og sammenflette med den valgte kontaktperson?"</string>
+    <string name="joinConfirmation" msgid="8262614843581924365">"Vil du gemme de ændringer, du allerede har foretaget, og sammenflette med den valgte kontakt?"</string>
     <string name="joinConfirmation_positive_button" msgid="4573092849769149516">"Gem og flet"</string>
     <string name="contacts_linking_progress_bar" msgid="2846494347384549277">"Sammenfletter"</string>
     <string name="contacts_unlinking_progress_bar" msgid="5989310198163726929">"Ophæver sammenfletning"</string>
@@ -57,7 +57,7 @@
     <string name="menu_linkedContacts" msgid="400444389718855621">"Se sammenflettede kontaktpersoner"</string>
     <string name="menu_save" msgid="1727844363591825909">"Gem"</string>
     <string name="titleJoinContactDataWith" msgid="6825255752748313944">"Sammenflet kontaktpersoner"</string>
-    <string name="blurbJoinContactDataWith" msgid="5864256698061641841">"Vælg den kontaktperson, der skal knyttes til <xliff:g id="NAME">%s</xliff:g>:"</string>
+    <string name="blurbJoinContactDataWith" msgid="5864256698061641841">"Vælg den kontakt, der skal knyttes til <xliff:g id="NAME">%s</xliff:g>:"</string>
     <string name="separatorJoinAggregateSuggestions" msgid="2831414448851313345">"Foreslåede kontakter"</string>
     <string name="separatorJoinAggregateAll" msgid="7939932265026181043">"Alle kontakter"</string>
     <string name="contactsJoinedNamedMessage" msgid="1299418263439579455">"<xliff:g id="NAME">%s</xliff:g> er sammenflettet"</string>
@@ -70,33 +70,33 @@
       <item quantity="other">Kontaktpersonerne blev slettet</item>
     </plurals>
     <plurals name="contacts_count" formatted="false" msgid="8696793457340503668">
-      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> kontaktperson</item>
-      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> kontaktpersoner</item>
+      <item quantity="one"><xliff:g id="COUNT_1">%d</xliff:g> kontakt</item>
+      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> kontakter</item>
     </plurals>
     <plurals name="contacts_count_with_account" formatted="false" msgid="7402583111980220575">
-      <item quantity="one"><xliff:g id="COUNT_2">%1$d</xliff:g> kontaktperson · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
-      <item quantity="other"><xliff:g id="COUNT_2">%1$d</xliff:g> kontaktpersoner · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
+      <item quantity="one"><xliff:g id="COUNT_2">%1$d</xliff:g> kontakt · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
+      <item quantity="other"><xliff:g id="COUNT_2">%1$d</xliff:g> kontakter · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
     </plurals>
     <string name="title_from_google" msgid="4664084747121207202">"Fra Google"</string>
     <string name="title_from_other_accounts" msgid="8307885412426754288">"Fra <xliff:g id="ACCOUNT">%s</xliff:g>"</string>
     <string name="menu_set_ring_tone" msgid="8728345772068064946">"Angiv ringetone"</string>
     <string name="menu_redirect_calls_to_vm" msgid="83331924006712755">"Omdiriger til telefonsvarer"</string>
     <string name="menu_unredirect_calls_to_vm" msgid="8725542534701811737">"Træk tilbage fra telefonsvarer"</string>
-    <string name="readOnlyContactWarning" msgid="7514475664695089411">"Denne kontaktperson er skrivebeskyttet. Vedkommende kan ikke slettes, men kun skjules."</string>
-    <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"Skjul kontaktperson"</string>
-    <string name="readOnlyContactDeleteConfirmation" msgid="4717023505914239809">"Data om denne kontaktperson fra skrivebeskyttede konti bliver skjult, men ikke slettet."</string>
-    <string name="single_delete_confirmation" msgid="3106905986948679720">"Vil du slette denne kontaktperson?"</string>
+    <string name="readOnlyContactWarning" msgid="7514475664695089411">"Denne kontakt er skrivebeskyttet. Vedkommende kan ikke slettes, men kun skjules."</string>
+    <string name="readOnlyContactWarning_positive_button" msgid="8914797212167683673">"Skjul kontakt"</string>
+    <string name="readOnlyContactDeleteConfirmation" msgid="4717023505914239809">"Data om denne kontakt fra skrivebeskyttede konti bliver skjult, men ikke slettet."</string>
+    <string name="single_delete_confirmation" msgid="3106905986948679720">"Vil du slette denne kontakt?"</string>
     <string name="batch_delete_confirmation" msgid="3984346060324014108">"Vil du slette de valgte kontaktpersoner?"</string>
-    <string name="batch_delete_read_only_contact_confirmation" msgid="8411117621035639964">"Kontaktpersoner fra dine skrivebeskyttede konti kan ikke slettes, men de kan skjules."</string>
+    <string name="batch_delete_read_only_contact_confirmation" msgid="8411117621035639964">"Kontakter fra dine skrivebeskyttede konti kan ikke slettes, men de kan skjules."</string>
     <string name="batch_delete_multiple_accounts_confirmation" msgid="8207205649127030030">"De kontaktpersoner, du vil slette, indeholder oplysninger fra flere konti. Oplysninger fra skrivebeskyttede konti skjules fremfor at blive slettet."</string>
-    <string name="multipleContactDeleteConfirmation" msgid="5235324124905653550">"Sletning af denne kontaktperson sletter oplysninger fra flere konti."</string>
-    <string name="deleteConfirmation" msgid="3512271779086656043">"Vil du slette denne kontaktperson?"</string>
+    <string name="multipleContactDeleteConfirmation" msgid="5235324124905653550">"Sletning af denne kontakt sletter oplysninger fra flere konti."</string>
+    <string name="deleteConfirmation" msgid="3512271779086656043">"Vil du slette denne kontakt?"</string>
     <string name="deleteConfirmation_positive_button" msgid="7857888845028586365">"Slet"</string>
     <string name="invalidContactMessage" msgid="8215051456181842274">"Kontaktpersonen findes ikke."</string>
     <string name="createContactShortcutSuccessful_NoName" msgid="8831303345367275472">"Kontaktpersonen blev føjet til startskærmen."</string>
     <string name="createContactShortcutSuccessful" msgid="953651153238790069">"<xliff:g id="NAME">%s</xliff:g> blev føjet til startskærmen."</string>
     <string name="photoPickerNotFoundText" msgid="2052542573853433204">"Der er ingen tilgængelige billeder på enheden."</string>
-    <string name="attach_photo_dialog_title" msgid="5599827035558557169">"Billede af kontaktperson"</string>
+    <string name="attach_photo_dialog_title" msgid="5599827035558557169">"Billede af kontakt"</string>
     <string name="customLabelPickerTitle" msgid="1081475101983255212">"Navn på tilpasset etiket"</string>
     <string name="removePhoto" msgid="4898105274130284565">"Fjern billede"</string>
     <string name="noContacts" msgid="2228592924476426108">"Din liste over kontaktpersoner er tom"</string>
@@ -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>
@@ -147,7 +147,7 @@
     <string name="label_name_dialog_hint" msgid="1276051790427638142">"Etiketnavn"</string>
     <string name="audio_chat" msgid="2535716629358298691">"Talechat"</string>
     <string name="video_chat" msgid="1872255818640336072">"Videochat"</string>
-    <string name="account_type_format" msgid="718948015590343010">"<xliff:g id="SOURCE">%1$s</xliff:g> kontaktperson"</string>
+    <string name="account_type_format" msgid="718948015590343010">"<xliff:g id="SOURCE">%1$s</xliff:g> kontakt"</string>
     <string name="google_account_type_format" msgid="5283997303922067997">"<xliff:g id="SOURCE">%1$s</xliff:g>-konto"</string>
     <string name="take_photo" msgid="7496128293167402354">"Tag billede"</string>
     <string name="take_new_photo" msgid="7341354729436576304">"Tag nyt billede"</string>
@@ -159,7 +159,7 @@
     <string name="cancel_button_content_description" msgid="1288652456274531846">"Annuller"</string>
     <string name="back_arrow_content_description" msgid="4355362760545735065">"Tilbage"</string>
     <string name="action_menu_back_from_edit_select" msgid="6435476408621731420">"luk"</string>
-    <string name="aggregation_suggestion_edit_dialog_message" msgid="6549585283910518095">"Vil du redigere den valgte kontaktperson? Dine indtastninger kopieres."</string>
+    <string name="aggregation_suggestion_edit_dialog_message" msgid="6549585283910518095">"Vil du redigere den valgte kontakt? Dine indtastninger kopieres."</string>
     <string name="contact_directory_description" msgid="683398073603909119">"Indeks <xliff:g id="TYPE">%1$s</xliff:g>"</string>
     <string name="activity_title_settings" msgid="5464130076132770781">"Indstillinger"</string>
     <string name="menu_settings" msgid="377929915873428211">"Indstillinger"</string>
@@ -189,17 +189,17 @@
     <string name="contact_editor_prompt_zero_accounts" msgid="6648376557574360096">"Brug et øjeblik på at tilføje en konto, som sikkerhedskopierer dine kontaktpersoner til Google."</string>
     <string name="contact_editor_prompt_one_account" msgid="3087691056345099310">"Nye kontakter gemmes på <xliff:g id="ACCOUNT_NAME">%1$s</xliff:g>."</string>
     <string name="contact_editor_prompt_multiple_accounts" msgid="8565761674283473549">"Vælg en standardkonto til nye kontaktpersoner:"</string>
-    <string name="contact_editor_title_new_contact" msgid="3042788718983070111">"Opret ny kontaktperson"</string>
-    <string name="contact_editor_title_existing_contact" msgid="4898475703683187798">"Rediger kontaktperson"</string>
+    <string name="contact_editor_title_new_contact" msgid="3042788718983070111">"Opret ny kontakt"</string>
+    <string name="contact_editor_title_existing_contact" msgid="4898475703683187798">"Rediger kontakt"</string>
     <string name="contact_editor_title_read_only_contact" msgid="2443496574528842237">"Kun visning"</string>
-    <string name="contact_editor_pick_raw_contact_to_edit_dialog_title" msgid="4186699385645902152">"Vælg en kontaktperson at redigere"</string>
+    <string name="contact_editor_pick_raw_contact_to_edit_dialog_title" msgid="4186699385645902152">"Vælg en kontakt at redigere"</string>
     <string name="contact_editor_pick_linked_contact_dialog_title" msgid="4618465940423857694">"Sammenflettede kontaktpersoner"</string>
     <string name="contact_editor_add_linked_contact" msgid="426142748048816297">"Tilføj"</string>
     <string name="contact_editor_unlink_contacts" msgid="4525214336177236653">"Ophæv sammenfletning"</string>
     <string name="add_account" msgid="8201790677994503186">"Tilføj konto"</string>
     <string name="add_new_account" msgid="5748627740680940264">"Tilføj ny konto"</string>
     <string name="menu_export_database" msgid="2659719297530170820">"Eksportér databasefiler"</string>
-    <string name="action_menu_add_new_contact_button" msgid="5506832825256203208">"Opret ny kontaktperson"</string>
+    <string name="action_menu_add_new_contact_button" msgid="5506832825256203208">"Opret ny kontakt"</string>
     <string name="expanding_entry_card_view_see_more" msgid="3779194067124758079">"Se mere"</string>
     <string name="expanding_entry_card_view_see_less" msgid="5344160551629714168">"Se mindre"</string>
     <string name="recent_card_title" msgid="8982782042698001695">"Seneste"</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>
@@ -232,15 +232,15 @@
     <string name="editor_more_fields" msgid="3630987771304393421">"Flere felter"</string>
     <string name="editor_change_photo_content_description" msgid="820879708069864340">"Skift kontaktpersonens billede"</string>
     <string name="editor_add_photo_content_description" msgid="4194479313465418120">"Tilføj et billede af kontaktpersonen"</string>
-    <string name="editor_contact_photo_content_description" msgid="8571975622926162369">"Billede af kontaktperson"</string>
+    <string name="editor_contact_photo_content_description" msgid="8571975622926162369">"Billede af kontakt"</string>
     <string name="editor_failed_to_load" msgid="1623639078580475818">"Redigeringsværktøjet kunne ikke åbnes."</string>
     <string name="editor_account_selector_title" msgid="4426337993307015833">"Gemmes på"</string>
     <string name="editor_account_selector_read_only_title" msgid="4137969650184457126">"Kontaktoplysningerne fra <xliff:g id="ACCOUNT">%s</xliff:g> kan ikke redigeres"</string>
     <string name="quickcontact_suggestion_link_button" msgid="3244619714781727946">"SAMMENFLET KONTAKTPERSONER"</string>
     <string name="quickcontact_suggestion_cancel_button" msgid="8236954313106630862">"ANNULLER"</string>
-    <string name="suggestion_card_this_contact_title" msgid="3039457405374454914">"Denne kontaktperson"</string>
+    <string name="suggestion_card_this_contact_title" msgid="3039457405374454914">"Denne kontakt"</string>
     <string name="suggestion_card_duplicates_title" msgid="9107788743178980902">"Mulige dubletter"</string>
-    <string name="suggestion_card_help_message" msgid="4474061044387181093">"Disse kontaktpersoner kan være den samme person. Du kan sammenflette dem til én enkelt kontaktperson."</string>
+    <string name="suggestion_card_help_message" msgid="4474061044387181093">"Disse kontakter kan være den samme person. Du kan sammenflette dem til én enkelt kontakt."</string>
     <string name="editor_delete_view_description" msgid="8583095381562991959">"Slet <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">"Slet <xliff:g id="DATA_KIND">%s</xliff:g>"</string>
     <string name="menu_assistant" msgid="5760693735722052454">"Forslag"</string>
@@ -264,7 +264,7 @@
     <string name="call_fax_work" msgid="7467763592359059243">"Ring til arbejdsfax"</string>
     <string name="call_fax_home" msgid="8342175628887571876">"Ring til hjemmefax"</string>
     <string name="call_pager" msgid="9003902812293983281">"Ring til personsøger"</string>
-    <string name="call_other" msgid="8563753966926932052">"Opkald"</string>
+    <string name="call_other" msgid="8563753966926932052">"Ring op"</string>
     <string name="call_callback" msgid="1910165691349426858">"Ring til tilbagekald"</string>
     <string name="call_car" msgid="3280537320306436445">"Ring til bil"</string>
     <string name="call_company_main" msgid="6105120947138711257">"Ring til arbejde (hovednummer)"</string>
@@ -303,7 +303,7 @@
     <string name="sms_by_shortcut" msgid="7741770672976099517">"<xliff:g id="CONTACT_NAME">%s</xliff:g> (send besked)"</string>
     <string name="description_video_call" msgid="7120921378651700947">"Foretag videoopkald"</string>
     <string name="clearFrequentsConfirmation_title" msgid="766292372438450432">"Vil du rydde de ofte kontaktede?"</string>
-    <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"Hvis du gør dette, rydder du listen over personer, som du ofte kontakter, i dine apps Kontaktpersoner og Telefon. Du vil samtidig tvinge e-mailapps til at lære dine adressepræferencer fra bunden."</string>
+    <string name="clearFrequentsConfirmation" msgid="2270554975938265734">"Hvis du gør dette, rydder du listen over personer, som du ofte kontakter, i dine apps Kontakter og Telefon. Du vil samtidig tvinge e-mailapps til at lære dine adressepræferencer fra bunden."</string>
     <string name="clearFrequentsProgress_title" msgid="5157001637482794212">"Rydder ofte kontaktede personer…"</string>
     <string name="status_available" msgid="5586870015822828392">"Tilgængelig"</string>
     <string name="status_away" msgid="1838861100379804730">"Ikke til stede"</string>
@@ -316,7 +316,7 @@
     <string name="missing_name" msgid="8745511583852904385">"(Intet navn)"</string>
     <string name="favoritesFrequentContacted" msgid="6184232487472425690">"Jævnligt kontaktet"</string>
     <string name="list_filter_phones" msgid="735313795643493365">"Alle kontaktpersoner med telefonnumre"</string>
-    <string name="list_filter_phones_work" msgid="1470173699551475015">"Kontaktpersoner for arbejdsprofil"</string>
+    <string name="list_filter_phones_work" msgid="1470173699551475015">"Kontakter for arbejdsprofil"</string>
     <string name="view_updates_from_group" msgid="1782685984905600034">"Se opdateringer"</string>
     <string name="account_phone" msgid="7128032778471187553">"Enhed"</string>
     <string name="account_sim" msgid="6519016427905087952">"SIM-kort"</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>
@@ -383,7 +383,7 @@
     <string name="list_filter_all_accounts" msgid="8908683398914322369">"Alle kontaktpersoner"</string>
     <string name="list_filter_all_starred" msgid="5031734941601931356">"Stjernemarkerede"</string>
     <string name="list_filter_customize" msgid="4789963356004169321">"Tilpas"</string>
-    <string name="list_filter_single" msgid="5871400283515893087">"Kontaktperson"</string>
+    <string name="list_filter_single" msgid="5871400283515893087">"Kontakt"</string>
     <string name="display_ungrouped" msgid="6885954210243119591">"Alle andre kontaktpersoner"</string>
     <string name="display_all_contacts" msgid="2031647544742889505">"Alle kontaktpersoner"</string>
     <string name="menu_sync_remove" msgid="3266725887008450161">"Fjern synkroniseringsgruppe"</string>
@@ -396,12 +396,12 @@
     <string name="import_from_sim" msgid="6912071635295799131">"SIM-kort"</string>
     <string name="import_from_sim_summary_fmt" msgid="5169032449686348118">"SIM-kort <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 kontaktperson</item>
-      <item quantity="other">%1$d kontaktpersoner</item>
+      <item quantity="one">%1$d kontakt</item>
+      <item quantity="other">%1$d kontakter</item>
     </plurals>
     <plurals name="import_from_sim_secondary_template" formatted="false" msgid="2484832025802907060">
-      <item quantity="one"><xliff:g id="COUNT_2">^1</xliff:g> kontaktperson • <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
-      <item quantity="other"><xliff:g id="COUNT_2">^1</xliff:g> kontaktpersoner • <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
+      <item quantity="one"><xliff:g id="COUNT_2">^1</xliff:g> kontakt • <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
+      <item quantity="other"><xliff:g id="COUNT_2">^1</xliff:g> kontakter • <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
     </plurals>
     <string name="import_from_vcf_file" msgid="8662528435646418203">".vcf-fil"</string>
     <string name="nothing_to_import_message" msgid="1651921906873335656">"Der er intet at importere"</string>
@@ -459,20 +459,20 @@
     <string name="default_editor_account" msgid="699591683362420991">"Standardkonto til nye kontaktpersoner"</string>
     <string name="settings_my_info_title" msgid="1534272456405343119">"Mine oplysninger"</string>
     <string name="set_up_profile" msgid="7370213843590143771">"Konfigurer din profil"</string>
-    <string name="setting_about" msgid="7014388749752042863">"Om Kontaktpersoner"</string>
+    <string name="setting_about" msgid="7014388749752042863">"Om Kontakter"</string>
     <string name="share_favorite_contacts" msgid="4280926751003081042">"Del foretrukne kontaktpersoner"</string>
     <string name="share_contacts" msgid="8109287987498711664">"Del alle kontaktpersoner"</string>
     <string name="share_contacts_failure" msgid="1216431977330560559">"Kontaktpersonerne kunne ikke deles."</string>
     <string name="dialog_export" msgid="1628001095187741417">"Eksportér kontaktpersoner"</string>
     <string name="dialog_import" msgid="2423592905927819672">"Importér kontaktpersoner fra"</string>
-    <string name="share_error" msgid="948429331673358107">"Denne kontaktperson kan ikke deles."</string>
+    <string name="share_error" msgid="948429331673358107">"Denne kontakt kan ikke deles."</string>
     <string name="no_contact_to_share" msgid="1276397530378323033">"Der er ingen kontaktpersoner, der kan deles."</string>
     <string name="menu_contacts_filter" msgid="2165153460860262501">"Viste kontaktpersoner"</string>
     <string name="activity_title_contacts_filter" msgid="8275542497615516969">"Viste kontaktpersoner"</string>
     <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>
@@ -509,8 +509,8 @@
     <string name="sim_import_empty_message" msgid="7743815244380189651">"Der er ingen kontaktpersoner på dit SIM-kort"</string>
     <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"Kontaktpersonen findes allerede på din liste over kontakter"</string>
     <plurals name="sim_import_success_toast_fmt" formatted="false" msgid="8572156521110906443">
-      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> kontaktperson på SIM-kortet blev importeret</item>
-      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> kontaktpersoner på SIM-kortet blev importeret</item>
+      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> kontakt på SIM-kortet blev importeret</item>
+      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> kontakter på SIM-kortet blev importeret</item>
     </plurals>
     <string name="sim_import_failed_toast" msgid="5559267299793622705">"Kontaktpersonerne på SIM-kortet kan ikke importeres"</string>
     <string name="sim_import_title" msgid="2511154832820812822">"Importér fra SIM-kort"</string>
@@ -519,7 +519,7 @@
     <string name="dismiss_sync_alert" msgid="8941131776605093596">"Luk"</string>
     <string name="account_sync_off" msgid="7646143254066243924">"Kontosynkronisering er slået fra. Tryk for at slå funktionen til."</string>
     <string name="turn_auto_sync_on_dialog_title" msgid="333965456829670541">"Vil du slå automatisk synkronisering til?"</string>
-    <string name="turn_auto_sync_on_dialog_body" msgid="5025336917533693997">"De ændringer, du foretager af alle apps og konti og ikke kun Google Kontaktpersoner, holdes opdateret mellem nettet og dine enheder."</string>
+    <string name="turn_auto_sync_on_dialog_body" msgid="5025336917533693997">"De ændringer, du foretager af alle apps og konti og ikke kun Google Kontakter, holdes opdateret mellem nettet og dine enheder."</string>
     <string name="turn_auto_sync_on_dialog_confirm_btn" msgid="1070332014838295599">"Slå til"</string>
     <string name="connection_error_message" msgid="7046408921529247089">"Der er ingen forbindelse"</string>
     <string name="single_sim_display_label" msgid="6985770499439371497">"SIM-kort"</string>
diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml
index eaad2c4..06ef86c 100644
--- a/res/values-es-rUS/strings.xml
+++ b/res/values-es-rUS/strings.xml
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"No se pudieron leer los datos de vCard."</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"Finalizó la importación de la vCard <xliff:g id="FILENAME">%s</xliff:g>"</string>
     <string name="importing_vcard_canceled_title" msgid="2147475978165599336">"Se canceló la importación de <xliff:g id="FILENAME">%s</xliff:g>."</string>
-    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"<xliff:g id="FILENAME">%s</xliff:g> se importará en breve."</string>
+    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Se importará(n) en breve <xliff:g id="FILENAME">%s</xliff:g>"</string>
     <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"El archivo se importará en breve."</string>
     <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"Se rechazó la solicitud de importación de la vCard. Vuelve a intentarlo más tarde."</string>
     <string name="contacts_export_will_start_message" msgid="8538705791417534431">"Los contactos se exportarán en breve."</string>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
index 302e97c..cee04e4 100644
--- a/res/values-es/strings.xml
+++ b/res/values-es/strings.xml
@@ -321,7 +321,7 @@
     <string name="account_phone" msgid="7128032778471187553">"Dispositivo"</string>
     <string name="account_sim" msgid="6519016427905087952">"Tarjeta SIM"</string>
     <string name="nameLabelsGroup" msgid="2034640839640477827">"Nombre"</string>
-    <string name="nicknameLabelsGroup" msgid="2891682101053358010">"Mote"</string>
+    <string name="nicknameLabelsGroup" msgid="2891682101053358010">"Apodo"</string>
     <string name="name_given" msgid="4280790853455320619">"Nombre"</string>
     <string name="name_family" msgid="7466985689626017037">"Apellidos"</string>
     <string name="name_prefix" msgid="59756378548779822">"Prefijo del nombre"</string>
@@ -454,7 +454,7 @@
     <string name="display_options_sort_by_family_name" msgid="2684905041926954793">"Apellidos"</string>
     <string name="display_options_view_names_as" msgid="6514632499276563482">"Formato de nombre"</string>
     <string name="display_options_view_given_name_first" msgid="3616004640258761473">"Nombre primero"</string>
-    <string name="display_options_view_family_name_first" msgid="956445100777296467">"Apellido primero"</string>
+    <string name="display_options_view_family_name_first" msgid="956445100777296467">"Apellidos primero"</string>
     <string name="settings_accounts" msgid="350219740670774576">"Cuentas"</string>
     <string name="default_editor_account" msgid="699591683362420991">"Cuenta predeterminada para nuevos contactos"</string>
     <string name="settings_my_info_title" msgid="1534272456405343119">"Mi información"</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..d18efd7 100644
--- a/res/values-fa/strings.xml
+++ b/res/values-fa/strings.xml
@@ -120,9 +120,9 @@
     <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="groupSomeContactsNoEmailsToast" msgid="8211161470235548732">"بعضی از مخاطبین ایمیل ندارند."</string>
     <string name="groupSomeContactsNoPhonesToast" msgid="5530760834827530509">"بعضی از مخاطبین شماره تلفن ندارند."</string>
-    <string name="menu_sendEmailOption" msgid="5978319931321657780">"ارسال رایانامه"</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>
@@ -131,7 +131,7 @@
     <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="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>
@@ -220,7 +220,7 @@
     <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_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>
@@ -303,7 +303,7 @@
     <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="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>
@@ -332,7 +332,7 @@
     <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="emailLabelsGroup" msgid="8389931313045344406">"ایمیل"</string>
     <string name="postalLabelsGroup" msgid="3487738141112589324">"آدرس"</string>
     <string name="imLabelsGroup" msgid="3898238486262614027">"IM"</string>
     <string name="organizationLabelsGroup" msgid="2478611760751832035">"سازمان"</string>
@@ -347,12 +347,12 @@
     <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="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>
@@ -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-fr/strings.xml b/res/values-fr/strings.xml
index f9d6a28..d86d3c0 100644
--- a/res/values-fr/strings.xml
+++ b/res/values-fr/strings.xml
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"Impossible de lire les données vCard."</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"Fichier vCard <xliff:g id="FILENAME">%s</xliff:g> importé"</string>
     <string name="importing_vcard_canceled_title" msgid="2147475978165599336">"Importation de \"<xliff:g id="FILENAME">%s</xliff:g>\" annulée"</string>
-    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Importation du fichier <xliff:g id="FILENAME">%s</xliff:g> imminente"</string>
+    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Importation imminente : <xliff:g id="FILENAME">%s</xliff:g>"</string>
     <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"Le fichier va bientôt être importé."</string>
     <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"La demande d\'importation du fichier vCard a été rejetée. Veuillez réessayer ultérieurement."</string>
     <string name="contacts_export_will_start_message" msgid="8538705791417534431">"Les contacts seront bientôt exportés."</string>
diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml
index 70e6514..54b58f3 100644
--- a/res/values-gl/strings.xml
+++ b/res/values-gl/strings.xml
@@ -45,7 +45,7 @@
     <string name="menu_addContactsToGroup" msgid="655196688840626483">"Engadir contactos"</string>
     <string name="menu_removeFromGroup" msgid="6720354305399961978">"Eliminar da etiqueta"</string>
     <string name="menu_new_group_action_bar" msgid="3127059073617415221">"Crear etiqueta"</string>
-    <string name="splitConfirmation" msgid="7342030840130187290">"Queres desligar este contacto en varios contactos?"</string>
+    <string name="splitConfirmation" msgid="7342030840130187290">"Queres desvincular este contacto en varios contactos?"</string>
     <string name="splitConfirmation_positive_button" msgid="9129409098807939699">"Desligar"</string>
     <string name="splitConfirmationWithPendingChanges" msgid="7719062163511895696">"Queres gardar os cambios que xa fixeches e desligar este contacto en varios contactos?"</string>
     <string name="splitConfirmationWithPendingChanges_positive_button" msgid="9073444264887244032">"Gardar e desligar"</string>
diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml
index d1ccfcb..341753e 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>
@@ -133,18 +133,18 @@
     <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>
     <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>
@@ -420,8 +420,8 @@
     <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_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>
@@ -446,36 +446,36 @@
     <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>
     <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="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="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="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..216fb38 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>
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"Lettura dati vCard non riuscita"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"Importazione vCard <xliff:g id="FILENAME">%s</xliff:g> terminata"</string>
     <string name="importing_vcard_canceled_title" msgid="2147475978165599336">"Importazione di <xliff:g id="FILENAME">%s</xliff:g> annullata"</string>
-    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"La vCard <xliff:g id="FILENAME">%s</xliff:g> verrà importata a breve."</string>
+    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Contatti che verranno importati a breve: <xliff:g id="FILENAME">%s</xliff:g>"</string>
     <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"Il file sarà importato a breve."</string>
     <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"Richiesta importazione vCard rifiutata. Riprova più tardi."</string>
     <string name="contacts_export_will_start_message" msgid="8538705791417534431">"I contatti verranno esportati a breve."</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-iw/strings.xml b/res/values-iw/strings.xml
index 7a5fae2..774c8ad 100644
--- a/res/values-iw/strings.xml
+++ b/res/values-iw/strings.xml
@@ -148,7 +148,7 @@
       <item quantity="other">שתף את אנשי הקשר באמצעות</item>
       <item quantity="one">שתף את איש הקשר באמצעות</item>
     </plurals>
-    <string name="dialog_new_group_account" msgid="3451312333591556651">"בחר חשבון"</string>
+    <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>
@@ -177,7 +177,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>
@@ -204,7 +204,7 @@
     <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_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>
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
index 61ce2a6..5e801b0 100644
--- a/res/values-ja/strings.xml
+++ b/res/values-ja/strings.xml
@@ -100,7 +100,7 @@
     <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="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>
diff --git a/res/values-kk/strings.xml b/res/values-kk/strings.xml
index a3dd957..1e75d00 100644
--- a/res/values-kk/strings.xml
+++ b/res/values-kk/strings.xml
@@ -174,7 +174,7 @@
     <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="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>
@@ -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..0d975a4 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>
@@ -475,7 +475,7 @@
     <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_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>
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..c64e369 100644
--- a/res/values-ky/strings.xml
+++ b/res/values-ky/strings.xml
@@ -140,7 +140,7 @@
       <item quantity="other"> байланышты бөлүшүү</item>
       <item quantity="one"> байланышты бөлүшүү</item>
     </plurals>
-    <string name="dialog_new_group_account" msgid="3451312333591556651">"Каттоо эсебин тандоо"</string>
+    <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>
@@ -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>
@@ -390,7 +390,7 @@
     <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="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">"SIM-карта"</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..891baa6 100644
--- a/res/values-mr/strings.xml
+++ b/res/values-mr/strings.xml
@@ -47,9 +47,9 @@
     <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" msgid="7719062163511895696">"तुम्ही आधीपासून केलेले बदल तुम्ही सेव्ह करू आणि एकाधिक संपर्कांमध्‍ये या संपर्काचा दुवा रद्द करू इच्छिता?"</string>
     <string name="splitConfirmationWithPendingChanges_positive_button" msgid="9073444264887244032">"सेव्ह करा आणि दुवा रद्द करा"</string>
-    <string name="joinConfirmation" msgid="8262614843581924365">"आपण आधीपासून केलेले बदल आपण जतन करू आणि निवडलेल्या संपर्काशी दुवा जोडू इच्छिता?"</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>
@@ -57,7 +57,7 @@
     <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="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>
@@ -82,7 +82,7 @@
     <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" 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>
@@ -99,18 +99,18 @@
     <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="noContacts" msgid="2228592924476426108">"तुमची संपर्क सूची रिक्त आहे"</string>
     <string name="emptyGroup" msgid="5102411903247859575">"या लेबलसह कोणतेही संपर्क नाहीत"</string>
     <string name="emptyAccount" msgid="6873962901497975964">"या खात्यामध्ये कोणतेही संपर्क नाहीत"</string>
-    <string name="emptyMainList" msgid="2772242747899664460">"आपली संपर्क सूची रिक्त आहे"</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="contactSavedToast" msgid="9171862279493213075">"संपर्क सेव्ह केला"</string>
     <string name="contactUnlinkedToast" msgid="7122823195786012553">"संपर्कांचा दुवा रद्द केला"</string>
-    <string name="contactSavedErrorToast" msgid="4827033473908688031">"संपर्क बदल जतन करणे शक्य झाले नाही"</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="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>
@@ -118,7 +118,7 @@
     <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="groupSavedErrorToast" msgid="2355891714292740162">"लेबल बदल सेव्ह करणे शक्य झाले नाही"</string>
     <string name="groupExistsErrorMessage" msgid="5196811283836946189">"ते लेबल आधीपासून अस्तित्वात आहे"</string>
     <string name="groupSomeContactsNoEmailsToast" msgid="8211161470235548732">"काही संपर्कांमध्ये ईमेल नाहीत."</string>
     <string name="groupSomeContactsNoPhonesToast" msgid="5530760834827530509">"काही संपर्कांमध्ये फोन नंबर नाहीत."</string>
@@ -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>
@@ -159,7 +159,7 @@
     <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="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>
@@ -228,19 +228,19 @@
     <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="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_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="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>
@@ -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>
@@ -303,7 +303,7 @@
     <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="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>
@@ -390,7 +390,7 @@
     <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="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>
@@ -413,15 +413,15 @@
     <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">"निर्यात दरम्‍यान एरर आलीt: \"<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_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>
@@ -460,13 +460,13 @@
     <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="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="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>
@@ -519,7 +519,7 @@
     <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">"फक्त संपर्कांमध्ये नाही, तर आपण सर्व अॅप्स आणि खात्यांमध्ये करता ते बदल, वेब आणि आपल्या अन्य डिव्हाइसेस दरम्यान अपडेट ठेवले जातील."</string>
+    <string name="turn_auto_sync_on_dialog_body" msgid="5025336917533693997">"फक्त संपर्कांमध्ये नाही, तर तुम्ही सर्व अॅप्स आणि खात्यांमध्ये करता ते बदल, वेब आणि आपल्या अन्य डिव्हाइसेस दरम्यान अपडेट ठेवले जातील."</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>
diff --git a/res/values-my/strings.xml b/res/values-my/strings.xml
index 1f82bc4..ec365f5 100644
--- a/res/values-my/strings.xml
+++ b/res/values-my/strings.xml
@@ -55,7 +55,7 @@
     <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="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>
diff --git a/res/values-ne/strings.xml b/res/values-ne/strings.xml
index fca9147..4f102dc 100644
--- a/res/values-ne/strings.xml
+++ b/res/values-ne/strings.xml
@@ -460,7 +460,7 @@
     <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_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>
@@ -472,7 +472,7 @@
     <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="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>
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
index c18fe89..c11b04a 100644
--- a/res/values-nl/strings.xml
+++ b/res/values-nl/strings.xml
@@ -163,7 +163,7 @@
     <string name="contact_directory_description" msgid="683398073603909119">"Directory <xliff:g id="TYPE">%1$s</xliff:g>"</string>
     <string name="activity_title_settings" msgid="5464130076132770781">"Instellingen"</string>
     <string name="menu_settings" msgid="377929915873428211">"Instellingen"</string>
-    <string name="menu_help" msgid="1680178646764069976">"Help en feedback"</string>
+    <string name="menu_help" msgid="1680178646764069976">"Hulp en feedback"</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">"Telefoonnummer"</string>
     <string name="non_phone_add_to_contacts" msgid="6590985286250471169">"Toevoegen aan contacten"</string>
@@ -227,7 +227,7 @@
     <string name="content_description_recent_call_type_incoming" msgid="5210739096863511410">"binnenkomend"</string>
     <string name="content_description_recent_call_type_outgoing" msgid="5156553338985232744">"uitgaand"</string>
     <string name="content_description_recent_call_type_missed" msgid="7371810920196048204">"gemist"</string>
-    <string name="content_description_recent_call" msgid="5183800406316723676">"recente oproep. <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>. klik om terug te bellen"</string>
+    <string name="content_description_recent_call" msgid="5183800406316723676">"recent gesprek. <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>. klik om terug te bellen"</string>
     <string name="message_from_you_prefix" msgid="7180706529908434482">"Jij: <xliff:g id="SMS_BODY">%s</xliff:g>"</string>
     <string name="editor_more_fields" msgid="3630987771304393421">"Meer velden"</string>
     <string name="editor_change_photo_content_description" msgid="820879708069864340">"Contactfoto wijzigen"</string>
@@ -481,9 +481,9 @@
     <string name="action_menu_back_from_search" msgid="8793348588949233348">"stoppen met zoeken"</string>
     <string name="description_clear_search" msgid="688023606766232904">"Zoekopdracht wissen"</string>
     <string name="select_account_dialog_title" msgid="5478489655696599219">"Account"</string>
-    <string name="set_default_account" msgid="4311613760725609801">"Altijd gebruiken voor oproepen"</string>
-    <string name="call_with_a_note" msgid="8389827628360791676">"Oproep met een notitie"</string>
-    <string name="call_subject_hint" msgid="3043028982108363572">"Typ een notitie om te verzenden met de oproep…"</string>
+    <string name="set_default_account" msgid="4311613760725609801">"Altijd gebruiken voor gesprekken"</string>
+    <string name="call_with_a_note" msgid="8389827628360791676">"Gesprek met een notitie"</string>
+    <string name="call_subject_hint" msgid="3043028982108363572">"Typ een notitie om te verzenden met het gesprek…"</string>
     <string name="send_and_call_button" msgid="7740295432834590737">"VERZENDEN EN BELLEN"</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-or/strings.xml b/res/values-or/strings.xml
new file mode 100644
index 0000000..1948097
--- /dev/null
+++ b/res/values-or/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="other">ଜଣ ଯୋଗାଯୋଗଙ୍କୁ ଡିଲିଟ୍ କରିଦିଆଗଲା</item>
+      <item quantity="one"> ଯୋଗାଯୋଗଙ୍କୁ ଡିଲିଟ୍ କରିଦିଆଗଲା</item>
+    </plurals>
+    <plurals name="contacts_count" formatted="false" msgid="8696793457340503668">
+      <item quantity="other"><xliff:g id="COUNT_1">%d</xliff:g> ଜଣ ଯୋଗାଯୋଗ</item>
+      <item quantity="one"><xliff:g id="COUNT_0">%d</xliff:g> ଯୋଗାଯୋଗ</item>
+    </plurals>
+    <plurals name="contacts_count_with_account" formatted="false" msgid="7402583111980220575">
+      <item quantity="other"><xliff:g id="COUNT_2">%1$d</xliff:g> ଜଣ ଯୋଗାଯୋଗ · <xliff:g id="ACCOUNT_3">%2$s</xliff:g></item>
+      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> ଯୋଗାଯୋଗ · <xliff:g id="ACCOUNT_1">%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="other">ମାଧ୍ୟମରେ ଯୋଗାଯୋଗ ଶେୟାର୍ କରନ୍ତୁ</item>
+      <item quantity="one">ମାଧ୍ୟମରେ ଯୋଗାଯୋଗ ଶେୟାର୍ କରନ୍ତୁ</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">"କିଛି ସମୟ ପୂର୍ବରୁ ପଠାଯାଇଥିବା 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>
+    <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">"MMS ନମ୍ବର୍‌କୁ କଲ୍ କରନ୍ତୁ"</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>କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_home" msgid="7524332261493162995">"ଘର ଫୋନ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_mobile" msgid="5200107250451030769">"ମୋବାଇଲ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_work" msgid="2269624156655267740">"କାର୍ଯ୍ୟସ୍ଥଳୀ ଫୋନ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_fax_work" msgid="8028189067816907075">"ୱର୍କ ଫାକ୍ସ ନମ୍ବର୍‌କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_fax_home" msgid="9204042076306809634">"ଘର ଫ୍ୟାକ୍ସ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_pager" msgid="7730404569637015192">"ପେଜର୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_other" msgid="806127844607642331">"SMS"</string>
+    <string name="sms_callback" msgid="5004824430094288752">"କଲବ୍ୟାକ୍‍ ଫୋନ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_car" msgid="7444227058437359641">"କାର୍‍ ଫୋନ୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_company_main" msgid="118970873419678087">"କମ୍ପାନୀ ମୁଖ୍ୟ ଫୋନ୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_isdn" msgid="8153785037515047845">"ISDN ଫୋନ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_main" msgid="8621625784504541679">"ମୁଖ୍ୟ ଫୋନ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_other_fax" msgid="3888842199855843152">"ଫାକ୍ସ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_radio" msgid="3329166673433967820">"ରେଡିଓ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_telex" msgid="9034802430065267848">"ଟେଲେକ୍ସ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_tty_tdd" msgid="6782284969132531532">"TTY/TDD ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_work_mobile" msgid="2459939960512702560">"କାର୍ଯ୍ୟସ୍ଥଳୀ ମୋବାଇଲ୍‍ ନମ୍ବର୍‍କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_work_pager" msgid="5566924423316960597">"କାର୍ଯ୍ୟ ପେଜର୍ ନମ୍ବର୍‌କୁ SMS ପଠାନ୍ତୁ"</string>
+    <string name="sms_assistant" msgid="2773424339923116234">"<xliff:g id="ASSISTANT">%s</xliff:g>କୁ SMS ପଠାନ୍ତୁ"</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="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">"SIM"</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">"SMS"</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">"ZIP କୋଡ୍"</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">"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>
+    <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">"SIM କାର୍ଡ"</string>
+    <string name="import_from_sim_summary_fmt" msgid="5169032449686348118">"SIM <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="other">%1$d ଜଣ ଯୋଗାଯୋଗ</item>
+      <item quantity="one">1 ଯୋଗାଯୋଗ</item>
+    </plurals>
+    <plurals name="import_from_sim_secondary_template" formatted="false" msgid="2484832025802907060">
+      <item quantity="other"><xliff:g id="COUNT_2">^1</xliff:g> ଜଣ ଯୋଗାଯୋଗ • <xliff:g id="PHONE_NUMBER_3">^2</xliff:g></item>
+      <item quantity="one"><xliff:g id="COUNT_0">^1</xliff:g> ଯୋଗାଯୋଗ • <xliff:g id="PHONE_NUMBER_1">^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">"vCardରୁ ଯୋଗାଯୋଗଙ୍କୁ ଇମ୍ପୋର୍ଟ କରିବେ?"</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">"vCard ଇମ୍ପୋର୍ଟ/ଏକ୍ସପୋର୍ଟ କ୍ୟାନ୍ସଲ୍ କରିହେଲା ନାହିଁ"</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">"vCard କମ୍ପୋଜର୍‍ ଠିକ୍‍‍‍‍‍‍‍‍‍‍ ଭାବରେ ଆରମ୍ଭ ହେଲାନାହିଁ।"</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">"vCard ଡାଟା ପଢ଼ିହେଲା ନାହିଁ"</string>
+    <string name="importing_vcard_finished_title" msgid="3341541727268747967">"vCard <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">"vCard ଇମ୍ପୋର୍ଟ ଅନୁରୋଧ ଅଗ୍ରାହ୍ୟ ହୋଇଛି। ପରେ ଚେଷ୍ଟା କରନ୍ତୁ।"</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>
+    <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">"URL ଖୋଲିହେଲା ନାହିଁ।"</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">"ଆପଣଙ୍କ SIM କାର୍ଡରେ କୌଣସି ଯୋଗାଯୋଗ ନାହାନ୍ତି"</string>
+    <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"ଏହି ଯୋଗାଯୋଗ ପୂର୍ବରୁ ଆପଣଙ୍କ ତାଲିକାରେ ଅଛି"</string>
+    <plurals name="sim_import_success_toast_fmt" formatted="false" msgid="8572156521110906443">
+      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> SIMରେ ଥିବା ଯୋଗାଯୋଗଗୁଡ଼ିକୁ ଇମ୍ପୋର୍ଟ କରାଗଲା</item>
+      <item quantity="one">1 SIMରେ ଥିବା ଯୋଗାଯୋଗ ଇମ୍ପୋର୍ଟ କରାଗଲା</item>
+    </plurals>
+    <string name="sim_import_failed_toast" msgid="5559267299793622705">"SIMରେ ଥିବା ଯୋଗାଯୋଗ ଇମ୍ପୋର୍ଟ କରିହେଲା ନାହିଁ"</string>
+    <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="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 Contactsରେ, ବରଂ ୱେବ୍‍ ଓ ଆପଣଙ୍କ ଡିଭାଇସ୍‍ଗୁଡ଼ିକ ମଧ୍ୟରେ ଅପ୍‍-ଟୁ-ଡେଟ୍‍ ରଖାଯିବ।"</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">"SIM"</string>
+    <string name="show_more_content_description" msgid="4277410425912984722">"ଅଧିକ ଦେଖାନ୍ତୁ"</string>
+    <string name="importing_sim_finished_title" msgid="5196369441294050721">"SIM କାର୍ଡ ଇମ୍ପୋର୍ଟ କରିବା ଶେଷ ହୋଇଛି"</string>
+    <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="yes_button" msgid="1268479086848288060">"ହଁ"</string>
+    <string name="no_button" msgid="5742815694687835125">"ନାହିଁ"</string>
+</resources>
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
index 82fe965..fcd1521 100644
--- a/res/values-pl/strings.xml
+++ b/res/values-pl/strings.xml
@@ -446,7 +446,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"Nie można odczytać danych vCard"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"Zakończono importowanie pliku vCard <xliff:g id="FILENAME">%s</xliff:g>"</string>
     <string name="importing_vcard_canceled_title" msgid="2147475978165599336">"Anulowano importowanie pliku <xliff:g id="FILENAME">%s</xliff:g>"</string>
-    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Plik <xliff:g id="FILENAME">%s</xliff:g> zostanie za chwilę zaimportowany."</string>
+    <string name="vcard_import_will_start_message" msgid="2804911199145873396">"Plik „<xliff:g id="FILENAME">%s</xliff:g>” zostanie za chwilę zaimportowany."</string>
     <string name="vcard_import_will_start_message_with_default_name" msgid="1022969530654129470">"Plik zostanie za chwilę zaimportowany."</string>
     <string name="vcard_import_request_rejected_message" msgid="2890471184508516011">"Żądanie importu danych vCard zostało odrzucone. Spróbuj ponownie później."</string>
     <string name="contacts_export_will_start_message" msgid="8538705791417534431">"Kontakty zostaną wyeksportowane wkrótce."</string>
diff --git a/res/values-pt-rBR/strings.xml b/res/values-pt-rBR/strings.xml
index f0b10f3..5231587 100644
--- a/res/values-pt-rBR/strings.xml
+++ b/res/values-pt-rBR/strings.xml
@@ -393,7 +393,7 @@
     <string name="savingDisplayGroups" msgid="2133152192716475939">"Salvando opções de exibição…"</string>
     <string name="listCustomView" msgid="1840624396582117590">"Visualização personalizada"</string>
     <string name="dialog_new_contact_account" msgid="4969619718062454756">"Salvar contatos importados em:"</string>
-    <string name="import_from_sim" msgid="6912071635295799131">"Cartão SIM"</string>
+    <string name="import_from_sim" msgid="6912071635295799131">"Chip"</string>
     <string name="import_from_sim_summary_fmt" msgid="5169032449686348118">"SIM <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 contato</item>
@@ -506,14 +506,14 @@
     <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"O contato foi removido"</string>
     <string name="sim_import_button_text" msgid="4270841592496619317">"Importar"</string>
     <string name="sim_import_title_none_selected" msgid="6910517331401970693">"Selecionar contatos"</string>
-    <string name="sim_import_empty_message" msgid="7743815244380189651">"Não há contatos no seu cartão SIM"</string>
+    <string name="sim_import_empty_message" msgid="7743815244380189651">"Não há contatos no seu chip"</string>
     <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"O contato já existe na sua lista"</string>
     <plurals name="sim_import_success_toast_fmt" formatted="false" msgid="8572156521110906443">
-      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> contato importado do SIM</item>
-      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> contatos importados do SIM</item>
+      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> contato importado do chip</item>
+      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> contatos importados do chip</item>
     </plurals>
-    <string name="sim_import_failed_toast" msgid="5559267299793622705">"Falha ao importar contatos do SIM"</string>
-    <string name="sim_import_title" msgid="2511154832820812822">"Importar do SIM"</string>
+    <string name="sim_import_failed_toast" msgid="5559267299793622705">"Falha ao importar contatos do chip"</string>
+    <string name="sim_import_title" msgid="2511154832820812822">"Importar do chip"</string>
     <string name="sim_import_cancel_content_description" msgid="1619832410253424452">"Cancelar"</string>
     <string name="auto_sync_off" msgid="2180147284456026587">"A sincronização automática está desativada. Toque para ativar."</string>
     <string name="dismiss_sync_alert" msgid="8941131776605093596">"Dispensar"</string>
@@ -524,10 +524,10 @@
     <string name="connection_error_message" msgid="7046408921529247089">"Sem conexão"</string>
     <string name="single_sim_display_label" msgid="6985770499439371497">"SIM"</string>
     <string name="show_more_content_description" msgid="4277410425912984722">"Mostrar mais"</string>
-    <string name="importing_sim_finished_title" msgid="5196369441294050721">"A importação do cartão SIM foi concluída"</string>
+    <string name="importing_sim_finished_title" msgid="5196369441294050721">"A importação do chip foi concluída"</string>
     <string name="importing_sim_failed_title" msgid="39706901030537985">"Falha na importação"</string>
-    <string name="importing_sim_failed_message" msgid="3345258302998021066">"Não foi possível importar os contatos do cartão SIM"</string>
-    <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"Importando do cartão SIM"</string>
+    <string name="importing_sim_failed_message" msgid="3345258302998021066">"Não foi possível importar os contatos do chip"</string>
+    <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"Importando do chip"</string>
     <string name="contacts_default_notification_channel" msgid="4754058700611188581">"Notificações"</string>
     <string name="yes_button" msgid="1268479086848288060">"Sim"</string>
     <string name="no_button" msgid="5742815694687835125">"Não"</string>
diff --git a/res/values-pt-rPT/strings.xml b/res/values-pt-rPT/strings.xml
index 1412a9a..c7b1881 100644
--- a/res/values-pt-rPT/strings.xml
+++ b/res/values-pt-rPT/strings.xml
@@ -345,7 +345,7 @@
     <string name="label_notes" msgid="8337354953278341042">"Notas"</string>
     <string name="label_custom_field" msgid="1994056912242214426">"Personalizado"</string>
     <string name="label_sip_address" msgid="7252153678613978127">"SIP"</string>
-    <string name="websiteLabelsGroup" msgid="4202998982804009261">"Web site"</string>
+    <string name="websiteLabelsGroup" msgid="4202998982804009261">"Website"</string>
     <string name="groupsLabel" msgid="7000816729542098972">"Etiquetas"</string>
     <string name="email_home" msgid="8573740658148184279">"Enviar email para residência"</string>
     <string name="email_mobile" msgid="2042889209787989814">"Enviar email para telemóvel"</string>
diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml
index f0b10f3..5231587 100644
--- a/res/values-pt/strings.xml
+++ b/res/values-pt/strings.xml
@@ -393,7 +393,7 @@
     <string name="savingDisplayGroups" msgid="2133152192716475939">"Salvando opções de exibição…"</string>
     <string name="listCustomView" msgid="1840624396582117590">"Visualização personalizada"</string>
     <string name="dialog_new_contact_account" msgid="4969619718062454756">"Salvar contatos importados em:"</string>
-    <string name="import_from_sim" msgid="6912071635295799131">"Cartão SIM"</string>
+    <string name="import_from_sim" msgid="6912071635295799131">"Chip"</string>
     <string name="import_from_sim_summary_fmt" msgid="5169032449686348118">"SIM <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 contato</item>
@@ -506,14 +506,14 @@
     <string name="dynamic_shortcut_contact_removed_message" msgid="6845645831837615899">"O contato foi removido"</string>
     <string name="sim_import_button_text" msgid="4270841592496619317">"Importar"</string>
     <string name="sim_import_title_none_selected" msgid="6910517331401970693">"Selecionar contatos"</string>
-    <string name="sim_import_empty_message" msgid="7743815244380189651">"Não há contatos no seu cartão SIM"</string>
+    <string name="sim_import_empty_message" msgid="7743815244380189651">"Não há contatos no seu chip"</string>
     <string name="sim_import_contact_exists_toast" msgid="1503743663717316732">"O contato já existe na sua lista"</string>
     <plurals name="sim_import_success_toast_fmt" formatted="false" msgid="8572156521110906443">
-      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> contato importado do SIM</item>
-      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> contatos importados do SIM</item>
+      <item quantity="one"><xliff:g id="COUNT">%d</xliff:g> contato importado do chip</item>
+      <item quantity="other"><xliff:g id="COUNT">%d</xliff:g> contatos importados do chip</item>
     </plurals>
-    <string name="sim_import_failed_toast" msgid="5559267299793622705">"Falha ao importar contatos do SIM"</string>
-    <string name="sim_import_title" msgid="2511154832820812822">"Importar do SIM"</string>
+    <string name="sim_import_failed_toast" msgid="5559267299793622705">"Falha ao importar contatos do chip"</string>
+    <string name="sim_import_title" msgid="2511154832820812822">"Importar do chip"</string>
     <string name="sim_import_cancel_content_description" msgid="1619832410253424452">"Cancelar"</string>
     <string name="auto_sync_off" msgid="2180147284456026587">"A sincronização automática está desativada. Toque para ativar."</string>
     <string name="dismiss_sync_alert" msgid="8941131776605093596">"Dispensar"</string>
@@ -524,10 +524,10 @@
     <string name="connection_error_message" msgid="7046408921529247089">"Sem conexão"</string>
     <string name="single_sim_display_label" msgid="6985770499439371497">"SIM"</string>
     <string name="show_more_content_description" msgid="4277410425912984722">"Mostrar mais"</string>
-    <string name="importing_sim_finished_title" msgid="5196369441294050721">"A importação do cartão SIM foi concluída"</string>
+    <string name="importing_sim_finished_title" msgid="5196369441294050721">"A importação do chip foi concluída"</string>
     <string name="importing_sim_failed_title" msgid="39706901030537985">"Falha na importação"</string>
-    <string name="importing_sim_failed_message" msgid="3345258302998021066">"Não foi possível importar os contatos do cartão SIM"</string>
-    <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"Importando do cartão SIM"</string>
+    <string name="importing_sim_failed_message" msgid="3345258302998021066">"Não foi possível importar os contatos do chip"</string>
+    <string name="importing_sim_in_progress_title" msgid="3638299581276676109">"Importando do chip"</string>
     <string name="contacts_default_notification_channel" msgid="4754058700611188581">"Notificações"</string>
     <string name="yes_button" msgid="1268479086848288060">"Sim"</string>
     <string name="no_button" msgid="5742815694687835125">"Não"</string>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index 2bf2b7d..d72da36 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>
@@ -446,10 +446,10 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"Ошибка чтения vCard-файла"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"Импорт файла vCard <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" 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-sw/strings.xml b/res/values-sw/strings.xml
index c50b779..cdf0ff0 100644
--- a/res/values-sw/strings.xml
+++ b/res/values-sw/strings.xml
@@ -175,8 +175,8 @@
     <string name="delete_group_dialog_message" msgid="335713829185261371">"Ungependa kufuta lebo iitwayo \"<xliff:g id="GROUP_LABEL">%1$s</xliff:g>\"? (Anwani zenyewe hazitafutwa.)"</string>
     <string name="toast_join_with_empty_contact" msgid="1215465657839085613">"Andika jina ya anwani kabla ya kuiunganisha na nyingine."</string>
     <string name="copy_text" msgid="3257145021583508761">"Nakili kwenye ubao wa kunakili"</string>
-    <string name="set_default" msgid="4417505153468300351">"Weka chaguo-msingi"</string>
-    <string name="clear_default" msgid="7193185801596678067">"Ondoa chaguo-msingi"</string>
+    <string name="set_default" msgid="4417505153468300351">"Weka chaguomsingi"</string>
+    <string name="clear_default" msgid="7193185801596678067">"Ondoa chaguomsingi"</string>
     <string name="toast_text_copied" msgid="5143776250008541719">"Maandishi yamenakiliwa"</string>
     <string name="cancel_confirmation_dialog_message" msgid="9008214737653278989">"Una uhakika hutaki kuhifadhi mabadiliko uliyofanya?"</string>
     <string name="cancel_confirmation_dialog_cancel_editing_button" msgid="3057023972074640671">"Tupa"</string>
@@ -456,7 +456,7 @@
     <string name="display_options_view_given_name_first" msgid="3616004640258761473">"Anza kwa jina la kwanza"</string>
     <string name="display_options_view_family_name_first" msgid="956445100777296467">"Anza kwa jina la mwisho"</string>
     <string name="settings_accounts" msgid="350219740670774576">"Akaunti"</string>
-    <string name="default_editor_account" msgid="699591683362420991">"Akaunti chaguo-msingi ya kuhifadhi anwani mpya"</string>
+    <string name="default_editor_account" msgid="699591683362420991">"Akaunti chaguomsingi ya kuhifadhi anwani mpya"</string>
     <string name="settings_my_info_title" msgid="1534272456405343119">"Maelezo yangu"</string>
     <string name="set_up_profile" msgid="7370213843590143771">"Weka wasifu wako"</string>
     <string name="setting_about" msgid="7014388749752042863">"Kuhusu Anwani"</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..14f91cb 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>
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"ไม่สามารถอ่านข้อมูล vCard"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"นำเข้า vCard <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" 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>
diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml
index 7b12ce2..f8d5c00 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>
@@ -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">"Versiyasi"</string>
     <string name="about_open_source_licenses" msgid="6479990452352919641">"Ochiq kodli DT litsenziyalari"</string>
-    <string name="about_open_source_licenses_summary" msgid="57418386931763994">"Ochiq kodli DT litsenziyalari haqida ma’lumot"</string>
+    <string name="about_open_source_licenses_summary" msgid="57418386931763994">"Ochiq kodli DT litsenziyalari haqida axborot"</string>
     <string name="about_privacy_policy" msgid="3705518622499152626">"Maxfiylik siyosati"</string>
     <string name="about_terms_of_service" msgid="4642400812150296723">"Foydalanish shartlari"</string>
     <string name="activity_title_licenses" msgid="5467767062737708066">"Ochiq kodli DT litsenziyalari"</string>
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
index 2da207c..4ec9ac2 100644
--- a/res/values-zh-rCN/strings.xml
+++ b/res/values-zh-rCN/strings.xml
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"无法读取 vCard 数据"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"导入 vCard <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" 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>
diff --git a/res/values-zh-rHK/strings.xml b/res/values-zh-rHK/strings.xml
index b8a86bb..1b3010e 100644
--- a/res/values-zh-rHK/strings.xml
+++ b/res/values-zh-rHK/strings.xml
@@ -434,7 +434,7 @@
     <string name="reading_vcard_failed_title" msgid="4251647443358422855">"無法讀取 vCard 資料"</string>
     <string name="importing_vcard_finished_title" msgid="3341541727268747967">"已完成匯入 vCard <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" 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>
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 3f645ae..9f25726 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 d0e0658..bfd1662 100644
--- a/src/com/android/contacts/util/ContactPhotoUtils.java
+++ b/src/com/android/contacts/util/ContactPhotoUtils.java
@@ -25,7 +25,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;