mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-21 15:05:19 +00:00
Further AccessibilityId mapping & fixed group members counts to display correct details
This commit is contained in:
parent
558d6741b1
commit
fc3b4ad367
@ -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
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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>) {
|
||||
|
@ -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>
|
||||
|
@ -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" />
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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" />
|
||||
|
||||
|
@ -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" />
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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">
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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">
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -66,7 +66,6 @@
|
||||
<!-- TransferControlView -->
|
||||
<!-- VideoPlayer -->
|
||||
<!-- attachment_type_selector -->
|
||||
<string name="contentDescriptionCamera">ಕ್ಯಾಮರಾ</string>
|
||||
<string name="gif">ಗಿಫ್</string>
|
||||
<!-- contact_selection_group_activity -->
|
||||
<!-- conversation_activity -->
|
||||
|
@ -66,7 +66,6 @@
|
||||
<!-- TransferControlView -->
|
||||
<!-- VideoPlayer -->
|
||||
<!-- attachment_type_selector -->
|
||||
<string name="contentDescriptionCamera">ಕ್ಯಾಮರಾ</string>
|
||||
<string name="gif">ಗಿಫ್</string>
|
||||
<!-- contact_selection_group_activity -->
|
||||
<!-- conversation_activity -->
|
||||
|
@ -74,7 +74,6 @@
|
||||
<!-- TransferControlView -->
|
||||
<!-- VideoPlayer -->
|
||||
<!-- attachment_type_selector -->
|
||||
<string name="contentDescriptionCamera">카메라</string>
|
||||
<!-- contact_selection_group_activity -->
|
||||
<!-- conversation_activity -->
|
||||
<string name="send">보내기</string>
|
||||
|
@ -74,7 +74,6 @@
|
||||
<!-- TransferControlView -->
|
||||
<!-- VideoPlayer -->
|
||||
<!-- attachment_type_selector -->
|
||||
<string name="contentDescriptionCamera">카메라</string>
|
||||
<!-- contact_selection_group_activity -->
|
||||
<!-- conversation_activity -->
|
||||
<string name="send">보내기</string>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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 -->
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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
Loading…
Reference in New Issue
Block a user