Extract the apply queue string

This commit is contained in:
Nicolas Pomepuy 2024-11-15 11:34:35 +01:00 committed by Duncan McNamara
parent d8d2c13634
commit abe4d130e9
3 changed files with 3 additions and 1 deletions

View File

@ -610,6 +610,7 @@
<string name="go_to_chapter">Go to chapter…</string>
<string name="current_chapter">Chapter: %s</string>
<string name="confirm_resume">Resume from last position?</string>
<string name="apply_playqueue">Apply for all the play queue</string>
<string name="confirm_resume_title">Resume played videos</string>
<string name="confirm_resume_audio_title">Resume played audio</string>
<string name="tv_ui_title">Android TV interface</string>

View File

@ -51,7 +51,7 @@
android:layout_marginTop="8dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="8dp"
android:text="Apply for all the play queue"
android:text="@string/apply_playqueue"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"

View File

@ -142,6 +142,7 @@ object TranslationMapping {
REMOTE_KEYBOARD_NAVIGATION(R.string.remote_keyboard_navigation),
RESUME(R.string.resume),
CONFIRM_RESUME(R.string.confirm_resume),
APPLY_PLAYQUEUE(R.string.apply_playqueue),
NO(R.string.no)
}
}