Make description strings in audio_view.xml translatable.
Closes #5916 // FREEBIE
This commit is contained in:
parent
73bf75f65f
commit
e8555a84ac
2 changed files with 8 additions and 3 deletions
|
@ -42,7 +42,7 @@
|
|||
android:src="@drawable/ic_play_circle_fill_white_48dp"
|
||||
android:scaleType="centerInside"
|
||||
tools:visibility="gone"
|
||||
android:contentDescription="Play"/>
|
||||
android:contentDescription="@string/audio_view__play_accessibility_description"/>
|
||||
|
||||
<ImageView android:id="@+id/pause"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -54,7 +54,7 @@
|
|||
android:background="@drawable/circle_touch_highlight_background"
|
||||
android:src="@drawable/ic_pause_circle_fill_white_48dp"
|
||||
android:scaleType="centerInside"
|
||||
android:contentDescription="Pause"/>
|
||||
android:contentDescription="@string/audio_view__pause_accessibility_description"/>
|
||||
|
||||
<ImageView android:id="@+id/download"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -64,7 +64,7 @@
|
|||
android:visibility="gone"
|
||||
android:background="@drawable/circle_touch_highlight_background"
|
||||
android:src="@drawable/ic_download_circle_fill_white_48dp"
|
||||
android:contentDescription="Download"/>
|
||||
android:contentDescription="@string/audio_view__download_accessibility_description"/>
|
||||
|
||||
</org.thoughtcrime.securesms.components.AnimatingToggle>
|
||||
|
||||
|
|
|
@ -709,6 +709,11 @@
|
|||
<string name="conversation_item_received__contact_photo_description">Contact photo</string>
|
||||
<string name="conversation_item_received__downloading">Downloading</string>
|
||||
|
||||
<!-- audio_view -->
|
||||
<string name="audio_view__play_accessibility_description">Play</string>
|
||||
<string name="audio_view__pause_accessibility_description">Pause</string>
|
||||
<string name="audio_view__download_accessibility_description">Download</string>
|
||||
|
||||
<!-- conversation_fragment_cab -->
|
||||
<string name="conversation_fragment_cab__batch_selection_mode">Batch selection mode</string>
|
||||
<string name="conversation_fragment_cab__batch_selection_amount">%s selected</string>
|
||||
|
|
Loading…
Add table
Reference in a new issue