0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-20 04:12:14 +02:00

Move menu texts to string resources

This commit is contained in:
Christine Coenen 2022-11-20 13:31:40 +01:00
parent 3a8f2b255f
commit de4fb7bed3
3 changed files with 9 additions and 6 deletions

View File

@ -8,25 +8,24 @@
android:title="@string/action_share"
app:showAsAction="ifRoom" />
<!-- TODO: move texts to string resources -->
<item
android:id="@+id/menu_remove_download"
android:icon="@drawable/ic_baseline_delete_outline_24"
android:title="Download löschen"
android:title="@string/action_delete_download"
android:visible="false"
app:showAsAction="never" />
<item
android:id="@+id/menu_cancel_download"
android:icon="@drawable/ic_stop_white_24dp"
android:title="Download abbrechen"
android:title="@string/action_cancel_download"
android:visible="false"
app:showAsAction="never" />
<item
android:id="@+id/menu_mark_unwatched"
android:icon="@drawable/ic_outline_play_disabled_24"
android:title="Als ungesehen markieren"
android:title="@string/action_mark_unwatched"
android:visible="false"
app:showAsAction="never" />

View File

@ -81,7 +81,9 @@
<string name="action_send_mail">Send e-mail</string>
<string name="action_play_in_background">Play in background</string>
<string name="action_start_picture_in_picture">Picture in picture</string>
<string name="action_remove">Remove</string>
<string name="action_delete_download">Delete download</string>
<string name="action_cancel_download">Cancel download</string>
<string name="action_mark_unwatched">Mark as unwatched</string>
<string name="action_view_all">View all</string>
<string name="search_query_hint_mediathek">Search media center…</string>

View File

@ -81,7 +81,9 @@
<string name="action_send_mail">Mail senden</string>
<string name="action_play_in_background">Im Hintergrund abspielen</string>
<string name="action_start_picture_in_picture">Bild im Bild</string>
<string name="action_remove">Entfernen</string>
<string name="action_delete_download">Download löschen</string>
<string name="action_cancel_download">Download abbrechen</string>
<string name="action_mark_unwatched">Als ungesehen markieren</string>
<string name="action_view_all">Alle ansehen</string>
<string name="search_query_hint_mediathek">Mediathek durchsuchen…</string>