Turn page while playing (#1383) fixes #1365

* Add an EReader setting for turning when playing

This allows to allow the navigation with the Volume buttons even when
audiobooks are playing.

---------

Co-authored-by: advplyr <advplyr@protonmail.com>
This commit is contained in:
RaHoni
2024-12-13 16:20:13 -06:00
committed by GitHub
co-authored by advplyr
parent b02c1311ff
commit 2452f09714
18 changed files with 47 additions and 41 deletions
+25 -6
View File
@@ -54,7 +54,7 @@
</modals-fullscreen-modal> </modals-fullscreen-modal>
<!-- ereader settings modal --> <!-- ereader settings modal -->
<modals-fullscreen-modal v-model="showSettingsModal" :theme="ereaderTheme" half-screen> <modals-fullscreen-modal v-model="showSettingsModal" :theme="ereaderTheme">
<div style="box-shadow: 0px -8px 8px #11111155"> <div style="box-shadow: 0px -8px 8px #11111155">
<div class="flex items-end justify-between h-14 px-4 pb-2 mb-6"> <div class="flex items-end justify-between h-14 px-4 pb-2 mb-6">
<h1 class="text-lg">{{ $strings.HeaderEreaderSettings }}</h1> <h1 class="text-lg">{{ $strings.HeaderEreaderSettings }}</h1>
@@ -94,12 +94,18 @@
</div> </div>
<ui-toggle-btns v-model="ereaderSettings.spread" :items="spreadItems" @input="settingsUpdated" /> <ui-toggle-btns v-model="ereaderSettings.spread" :items="spreadItems" @input="settingsUpdated" />
</div> </div>
<div class="flex items-center"> <div class="flex items-center mb-6">
<div class="w-32"> <div class="w-32">
<p class="text-base">{{ $strings.LabelNavigateWithVolume }}:</p> <p class="text-base">{{ $strings.LabelNavigateWithVolume }}:</p>
</div> </div>
<ui-toggle-btns v-model="ereaderSettings.navigateWithVolume" :items="navigateWithVolumeItems" @input="settingsUpdated" /> <ui-toggle-btns v-model="ereaderSettings.navigateWithVolume" :items="navigateWithVolumeItems" @input="settingsUpdated" />
</div> </div>
<div class="flex items-center">
<div class="w-32">
<p class="text-base">{{ $strings.LabelNavigateWithVolumeWhilePlaying }}:</p>
</div>
<ui-toggle-btns v-model="ereaderSettings.navigateWithVolumeWhilePlaying" :items="navigateWithVolumeWhilePlayingItems" @input="settingsUpdated" />
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -132,7 +138,8 @@ export default {
lineSpacing: 115, lineSpacing: 115,
spread: 'auto', spread: 'auto',
textStroke: 0, textStroke: 0,
navigateWithVolume: 'enabled' navigateWithVolume: 'enabled',
navigateWithVolumeWhilePlaying: false
} }
} }
}, },
@@ -196,7 +203,7 @@ export default {
navigateWithVolumeItems() { navigateWithVolumeItems() {
return [ return [
{ {
text: this.$strings.LabelNavigateWithVolumeEnabled, text: this.$strings.LabelOn,
value: 'enabled' value: 'enabled'
}, },
{ {
@@ -204,11 +211,23 @@ export default {
value: 'mirrored' value: 'mirrored'
}, },
{ {
text: this.$strings.LabelNavigateWithVolumeDisabled, text: this.$strings.LabelOff,
value: 'none' value: 'none'
} }
] ]
}, },
navigateWithVolumeWhilePlayingItems() {
return [
{
text: this.$strings.LabelOn,
value: true
},
{
text: this.$strings.LabelOff,
value: false
}
]
},
themeItems() { themeItems() {
return [ return [
{ {
@@ -424,7 +443,7 @@ export default {
this.isInittingWatchVolume = true this.isInittingWatchVolume = true
const isWatching = await VolumeButtons.isWatching() const isWatching = await VolumeButtons.isWatching()
if (this.ereaderSettings.navigateWithVolume !== 'none' && !this.isPlayerOpen) { if (this.ereaderSettings.navigateWithVolume !== 'none' && (this.ereaderSettings.navigateWithVolumeWhilePlaying || !this.isPlayerOpen)) {
if (!isWatching.value) { if (!isWatching.value) {
const options = { const options = {
disableSystemVolumeHandler: true, disableSystemVolumeHandler: true,
+1 -2
View File
@@ -176,8 +176,6 @@
"LabelNarrator": "কথক", "LabelNarrator": "কথক",
"LabelNarrators": "কথক", "LabelNarrators": "কথক",
"LabelNavigateWithVolume": "ভলিউম বাটন দিয়ে নেভিগেট করুন", "LabelNavigateWithVolume": "ভলিউম বাটন দিয়ে নেভিগেট করুন",
"LabelNavigateWithVolumeDisabled": "বন্ধ",
"LabelNavigateWithVolumeEnabled": "চালু",
"LabelNavigateWithVolumeMirrored": "মিরর করা হয়েছে", "LabelNavigateWithVolumeMirrored": "মিরর করা হয়েছে",
"LabelNever": "কখনও না", "LabelNever": "কখনও না",
"LabelNewestAuthors": "নতুন লেখক", "LabelNewestAuthors": "নতুন লেখক",
@@ -186,6 +184,7 @@
"LabelNotFinished": "সমাপ্ত হয়নি", "LabelNotFinished": "সমাপ্ত হয়নি",
"LabelNotStarted": "শুরু হয়নি", "LabelNotStarted": "শুরু হয়নি",
"LabelOff": "বন্ধ", "LabelOff": "বন্ধ",
"LabelOn": "চালু",
"LabelPassword": "পাসওয়ার্ড", "LabelPassword": "পাসওয়ার্ড",
"LabelPath": "পথ", "LabelPath": "পথ",
"LabelPlaybackDirect": "সরাসরি", "LabelPlaybackDirect": "সরাসরি",
+1 -2
View File
@@ -176,8 +176,6 @@
"LabelNarrator": "Vypravěč", "LabelNarrator": "Vypravěč",
"LabelNarrators": "Vypravěči", "LabelNarrators": "Vypravěči",
"LabelNavigateWithVolume": "Navigace pomocí tlačítek hlasitosti", "LabelNavigateWithVolume": "Navigace pomocí tlačítek hlasitosti",
"LabelNavigateWithVolumeDisabled": "Vypnuto",
"LabelNavigateWithVolumeEnabled": "Zapnuto",
"LabelNavigateWithVolumeMirrored": "Zrcadleno", "LabelNavigateWithVolumeMirrored": "Zrcadleno",
"LabelNever": "Nikdy", "LabelNever": "Nikdy",
"LabelNewestAuthors": "Nejnovější autoři", "LabelNewestAuthors": "Nejnovější autoři",
@@ -186,6 +184,7 @@
"LabelNotFinished": "Nedokončeno", "LabelNotFinished": "Nedokončeno",
"LabelNotStarted": "Nezahájeno", "LabelNotStarted": "Nezahájeno",
"LabelOff": "Vypnout", "LabelOff": "Vypnout",
"LabelOn": "Zapnuto",
"LabelPassword": "Heslo", "LabelPassword": "Heslo",
"LabelPath": "Cesta", "LabelPath": "Cesta",
"LabelPlaybackDirect": "Přímé", "LabelPlaybackDirect": "Přímé",
+2 -2
View File
@@ -179,9 +179,8 @@
"LabelNarrator": "Erzähler", "LabelNarrator": "Erzähler",
"LabelNarrators": "Erzähler", "LabelNarrators": "Erzähler",
"LabelNavigateWithVolume": "Mit Lautstärke blättern", "LabelNavigateWithVolume": "Mit Lautstärke blättern",
"LabelNavigateWithVolumeDisabled": "Aus",
"LabelNavigateWithVolumeEnabled": "An",
"LabelNavigateWithVolumeMirrored": "Umgekehrt", "LabelNavigateWithVolumeMirrored": "Umgekehrt",
"LabelNavigateWithVolumeWhilePlaying": "Auch bei Wiedergabe mit Lautstärketasten blättern",
"LabelNever": "Nie", "LabelNever": "Nie",
"LabelNewestAuthors": "Neueste Autoren", "LabelNewestAuthors": "Neueste Autoren",
"LabelNewestEpisodes": "Neueste Episoden", "LabelNewestEpisodes": "Neueste Episoden",
@@ -190,6 +189,7 @@
"LabelNotStarted": "Nicht begonnen", "LabelNotStarted": "Nicht begonnen",
"LabelNumEpisodes": "{0} Episoden", "LabelNumEpisodes": "{0} Episoden",
"LabelOff": "Aus", "LabelOff": "Aus",
"LabelOn": "An",
"LabelPassword": "Passwort", "LabelPassword": "Passwort",
"LabelPath": "Pfad", "LabelPath": "Pfad",
"LabelPlaybackDirect": "Direkt", "LabelPlaybackDirect": "Direkt",
+4 -2
View File
@@ -179,9 +179,10 @@
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Narrators", "LabelNarrators": "Narrators",
"LabelNavigateWithVolume": "Navigate with volume keys", "LabelNavigateWithVolume": "Navigate with volume keys",
"LabelNavigateWithVolumeDisabled": "Off",
"LabelNavigateWithVolumeEnabled": "On",
"LabelNavigateWithVolumeMirrored": "Mirrored", "LabelNavigateWithVolumeMirrored": "Mirrored",
"LabelNavigateWithVolumeWhilePlaying": "Allow volume keys to navigate while playing",
"LabelNavigateWithVolumeWhilePlayingDisabled": "Off",
"LabelNavigateWithVolumeWhilePlayingEnabled": "On",
"LabelNever": "Never", "LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
@@ -190,6 +191,7 @@
"LabelNotStarted": "Not Started", "LabelNotStarted": "Not Started",
"LabelNumEpisodes": "{0} episodes", "LabelNumEpisodes": "{0} episodes",
"LabelOff": "Off", "LabelOff": "Off",
"LabelOn": "On",
"LabelPassword": "Password", "LabelPassword": "Password",
"LabelPath": "Path", "LabelPath": "Path",
"LabelPlaybackDirect": "Direct", "LabelPlaybackDirect": "Direct",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Narrador", "LabelNarrator": "Narrador",
"LabelNarrators": "Narradores", "LabelNarrators": "Narradores",
"LabelNavigateWithVolume": "Navegar con las teclas de volumen", "LabelNavigateWithVolume": "Navegar con las teclas de volumen",
"LabelNavigateWithVolumeDisabled": "Apagar",
"LabelNavigateWithVolumeEnabled": "Encender",
"LabelNavigateWithVolumeMirrored": "Espejo", "LabelNavigateWithVolumeMirrored": "Espejo",
"LabelNever": "Nunca", "LabelNever": "Nunca",
"LabelNewestAuthors": "Autores más recientes", "LabelNewestAuthors": "Autores más recientes",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Sin iniciar", "LabelNotStarted": "Sin iniciar",
"LabelNumEpisodes": "{0} episodios", "LabelNumEpisodes": "{0} episodios",
"LabelOff": "Apagado", "LabelOff": "Apagado",
"LabelOn": "Encendido",
"LabelPassword": "Contraseña", "LabelPassword": "Contraseña",
"LabelPath": "Ruta de carpeta", "LabelPath": "Ruta de carpeta",
"LabelPlaybackDirect": "Directo", "LabelPlaybackDirect": "Directo",
+1 -2
View File
@@ -163,14 +163,13 @@
"LabelNarrator": "Lukija", "LabelNarrator": "Lukija",
"LabelNarrators": "Lukijat", "LabelNarrators": "Lukijat",
"LabelNavigateWithVolume": "Navigoi äänenvoimakkuus-painikkeilla", "LabelNavigateWithVolume": "Navigoi äänenvoimakkuus-painikkeilla",
"LabelNavigateWithVolumeDisabled": "Pois päältä",
"LabelNavigateWithVolumeEnabled": "Päällä",
"LabelNever": "Ei koskaan", "LabelNever": "Ei koskaan",
"LabelNewestAuthors": "Uusimmat kirjailijat", "LabelNewestAuthors": "Uusimmat kirjailijat",
"LabelNewestEpisodes": "Uusimmat jaksot", "LabelNewestEpisodes": "Uusimmat jaksot",
"LabelNo": "Ei", "LabelNo": "Ei",
"LabelNotStarted": "Ei aloitettu", "LabelNotStarted": "Ei aloitettu",
"LabelOff": "Pois päältä", "LabelOff": "Pois päältä",
"LabelOn": "Päällä",
"LabelPassword": "Salasana", "LabelPassword": "Salasana",
"LabelPath": "Polku", "LabelPath": "Polku",
"LabelPlaybackLocal": "Paikallinen", "LabelPlaybackLocal": "Paikallinen",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Narrateur", "LabelNarrator": "Narrateur",
"LabelNarrators": "Narrateurs", "LabelNarrators": "Narrateurs",
"LabelNavigateWithVolume": "Naviguer avec les touches de volume", "LabelNavigateWithVolume": "Naviguer avec les touches de volume",
"LabelNavigateWithVolumeDisabled": "Désactivé",
"LabelNavigateWithVolumeEnabled": "Activé",
"LabelNavigateWithVolumeMirrored": "En miroir", "LabelNavigateWithVolumeMirrored": "En miroir",
"LabelNever": "Jamais", "LabelNever": "Jamais",
"LabelNewestAuthors": "Auteurs récents", "LabelNewestAuthors": "Auteurs récents",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Pas commencé", "LabelNotStarted": "Pas commencé",
"LabelNumEpisodes": "{0} épisodes", "LabelNumEpisodes": "{0} épisodes",
"LabelOff": "Éteint", "LabelOff": "Éteint",
"LabelOn": "Activé",
"LabelPassword": "Mot de passe", "LabelPassword": "Mot de passe",
"LabelPath": "Chemin", "LabelPath": "Chemin",
"LabelPlaybackDirect": "Direct", "LabelPlaybackDirect": "Direct",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Pripovjedač", "LabelNarrator": "Pripovjedač",
"LabelNarrators": "Pripovjedači", "LabelNarrators": "Pripovjedači",
"LabelNavigateWithVolume": "Navigacija tipkama za glasnoću", "LabelNavigateWithVolume": "Navigacija tipkama za glasnoću",
"LabelNavigateWithVolumeDisabled": "Isključeno",
"LabelNavigateWithVolumeEnabled": "Uključeno",
"LabelNavigateWithVolumeMirrored": "Zrcali", "LabelNavigateWithVolumeMirrored": "Zrcali",
"LabelNever": "Nikada", "LabelNever": "Nikada",
"LabelNewestAuthors": "Najnoviji autori", "LabelNewestAuthors": "Najnoviji autori",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Nije započeto", "LabelNotStarted": "Nije započeto",
"LabelNumEpisodes": "{0} nastavaka", "LabelNumEpisodes": "{0} nastavaka",
"LabelOff": "Isključeno", "LabelOff": "Isključeno",
"LabelOn": "Uključeno",
"LabelPassword": "Zaporka", "LabelPassword": "Zaporka",
"LabelPath": "Putanja", "LabelPath": "Putanja",
"LabelPlaybackDirect": "Izravno", "LabelPlaybackDirect": "Izravno",
+2 -3
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Előadó", "LabelNarrator": "Előadó",
"LabelNarrators": "Előadók", "LabelNarrators": "Előadók",
"LabelNavigateWithVolume": "Navigálás a hangerőgombokkal", "LabelNavigateWithVolume": "Navigálás a hangerőgombokkal",
"LabelNavigateWithVolumeDisabled": "Kikapcsolva",
"LabelNavigateWithVolumeEnabled": "Bekapcsolva",
"LabelNavigateWithVolumeMirrored": "Tükrözve", "LabelNavigateWithVolumeMirrored": "Tükrözve",
"LabelNever": "Soha", "LabelNever": "Soha",
"LabelNewestAuthors": "Legújabb szerzők", "LabelNewestAuthors": "Legújabb szerzők",
@@ -189,7 +187,8 @@
"LabelNotFinished": "Nem befejezett", "LabelNotFinished": "Nem befejezett",
"LabelNotStarted": "Nem kezdődött el", "LabelNotStarted": "Nem kezdődött el",
"LabelNumEpisodes": "{0} epizód", "LabelNumEpisodes": "{0} epizód",
"LabelOff": "Ki", "LabelOff": "Kikapcsolva",
"LabelOn": "Bekapcsolva",
"LabelPassword": "Jelszó", "LabelPassword": "Jelszó",
"LabelPath": "Útvonal", "LabelPath": "Útvonal",
"LabelPlaybackDirect": "Közvetlen", "LabelPlaybackDirect": "Közvetlen",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Narratore", "LabelNarrator": "Narratore",
"LabelNarrators": "Narratori", "LabelNarrators": "Narratori",
"LabelNavigateWithVolume": "Navigare con i tasti del volume", "LabelNavigateWithVolume": "Navigare con i tasti del volume",
"LabelNavigateWithVolumeDisabled": "Disattivo",
"LabelNavigateWithVolumeEnabled": "Attivo",
"LabelNavigateWithVolumeMirrored": "Invertito", "LabelNavigateWithVolumeMirrored": "Invertito",
"LabelNever": "Mai", "LabelNever": "Mai",
"LabelNewestAuthors": "Nuovi autori", "LabelNewestAuthors": "Nuovi autori",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Non iniziato", "LabelNotStarted": "Non iniziato",
"LabelNumEpisodes": "{0} episodi", "LabelNumEpisodes": "{0} episodi",
"LabelOff": "Disattivato", "LabelOff": "Disattivato",
"LabelOn": "Attivo",
"LabelPassword": "Password", "LabelPassword": "Password",
"LabelPath": "Percorso", "LabelPath": "Percorso",
"LabelPlaybackDirect": "Diretto", "LabelPlaybackDirect": "Diretto",
+1 -2
View File
@@ -176,8 +176,6 @@
"LabelNarrator": "Verteller", "LabelNarrator": "Verteller",
"LabelNarrators": "Vertellers", "LabelNarrators": "Vertellers",
"LabelNavigateWithVolume": "Navigeer met volume knoppen", "LabelNavigateWithVolume": "Navigeer met volume knoppen",
"LabelNavigateWithVolumeDisabled": "Uit",
"LabelNavigateWithVolumeEnabled": "Aam",
"LabelNavigateWithVolumeMirrored": "Gespiegeld", "LabelNavigateWithVolumeMirrored": "Gespiegeld",
"LabelNever": "Nooit", "LabelNever": "Nooit",
"LabelNewestAuthors": "Nieuwste Auteurs", "LabelNewestAuthors": "Nieuwste Auteurs",
@@ -186,6 +184,7 @@
"LabelNotFinished": "Niet Voltooid", "LabelNotFinished": "Niet Voltooid",
"LabelNotStarted": "Niet Gestart", "LabelNotStarted": "Niet Gestart",
"LabelOff": "Uit", "LabelOff": "Uit",
"LabelOn": "Aan",
"LabelPassword": "Wachtwoord", "LabelPassword": "Wachtwoord",
"LabelPath": "Pad", "LabelPath": "Pad",
"LabelPlaybackDirect": "Direct", "LabelPlaybackDirect": "Direct",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Читает", "LabelNarrator": "Читает",
"LabelNarrators": "Чтецы", "LabelNarrators": "Чтецы",
"LabelNavigateWithVolume": "Навигация с помощью клавиш регулировки громкости", "LabelNavigateWithVolume": "Навигация с помощью клавиш регулировки громкости",
"LabelNavigateWithVolumeDisabled": "Выключить",
"LabelNavigateWithVolumeEnabled": "Включён",
"LabelNavigateWithVolumeMirrored": "Зеркало", "LabelNavigateWithVolumeMirrored": "Зеркало",
"LabelNever": "Никогда", "LabelNever": "Никогда",
"LabelNewestAuthors": "Новые авторы", "LabelNewestAuthors": "Новые авторы",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Не запущено", "LabelNotStarted": "Не запущено",
"LabelNumEpisodes": "{0} эпизодов", "LabelNumEpisodes": "{0} эпизодов",
"LabelOff": "Выключить", "LabelOff": "Выключить",
"LabelOn": "Включён",
"LabelPassword": "Пароль", "LabelPassword": "Пароль",
"LabelPath": "Путь", "LabelPath": "Путь",
"LabelPlaybackDirect": "Напрямую", "LabelPlaybackDirect": "Напрямую",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Bralec", "LabelNarrator": "Bralec",
"LabelNarrators": "Bralci", "LabelNarrators": "Bralci",
"LabelNavigateWithVolume": "Krmarite s tipkami za glasnost", "LabelNavigateWithVolume": "Krmarite s tipkami za glasnost",
"LabelNavigateWithVolumeDisabled": "Izključeno",
"LabelNavigateWithVolumeEnabled": "Vključeno",
"LabelNavigateWithVolumeMirrored": "Zrcalno", "LabelNavigateWithVolumeMirrored": "Zrcalno",
"LabelNever": "Nikoli", "LabelNever": "Nikoli",
"LabelNewestAuthors": "Najnovejši avtorji", "LabelNewestAuthors": "Najnovejši avtorji",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Ni zagnano", "LabelNotStarted": "Ni zagnano",
"LabelNumEpisodes": "{0} epizod", "LabelNumEpisodes": "{0} epizod",
"LabelOff": "Izključeno", "LabelOff": "Izključeno",
"LabelOn": "Vključeno",
"LabelPassword": "Geslo", "LabelPassword": "Geslo",
"LabelPath": "Pot", "LabelPath": "Pot",
"LabelPlaybackDirect": "Neposredno", "LabelPlaybackDirect": "Neposredno",
+1 -2
View File
@@ -176,8 +176,6 @@
"LabelNarrator": "Berättare", "LabelNarrator": "Berättare",
"LabelNarrators": "Berättare", "LabelNarrators": "Berättare",
"LabelNavigateWithVolume": "Navigera med volymknapparna", "LabelNavigateWithVolume": "Navigera med volymknapparna",
"LabelNavigateWithVolumeDisabled": "Av",
"LabelNavigateWithVolumeEnabled": "På",
"LabelNavigateWithVolumeMirrored": "Speglad", "LabelNavigateWithVolumeMirrored": "Speglad",
"LabelNever": "Aldrig", "LabelNever": "Aldrig",
"LabelNewestAuthors": "Senast tillagda författare", "LabelNewestAuthors": "Senast tillagda författare",
@@ -186,6 +184,7 @@
"LabelNotFinished": "Ej avslutad", "LabelNotFinished": "Ej avslutad",
"LabelNotStarted": "Inte påbörjad", "LabelNotStarted": "Inte påbörjad",
"LabelOff": "Av", "LabelOff": "Av",
"LabelOn": "På",
"LabelPassword": "Lösenord", "LabelPassword": "Lösenord",
"LabelPath": "Sökväg", "LabelPath": "Sökväg",
"LabelPlaybackDirect": "Direct", "LabelPlaybackDirect": "Direct",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "Читець", "LabelNarrator": "Читець",
"LabelNarrators": "Читці", "LabelNarrators": "Читці",
"LabelNavigateWithVolume": "Навігація за допомогою клавіш гучності", "LabelNavigateWithVolume": "Навігація за допомогою клавіш гучності",
"LabelNavigateWithVolumeDisabled": "Вимкнено",
"LabelNavigateWithVolumeEnabled": "Увімкнено",
"LabelNavigateWithVolumeMirrored": "Віддзеркалено", "LabelNavigateWithVolumeMirrored": "Віддзеркалено",
"LabelNever": "Ніколи", "LabelNever": "Ніколи",
"LabelNewestAuthors": "Нові автори", "LabelNewestAuthors": "Нові автори",
@@ -190,6 +188,7 @@
"LabelNotStarted": "Непочаті", "LabelNotStarted": "Непочаті",
"LabelNumEpisodes": "{0} епізодів", "LabelNumEpisodes": "{0} епізодів",
"LabelOff": "Вимкнути", "LabelOff": "Вимкнути",
"LabelOn": "Увімкнено",
"LabelPassword": "Пароль", "LabelPassword": "Пароль",
"LabelPath": "Шлях", "LabelPath": "Шлях",
"LabelPlaybackDirect": "Безпосередньо", "LabelPlaybackDirect": "Безпосередньо",
+1 -2
View File
@@ -179,8 +179,6 @@
"LabelNarrator": "演播者", "LabelNarrator": "演播者",
"LabelNarrators": "演播者", "LabelNarrators": "演播者",
"LabelNavigateWithVolume": "使用音量键导航", "LabelNavigateWithVolume": "使用音量键导航",
"LabelNavigateWithVolumeDisabled": "关闭",
"LabelNavigateWithVolumeEnabled": "打开",
"LabelNavigateWithVolumeMirrored": "镜像", "LabelNavigateWithVolumeMirrored": "镜像",
"LabelNever": "从不", "LabelNever": "从不",
"LabelNewestAuthors": "最新作者", "LabelNewestAuthors": "最新作者",
@@ -190,6 +188,7 @@
"LabelNotStarted": "未开始", "LabelNotStarted": "未开始",
"LabelNumEpisodes": "{0} 个剧集", "LabelNumEpisodes": "{0} 个剧集",
"LabelOff": "关闭", "LabelOff": "关闭",
"LabelOn": "打开",
"LabelPassword": "密码", "LabelPassword": "密码",
"LabelPath": "路径", "LabelPath": "路径",
"LabelPlaybackDirect": "直接播放", "LabelPlaybackDirect": "直接播放",
+1 -2
View File
@@ -176,8 +176,6 @@
"LabelNarrator": "講述者", "LabelNarrator": "講述者",
"LabelNarrators": "講述者", "LabelNarrators": "講述者",
"LabelNavigateWithVolume": "使用音量鍵導航", "LabelNavigateWithVolume": "使用音量鍵導航",
"LabelNavigateWithVolumeDisabled": "關閉",
"LabelNavigateWithVolumeEnabled": "打開",
"LabelNavigateWithVolumeMirrored": "鏡像", "LabelNavigateWithVolumeMirrored": "鏡像",
"LabelNever": "從不", "LabelNever": "從不",
"LabelNewestAuthors": "最新作者", "LabelNewestAuthors": "最新作者",
@@ -186,6 +184,7 @@
"LabelNotFinished": "未聽完", "LabelNotFinished": "未聽完",
"LabelNotStarted": "未開始", "LabelNotStarted": "未開始",
"LabelOff": "關閉", "LabelOff": "關閉",
"LabelOn": "打開",
"LabelPassword": "密碼", "LabelPassword": "密碼",
"LabelPath": "路徑", "LabelPath": "路徑",
"LabelPlaybackDirect": "直接播放", "LabelPlaybackDirect": "直接播放",