Further AccessibilityId mapping & fixed group members counts to display correct details

This commit is contained in:
Al Lansley 2024-08-12 09:49:57 +10:00
parent 558d6741b1
commit fc3b4ad367
113 changed files with 47 additions and 146 deletions

View File

@ -531,7 +531,7 @@ class ConversationReactionOverlay : FrameLayout {
// Reply
val canWrite = openGroup == null || openGroup.canWrite
if (canWrite && !message.isPending && !message.isFailed && !message.isOpenGroupInvitation) {
items += ActionItem(R.attr.menu_reply_icon, R.string.reply, { handleActionItemClicked(Action.REPLY) }, R.string.AccessibilityId_reply_message)
items += ActionItem(R.attr.menu_reply_icon, R.string.reply, { handleActionItemClicked(Action.REPLY) }, R.string.AccessibilityId_reply)
}
// Copy message text
if (!containsControlMessage && hasText) {
@ -544,7 +544,7 @@ class ConversationReactionOverlay : FrameLayout {
// Delete message
if (userCanDeleteSelectedItems(context, message, openGroup, userPublicKey, blindedPublicKey)) {
items += ActionItem(R.attr.menu_trash_icon, R.string.delete, { handleActionItemClicked(Action.DELETE) },
R.string.AccessibilityId_delete_message, message.subtitle, ThemeUtil.getThemedColor(context, R.attr.danger))
R.string.AccessibilityId_deleteMessage, message.subtitle, ThemeUtil.getThemedColor(context, R.attr.danger))
}
// Ban user
if (userCanBanSelectedUsers(context, message, openGroup, userPublicKey, blindedPublicKey)) {
@ -572,7 +572,7 @@ class ConversationReactionOverlay : FrameLayout {
items += ActionItem(R.attr.menu_save_icon,
R.string.save,
{ handleActionItemClicked(Action.DOWNLOAD) },
R.string.AccessibilityId_save_attachment
R.string.AccessibilityId_save
)
}
}

View File

@ -80,8 +80,8 @@ class InputBar @JvmOverloads constructor(
var voiceRecorderState = VoiceRecorderState.Idle
private val attachmentsButton = InputBarButton(context, R.drawable.ic_plus_24).apply { contentDescription = context.getString(R.string.AccessibilityId_attachmentsButton)}
val microphoneButton = InputBarButton(context, R.drawable.ic_microphone).apply { contentDescription = context.getString(R.string.AccessibilityId_microphone_button)}
private val sendButton = InputBarButton(context, R.drawable.ic_arrow_up, true).apply { contentDescription = context.getString(R.string.AccessibilityId_send_message_button)}
val microphoneButton = InputBarButton(context, R.drawable.ic_microphone).apply { contentDescription = context.getString(R.string.AccessibilityId_voiceMessageNew)}
private val sendButton = InputBarButton(context, R.drawable.ic_arrow_up, true).apply { contentDescription = context.getString(R.string.AccessibilityId_send)}
init {
// Attachments button

View File

@ -109,14 +109,10 @@ class EditClosedGroupActivity : PassphraseRequiredActionBarActivity() {
groupID = intent.getStringExtra(groupIDKey)!!
val groupInfo = DatabaseComponent.get(this).groupDatabase().getGroup(groupID).get()
originalName = groupInfo.title
isSelfAdmin = groupInfo.admins.any{ it.serialize() == TextSecurePreferences.getLocalNumber(this) }
isSelfAdmin = groupInfo.admins.any { it.serialize() == TextSecurePreferences.getLocalNumber(this) }
name = originalName
// Update the group member count
val memberCountTV = findViewById<TextView>(R.id.editGroupMemberCount)
memberCountTV.text = resources.getQuantityString(R.plurals.members, members.size, members.size)
mainContentContainer = findViewById(R.id.mainContentContainer)
cntGroupNameEdit = findViewById(R.id.cntGroupNameEdit)
cntGroupNameDisplay = findViewById(R.id.cntGroupNameDisplay)
@ -179,6 +175,10 @@ class EditClosedGroupActivity : PassphraseRequiredActionBarActivity() {
originalMembers.clear()
originalMembers.addAll(members + zombies)
updateMembers()
// Now that we have the group members we can update the text on the member count
val memberCountTV = findViewById<TextView>(R.id.editGroupMemberCount)
memberCountTV.text = resources.getQuantityString(R.plurals.members, members.size, members.size)
}
override fun onLoaderReset(loader: Loader<GroupMembers>) {

View File

@ -114,7 +114,7 @@
android:id="@+id/gifButtonContainer"
android:layout_width="@dimen/input_bar_button_expanded_size"
android:layout_height="@dimen/input_bar_button_expanded_size"
android:contentDescription="@string/AccessibilityId_gif_button"
android:contentDescription="@string/AccessibilityId_gif"
android:alpha="0" />
<FrameLayout
@ -130,7 +130,7 @@
android:layout_marginTop="8dp"
android:layout_width="@dimen/input_bar_button_expanded_size"
android:layout_height="@dimen/input_bar_button_expanded_size"
android:contentDescription="@string/AccessibilityId_images_folder"
android:contentDescription="@string/AccessibilityId_image"
android:alpha="0" />
<FrameLayout
@ -138,7 +138,7 @@
android:layout_marginTop="8dp"
android:layout_width="@dimen/input_bar_button_expanded_size"
android:layout_height="@dimen/input_bar_button_expanded_size"
android:contentDescription="@string/AccessibilityId_select_camera_button"
android:contentDescription="@string/AccessibilityId_camera"
android:alpha="0" />
</LinearLayout>

View File

@ -112,7 +112,7 @@
android:layout_marginEnd="@dimen/small_spacing"
android:layout_marginBottom="@dimen/small_spacing"
android:layout_weight="1"
android:text="Replaced in code!"
android:text="{count} members"
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/medium_font_size" />

View File

@ -19,7 +19,7 @@
android:src="@drawable/ic_delivery_status_sent"
android:paddingStart="2dp"
android:visibility="gone"
android:contentDescription="@string/conversation_item_sent__delivered_description" />
android:contentDescription="@string/AccessibilityId_deliveryIndicator" />
<ImageView android:id="@+id/delivered_indicator"
android:layout_width="wrap_content"
@ -28,7 +28,7 @@
android:src="@drawable/ic_delivery_status_delivered"
android:paddingStart="2dp"
android:visibility="gone"
android:contentDescription="@string/conversation_item_sent__delivered_description"
android:contentDescription="@string/AccessibilityId_deliveryIndicator"
tools:visibility="gone"/>
<ImageView android:id="@+id/read_indicator"

View File

@ -11,21 +11,21 @@
<TextView
android:id="@+id/deleteForMeTextView"
android:contentDescription="@string/AccessibilityId_delete_just_for_me"
android:contentDescription="@string/AccessibilityId_deleteMessageMe"
style="@style/BottomSheetActionItem"
android:text="@string/clearMessagesForMe"
android:textColor="?danger" />
<TextView
android:id="@+id/deleteForEveryoneTextView"
android:contentDescription="@string/AccessibilityId_delete_for_everyone"
android:contentDescription="@string/AccessibilityId_deleteMessageEveryone"
style="@style/BottomSheetActionItem"
android:text="@string/clearMessagesForEveryone"
android:textColor="?danger" />
<TextView
android:id="@+id/cancelTextView"
android:contentDescription="@string/AccessibilityId_cancel_deletion"
android:contentDescription="@string/AccessibilityId_deleteMessageCancel"
style="@style/BottomSheetActionItem"
android:text="@string/cancel" />

View File

@ -28,7 +28,7 @@
android:layout_height="match_parent"
android:background="?selectableItemBackgroundBorderless"
android:clickable="false"
android:contentDescription="@string/KeyboardPagerfragment_back_to_emoji"
android:contentDescription="@string/AccessibilityId_emojiSearch"
android:scaleType="centerInside"
app:srcCompat="@drawable/ic_search_24"
app:tint="?searchIconColor" />
@ -55,7 +55,7 @@
android:layout_height="match_parent"
android:background="?selectableItemBackgroundBorderless"
android:clickable="false"
android:contentDescription="@string/KeyboardPagerfragment_clear_search_entry"
android:contentDescription="@string/AccessibilityId_emojiSearchClear"
android:scaleType="centerInside"
app:tint="@color/signal_icon_tint_tab_selected"
tools:srcCompat="@drawable/ic_x" />

View File

@ -19,7 +19,7 @@
<TextView
android:id="@+id/deleteTitleTextView"
android:contentDescription="@string/AccessibilityId_deleted_message"
android:contentDescription="@string/AccessibilityId_deleteMessageDeleted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"

View File

@ -36,7 +36,7 @@
<org.thoughtcrime.securesms.conversation.v2.input_bar.InputBarEditText
android:id="@+id/inputBarEditText"
android:contentDescription="@string/AccessibilityId_message_input"
android:contentDescription="@string/AccessibilityId_inputBox"
android:inputType="textMultiLine"
android:layout_width="match_parent"
android:layout_height="40dp"

View File

@ -5,7 +5,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/AccessibilityId_untrusted_attachment_message"
android:contentDescription="@string/AccessibilityId_attachmentsClickToDownload"
android:orientation="horizontal"
android:padding="@dimen/medium_spacing"
android:gravity="center">

View File

@ -118,7 +118,7 @@
<TextView
android:id="@+id/messageStatusTextView"
android:contentDescription="@string/AccessibilityId_message_sent_status"
android:contentDescription="@string/AccessibilityId_sent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="2dp"

View File

@ -99,7 +99,7 @@
app:barrierDirection="bottom"/>
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
android:contentDescription="@string/AccessibilityId_message_body"
android:contentDescription="@string/AccessibilityId_message"
app:layout_constraintHorizontal_bias="0"
tools:visibility="visible"
android:visibility="gone"

View File

@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mainVoiceMessageViewContainer"
android:contentDescription="@string/AccessibilityId_voice_message"
android:contentDescription="@string/AccessibilityId_messageVoice"
android:layout_width="160dp"
android:layout_height="36dp">

View File

@ -104,31 +104,30 @@
<string name="AccessibilityId_attachmentsButton">Attachments button</string>
<string name="AccessibilityId_files">Documents folder</string>
<string name="AccessibilityId_download">Download media</string>
<string name="AccessibilityId_gif_button">GIF button</string>
<string name="AccessibilityId_images_folder">Images folder</string>
<string name="AccessibilityId_message_input">Message input box</string>
<string name="AccessibilityId_microphone_button">New voice message</string>
<string name="AccessibilityId_select_camera_button">Select camera button</string>
<string name="AccessibilityId_send_message_button">Send message button</string>
<string name="AccessibilityId_untrusted_attachment_message">Untrusted attachment message</string>
<string name="KeyboardPagerfragment_back_to_emoji">Back to emoji</string>
<string name="KeyboardPagerfragment_clear_search_entry">Clear search entry</string>
<string name="AccessibilityId_gif">GIF button</string>
<string name="AccessibilityId_image">Images folder</string>
<string name="AccessibilityId_inputBox">Message input box</string>
<string name="AccessibilityId_voiceMessageNew">New voice message</string>
<string name="AccessibilityId_camera">Select camera button</string>
<string name="AccessibilityId_send">Send message button</string>
<string name="AccessibilityId_attachmentsClickToDownload">Untrusted attachment message</string>
<string name="AccessibilityId_emojiSearch">Back to emoji</string>
<string name="AccessibilityId_emojiSearchClear">Clear search entry</string>
<!-- Conversation View-->
<string name="AccessibilityId_delete_message">Delete message</string>
<string name="AccessibilityId_deleted_message">Deleted message</string>
<string name="AccessibilityId_deleteMessage">Delete message</string>
<string name="AccessibilityId_deleteMessageDeleted">Deleted message</string>
<string name="AccessibilityId_document">Document</string>
<string name="AccessibilityId_message_body">Message body</string>
<string name="AccessibilityId_message_request_config_message">Message request has been accepted</string>
<string name="AccessibilityId_message_sent_status">Message sent status: Sent</string>
<string name="AccessibilityId_reply_message">Reply to message</string>
<string name="AccessibilityId_save_attachment">Save attachment</string>
<string name="AccessibilityId_message">Message body</string>
<string name="AccessibilityId_sent">Message sent status: Sent</string>
<string name="AccessibilityId_reply">Reply to message</string>
<string name="AccessibilityId_save">Save attachment</string>
<string name="AccessibilityId_select">Select</string>
<string name="AccessibilityId_voice_message">Voice message</string>
<string name="conversation_item_sent__delivered_description">Delivered</string>
<string name="AccessibilityId_messageVoice">Voice message</string>
<string name="AccessibilityId_deliveryIndicator">Delivered</string>
<!-- Delete message modal-->
<string name="AccessibilityId_cancel_deletion">Cancel deletion</string>
<string name="AccessibilityId_delete_for_everyone">Delete for everyone</string>
<string name="AccessibilityId_delete_just_for_me">Delete just for me</string>
<string name="AccessibilityId_deleteMessageCancel">Cancel deletion</string>
<string name="AccessibilityId_deleteMessageEveryone">Delete for everyone</string>
<string name="AccessibilityId_deleteMessageMe">Delete just for me</string>
<!--Settings Page-->
<string name="AccessibilityId_appearance">Appearance</string>
<string name="AccessibilityId_apply">Apply</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">كاميرا</string>
<string name="gif">صورة Gif</string>
<string name="attachment_type_selector__gallery_description">صورة أو فيديو</string>
<string name="attachment_type_selector__drawer_description">تفعيل أو تثبيط درج المرفقات</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">كاميرا</string>
<string name="gif">صورة Gif</string>
<string name="attachment_type_selector__gallery_description">صورة أو فيديو</string>
<string name="attachment_type_selector__drawer_description">تفعيل أو تثبيط درج المرفقات</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Təsvir və ya video</string>
<string name="attachment_type_selector__drawer_description">Qoşma siyirməsini aç/bağla</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Təsvir və ya video</string>
<string name="attachment_type_selector__drawer_description">Qoşma siyirməsini aç/bağla</string>

View File

@ -79,7 +79,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Gambar atau video</string>
<string name="attachment_type_selector__drawer_description">Jungkitkan laci lampiran</string>
<!-- contact_selection_group_activity -->

View File

@ -79,7 +79,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Gambar atau video</string>
<string name="attachment_type_selector__drawer_description">Jungkitkan laci lampiran</string>
<!-- contact_selection_group_activity -->

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="attachment_type_selector__gallery_description">Изображение или видео</string>
<string name="attachment_type_selector__drawer_description">Затваряне/отваряне на чекмеджето с прикачени файлове</string>
<!-- contact_selection_group_activity -->

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="attachment_type_selector__gallery_description">Изображение или видео</string>
<string name="attachment_type_selector__drawer_description">Затваряне/отваряне на чекмеджето с прикачени файлове</string>
<!-- contact_selection_group_activity -->

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Càmera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imatge o vídeo</string>
<string name="attachment_type_selector__drawer_description">Commuta la pestanya d\'adjunts</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Càmera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imatge o vídeo</string>
<string name="attachment_type_selector__drawer_description">Commuta la pestanya d\'adjunts</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obrázek nebo video</string>
<string name="attachment_type_selector__drawer_description">Vybrat úložiště pro přílohy</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obrázek nebo video</string>
<string name="attachment_type_selector__drawer_description">Vybrat úložiště pro přílohy</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Billed eller video</string>
<string name="attachment_type_selector__drawer_description">Skift vedhæftet fil</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Billed eller video</string>
<string name="attachment_type_selector__drawer_description">Skift vedhæftet fil</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">Bild oder Video</string>
<string name="attachment_type_selector__drawer_description">Anhänge hinzufügen</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">Bild oder Video</string>
<string name="attachment_type_selector__drawer_description">Anhänge hinzufügen</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Κάμερα</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Εικόνα ή βίντεο</string>
<string name="attachment_type_selector__drawer_description">Εναλλαγή συρταριού επισυνημμένων</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Κάμερα</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Εικόνα ή βίντεο</string>
<string name="attachment_type_selector__drawer_description">Εναλλαγή συρταριού επισυνημμένων</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Fotilo</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">Bildo aŭ videaĵo</string>
<string name="attachment_type_selector__drawer_description">Baskuligi kunsendaĵojn</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Fotilo</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">Bildo aŭ videaĵo</string>
<string name="attachment_type_selector__drawer_description">Baskuligi kunsendaĵojn</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cámara</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagen o vídeo</string>
<string name="attachment_type_selector__drawer_description">Activar el panel de adjuntos</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cámara</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagen o vídeo</string>
<string name="attachment_type_selector__drawer_description">Activar el panel de adjuntos</string>

View File

@ -78,7 +78,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kaamera</string>
<string name="attachment_type_selector__gallery_description">Pilt või video</string>
<string name="attachment_type_selector__drawer_description">Lülita manusesahtlit</string>
<!-- contact_selection_group_activity -->

View File

@ -78,7 +78,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kaamera</string>
<string name="attachment_type_selector__gallery_description">Pilt või video</string>
<string name="attachment_type_selector__drawer_description">Lülita manusesahtlit</string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">دوربین</string>
<string name="gif">گیف</string>
<string name="attachment_type_selector__gallery_description">تصویر یا ویدئو</string>
<string name="attachment_type_selector__drawer_description">تغییر حالت نگه دارنده پیوست</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">دوربین</string>
<string name="gif">گیف</string>
<string name="attachment_type_selector__gallery_description">تصویر با ویدئو</string>
<string name="attachment_type_selector__drawer_description">تغییر حالت نگه دارنده پیوست</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Kuva tai video</string>
<string name="attachment_type_selector__drawer_description">Avaa tai sulje liitetiedostovalikko</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Kuva tai video</string>
<string name="attachment_type_selector__drawer_description">Avaa tai sulje liitetiedostovalikko</string>

View File

@ -88,7 +88,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Appareil photo</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Image ou vidéo</string>
<string name="attachment_type_selector__drawer_description">Afficher, masquer le tiroir des pièces jointes</string>

View File

@ -90,7 +90,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Appareil photo</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Image ou vidéo</string>
<string name="attachment_type_selector__drawer_description">Afficher, masquer le tiroir des pièces jointes</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cámara</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imaxe ou vídeo</string>
<string name="attachment_type_selector__drawer_description">Activar panel de ficheiros anexos</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cámara</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imaxe ou vídeo</string>
<string name="attachment_type_selector__drawer_description">Activar panel de ficheiros anexos</string>

View File

@ -76,7 +76,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Wêne yan vidyo</string>
<string name="attachment_type_selector__drawer_description">Çaviya servehiya din bijerînin</string>
<!-- contact_selection_group_activity -->

View File

@ -76,7 +76,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Wêne yan vidyo</string>
<string name="attachment_type_selector__drawer_description">Çaviya servehiya din bijerînin</string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">कैमरा</string>
<string name="gif">जीआईएफ</string>
<string name="attachment_type_selector__gallery_description">छवि या वीडियो</string>
<string name="attachment_type_selector__drawer_description">अनुलग्नक दराज टॉगल करें</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">कैमरा</string>
<string name="gif">जीआईएफ</string>
<string name="attachment_type_selector__gallery_description">छवि या वीडियो</string>
<string name="attachment_type_selector__drawer_description">अनुलग्नक दराज टॉगल करें</string>

View File

@ -82,7 +82,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Kép vagy videó</string>
<string name="attachment_type_selector__drawer_description">Mellékletcsatoló kapcsoló</string>

View File

@ -82,7 +82,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Kép vagy videó</string>
<string name="attachment_type_selector__drawer_description">Mellékletcsatoló kapcsoló</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Տեսախցիկ</string>
<string name="gif">Գիֆ</string>
<string name="attachment_type_selector__gallery_description">Նկար կամ վիդեո</string>
<string name="attachment_type_selector__drawer_description">Ցույց տալ կցորդի դարակը</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Տեսախցիկ</string>
<string name="gif">Գիֆ</string>
<string name="attachment_type_selector__gallery_description">Նկար կամ վիդեո</string>
<string name="attachment_type_selector__drawer_description">Ցույց տալ կցորդի դարակը</string>

View File

@ -81,7 +81,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Gambar atau video</string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Gambar atau video</string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Fotocamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Immagine o video</string>
<string name="attachment_type_selector__drawer_description">Mostra/nascondi pannello degli allegati</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Fotocamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Immagine o video</string>
<string name="attachment_type_selector__drawer_description">Mostra/nascondi pannello degli allegati</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">מצלמה</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">תמונה או וידיאו</string>
<string name="attachment_type_selector__drawer_description">עורר מגירת צרופות</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">מצלמה</string>
<string name="gif">GIF</string>
<string name="attachment_type_selector__gallery_description">תמונה או וידיאו</string>
<string name="attachment_type_selector__drawer_description">עורר מגירת צרופות</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">カメラ</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">画像・動画</string>
<string name="attachment_type_selector__drawer_description">添付ファイル用引き出しの切替</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">カメラ</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">画像・動画</string>
<string name="attachment_type_selector__drawer_description">添付ファイル用引き出しの切替</string>

View File

@ -79,7 +79,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">កាមេរ៉ា</string>
<string name="attachment_type_selector__gallery_description">រូបភាព ឬវីដេអូ</string>
<string name="attachment_type_selector__drawer_description">បិទបើកថតឯកសារភ្ជាប់</string>
<!-- contact_selection_group_activity -->

View File

@ -79,7 +79,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">កាមេរ៉ា</string>
<string name="attachment_type_selector__gallery_description">រូបភាព ឬវីដេអូ</string>
<string name="attachment_type_selector__drawer_description">បិទបើកថតឯកសារភ្ជាប់</string>
<!-- contact_selection_group_activity -->

View File

@ -66,7 +66,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">ಕ್ಯಾಮರಾ</string>
<string name="gif">ಗಿಫ್</string>
<!-- contact_selection_group_activity -->
<!-- conversation_activity -->

View File

@ -66,7 +66,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">ಕ್ಯಾಮರಾ</string>
<string name="gif">ಗಿಫ್</string>
<!-- contact_selection_group_activity -->
<!-- conversation_activity -->

View File

@ -74,7 +74,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">카메라</string>
<!-- contact_selection_group_activity -->
<!-- conversation_activity -->
<string name="send">보내기</string>

View File

@ -74,7 +74,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">카메라</string>
<!-- contact_selection_group_activity -->
<!-- conversation_activity -->
<string name="send">보내기</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Paveikslas ar vaizdo įrašas</string>
<string name="attachment_type_selector__drawer_description">Perjungti priedų stalčių</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Paveikslas ar vaizdo įrašas</string>
<string name="attachment_type_selector__drawer_description">Perjungti priedų stalčių</string>

View File

@ -71,7 +71,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">ကင်မရာ </string>
<string name="attachment_type_selector__gallery_description">ဓာတ်ပုံ သို့မဟုတ် ဗီဒီယို </string>
<string name="attachment_type_selector__drawer_description">ပူးတွဲဖိုင် drawer အားတစ်ချက်နှိပ်ပါ </string>
<!-- contact_selection_group_activity -->

View File

@ -71,7 +71,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">ကင်မရာ </string>
<string name="attachment_type_selector__gallery_description">ဓာတ်ပုံ သို့မဟုတ် ဗီဒီယို </string>
<string name="attachment_type_selector__drawer_description">ပူးတွဲဖိုင် drawer အားတစ်ချက်နှိပ်ပါ </string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Bilde eller video</string>
<string name="attachment_type_selector__drawer_description">Slå av/på vedleggsfunksjon</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Bilde eller video</string>
<string name="attachment_type_selector__drawer_description">Slå av/på vedleggsfunksjon</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Camera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Afbeelding of video</string>
<string name="attachment_type_selector__drawer_description">Bijlageoverzicht tonen/verbergen</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Camera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Afbeelding of video</string>
<string name="attachment_type_selector__drawer_description">Bijlageoverzicht tonen/verbergen</string>

View File

@ -76,7 +76,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Bilete eller video</string>
<string name="attachment_type_selector__drawer_description">Vis/skjul vedleggspanel</string>
<!-- contact_selection_group_activity -->

View File

@ -76,7 +76,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="attachment_type_selector__gallery_description">Bilete eller video</string>
<string name="attachment_type_selector__drawer_description">Vis/skjul vedleggspanel</string>
<!-- contact_selection_group_activity -->

View File

@ -73,7 +73,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Shuyullukchik</string>
<string name="attachment_type_selector__gallery_description">Shuyu manakashpaka shuyukuyuriy.</string>
<string name="attachment_type_selector__drawer_description">Kimichishka millkakunata rurana</string>
<!-- contact_selection_group_activity -->

View File

@ -73,7 +73,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Shuyullukchik</string>
<string name="attachment_type_selector__gallery_description">Shuyu manakashpaka shuyukuyuriy.</string>
<string name="attachment_type_selector__drawer_description">Kimichishka millkakunata rurana</string>
<!-- contact_selection_group_activity -->

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obraz lub film</string>
<string name="attachment_type_selector__drawer_description">Przełącz listę załączników</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obraz lub film</string>
<string name="attachment_type_selector__drawer_description">Przełącz listę załączników</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Câmera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagem ou vídeo</string>
<string name="attachment_type_selector__drawer_description">Alternar gaveta de anexos</string>

View File

@ -82,7 +82,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Câmara</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagem ou vídeo</string>
<string name="attachment_type_selector__drawer_description">Comutar gaveta de anexos</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Câmera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagem ou vídeo</string>
<string name="attachment_type_selector__drawer_description">Alternar gaveta de anexos</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cameră</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagine sau video</string>
<string name="attachment_type_selector__drawer_description">Comutare panou atașamente</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Cameră</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Imagine sau video</string>
<string name="attachment_type_selector__drawer_description">Comutare panou atașamente</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Изображение или видео</string>
<string name="attachment_type_selector__drawer_description">Показать панель вложений</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Изображение или видео</string>
<string name="attachment_type_selector__drawer_description">Показать панель вложений</string>

View File

@ -79,7 +79,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obrázok alebo video</string>
<string name="attachment_type_selector__drawer_description">Prepnúť zobrazenie príloh</string>

View File

@ -79,7 +79,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Obrázok alebo video</string>
<string name="attachment_type_selector__drawer_description">Prepnúť zobrazenie príloh</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Figurë ose video</string>
<string name="attachment_type_selector__drawer_description">Hapni/mbyllni sirtarin e bashkëngjitjeve</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Figurë ose video</string>
<string name="attachment_type_selector__drawer_description">Hapni/mbyllni sirtarin e bashkëngjitjeve</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="gif">Гиф</string>
<string name="attachment_type_selector__gallery_description">Слика или видео</string>
<string name="attachment_type_selector__drawer_description">Фиока прилога</string>

View File

@ -80,7 +80,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Камера</string>
<string name="gif">Гиф</string>
<string name="attachment_type_selector__gallery_description">Слика или видео</string>
<string name="attachment_type_selector__drawer_description">Фиока прилога</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Bild eller film</string>
<string name="attachment_type_selector__drawer_description">Dölj/visa bilagor</string>

View File

@ -81,7 +81,6 @@
<!-- SingleRecipientNotificationBuilder -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">Gif</string>
<string name="attachment_type_selector__gallery_description">Bild eller film</string>
<string name="attachment_type_selector__drawer_description">Dölj/visa bilagor</string>

View File

@ -78,7 +78,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">Kamera</string>
<string name="gif">gif</string>
<string name="attachment_type_selector__gallery_description">picha au video</string>
<string name="attachment_type_selector__drawer_description">Toggle kiambatisho drawer</string>

View File

@ -79,7 +79,6 @@
<!-- TransferControlView -->
<!-- VideoPlayer -->
<!-- attachment_type_selector -->
<string name="contentDescriptionCamera">కెమెరా</string>
<string name="gif">గిఫ్</string>
<string name="attachment_type_selector__gallery_description">ఇమెజ్ ఆర్ వీడియో</string>
<string name="attachment_type_selector__drawer_description">టోగుల్ అటాచ్మెంట్ సొరుగు</string>

Some files were not shown because too many files have changed in this diff Show More