Import translations. DO NOT MERGE am: 15ce4a613a -s ours am: d6e5c9b131 -s ours am: 8dcdcf34e5 -s ours
am: 0e8d77ff64 -s ours
Change-Id: I47522897c89ed995f2397771981780c7e67cbb71
diff --git a/res-common/drawable-hdpi/ic_call_note_white_24dp.png b/res-common/drawable-hdpi/ic_call_note_white_24dp.png
new file mode 100644
index 0000000..503e58e
--- /dev/null
+++ b/res-common/drawable-hdpi/ic_call_note_white_24dp.png
Binary files differ
diff --git a/res-common/drawable-hdpi/ic_history_white_drawable_24dp.png b/res-common/drawable-hdpi/ic_history_white_drawable_24dp.png
new file mode 100644
index 0000000..703d30b
--- /dev/null
+++ b/res-common/drawable-hdpi/ic_history_white_drawable_24dp.png
Binary files differ
diff --git a/res-common/drawable-mdpi/ic_call_note_white_24dp.png b/res-common/drawable-mdpi/ic_call_note_white_24dp.png
new file mode 100644
index 0000000..9d359db
--- /dev/null
+++ b/res-common/drawable-mdpi/ic_call_note_white_24dp.png
Binary files differ
diff --git a/res-common/drawable-mdpi/ic_history_white_drawable_24dp.png b/res-common/drawable-mdpi/ic_history_white_drawable_24dp.png
new file mode 100644
index 0000000..b3000d3
--- /dev/null
+++ b/res-common/drawable-mdpi/ic_history_white_drawable_24dp.png
Binary files differ
diff --git a/res-common/drawable-xhdpi/ic_call_note_white_24dp.png b/res-common/drawable-xhdpi/ic_call_note_white_24dp.png
new file mode 100644
index 0000000..40eed1d
--- /dev/null
+++ b/res-common/drawable-xhdpi/ic_call_note_white_24dp.png
Binary files differ
diff --git a/res-common/drawable-xhdpi/ic_history_white_drawable_24dp.png b/res-common/drawable-xhdpi/ic_history_white_drawable_24dp.png
new file mode 100644
index 0000000..e188d4a
--- /dev/null
+++ b/res-common/drawable-xhdpi/ic_history_white_drawable_24dp.png
Binary files differ
diff --git a/res-common/drawable-xxhdpi/ic_call_note_white_24dp.png b/res-common/drawable-xxhdpi/ic_call_note_white_24dp.png
new file mode 100644
index 0000000..2656cad
--- /dev/null
+++ b/res-common/drawable-xxhdpi/ic_call_note_white_24dp.png
Binary files differ
diff --git a/res-common/drawable-xxhdpi/ic_history_white_drawable_24dp.png b/res-common/drawable-xxhdpi/ic_history_white_drawable_24dp.png
new file mode 100644
index 0000000..f44df1a
--- /dev/null
+++ b/res-common/drawable-xxhdpi/ic_history_white_drawable_24dp.png
Binary files differ
diff --git a/res-common/drawable-xxxhdpi/ic_call_note_white_24dp.png b/res-common/drawable-xxxhdpi/ic_call_note_white_24dp.png
new file mode 100644
index 0000000..903c162
--- /dev/null
+++ b/res-common/drawable-xxxhdpi/ic_call_note_white_24dp.png
Binary files differ
diff --git a/res-common/drawable-xxxhdpi/ic_history_white_drawable_24dp.png b/res-common/drawable-xxxhdpi/ic_history_white_drawable_24dp.png
new file mode 100644
index 0000000..5b96af5
--- /dev/null
+++ b/res-common/drawable-xxxhdpi/ic_history_white_drawable_24dp.png
Binary files differ
diff --git a/res-common/drawable/dialog_background_material.xml b/res-common/drawable/dialog_background_material.xml
new file mode 100644
index 0000000..fb586a0
--- /dev/null
+++ b/res-common/drawable/dialog_background_material.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2015 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<inset xmlns:android="http://schemas.android.com/apk/res/android"
+ android:inset="16dp">
+ <shape android:shape="rectangle">
+ <corners android:radius="2dp" />
+ <solid android:color="@color/call_subject_history_background" />
+ </shape>
+</inset>
diff --git a/res-common/layout/call_subject_history.xml b/res-common/layout/call_subject_history.xml
new file mode 100644
index 0000000..5f6ef3a
--- /dev/null
+++ b/res-common/layout/call_subject_history.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2015 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License
+ -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/background"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@android:color/transparent" >
+
+ <ListView
+ android:id="@+id/subject_list"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_alignParentBottom="true"
+ android:background="@color/call_subject_history_background"
+ android:divider="@null"
+ android:elevation="8dp" />
+
+</RelativeLayout>
\ No newline at end of file
diff --git a/res-common/layout/call_subject_history_list_item.xml b/res-common/layout/call_subject_history_list_item.xml
new file mode 100644
index 0000000..b8cce47
--- /dev/null
+++ b/res-common/layout/call_subject_history_list_item.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2015 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License
+ -->
+
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@android:id/text1"
+ android:gravity="center_vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingStart="@dimen/call_subject_dialog_margin"
+ android:paddingEnd="@dimen/call_subject_dialog_margin"
+ android:paddingTop="@dimen/call_subject_history_item_padding"
+ android:paddingBottom="@dimen/call_subject_history_item_padding"
+ android:singleLine="true"
+ android:textColor="@color/dialtacts_primary_text_color"
+ android:textSize="@dimen/call_subject_dialog_primary_text_size" />
diff --git a/res-common/layout/dialog_call_subject.xml b/res-common/layout/dialog_call_subject.xml
new file mode 100644
index 0000000..d6365c2
--- /dev/null
+++ b/res-common/layout/dialog_call_subject.xml
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2015 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License
+ -->
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@android:color/transparent"
+ android:id="@+id/call_subject_dialog"
+ android:orientation="vertical">
+
+ <RelativeLayout
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:layout_width="match_parent">
+
+ <!-- The call subject dialog will be centered in the space above the subject list. -->
+ <LinearLayout
+ android:id="@+id/dialog_view"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:clickable="true"
+ android:theme="@android:style/Theme.Material.Light.Dialog"
+ android:elevation="16dp"
+ android:layout_centerInParent="true"
+ android:background="@drawable/dialog_background_material">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_marginStart="@dimen/call_subject_dialog_margin"
+ android:layout_marginEnd="@dimen/call_subject_dialog_margin"
+ android:layout_marginTop="@dimen/call_subject_dialog_margin">
+
+ <QuickContactBadge
+ android:id="@+id/contact_photo"
+ android:layout_width="@dimen/call_subject_dialog_contact_photo_size"
+ android:layout_height="@dimen/call_subject_dialog_contact_photo_size"
+ android:layout_gravity="top"
+ android:focusable="true"
+ android:layout_marginEnd="@dimen/call_subject_dialog_margin" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:gravity="center_vertical">
+
+ <TextView
+ android:id="@+id/name"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="@color/dialtacts_primary_text_color"
+ android:textSize="@dimen/call_subject_dialog_secondary_text_size"
+ android:singleLine="true" />
+
+ <TextView
+ android:id="@+id/number"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:layout_marginTop="@dimen/call_subject_dialog_between_line_margin"
+ android:textColor="@color/dialtacts_secondary_text_color"
+ android:textSize="@dimen/call_subject_dialog_secondary_text_size"
+ android:singleLine="true" />
+ </LinearLayout>
+ </LinearLayout>
+
+ <EditText
+ android:id="@+id/call_subject"
+ android:hint="@string/call_subject_hint"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:layout_gravity="top"
+ android:textColor="@color/dialtacts_secondary_text_color"
+ android:textSize="@dimen/call_subject_dialog_secondary_text_size"
+ android:gravity="top"
+ android:background="@null"
+ android:layout_marginTop="@dimen/call_subject_dialog_edit_spacing"
+ android:layout_marginStart="@dimen/call_subject_dialog_margin"
+ android:layout_marginEnd="@dimen/call_subject_dialog_margin"
+ />
+
+ <TextView
+ android:id="@+id/character_limit"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="@color/dialtacts_secondary_text_color"
+ android:textSize="@dimen/call_subject_dialog_secondary_text_size"
+ android:singleLine="true"
+ android:layout_marginStart="@dimen/call_subject_dialog_margin"
+ android:layout_marginEnd="@dimen/call_subject_dialog_margin"
+ android:layout_marginTop="@dimen/call_subject_dialog_margin"
+ android:layout_marginBottom="@dimen/call_subject_dialog_margin"/>
+
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1dp"
+ android:background="@color/call_subject_divider"/>
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="@dimen/call_subject_dialog_margin"
+ android:layout_marginEnd="@dimen/call_subject_dialog_margin"
+ android:layout_marginTop="@dimen/call_subject_dialog_margin"
+ android:layout_marginBottom="@dimen/call_subject_dialog_margin">
+
+ <ImageView
+ android:id="@+id/history_button"
+ android:layout_width="25dp"
+ android:layout_height="25dp"
+ android:src="@drawable/ic_history_white_drawable_24dp"
+ android:tint="@color/call_subject_history_icon"
+ android:layout_alignParentStart="true"
+ android:layout_centerVertical="true" />
+
+ <TextView
+ android:id="@+id/send_and_call_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/send_and_call_button"
+ android:textColor="@color/call_subject_button"
+ android:textSize="@dimen/call_subject_dialog_secondary_text_size"
+ android:singleLine="true"
+ android:layout_alignParentEnd="true"
+ android:layout_centerVertical="true" />
+
+ </RelativeLayout>
+ </LinearLayout>
+ </RelativeLayout>
+ <!-- The subject list is pinned to the bottom of the screen. -->
+ <ListView
+ android:id="@+id/subject_list"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_below="@id/dialog_view"
+ android:background="@color/call_subject_history_background"
+ android:divider="@null"
+ android:elevation="8dp" />
+
+</LinearLayout>
\ No newline at end of file
diff --git a/res-common/values-af/strings.xml b/res-common/values-af/strings.xml
index 8ec4d45..5e3007f 100644
--- a/res-common/values-af/strings.xml
+++ b/res-common/values-af/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Rekening"</string>
<string name="set_default_account" msgid="3865970860434642695">"Gebruik dit altyd vir oproepe"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Bel met"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Oproep met \'n nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Tik \'n nota om saam met oproep te stuur …"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"STUUR EN BEL"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-am/strings.xml b/res-common/values-am/strings.xml
index 6c37fcc..3e77d79 100644
--- a/res-common/values-am/strings.xml
+++ b/res-common/values-am/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"መለያ"</string>
<string name="set_default_account" msgid="3865970860434642695">"ለጥሪዎች ሁልጊዜ ይህንን ተጠቀም"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ይደውሉ ከዚህ ጋር"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ከማስታወሻ ጋር ደውል"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ከጥሪ ጋር ለመላክ የማስታወሻ ጽሑፍ ይተይቡ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ላክ እና ደውል"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ar/strings.xml b/res-common/values-ar/strings.xml
index 5aea8bc..6e9a6d3 100644
--- a/res-common/values-ar/strings.xml
+++ b/res-common/values-ar/strings.xml
@@ -254,4 +254,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"الحساب"</string>
<string name="set_default_account" msgid="3865970860434642695">"استخدام هذا للمكالمات دائمًا"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"الاتصال باستخدام"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"مكالمة مع ملاحظة"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"اكتب ملاحظة لإرسالها مع المكالمة ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"الإرسال والاتصال"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-az-rAZ/strings.xml b/res-common/values-az-rAZ/strings.xml
index 09d6fa5..1467398 100644
--- a/res-common/values-az-rAZ/strings.xml
+++ b/res-common/values-az-rAZ/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Hesab"</string>
<string name="set_default_account" msgid="3865970860434642695">"Həmişə bu zənglər üçün istifadə edin"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Çağrı üçün SIM:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Qeyd ilə zəng edin"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Zəng ilə göndərmək üçün qeyd yazın..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"GÖNDƏRİN & ZƏNG EDİN"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-bg/strings.xml b/res-common/values-bg/strings.xml
index 35ac313..c4c4c9b 100644
--- a/res-common/values-bg/strings.xml
+++ b/res-common/values-bg/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Профил"</string>
<string name="set_default_account" msgid="3865970860434642695">"Винаги да се използва за обаждания"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Обаждане чрез"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Обаждане, включващо бележка"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Напишете придружаваща бележка, която ще се изпрати при извършване на обаждането..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ИЗПРАЩАНЕ И ОБАЖДАНЕ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-bn-rBD/strings.xml b/res-common/values-bn-rBD/strings.xml
index 7f256af..6ad9a63 100644
--- a/res-common/values-bn-rBD/strings.xml
+++ b/res-common/values-bn-rBD/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"অ্যাকাউন্ট"</string>
<string name="set_default_account" msgid="3865970860434642695">"কলের জন্য সবসময় এটি ব্যবহার করুন"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"এর মাধ্যমে কল করুন"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"একটি নোট সহ কল করুন"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"কলের সাথে পাঠানোর জন্য একটি নোট লিখুন ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"পাঠান এবং কল করুন"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ca/strings.xml b/res-common/values-ca/strings.xml
index 687cd90..e35a0ee 100644
--- a/res-common/values-ca/strings.xml
+++ b/res-common/values-ca/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Compte"</string>
<string name="set_default_account" msgid="3865970860434642695">"Utilitza sempre per a les trucades"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Truca mitjançant"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Trucada amb una nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escriu una nota per enviar-la juntament amb la trucada..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIA NOTA I TRUCA"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-cs/strings.xml b/res-common/values-cs/strings.xml
index 773c881..d9a4fa5 100644
--- a/res-common/values-cs/strings.xml
+++ b/res-common/values-cs/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Účet"</string>
<string name="set_default_account" msgid="3865970860434642695">"Vždy používat pro hovory"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Volat pomocí"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Volání s poznámkou"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Zadejte poznámku, která se odešle pomocí volání…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ODESLAT A ZAVOLAT"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-da/strings.xml b/res-common/values-da/strings.xml
index 8ca2d1b..ec8ff2a 100644
--- a/res-common/values-da/strings.xml
+++ b/res-common/values-da/strings.xml
@@ -63,7 +63,7 @@
<string name="sms_mms" msgid="4887206338311086612">"Send sms til mms"</string>
<string name="description_video_call" msgid="4907306403398614909">"Foretag videoopkald"</string>
<string name="clearFrequentsConfirmation_title" msgid="1482750234535491083">"Vil du rydde de ofte kontaktede?"</string>
- <string name="clearFrequentsConfirmation" msgid="1117709667923254374">"Hvis du gør dette, rydder du listen over personer, som du ofte kontakter, i appene Kontaktpersoner og Opkald. Du vil samtidig tvinge e-mailapps til at lære dine adressepræferencer fra bunden."</string>
+ <string name="clearFrequentsConfirmation" msgid="1117709667923254374">"Hvis du gør dette, rydder du listen over personer, som du ofte kontakter, i appene Kontaktpersoner og Telefon. Du vil samtidig tvinge e-mailapps til at lære dine adressepræferencer fra bunden."</string>
<string name="clearFrequentsProgress_title" msgid="3738406170865048982">"Ofte kontaktede personer ryddes…"</string>
<string name="status_available" msgid="4832569677396634846">"Tilgængelig"</string>
<string name="status_away" msgid="6267905184545881094">"Ikke til stede"</string>
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Brug altid ved opkald"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ring med"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Ring med en note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Indtast en note, som skal sendes ved opkald..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SEND, OG RING OP"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-de/strings.xml b/res-common/values-de/strings.xml
index 0421bdc..c149408 100644
--- a/res-common/values-de/strings.xml
+++ b/res-common/values-de/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Diese SIM für alle Anrufe verwenden"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Anrufen mit"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Mit einer Notiz anrufen"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Notiz eingeben, die beim Anrufen gesendet wird..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"Senden & anrufen"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-el/strings.xml b/res-common/values-el/strings.xml
index ab24fe4..231005c 100644
--- a/res-common/values-el/strings.xml
+++ b/res-common/values-el/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Λογαριασμός"</string>
<string name="set_default_account" msgid="3865970860434642695">"Χρήση πάντα για κλήσεις"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Κλήση με"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Κλήση με σημείωση"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Πληκτρολογήστε μια σημείωση για αποστολή με την κλήση…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ΑΠΟΣΤΟΛΗ ΚΑΙ ΚΛΗΣΗ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-en-rAU/strings.xml b/res-common/values-en-rAU/strings.xml
index c0ec679..2b82266 100644
--- a/res-common/values-en-rAU/strings.xml
+++ b/res-common/values-en-rAU/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Always use this for calls"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Call with"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Call with a note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Type a note to send with call ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SEND & CALL"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-en-rGB/strings.xml b/res-common/values-en-rGB/strings.xml
index c0ec679..2b82266 100644
--- a/res-common/values-en-rGB/strings.xml
+++ b/res-common/values-en-rGB/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Always use this for calls"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Call with"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Call with a note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Type a note to send with call ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SEND & CALL"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-en-rIN/strings.xml b/res-common/values-en-rIN/strings.xml
index c0ec679..2b82266 100644
--- a/res-common/values-en-rIN/strings.xml
+++ b/res-common/values-en-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Always use this for calls"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Call with"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Call with a note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Type a note to send with call ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SEND & CALL"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-es-rUS/strings.xml b/res-common/values-es-rUS/strings.xml
index a25d851..873545f 100644
--- a/res-common/values-es-rUS/strings.xml
+++ b/res-common/values-es-rUS/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Cuenta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Usar siempre para llamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Llamar con"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Llamada con una nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escribe una nota para enviar con la llamada…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR Y LLAMAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-es/strings.xml b/res-common/values-es/strings.xml
index eae06ad..69b6ebd 100644
--- a/res-common/values-es/strings.xml
+++ b/res-common/values-es/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Cuenta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Usar siempre esta para llamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Llamar con"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Llamada con una nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escribe una nota para enviarla con la llamada..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR Y LLAMAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-et-rEE/strings.xml b/res-common/values-et-rEE/strings.xml
index ccfa03f..3f862be 100644
--- a/res-common/values-et-rEE/strings.xml
+++ b/res-common/values-et-rEE/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Kasuta helistamiseks alati seda"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Helistamine kontoga"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Kõne koos märkusega"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Sisestage märkus, mis koos kõnega saata ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SAADA JA HELISTA"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-eu-rES/strings.xml b/res-common/values-eu-rES/strings.xml
index 0e07e71..dae52c8 100644
--- a/res-common/values-eu-rES/strings.xml
+++ b/res-common/values-eu-rES/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Kontua"</string>
<string name="set_default_account" msgid="3865970860434642695">"Erabili beti hau deietarako"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Deitu kontu honekin:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Egin deia oharrarekin"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Idatzi deiarekin batera bidali beharreko oharra…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"BIDALI ETA DEITU"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-fa/strings.xml b/res-common/values-fa/strings.xml
index 21e97a1..5aa61ea 100644
--- a/res-common/values-fa/strings.xml
+++ b/res-common/values-fa/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"حساب"</string>
<string name="set_default_account" msgid="3865970860434642695">"همیشه این سیم برای تماس استفاده شود"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"تماس با"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"تماس به همراه یادداشت"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"یادداشتی بنویسید که همراه تماس ارسال شود…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ارسال و تماس"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-fi/strings.xml b/res-common/values-fi/strings.xml
index d2d3a9a..2cbc948 100644
--- a/res-common/values-fi/strings.xml
+++ b/res-common/values-fi/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Tili"</string>
<string name="set_default_account" msgid="3865970860434642695">"Käytä kaikille puheluille"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Valitse puhelinoperaattori:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Soita ja lähetä muistiinpano"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Kirjoita muistiinpano lähetettäväksi puhelun kanssa…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"LÄHETÄ ja SOITA"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-fr-rCA/strings.xml b/res-common/values-fr-rCA/strings.xml
index a914f81..a864ea6 100644
--- a/res-common/values-fr-rCA/strings.xml
+++ b/res-common/values-fr-rCA/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Compte"</string>
<string name="set_default_account" msgid="3865970860434642695">"Toujours l\'utiliser pour les appels"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Appeler avec"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Appeler avec une note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Tapez une note à envoyer avec l\'appel..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVOYER ET APPELER"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-fr/strings.xml b/res-common/values-fr/strings.xml
index 0f35f48..13c8549 100644
--- a/res-common/values-fr/strings.xml
+++ b/res-common/values-fr/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Compte"</string>
<string name="set_default_account" msgid="3865970860434642695">"Toujours l\'utiliser pour les appels"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Appeler avec"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Appeler avec une note"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Saisissez une note pour accompagner l\'appel..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVOYER L\'OBJET ET APPELER"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-gl-rES/strings.xml b/res-common/values-gl-rES/strings.xml
index 98e3a49..ae01ac6 100644
--- a/res-common/values-gl-rES/strings.xml
+++ b/res-common/values-gl-rES/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Conta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Usar sempre para as chamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Chamar con"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Chamar cunha nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escribe unha nota para enviala coa chamada…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR e CHAMAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-gu-rIN/strings.xml b/res-common/values-gu-rIN/strings.xml
index 68d145d..76eb9f0 100644
--- a/res-common/values-gu-rIN/strings.xml
+++ b/res-common/values-gu-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"એકાઉન્ટ"</string>
<string name="set_default_account" msgid="3865970860434642695">"કૉલ્સ માટે આનો ઉપયોગ હંમેશાં કરો"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"આની સાથે કૉલ કરો"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"નોંધ સાથે કૉલ કરો"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"કૉલ સાથે મોકલવા માટે એક નોંધ લખો ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"મોકલો અને કૉલ કરો"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-hi/strings.xml b/res-common/values-hi/strings.xml
index 62dc14b..5628c28 100644
--- a/res-common/values-hi/strings.xml
+++ b/res-common/values-hi/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"खाता"</string>
<string name="set_default_account" msgid="3865970860434642695">"कॉल के लिए हमेशा इसका उपयोग करें"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"इस सिम से कॉल करें"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"नोट के साथ कॉल करें"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"कॉल के साथ भेजने के लिए नोट लिखें ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"भेजें और कॉल करें"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-hr/strings.xml b/res-common/values-hr/strings.xml
index 8deafba..bc30d77 100644
--- a/res-common/values-hr/strings.xml
+++ b/res-common/values-hr/strings.xml
@@ -251,4 +251,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Račun"</string>
<string name="set_default_account" msgid="3865970860434642695">"Uvijek upotrebljavaj za pozive"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Poziv putem usluge"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Poziv uz bilješku"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Napišite bilješku koju ćete poslati uz poziv..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"POŠALJI I NAZOVI"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-hu/strings.xml b/res-common/values-hu/strings.xml
index 071bacd..5637fa0 100644
--- a/res-common/values-hu/strings.xml
+++ b/res-common/values-hu/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Fiók"</string>
<string name="set_default_account" msgid="3865970860434642695">"Mindig ezt használja hívásokhoz"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Hívás a következővel:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Hívás üzenettel"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Írjon üzenetet, amelyet elküldhetünk a hívással együtt…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"KÜLDÉS és HÍVÁS"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<xliff:g id="LIMIT">%2$s</xliff:g>/<xliff:g id="COUNT">%1$s</xliff:g>"</string>
+ <string name="call_subject_type_and_number" msgid="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-hy-rAM/strings.xml b/res-common/values-hy-rAM/strings.xml
index 58c300f..74509b1 100644
--- a/res-common/values-hy-rAM/strings.xml
+++ b/res-common/values-hy-rAM/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Հաշիվ"</string>
<string name="set_default_account" msgid="3865970860434642695">"Միշտ օգտագործել սա՝ զանգերի համար"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Զանգահարել հետևյալով"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Գրառումով զանգ"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Մուտքագրեք գրառում՝ զանգի հետ ուղարկելու համար ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ՈՒՂԱՐԿԵԼ ԵՎ ԶԱՆԳԵԼ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-in/strings.xml b/res-common/values-in/strings.xml
index 9fdc9a5..1799c0c 100644
--- a/res-common/values-in/strings.xml
+++ b/res-common/values-in/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Akun"</string>
<string name="set_default_account" msgid="3865970860434642695">"Selalu gunakan ini untuk telepon"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Telepon dengan"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Telepon dengan catatan"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Ketik catatan untuk dikirim dengan panggilan telepon ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"KIRIM & PANGGILAN"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-is-rIS/strings.xml b/res-common/values-is-rIS/strings.xml
index 538dea2..a1f72bc 100644
--- a/res-common/values-is-rIS/strings.xml
+++ b/res-common/values-is-rIS/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Reikningur"</string>
<string name="set_default_account" msgid="3865970860434642695">"Nota þetta alltaf fyrir símtöl"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Hringja með"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Símtal með texta"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Sláðu inn texta til að senda með símtalinu..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SENDA OG HRINGJA"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-it/strings.xml b/res-common/values-it/strings.xml
index e908d5f..f3f2efc 100644
--- a/res-common/values-it/strings.xml
+++ b/res-common/values-it/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Usa sempre questa per chiamare"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Chiama con"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Chiama e invia una nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Digita una nota da inviare con la chiamata..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"INVIA E CHIAMA"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-iw/strings.xml b/res-common/values-iw/strings.xml
index 3ab807f..31f3248 100644
--- a/res-common/values-iw/strings.xml
+++ b/res-common/values-iw/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"חשבון"</string>
<string name="set_default_account" msgid="3865970860434642695">"השתמש תמיד עבור שיחות"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"התקשר באמצעות"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"התקשר עם הערה"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"הקלד הערה לשליחה עם השיחה..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"שלח והתקשר"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ja/strings.xml b/res-common/values-ja/strings.xml
index 337d76d..b382677 100644
--- a/res-common/values-ja/strings.xml
+++ b/res-common/values-ja/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"アカウント"</string>
<string name="set_default_account" msgid="3865970860434642695">"このSIMを常に通話に使用する"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"発信用の端末アカウントを選択してください"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"メモを添付して発信"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"発信時に送信するメモを入力..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"送信と発信"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g>、<xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ka-rGE/strings.xml b/res-common/values-ka-rGE/strings.xml
index a6e09cc..4e85dbd 100644
--- a/res-common/values-ka-rGE/strings.xml
+++ b/res-common/values-ka-rGE/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ანგარიში"</string>
<string name="set_default_account" msgid="3865970860434642695">"ზარებისთვის მუდამ ამის გამოყენება"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"დარეკვა ანგარიშით:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ზარი შენიშვნასთან ერთად"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"აკრიფეთ შენიშვნა ზართან ერთად გასაგზავნად ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"გაგზავნა & დარეკვა"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-kk-rKZ/strings.xml b/res-common/values-kk-rKZ/strings.xml
index 9b7de2c..901a3dd 100644
--- a/res-common/values-kk-rKZ/strings.xml
+++ b/res-common/values-kk-rKZ/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Есептік жазба"</string>
<string name="set_default_account" msgid="3865970860434642695">"Осыны қоңыраулар үшін әрқашан пайд."</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Келесімен қоңырау шалу"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Ескертпе бар қоңырау"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Қоңыраумен жіберу үшін ескертпе теріңіз ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ЖІБЕРУ ЖӘНЕ ҚОҢЫРАУ СОҒУ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-km-rKH/strings.xml b/res-common/values-km-rKH/strings.xml
index 301d3a4..5677a2c 100644
--- a/res-common/values-km-rKH/strings.xml
+++ b/res-common/values-km-rKH/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"គណនី"</string>
<string name="set_default_account" msgid="3865970860434642695">"ប្រើវាសម្រាប់ការហៅជានិច្ច"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ហៅជាមួយ"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ការហៅព្រមជាមួយចំណាំ"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"វាយបញ្ចូលចំណាំដែលត្រូវផ្ញើជាមួយការហៅទូរស័ព្ទ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ផ្ញើ & ហៅទូរស័ព្ទ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-kn-rIN/strings.xml b/res-common/values-kn-rIN/strings.xml
index 2220384..76ed95e 100644
--- a/res-common/values-kn-rIN/strings.xml
+++ b/res-common/values-kn-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ಖಾತೆ"</string>
<string name="set_default_account" msgid="3865970860434642695">"ಕರೆಗಳನ್ನು ಮಾಡಲು ಯಾವಾಗಲೂ ಇದನ್ನು ಬಳಸಿ"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ಇದರೊಂದಿಗೆ ಕರೆ ಮಾಡಿ"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ಟಿಪ್ಪಣಿಯೊಂದಿಗೆ ಕರೆ"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ಕರೆ ಕಳುಹಿಸಲು ಟಿಪ್ಪಣಿಯನ್ನು ಟೈಪ್ ಮಾಡಿ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ಕಳುಹಿಸು ಮತ್ತು ಕರೆಮಾಡು"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ko/strings.xml b/res-common/values-ko/strings.xml
index 6564a29..716912c 100644
--- a/res-common/values-ko/strings.xml
+++ b/res-common/values-ko/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"계정"</string>
<string name="set_default_account" msgid="3865970860434642695">"통화에 항상 사용"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"통화에 사용할 SIM"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"메모가 포함된 통화"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"통화에 함께 전송할 메모를 입력하세요..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"보내기 및 통화"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ky-rKG/strings.xml b/res-common/values-ky-rKG/strings.xml
index a93e888..b8b13db 100644
--- a/res-common/values-ky-rKG/strings.xml
+++ b/res-common/values-ky-rKG/strings.xml
@@ -255,4 +255,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Каттоо эсеби"</string>
<string name="set_default_account" msgid="3865970860434642695">"Бул ар дайым чалуулр үчн колдонулсн"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Төмөнкү менен чалуу"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Кыска жазуу менен чалуу"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Чалуу менен жөнөтүлө турган кыска жазууну териңиз …"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ЖӨНӨТҮҮ ЖАНА ЧАЛУУ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-lo-rLA/strings.xml b/res-common/values-lo-rLA/strings.xml
index ee2ce51..34bcd79 100644
--- a/res-common/values-lo-rLA/strings.xml
+++ b/res-common/values-lo-rLA/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ບັນຊີ"</string>
<string name="set_default_account" msgid="3865970860434642695">"ໃຊ້ຊິມນີ້ເພື່ອການໂທທຸກເທື່ອ"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ໂທດ້ວຍ"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ໂທດ້ວຍບັນທຶກ"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ພິມບັນທຶກ ເພື່ອສົ່ງກັບການໂທ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ສົ່ງ ແລະ ໂທ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-lt/strings.xml b/res-common/values-lt/strings.xml
index 9e1773e..64a487c 100644
--- a/res-common/values-lt/strings.xml
+++ b/res-common/values-lt/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Paskyra"</string>
<string name="set_default_account" msgid="3865970860434642695">"Visada naudoti tai skambučiams"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Skambinkite naudodami"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Skambutis su užrašu"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Įveskite užrašą, kurį galima išsiųsti skambinant..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SIŲSTI IR SKAMBINTI"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-lv/strings.xml b/res-common/values-lv/strings.xml
index dd6d29c..83ebc1a 100644
--- a/res-common/values-lv/strings.xml
+++ b/res-common/values-lv/strings.xml
@@ -251,4 +251,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konts"</string>
<string name="set_default_account" msgid="3865970860434642695">"Vienmēr izmantot zvaniem"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Zvanīt, izmantojot"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Zvanīt ar piezīmi"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Ierakstiet piezīmi, ko nosūtīt ar zvanu..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SŪTĪT un ZVANĪT"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<xliff:g id="COUNT">%1$s</xliff:g> no <xliff:g id="LIMIT">%2$s</xliff:g>"</string>
+ <string name="call_subject_type_and_number" msgid="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-mk-rMK/strings.xml b/res-common/values-mk-rMK/strings.xml
index cd41958..defae72 100644
--- a/res-common/values-mk-rMK/strings.xml
+++ b/res-common/values-mk-rMK/strings.xml
@@ -146,7 +146,7 @@
<string name="expand_collapse_name_fields_description" msgid="5073419090665464541">"Отвори или затвори полиња со име"</string>
<string name="list_filter_all_accounts" msgid="4265359896628915784">"Сите контакти"</string>
<string name="list_filter_all_starred" msgid="9060325494254507806">"Со ѕвезда"</string>
- <string name="list_filter_customize" msgid="2352794292558465089">"Приспособи"</string>
+ <string name="list_filter_customize" msgid="2352794292558465089">"Прилагоди"</string>
<string name="list_filter_single" msgid="4553809449379139446">"Контакт"</string>
<string name="display_ungrouped" msgid="3669471582032440138">"Сите други контакти"</string>
<string name="display_all_contacts" msgid="7251385818740728862">"Сите контакти"</string>
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Сметка"</string>
<string name="set_default_account" msgid="3865970860434642695">"Секогаш користи го ова за повици"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Повикајте со"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Повик со белешка"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Напишете белешка да се испрати со повикот..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ИСПРАТИ И ПОВИКАЈ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ml-rIN/strings.xml b/res-common/values-ml-rIN/strings.xml
index 443df82..c221529 100644
--- a/res-common/values-ml-rIN/strings.xml
+++ b/res-common/values-ml-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"അക്കൗണ്ട്"</string>
<string name="set_default_account" msgid="3865970860434642695">"ഇത് എല്ലായ്പ്പോഴും കോളുകൾക്കായി ഉപയോഗിക്കുക"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ഇത് ഉപയോഗിച്ച് വിളിക്കുക"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"കുറിപ്പിനൊപ്പം വിളിക്കുക"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"കോളിനൊപ്പം അയയ്ക്കുന്നതിന് ഒരു കുറിപ്പ് ടൈപ്പുചെയ്യുക ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"അയയ്ക്കുക, വിളിക്കുക"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-mn-rMN/strings.xml b/res-common/values-mn-rMN/strings.xml
index f4568d7..6e2a009 100644
--- a/res-common/values-mn-rMN/strings.xml
+++ b/res-common/values-mn-rMN/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Акаунт"</string>
<string name="set_default_account" msgid="3865970860434642695">"Дуудлагад байнга үүнийг ашиглах"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Залгах"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Тэмдэглэл бүхий дуудлага хийх"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Дуудлаганд илгээх тэмдэглэл бичнэ үү..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ИЛГЭЭХ & ЗАЛГАХ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-mr-rIN/strings.xml b/res-common/values-mr-rIN/strings.xml
index e0420f5..7f5e620 100644
--- a/res-common/values-mr-rIN/strings.xml
+++ b/res-common/values-mr-rIN/strings.xml
@@ -80,7 +80,7 @@
<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="description_quick_contact_for" msgid="6355240770807101947">"<xliff:g id="NAME">%1$s</xliff:g> साठी द्रुत संपर्क"</string>
+ <string name="description_quick_contact_for" msgid="6355240770807101947">"<xliff:g id="NAME">%1$s</xliff:g> साठी दृत संपर्क"</string>
<string name="missing_name" msgid="2633118852693000081">"(नाव नाही)"</string>
<string name="favoritesFrequentCalled" msgid="6600127125011757687">"वारंवार कॉल केलेले"</string>
<string name="favoritesFrequentContacted" msgid="2849493314447751970">"वारंवार संपर्क केलेले"</string>
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"खाते"</string>
<string name="set_default_account" msgid="3865970860434642695">"कॉलसाठी हे नेहमी वापरा"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"यासह कॉल करा"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"टीपसह कॉल करा"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"कॉलसह पाठविण्यासाठी एक टीप टाइप करा..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"पाठवा आणि कॉल करा"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ms-rMY/strings.xml b/res-common/values-ms-rMY/strings.xml
index 25573d4..d20f89c 100644
--- a/res-common/values-ms-rMY/strings.xml
+++ b/res-common/values-ms-rMY/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Akaun"</string>
<string name="set_default_account" msgid="3865970860434642695">"Sentiasa gunakan ini untuk panggilan"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Panggil dengan"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Panggilan dengan nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Taip nota untuk dihantar dengan panggilan…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"HANTAR & PANGGIL"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-my-rMM/strings.xml b/res-common/values-my-rMM/strings.xml
index b8fb3ab..a7eb5d4 100644
--- a/res-common/values-my-rMM/strings.xml
+++ b/res-common/values-my-rMM/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"အကောင့်"</string>
<string name="set_default_account" msgid="3865970860434642695">"ခေါ်ဆိုမှုများ အတွက် အမြဲတမ်း ဒါကို သုံးရန်"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ဖြင့် ခေါ်ဆိုရန်"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"မှတ်စုတစ်ခုဖြင့် ခေါ်ဆိုမည်"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ခေါ်ဆိုမှုဖြင့် ပေးပို့ရန် မှတ်စုတစ်ခု ရိုက်ပါ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ပေးပို့မည် & ခေါ်ဆိုမည်"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-nb/strings.xml b/res-common/values-nb/strings.xml
index 5be2231..0a20565 100644
--- a/res-common/values-nb/strings.xml
+++ b/res-common/values-nb/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Bruk alltid dette for samtaler"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ring med"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Ring med et notat"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Skriv et notat du vil sende med anropet …"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SEND OG RING"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ne-rNP/strings.xml b/res-common/values-ne-rNP/strings.xml
index 450d755..c83a71d 100644
--- a/res-common/values-ne-rNP/strings.xml
+++ b/res-common/values-ne-rNP/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"खाता"</string>
<string name="set_default_account" msgid="3865970860434642695">"कल गर्नका लागि यसको प्रयोग सधैं गर्नुहोस्"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"संग कल"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"टिप्पणीसँगै कल गर्नुहोस्"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"यस कलसँग पठाउन एक टिप्पणी टाइप गर्नुहोस्"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"पठाउनुहोस् र कल गर्नुहोस्"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-nl/strings.xml b/res-common/values-nl/strings.xml
index 222ba1d..7318d3f 100644
--- a/res-common/values-nl/strings.xml
+++ b/res-common/values-nl/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Altijd gebruiken voor oproepen"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Bellen met"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Oproep met een notitie"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Typ een notitie om te verzenden met de oproep..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"VERZENDEN EN BELLEN"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-pa-rIN/strings.xml b/res-common/values-pa-rIN/strings.xml
index 3ea636e..64f6910 100644
--- a/res-common/values-pa-rIN/strings.xml
+++ b/res-common/values-pa-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ਖਾਤਾ"</string>
<string name="set_default_account" msgid="3865970860434642695">"ਕਾਲਾਂ ਲਈ ਹਮੇਸ਼ਾਂ ਇਹ ਵਰਤੋ"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"ਇਸਦੇ ਨਾਲ ਕਾਲ ਕਰੋ"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ਕੋਈ ਨੋਟ ਦੇ ਨਾਲ ਕਾਲ ਕਰੋ"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ਕਾਲ ਦੇ ਨਾਲ ਭੇਜਣ ਲਈ ਕੋਈ ਨੋਟ ਟਾਈਪ ਕਰੋ ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ਭੇਜੋ ਅਤੇ ਕਾਲ ਕਰੋ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-pl/strings.xml b/res-common/values-pl/strings.xml
index 607d48a..895ef56 100644
--- a/res-common/values-pl/strings.xml
+++ b/res-common/values-pl/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Zawsze używaj do połączeń"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Zadzwoń, używając"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Połącz i wyślij notatkę"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Wpisz notatkę, którą chcesz wysłać razem z połączeniem..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"WYŚLIJ I POŁĄCZ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-pt-rBR/strings.xml b/res-common/values-pt-rBR/strings.xml
index 3bacebd..ca1c5cf 100644
--- a/res-common/values-pt-rBR/strings.xml
+++ b/res-common/values-pt-rBR/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Conta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Sempre usar esta opção para chamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ligar com"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Chamada com uma nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escreva uma nota para enviar com a chamada..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR E LIGAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-pt-rPT/strings.xml b/res-common/values-pt-rPT/strings.xml
index 6d80db8..35f29fa 100644
--- a/res-common/values-pt-rPT/strings.xml
+++ b/res-common/values-pt-rPT/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Conta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Utilizar sempre este para chamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ao telefone com"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Ligar com uma nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escrever uma nota para enviar com a chamada..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR E LIGAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-pt/strings.xml b/res-common/values-pt/strings.xml
index 3bacebd..ca1c5cf 100644
--- a/res-common/values-pt/strings.xml
+++ b/res-common/values-pt/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Conta"</string>
<string name="set_default_account" msgid="3865970860434642695">"Sempre usar esta opção para chamadas"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ligar com"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Chamada com uma nota"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Escreva uma nota para enviar com a chamada..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ENVIAR E LIGAR"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ro/strings.xml b/res-common/values-ro/strings.xml
index af30a74..7bd24ca 100644
--- a/res-common/values-ro/strings.xml
+++ b/res-common/values-ro/strings.xml
@@ -242,7 +242,7 @@
<string name="menu_clear_frequents" msgid="8492322695770647639">"Ștergeți contacte frecvente"</string>
<string name="menu_select_sim" msgid="7814841439832447299">"Selectați cardul SIM"</string>
<string name="menu_accounts" msgid="795417468541517082">"Conturi"</string>
- <string name="menu_import_export" msgid="6446229463809981669">"Importați/Exportați"</string>
+ <string name="menu_import_export" msgid="6446229463809981669">"Importați/exportați"</string>
<string name="contact_status_update_attribution" msgid="8419168578670128134">"prin <xliff:g id="SOURCE">%1$s</xliff:g>"</string>
<string name="contact_status_update_attribution_with_date" msgid="7492465535645607473">"<xliff:g id="DATE">%1$s</xliff:g> prin <xliff:g id="SOURCE">%2$s</xliff:g>"</string>
<string name="action_menu_back_from_search" msgid="1138551123844019647">"nu mai căutați"</string>
@@ -251,4 +251,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Cont"</string>
<string name="set_default_account" msgid="3865970860434642695">"Utilizați mereu pentru apeluri"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Apelați cu"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Apelați împreună cu o notă"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Introduceți o notă ca să o trimiteți împreună cu apelul..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"TRIMITEȚI ȘI APELAȚI"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ru/strings.xml b/res-common/values-ru/strings.xml
index 1a6ef58..73b640f 100644
--- a/res-common/values-ru/strings.xml
+++ b/res-common/values-ru/strings.xml
@@ -220,8 +220,8 @@
<string name="progress_notifier_message" msgid="359931715339778107">"Импорт <xliff:g id="CURRENT_NUMBER">%s</xliff:g> из <xliff:g id="TOTAL_NUMBER">%s</xliff:g>: <xliff:g id="NAME">%s</xliff:g>..."</string>
<string name="export_to_vcf_file" product="default" msgid="4142192068495589925">"Экспортировать в файл VCF"</string>
<string name="display_options_sort_list_by" msgid="8635268562263708102">"Сортировка"</string>
- <string name="display_options_sort_by_given_name" msgid="7775798046001047995">"По имени"</string>
- <string name="display_options_sort_by_family_name" msgid="8196947856299225342">"По фамилии"</string>
+ <string name="display_options_sort_by_given_name" msgid="7775798046001047995">"Имя"</string>
+ <string name="display_options_sort_by_family_name" msgid="8196947856299225342">"Фамилия"</string>
<string name="display_options_view_names_as" msgid="3232196224409242435">"Формат имени"</string>
<string name="display_options_view_given_name_first" msgid="7283772578267332801">"Сначала имя"</string>
<string name="display_options_view_family_name_first" msgid="8133167685885174166">"Сначала фамилия"</string>
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Аккаунт"</string>
<string name="set_default_account" msgid="3865970860434642695">"Всегда использовать для звонков"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Аккаунт для звонка"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Написать сообщение абоненту"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Введите текст…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ОТПРАВИТЬ СООБЩЕНИЕ И ПОЗВОНИТЬ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-si-rLK/strings.xml b/res-common/values-si-rLK/strings.xml
index 61e620f..bc1513e 100644
--- a/res-common/values-si-rLK/strings.xml
+++ b/res-common/values-si-rLK/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ගිණුම"</string>
<string name="set_default_account" msgid="3865970860434642695">"ඇමතුම් සඳහා මෙම එක සැමවිටම භාවිතා කරන්න"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"සමඟ අමතන්න"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"සටහනක් සමගින් අමතන්න"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"ඇමතුම සමග යැවීමට සටහනක් ටයිප් කරන්න ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"යවන්න සහ අමතන්න"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sk/strings.xml b/res-common/values-sk/strings.xml
index 6fff3d4..e181080 100644
--- a/res-common/values-sk/strings.xml
+++ b/res-common/values-sk/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Účet"</string>
<string name="set_default_account" msgid="3865970860434642695">"Vždy používať pre hovory"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Volať pomocou"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Hovor s poznámkou"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Napíšte poznámku, ktorá sa odošle s hovorom..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ODOSLAŤ A VOLAŤ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sl/strings.xml b/res-common/values-sl/strings.xml
index 79c9bf3..f265ebf 100644
--- a/res-common/values-sl/strings.xml
+++ b/res-common/values-sl/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Račun"</string>
<string name="set_default_account" msgid="3865970860434642695">"Vedno uporabi to možnost za klice"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Klicanje z …"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Klic z zapiskom"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Vnesite zapisek, ki ga želite poslati s klicem ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"POŠLJI IN KLIČI"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sq-rAL/strings.xml b/res-common/values-sq-rAL/strings.xml
index 52fbc70..d0d2d83 100644
--- a/res-common/values-sq-rAL/strings.xml
+++ b/res-common/values-sq-rAL/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Llogaria"</string>
<string name="set_default_account" msgid="3865970860434642695">"Përdor gjithmonë këtë për telefonatat"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Telefono me"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Telefono me shënim"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Shkruaj një shënim për të dërguar një telefonatë..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"DËRGO DHE TELEFONO"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sr/strings.xml b/res-common/values-sr/strings.xml
index 432efef..04db880 100644
--- a/res-common/values-sr/strings.xml
+++ b/res-common/values-sr/strings.xml
@@ -251,4 +251,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Налог"</string>
<string name="set_default_account" msgid="3865970860434642695">"Увек користи ово за позиве"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Позови помоћу"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Позив са белешком"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Унесите белешку коју ћете послати уз позив..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ПОШАЉИ И ПОЗОВИ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sv/strings.xml b/res-common/values-sv/strings.xml
index caca111..9b8e880 100644
--- a/res-common/values-sv/strings.xml
+++ b/res-common/values-sv/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Konto"</string>
<string name="set_default_account" msgid="3865970860434642695">"Använd alltid för samtal"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ring med"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Ring med anteckning"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Gör en anteckning som skickas när du ringer …"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"SKICKA OCH RING"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-sw/strings.xml b/res-common/values-sw/strings.xml
index fd4bfb8..28115aa 100644
--- a/res-common/values-sw/strings.xml
+++ b/res-common/values-sw/strings.xml
@@ -18,7 +18,7 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="toast_text_copied" msgid="8327159932780920627">"Maandishi yamenakiliwa"</string>
- <string name="copy_text" msgid="3424081789297978355">"Nakili kwenye ubao wa kunakili"</string>
+ <string name="copy_text" msgid="3424081789297978355">"Nakili kwenye ubao klipu"</string>
<string name="call_custom" msgid="2786306789889210756">"Pia simu <xliff:g id="CUSTOM">%s</xliff:g>"</string>
<string name="call_home" msgid="1479549630992276827">"Piga simu nyumbani"</string>
<string name="call_mobile" msgid="8618334085824709009">"Pigia simu ya mkononi"</string>
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Akaunti"</string>
<string name="set_default_account" msgid="3865970860434642695">"Tumia hii kwa simu wakati wote"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Piga simu ukitumia"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Piga simu inayoambatana na dokezo"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Andika dokezo litakaloambatana na simu utakayopiga ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"TUMA na UPIGE SIMU"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ta-rIN/strings.xml b/res-common/values-ta-rIN/strings.xml
index 2ff6eef..8b1534e 100644
--- a/res-common/values-ta-rIN/strings.xml
+++ b/res-common/values-ta-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"கணக்கு"</string>
<string name="set_default_account" msgid="3865970860434642695">"அழைப்புகளுக்கு எப்போதும் இதைப் பயன்படுத்து"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"இதன் மூலம் அழை"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"குறிப்புடன் அழைக்கவும்"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"அழைப்புடன் சேர்த்து அனுப்ப, குறிப்பை உள்ளிடவும்..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"அனுப்பு & அழை"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-te-rIN/strings.xml b/res-common/values-te-rIN/strings.xml
index 51aaa72..d9a114b 100644
--- a/res-common/values-te-rIN/strings.xml
+++ b/res-common/values-te-rIN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"ఖాతా"</string>
<string name="set_default_account" msgid="3865970860434642695">"కాల్ల కోసం ఎల్లప్పుడూ దీన్ని ఉపయోగించు"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"దీనితో కాల్ చేయండి"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"గమనికతో కాల్ చేయి"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"కాల్తో పాటు పంపడానికి గమనికను టైప్ చేయండి ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"పంపు & కాల్ చేయి"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-th/strings.xml b/res-common/values-th/strings.xml
index 2578afa..6bdba38 100644
--- a/res-common/values-th/strings.xml
+++ b/res-common/values-th/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"บัญชี"</string>
<string name="set_default_account" msgid="3865970860434642695">"ใช้ในการโทรทุกครั้ง"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"โทรด้วย"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"โทรพร้อมโน้ต"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"พิมพ์โน้ตเพื่อส่งพร้อมการโทร ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ส่งและโทร"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-tl/strings.xml b/res-common/values-tl/strings.xml
index 7ae1046..e7afa81 100644
--- a/res-common/values-tl/strings.xml
+++ b/res-common/values-tl/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Account"</string>
<string name="set_default_account" msgid="3865970860434642695">"Gamitin ito palagi sa mga tawag"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Tumawag gamit ang"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Tumawag nang may kasamang tala"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Mag-type ng isang tala na ipadadala kasama ng tawag ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"IPADALA & TUMAWAG"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-tr/strings.xml b/res-common/values-tr/strings.xml
index 7db3dff..9a69d43 100644
--- a/res-common/values-tr/strings.xml
+++ b/res-common/values-tr/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Hesap"</string>
<string name="set_default_account" msgid="3865970860434642695">"Çağrılar için her zaman bunu kullan"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Çağrıyı şununla yap:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Notla telefon et"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Çağrıyla göndermek için bir not yazın..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"GÖNDER VE TELEFON ET"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-uk/strings.xml b/res-common/values-uk/strings.xml
index d7947cd..7c0b2e1 100644
--- a/res-common/values-uk/strings.xml
+++ b/res-common/values-uk/strings.xml
@@ -252,4 +252,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Обліковий запис"</string>
<string name="set_default_account" msgid="3865970860434642695">"Завжди використовувати для дзвінків"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Телефонувати за допомогою"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Зателефонувати й надіслати нотатку"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Введіть нотатку, яку хочете надіслати під час дзвінка…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"ЗАТЕЛЕФОНУВАТИ Й НАДІСЛАТИ"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-ur-rPK/strings.xml b/res-common/values-ur-rPK/strings.xml
index 79680c5..351f7b5 100644
--- a/res-common/values-ur-rPK/strings.xml
+++ b/res-common/values-ur-rPK/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"اکاؤنٹ"</string>
<string name="set_default_account" msgid="3865970860434642695">"کالز کیلئے ہمیشہ اس کا استعمال کریں"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"کال کریں مع"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"ایک نوٹ کے ساتھ کال کریں"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"کال کے ساتھ بھیجنے کیلئے ایک نوٹ ٹائپ کریں…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"بھیجیں اور کال کریں"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-uz-rUZ/strings.xml b/res-common/values-uz-rUZ/strings.xml
index 14e1452..77652aa 100644
--- a/res-common/values-uz-rUZ/strings.xml
+++ b/res-common/values-uz-rUZ/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Hisob"</string>
<string name="set_default_account" msgid="3865970860434642695">"Har doim qo‘ng‘iroqlar u-n foyd-sin"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Ushbu bilan qo‘ng‘iroq qilish"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Qo‘ng‘iroq va izoh"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Qo‘ng‘iroqqa qo‘shib yuborish uchun izoh yozing ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"YUBORISH va QO‘NG‘IROQ QILISH"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-vi/strings.xml b/res-common/values-vi/strings.xml
index faa3e63..a8bd926 100644
--- a/res-common/values-vi/strings.xml
+++ b/res-common/values-vi/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"Tài khoản"</string>
<string name="set_default_account" msgid="3865970860434642695">"Luôn sử dụng SIM này để gọi"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Gọi bằng"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Gọi điện kèm theo ghi chú"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Nhập ghi chú để gửi kèm cuộc gọi..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"GỬI VÀ GỌI"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-zh-rCN/strings.xml b/res-common/values-zh-rCN/strings.xml
index 01ab3ba..555b708 100644
--- a/res-common/values-zh-rCN/strings.xml
+++ b/res-common/values-zh-rCN/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"帐号"</string>
<string name="set_default_account" msgid="3865970860434642695">"一律使用这张卡进行通话"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"用于外拨电话的帐号"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"拨打电话时发送记事"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"输入可在拨打电话时发送的记事…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"发送记事并拨打电话"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-zh-rHK/strings.xml b/res-common/values-zh-rHK/strings.xml
index 2cd0575..aa292b1 100644
--- a/res-common/values-zh-rHK/strings.xml
+++ b/res-common/values-zh-rHK/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"帳戶"</string>
<string name="set_default_account" msgid="3865970860434642695">"永遠使用這張 SIM 卡通話"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"選取用於撥號的 SIM 卡:"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"撥號時傳送筆記"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"撥號時可以書寫和傳送筆記…"</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"傳送和撥號"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-zh-rTW/strings.xml b/res-common/values-zh-rTW/strings.xml
index 3dc3cfd..4c352b5 100644
--- a/res-common/values-zh-rTW/strings.xml
+++ b/res-common/values-zh-rTW/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"帳戶"</string>
<string name="set_default_account" msgid="3865970860434642695">"一律使用這張 SIM 卡通話"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"選擇通話帳戶"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"撥號時傳送備註"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"輸入可在撥號時傳送的備註..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"傳送並撥號"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values-zu/strings.xml b/res-common/values-zu/strings.xml
index e5c096a..42e6ccb 100644
--- a/res-common/values-zu/strings.xml
+++ b/res-common/values-zu/strings.xml
@@ -250,4 +250,9 @@
<string name="select_account_dialog_title" msgid="5509088895267310568">"I-Akhawunti"</string>
<string name="set_default_account" msgid="3865970860434642695">"Njalo sebenzisa lokhu kumakholi"</string>
<string name="select_phone_account_for_calls" msgid="933905607702811164">"Shaya nge"</string>
+ <string name="call_with_a_note" msgid="8453800473226831257">"Shaya ngenothi"</string>
+ <string name="call_subject_hint" msgid="2270115162050853866">"Thayipha inothi ukuthumela nekholi ..."</string>
+ <string name="send_and_call_button" msgid="7459507823002185202">"THUMELA FUTHI USHAYE"</string>
+ <string name="call_subject_limit" msgid="4746194916585506281">"<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="517676698821671164">"<xliff:g id="TYPE">%1$s</xliff:g> • <xliff:g id="NUMBER">%2$s</xliff:g>"</string>
</resources>
diff --git a/res-common/values/colors.xml b/res-common/values/colors.xml
index e50be6a..0dc85b5 100644
--- a/res-common/values/colors.xml
+++ b/res-common/values/colors.xml
@@ -151,4 +151,19 @@
<!-- Color of the background of the contact detail and editor pages -->
<color name="background_primary">#f9f9f9</color>
<color name="contact_all_list_background_color">#FFFFFF</color>
+
+ <!-- Text color used for character counter when the max limit has been exceeded -->
+ <color name="call_subject_limit_exceeded">#d1041c</color>
+
+ <!-- Tint color for the call subhect history icon. -->
+ <color name="call_subject_history_icon">#000000</color>
+
+ <!-- Divider line on the call subhect dialog. -->
+ <color name="call_subject_divider">#d8d8d8</color>
+
+ <!-- Text color for the SEND & CALL button on the call subject dialog. -->
+ <color name="call_subject_button">#00c853</color>
+
+ <!-- Background color for the call subject history view. -->
+ <color name="call_subject_history_background">#ffffff</color>
</resources>
diff --git a/res-common/values/dimens.xml b/res-common/values/dimens.xml
index f06cd21..8d612ff 100644
--- a/res-common/values/dimens.xml
+++ b/res-common/values/dimens.xml
@@ -145,4 +145,20 @@
<dimen name="search_shortcut_radius">40dp</dimen>
<dimen name="contact_list_card_elevation">2dp</dimen>
+
+ <!-- Padding used around the periphery of the call subject dialog, as well as in between the
+ items. -->
+ <dimen name="call_subject_dialog_margin">20dp</dimen>
+ <!-- Padding used between lines of text in the call subject dialog. -->
+ <dimen name="call_subject_dialog_between_line_margin">8dp</dimen>
+ <!-- Size of the contact photo in the call subject dialog. -->
+ <dimen name="call_subject_dialog_contact_photo_size">50dp</dimen>
+ <!-- Margin above the edit text in the call subject dialog. -->
+ <dimen name="call_subject_dialog_edit_spacing">60dp</dimen>
+ <!-- Size of primary text in the call subject dialog. -->
+ <dimen name="call_subject_dialog_primary_text_size">16sp</dimen>
+ <!-- Size of secondary text in the call subject dialog. -->
+ <dimen name="call_subject_dialog_secondary_text_size">14sp</dimen>
+ <!-- Row padding for call subject history items. -->
+ <dimen name="call_subject_history_item_padding">15dp</dimen>
</resources>
diff --git a/res-common/values/integers.xml b/res-common/values/integers.xml
index fc1209f..f3d1e74 100644
--- a/res-common/values/integers.xml
+++ b/res-common/values/integers.xml
@@ -30,4 +30,7 @@
<!-- Layout weight of card in contact list view.
Default to 0 to indicate no padding -->
<integer name="contact_list_card_layout_weight">0</integer>
+
+ <!-- Duration of the animations on the call subject dialog. -->
+ <integer name="call_subject_animation_duration">250</integer>
</resources>
diff --git a/res-common/values/strings.xml b/res-common/values/strings.xml
index c3725a3..fab8e97 100644
--- a/res-common/values/strings.xml
+++ b/res-common/values/strings.xml
@@ -730,7 +730,7 @@
<!-- Font family used when drawing letters for letter tile avatars.
Do not translate. -->
- <string name="letter_tile_letter_font_family">sans-serif-light</string>
+ <string name="letter_tile_letter_font_family">sans-serif-medium</string>
<!-- Content description for the fake action menu up button as used
inside search. [CHAR LIMIT=NONE] -->
@@ -755,4 +755,24 @@
<!-- Title for dialog to select Phone Account for outgoing call. [CHAR LIMIT=40] -->
<string name="select_phone_account_for_calls">Call with</string>
+
+ <!-- String used for actions in the dialer call log and the quick contact card to initiate
+ a call to an individual. The user is prompted to enter a note which is sent along with
+ the call (e.g. a call subject). [CHAR LIMIT=40] -->
+ <string name="call_with_a_note">Call with a note</string>
+
+ <!-- Hint text shown in the call subject dialog. [CHAR LIMIT=255] -->
+ <string name="call_subject_hint">Type a note to send with call ...</string>
+
+ <!-- Button used to start a new call with the user entered subject. [CHAR LIMIT=32] -->
+ <string name="send_and_call_button">SEND & CALL</string>
+
+ <!-- String used to represent the total number of characters entered for a call subject,
+ compared to the character limit. Example: 2 / 64 -->
+ <string name="call_subject_limit"><xliff:g id="count" example="4">%1$s</xliff:g> / <xliff:g id="limit" example="64">%2$s</xliff:g></string>
+
+ <!-- String used to build a phone number bype and phone number string.
+ Example: Mobile • 650-555-1212 -->
+ <string name="call_subject_type_and_number"><xliff:g id="type" example="Mobile">%1$s</xliff:g> • <xliff:g id="number" example="(650) 555-1212">%2$s</xliff:g></string>
+
</resources>
diff --git a/res-common/values/styles.xml b/res-common/values/styles.xml
index 7e1127d..77c4677 100644
--- a/res-common/values/styles.xml
+++ b/res-common/values/styles.xml
@@ -88,4 +88,19 @@
<item name="android:windowNoDisplay">false</item>
<item name="android:windowIsFloating">true</item>
</style>
+
+ <style name="Theme.CallSubjectDialogTheme" parent="@android:style/Theme.Material.Light.Dialog">
+ <item name="android:layout_width">match_parent</item>
+ <item name="android:layout_height">match_parent</item>
+
+ <!-- No backgrounds, titles or window float -->
+ <item name="android:windowIsTranslucent">true</item>
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowFullscreen">false</item>
+ <item name="android:windowIsFloating">true</item>
+ <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowDrawsSystemBarBackgrounds">false</item>
+ <item name="android:windowContentOverlay">@null</item>
+ <item name="android:windowElevation">0dp</item>
+ </style>
</resources>