Commit a7d4d2d2 by olly Committed by Oliver Woodman

Automated g4 rollback of changelist 184056034.

*** Reason for rollback ***

Broke everything

*** Original change description ***

Clean up message naming in EPII

***

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=184061352
parent fd10a3cb
Showing with 287 additions and 77 deletions
...@@ -28,6 +28,7 @@ include modulePrefix + 'extension-ffmpeg' ...@@ -28,6 +28,7 @@ include modulePrefix + 'extension-ffmpeg'
include modulePrefix + 'extension-flac' include modulePrefix + 'extension-flac'
include modulePrefix + 'extension-gvr' include modulePrefix + 'extension-gvr'
include modulePrefix + 'extension-ima' include modulePrefix + 'extension-ima'
include modulePrefix + 'extension-cast'
include modulePrefix + 'extension-mediasession' include modulePrefix + 'extension-mediasession'
include modulePrefix + 'extension-okhttp' include modulePrefix + 'extension-okhttp'
include modulePrefix + 'extension-opus' include modulePrefix + 'extension-opus'
...@@ -46,6 +47,7 @@ project(modulePrefix + 'extension-ffmpeg').projectDir = new File(rootDir, 'exten ...@@ -46,6 +47,7 @@ project(modulePrefix + 'extension-ffmpeg').projectDir = new File(rootDir, 'exten
project(modulePrefix + 'extension-flac').projectDir = new File(rootDir, 'extensions/flac') project(modulePrefix + 'extension-flac').projectDir = new File(rootDir, 'extensions/flac')
project(modulePrefix + 'extension-gvr').projectDir = new File(rootDir, 'extensions/gvr') project(modulePrefix + 'extension-gvr').projectDir = new File(rootDir, 'extensions/gvr')
project(modulePrefix + 'extension-ima').projectDir = new File(rootDir, 'extensions/ima') project(modulePrefix + 'extension-ima').projectDir = new File(rootDir, 'extensions/ima')
project(modulePrefix + 'extension-cast').projectDir = new File(rootDir, 'extensions/cast')
project(modulePrefix + 'extension-mediasession').projectDir = new File(rootDir, 'extensions/mediasession') project(modulePrefix + 'extension-mediasession').projectDir = new File(rootDir, 'extensions/mediasession')
project(modulePrefix + 'extension-okhttp').projectDir = new File(rootDir, 'extensions/okhttp') project(modulePrefix + 'extension-okhttp').projectDir = new File(rootDir, 'extensions/okhttp')
project(modulePrefix + 'extension-opus').projectDir = new File(rootDir, 'extensions/opus') project(modulePrefix + 'extension-opus').projectDir = new File(rootDir, 'extensions/opus')
......
# Proguard rules specific to the main demo app.
# Constructor accessed via reflection in PlayerActivity
-keepclassmembers class com.google.android.exoplayer2.ext.ima.ImaAdsLoader {
<init>(android.content.Context, android.net.Uri);
}
# Proguard rules specific to the main demo app.
# Constructor accessed via reflection in PlayerActivity
-keepclassmembers class com.google.android.exoplayer2.ext.ima.ImaAdsLoader {
<init>(android.content.Context, android.net.Uri);
}
# Proguard rules specific to the IMA extension.
-keep class com.google.ads.interactivemedia.** { *; }
-keep interface com.google.ads.interactivemedia.** { *; }
-keep class com.google.obf.** { *; }
-keep interface com.google.obf.** { *; }
# Proguard rules specific to the IMA extension.
-keep class com.google.ads.interactivemedia.** { *; }
-keep interface com.google.ads.interactivemedia.** { *; }
-keep class com.google.obf.** { *; }
-keep interface com.google.obf.** { *; }
# Proguard rules specific to the core module.
# Constructors accessed via reflection in DefaultRenderersFactory
-keepclassmembers class com.google.android.exoplayer2.ext.vp9.LibvpxVideoRenderer {
<init>(boolean, long, android.os.Handler, com.google.android.exoplayer2.video.VideoRendererEventListener, int);
}
-keepclassmembers class com.google.android.exoplayer2.ext.opus.LibopusAudioRenderer {
<init>(android.os.Handler, com.google.android.exoplayer2.audio.AudioRendererEventListener, com.google.android.exoplayer2.audio.AudioProcessor[]);
}
-keepclassmembers class com.google.android.exoplayer2.ext.flac.LibflacAudioRenderer {
<init>(android.os.Handler, com.google.android.exoplayer2.audio.AudioRendererEventListener, com.google.android.exoplayer2.audio.AudioProcessor[]);
}
-keepclassmembers class com.google.android.exoplayer2.ext.ffmpeg.FfmpegAudioRenderer {
<init>(android.os.Handler, com.google.android.exoplayer2.audio.AudioRendererEventListener, com.google.android.exoplayer2.audio.AudioProcessor[]);
}
# Constructors accessed via reflection in DefaultExtractorsFactory
-keepclassmembers class com.google.android.exoplayer2.ext.flac.FlacExtractor {
<init>();
}
# Constructors accessed via reflection in DefaultDataSource
-keepclassmembers class com.google.android.exoplayer2.ext.rtmp.RtmpDataSource {
<init>();
}
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2018 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:viewportWidth="24"
android:viewportHeight="24"
android:width="48dp"
android:height="48dp">
<path
android:pathData="M7 14l-2 0 0 5 5 0 0 -2 -3 0 0 -3zm-2 -4l2 0 0 -3 3 0 0 -2 -5 0 0 5zm12 7l-3 0 0 2 5 0 0 -5 -2 0 0 3zm-3 -12l0 2 3 0 0 3 2 0 0 -5 -5 0z"
android:fillColor="#FFFFFF" />
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2018 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:viewportWidth="24"
android:viewportHeight="24"
android:width="48dp"
android:height="48dp">
<path
android:pathData="M5 16l3 0 0 3 2 0 0 -5 -5 0 0 2zm3 -8l-3 0 0 2 5 0 0 -5 -2 0 0 3zm6 11l2 0 0 -3 3 0 0 -2 -5 0 0 5zm2 -11l0 -3 -2 0 0 5 5 0 0 -2 -3 0z"
android:fillColor="#FFFFFF" />
</vector>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Volgende snit"</string> <string name="exo_controls_next_description">"Volgende snit"</string>
<string name="exo_controls_pause_description">"Wag"</string> <string name="exo_controls_pause_description">"Wag"</string>
<string name="exo_controls_play_description">"Speel"</string> <string name="exo_controls_play_description">"Speel"</string>
<string name="exo_controls_stop_description">"Stop"</string>
<string name="exo_controls_rewind_description">"Spoel terug"</string> <string name="exo_controls_rewind_description">"Spoel terug"</string>
<string name="exo_controls_fastforward_description">"Vinnig vorentoe"</string> <string name="exo_controls_fastforward_description">"Vinnig vorentoe"</string>
<string name="exo_controls_repeat_all_description">"Herhaal alles"</string> <string name="exo_controls_repeat_all_description">"Herhaal alles"</string>
<string name="exo_controls_repeat_off_description">"Herhaal niks"</string> <string name="exo_controls_repeat_off_description">"Herhaal niks"</string>
<string name="exo_controls_repeat_one_description">"Herhaal een"</string> <string name="exo_controls_repeat_one_description">"Herhaal een"</string>
<string name="exo_controls_shuffle_description">"Skommel"</string> <string name="exo_controls_shuffle_description">"Skommel"</string>
<string name="exo_controls_fullscreen_description">Volskermmodus</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"ቀጣይ ትራክ"</string> <string name="exo_controls_next_description">"ቀጣይ ትራክ"</string>
<string name="exo_controls_pause_description">"ለአፍታ አቁም"</string> <string name="exo_controls_pause_description">"ለአፍታ አቁም"</string>
<string name="exo_controls_play_description">"አጫውት"</string> <string name="exo_controls_play_description">"አጫውት"</string>
<string name="exo_controls_rewind_description">"ወደኋላ አጠንጥን"</string> <string name="exo_controls_stop_description">"አቁም"</string>
<string name="exo_controls_rewind_description">"ወደኋላ አጠንጥን"</string>
<string name="exo_controls_fastforward_description">"በፍጥነት አሳልፍ"</string> <string name="exo_controls_fastforward_description">"በፍጥነት አሳልፍ"</string>
<string name="exo_controls_repeat_all_description">"ሁሉንም ድገም"</string> <string name="exo_controls_repeat_all_description">"ሁሉንም ድገም"</string>
<string name="exo_controls_repeat_off_description">"ምንም አትድገም"</string> <string name="exo_controls_repeat_off_description">"ምንም አትድገም"</string>
<string name="exo_controls_repeat_one_description">"አንዱን ድገም"</string> <string name="exo_controls_repeat_one_description">"አንዱን ድገም"</string>
<string name="exo_controls_shuffle_description">"በው"</string> <string name="exo_controls_shuffle_description">"በው"</string>
<string name="exo_controls_fullscreen_description">ባለ ሙሉ ማያ ገጽ ሁኔታ</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"المقطع الصوتي التالي"</string> <string name="exo_controls_next_description">"المقطع الصوتي التالي"</string>
<string name="exo_controls_pause_description">"إيقاف مؤقت"</string> <string name="exo_controls_pause_description">"إيقاف مؤقت"</string>
<string name="exo_controls_play_description">"تشغيل"</string> <string name="exo_controls_play_description">"تشغيل"</string>
<string name="exo_controls_rewind_description">"إرجاع"</string> <string name="exo_controls_stop_description">"إيقاف"</string>
<string name="exo_controls_rewind_description">"إرجاع"</string>
<string name="exo_controls_fastforward_description">"تقديم سريع"</string> <string name="exo_controls_fastforward_description">"تقديم سريع"</string>
<string name="exo_controls_repeat_all_description">"تكرار الكل"</string> <string name="exo_controls_repeat_all_description">"تكرار الكل"</string>
<string name="exo_controls_repeat_off_description">"عدم التكرار"</string> <string name="exo_controls_repeat_off_description">"عدم التكرار"</string>
<string name="exo_controls_repeat_one_description">"تكرار مقطع واحد"</string> <string name="exo_controls_repeat_one_description">"تكرار مقطع واحد"</string>
<string name="exo_controls_shuffle_description">"ترتيب عشوائي"</string> <string name="exo_controls_shuffle_description">"ترتيب عشوائي"</string>
<string name="exo_controls_fullscreen_description">وضع ملء الشاشة</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Növbəti trek"</string> <string name="exo_controls_next_description">"Növbəti trek"</string>
<string name="exo_controls_pause_description">"Pauza"</string> <string name="exo_controls_pause_description">"Pauza"</string>
<string name="exo_controls_play_description">"Oyun"</string> <string name="exo_controls_play_description">"Oyun"</string>
<string name="exo_controls_rewind_description">"Geri sarıma"</string> <string name="exo_controls_stop_description">"Dayandır"</string>
<string name="exo_controls_rewind_description">"Geri sarıma"</string>
<string name="exo_controls_fastforward_description">"Sürətlə irəli"</string> <string name="exo_controls_fastforward_description">"Sürətlə irəli"</string>
<string name="exo_controls_repeat_all_description">"Bütün təkrarlayın"</string> <string name="exo_controls_repeat_all_description">"Bütün təkrarlayın"</string>
<string name="exo_controls_repeat_one_description">"Təkrar bir"</string> <string name="exo_controls_repeat_one_description">"Təkrar bir"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Sledeća pesma"</string> <string name="exo_controls_next_description">"Sledeća pesma"</string>
<string name="exo_controls_pause_description">"Pauza"</string> <string name="exo_controls_pause_description">"Pauza"</string>
<string name="exo_controls_play_description">"Pusti"</string> <string name="exo_controls_play_description">"Pusti"</string>
<string name="exo_controls_rewind_description">"Premotaj unazad"</string> <string name="exo_controls_stop_description">"Zaustavi"</string>
<string name="exo_controls_rewind_description">"Premotaj unazad"</string>
<string name="exo_controls_fastforward_description">"Premotaj unapred"</string> <string name="exo_controls_fastforward_description">"Premotaj unapred"</string>
<string name="exo_controls_repeat_all_description">"Ponovi sve"</string> <string name="exo_controls_repeat_all_description">"Ponovi sve"</string>
<string name="exo_controls_repeat_off_description">"Ne ponavljaj nijednu"</string> <string name="exo_controls_repeat_off_description">"Ne ponavljaj nijednu"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Наступны трэк"</string> <string name="exo_controls_next_description">"Наступны трэк"</string>
<string name="exo_controls_pause_description">"Прыпыніць"</string> <string name="exo_controls_pause_description">"Прыпыніць"</string>
<string name="exo_controls_play_description">"Прайграць"</string> <string name="exo_controls_play_description">"Прайграць"</string>
<string name="exo_controls_rewind_description">"Перамотка назад"</string> <string name="exo_controls_stop_description">"Спыніць"</string>
<string name="exo_controls_rewind_description">"Перамотка назад"</string>
<string name="exo_controls_fastforward_description">"Перамотка ўперад"</string> <string name="exo_controls_fastforward_description">"Перамотка ўперад"</string>
<string name="exo_controls_repeat_all_description">"Паўтарыць усё"</string> <string name="exo_controls_repeat_all_description">"Паўтарыць усё"</string>
<string name="exo_controls_repeat_off_description">"Паўтараць ні"</string> <string name="exo_controls_repeat_off_description">"Паўтараць ні"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Следващ запис"</string> <string name="exo_controls_next_description">"Следващ запис"</string>
<string name="exo_controls_pause_description">"Пауза"</string> <string name="exo_controls_pause_description">"Пауза"</string>
<string name="exo_controls_play_description">"Пускане"</string> <string name="exo_controls_play_description">"Пускане"</string>
<string name="exo_controls_rewind_description">"Превъртане назад"</string> <string name="exo_controls_stop_description">"Спиране"</string>
<string name="exo_controls_rewind_description">"Превъртане назад"</string>
<string name="exo_controls_fastforward_description">"Превъртане напред"</string> <string name="exo_controls_fastforward_description">"Превъртане напред"</string>
<string name="exo_controls_repeat_all_description">"Повтаряне на всички"</string> <string name="exo_controls_repeat_all_description">"Повтаряне на всички"</string>
<string name="exo_controls_repeat_off_description">"Без повтаряне"</string> <string name="exo_controls_repeat_off_description">"Без повтаряне"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"পরবর্তী ট্র্যাক"</string> <string name="exo_controls_next_description">"পরবর্তী ট্র্যাক"</string>
<string name="exo_controls_pause_description">"বিরাম দিন"</string> <string name="exo_controls_pause_description">"বিরাম দিন"</string>
<string name="exo_controls_play_description">"প্লে করুন"</string> <string name="exo_controls_play_description">"প্লে করুন"</string>
<string name="exo_controls_rewind_description">"গুটিয়ে নিন"</string> <string name="exo_controls_stop_description">"থামান"</string>
<string name="exo_controls_rewind_description">"গুটিয়ে নিন"</string>
<string name="exo_controls_fastforward_description">"দ্রুত সামনে এগোন"</string> <string name="exo_controls_fastforward_description">"দ্রুত সামনে এগোন"</string>
<string name="exo_controls_repeat_all_description">"সবগুলির পুনরাবৃত্তি করুন"</string> <string name="exo_controls_repeat_all_description">"সবগুলির পুনরাবৃত্তি করুন"</string>
<string name="exo_controls_repeat_off_description">"একটিরও পুনরাবৃত্তি করবেন না"</string> <string name="exo_controls_repeat_off_description">"একটিরও পুনরাবৃত্তি করবেন না"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Sljedeća numera"</string> <string name="exo_controls_next_description">"Sljedeća numera"</string>
<string name="exo_controls_pause_description">"Pauziraj"</string> <string name="exo_controls_pause_description">"Pauziraj"</string>
<string name="exo_controls_play_description">"Reproduciraj"</string> <string name="exo_controls_play_description">"Reproduciraj"</string>
<string name="exo_controls_rewind_description">"Premotaj"</string> <string name="exo_controls_stop_description">"Zaustavi"</string>
<string name="exo_controls_rewind_description">"Premotaj"</string>
<string name="exo_controls_fastforward_description">"Ubrzaj"</string> <string name="exo_controls_fastforward_description">"Ubrzaj"</string>
<string name="exo_controls_repeat_all_description">"Ponovite sve"</string> <string name="exo_controls_repeat_all_description">"Ponovite sve"</string>
<string name="exo_controls_repeat_off_description">"Ne ponavljaju"</string> <string name="exo_controls_repeat_off_description">"Ne ponavljaju"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Ruta següent"</string> <string name="exo_controls_next_description">"Ruta següent"</string>
<string name="exo_controls_pause_description">"Posa en pausa"</string> <string name="exo_controls_pause_description">"Posa en pausa"</string>
<string name="exo_controls_play_description">"Reprodueix"</string> <string name="exo_controls_play_description">"Reprodueix"</string>
<string name="exo_controls_rewind_description">"Rebobina"</string> <string name="exo_controls_stop_description">"Atura"</string>
<string name="exo_controls_rewind_description">"Rebobina"</string>
<string name="exo_controls_fastforward_description">"Avança ràpidament"</string> <string name="exo_controls_fastforward_description">"Avança ràpidament"</string>
<string name="exo_controls_repeat_all_description">"Repeteix-ho tot"</string> <string name="exo_controls_repeat_all_description">"Repeteix-ho tot"</string>
<string name="exo_controls_repeat_off_description">"No en repeteixis cap"</string> <string name="exo_controls_repeat_off_description">"No en repeteixis cap"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Další skladba"</string> <string name="exo_controls_next_description">"Další skladba"</string>
<string name="exo_controls_pause_description">"Pozastavit"</string> <string name="exo_controls_pause_description">"Pozastavit"</string>
<string name="exo_controls_play_description">"Přehrát"</string> <string name="exo_controls_play_description">"Přehrát"</string>
<string name="exo_controls_rewind_description">"Přetočit zpět"</string> <string name="exo_controls_stop_description">"Zastavit"</string>
<string name="exo_controls_rewind_description">"Přetočit zpět"</string>
<string name="exo_controls_fastforward_description">"Přetočit vpřed"</string> <string name="exo_controls_fastforward_description">"Přetočit vpřed"</string>
<string name="exo_controls_repeat_all_description">"Opakovat vše"</string> <string name="exo_controls_repeat_all_description">"Opakovat vše"</string>
<string name="exo_controls_repeat_off_description">"Neopakovat"</string> <string name="exo_controls_repeat_off_description">"Neopakovat"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Næste nummer"</string> <string name="exo_controls_next_description">"Næste nummer"</string>
<string name="exo_controls_pause_description">"Pause"</string> <string name="exo_controls_pause_description">"Pause"</string>
<string name="exo_controls_play_description">"Afspil"</string> <string name="exo_controls_play_description">"Afspil"</string>
<string name="exo_controls_rewind_description">"Spol tilbage"</string> <string name="exo_controls_stop_description">"Stop"</string>
<string name="exo_controls_rewind_description">"Spol tilbage"</string>
<string name="exo_controls_fastforward_description">"Spol frem"</string> <string name="exo_controls_fastforward_description">"Spol frem"</string>
<string name="exo_controls_repeat_all_description">"Gentag alle"</string> <string name="exo_controls_repeat_all_description">"Gentag alle"</string>
<string name="exo_controls_repeat_off_description">"Gentag ingen"</string> <string name="exo_controls_repeat_off_description">"Gentag ingen"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Nächster Titel"</string> <string name="exo_controls_next_description">"Nächster Titel"</string>
<string name="exo_controls_pause_description">"Pausieren"</string> <string name="exo_controls_pause_description">"Pausieren"</string>
<string name="exo_controls_play_description">"Wiedergabe"</string> <string name="exo_controls_play_description">"Wiedergabe"</string>
<string name="exo_controls_rewind_description">"Zurückspulen"</string> <string name="exo_controls_stop_description">"Beenden"</string>
<string name="exo_controls_rewind_description">"Zurückspulen"</string>
<string name="exo_controls_fastforward_description">"Vorspulen"</string> <string name="exo_controls_fastforward_description">"Vorspulen"</string>
<string name="exo_controls_repeat_all_description">"Alle wiederholen"</string> <string name="exo_controls_repeat_all_description">"Alle wiederholen"</string>
<string name="exo_controls_repeat_off_description">"Keinen Titel wiederholen"</string> <string name="exo_controls_repeat_off_description">"Keinen Titel wiederholen"</string>
<string name="exo_controls_repeat_one_description">"Einen Titel wiederholen"</string> <string name="exo_controls_repeat_one_description">"Einen Titel wiederholen"</string>
<string name="exo_controls_shuffle_description">"Zufallsmix"</string> <string name="exo_controls_shuffle_description">"Zufallsmix"</string>
<string name="exo_controls_fullscreen_description">Vollbildmodus</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Επόμενο κομμάτι"</string> <string name="exo_controls_next_description">"Επόμενο κομμάτι"</string>
<string name="exo_controls_pause_description">"Παύση"</string> <string name="exo_controls_pause_description">"Παύση"</string>
<string name="exo_controls_play_description">"Αναπαραγωγή"</string> <string name="exo_controls_play_description">"Αναπαραγωγή"</string>
<string name="exo_controls_rewind_description">"Επαναφορά"</string> <string name="exo_controls_stop_description">"Διακοπή"</string>
<string name="exo_controls_rewind_description">"Επαναφορά"</string>
<string name="exo_controls_fastforward_description">"Γρήγορη προώθηση"</string> <string name="exo_controls_fastforward_description">"Γρήγορη προώθηση"</string>
<string name="exo_controls_repeat_all_description">"Επανάληψη όλων"</string> <string name="exo_controls_repeat_all_description">"Επανάληψη όλων"</string>
<string name="exo_controls_repeat_off_description">"Καμία επανάληψη"</string> <string name="exo_controls_repeat_off_description">"Καμία επανάληψη"</string>
<string name="exo_controls_repeat_one_description">"Επανάληψη ενός στοιχείου"</string> <string name="exo_controls_repeat_one_description">"Επανάληψη ενός στοιχείου"</string>
<string name="exo_controls_shuffle_description">"Τυχαία αναπαραγωγή"</string> <string name="exo_controls_shuffle_description">"Τυχαία αναπαραγωγή"</string>
<string name="exo_controls_fullscreen_description">Λειτουργία πλήρους οθόνης</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Next track"</string> <string name="exo_controls_next_description">"Next track"</string>
<string name="exo_controls_pause_description">"Pause"</string> <string name="exo_controls_pause_description">"Pause"</string>
<string name="exo_controls_play_description">"Play"</string> <string name="exo_controls_play_description">"Play"</string>
<string name="exo_controls_rewind_description">"Rewind"</string> <string name="exo_controls_stop_description">"Stop"</string>
<string name="exo_controls_rewind_description">"Rewind"</string>
<string name="exo_controls_fastforward_description">"Fast-forward"</string> <string name="exo_controls_fastforward_description">"Fast-forward"</string>
<string name="exo_controls_repeat_all_description">"Repeat all"</string> <string name="exo_controls_repeat_all_description">"Repeat all"</string>
<string name="exo_controls_repeat_off_description">"Repeat none"</string> <string name="exo_controls_repeat_off_description">"Repeat none"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Next track"</string> <string name="exo_controls_next_description">"Next track"</string>
<string name="exo_controls_pause_description">"Pause"</string> <string name="exo_controls_pause_description">"Pause"</string>
<string name="exo_controls_play_description">"Play"</string> <string name="exo_controls_play_description">"Play"</string>
<string name="exo_controls_rewind_description">"Rewind"</string> <string name="exo_controls_stop_description">"Stop"</string>
<string name="exo_controls_rewind_description">"Rewind"</string>
<string name="exo_controls_fastforward_description">"Fast-forward"</string> <string name="exo_controls_fastforward_description">"Fast-forward"</string>
<string name="exo_controls_repeat_all_description">"Repeat all"</string> <string name="exo_controls_repeat_all_description">"Repeat all"</string>
<string name="exo_controls_repeat_off_description">"Repeat none"</string> <string name="exo_controls_repeat_off_description">"Repeat none"</string>
<string name="exo_controls_repeat_one_description">"Repeat one"</string> <string name="exo_controls_repeat_one_description">"Repeat one"</string>
<string name="exo_controls_shuffle_description">"Shuffle"</string> <string name="exo_controls_shuffle_description">"Shuffle"</string>
<string name="exo_controls_fullscreen_description">Fullscreen mode</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Next track"</string> <string name="exo_controls_next_description">"Next track"</string>
<string name="exo_controls_pause_description">"Pause"</string> <string name="exo_controls_pause_description">"Pause"</string>
<string name="exo_controls_play_description">"Play"</string> <string name="exo_controls_play_description">"Play"</string>
<string name="exo_controls_rewind_description">"Rewind"</string> <string name="exo_controls_stop_description">"Stop"</string>
<string name="exo_controls_rewind_description">"Rewind"</string>
<string name="exo_controls_fastforward_description">"Fast-forward"</string> <string name="exo_controls_fastforward_description">"Fast-forward"</string>
<string name="exo_controls_repeat_all_description">"Repeat all"</string> <string name="exo_controls_repeat_all_description">"Repeat all"</string>
<string name="exo_controls_repeat_off_description">"Repeat none"</string> <string name="exo_controls_repeat_off_description">"Repeat none"</string>
<string name="exo_controls_repeat_one_description">"Repeat one"</string> <string name="exo_controls_repeat_one_description">"Repeat one"</string>
<string name="exo_controls_shuffle_description">"Shuffle"</string> <string name="exo_controls_shuffle_description">"Shuffle"</string>
<string name="exo_controls_fullscreen_description">Fullscreen mode</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Siguiente pista"</string> <string name="exo_controls_next_description">"Siguiente pista"</string>
<string name="exo_controls_pause_description">"Pausar"</string> <string name="exo_controls_pause_description">"Pausar"</string>
<string name="exo_controls_play_description">"Reproducir"</string> <string name="exo_controls_play_description">"Reproducir"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string> <string name="exo_controls_stop_description">"Detener"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string>
<string name="exo_controls_fastforward_description">"Avanzar"</string> <string name="exo_controls_fastforward_description">"Avanzar"</string>
<string name="exo_controls_repeat_all_description">"Repetir todo"</string> <string name="exo_controls_repeat_all_description">"Repetir todo"</string>
<string name="exo_controls_repeat_off_description">"No repetir"</string> <string name="exo_controls_repeat_off_description">"No repetir"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Siguiente canción"</string> <string name="exo_controls_next_description">"Siguiente canción"</string>
<string name="exo_controls_pause_description">"Pausar"</string> <string name="exo_controls_pause_description">"Pausar"</string>
<string name="exo_controls_play_description">"Reproducir"</string> <string name="exo_controls_play_description">"Reproducir"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string> <string name="exo_controls_stop_description">"Detener"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string>
<string name="exo_controls_fastforward_description">"Avance rápido"</string> <string name="exo_controls_fastforward_description">"Avance rápido"</string>
<string name="exo_controls_repeat_all_description">"Repetir todo"</string> <string name="exo_controls_repeat_all_description">"Repetir todo"</string>
<string name="exo_controls_repeat_off_description">"No repetir"</string> <string name="exo_controls_repeat_off_description">"No repetir"</string>
<string name="exo_controls_repeat_one_description">"Repetir uno"</string> <string name="exo_controls_repeat_one_description">"Repetir uno"</string>
<string name="exo_controls_shuffle_description">"Reproducción aleatoria"</string> <string name="exo_controls_shuffle_description">"Reproducción aleatoria"</string>
<string name="exo_controls_fullscreen_description">Modo de pantalla completa</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Järgmine lugu"</string> <string name="exo_controls_next_description">"Järgmine lugu"</string>
<string name="exo_controls_pause_description">"Peata"</string> <string name="exo_controls_pause_description">"Peata"</string>
<string name="exo_controls_play_description">"Esita"</string> <string name="exo_controls_play_description">"Esita"</string>
<string name="exo_controls_rewind_description">"Keri tagasi"</string> <string name="exo_controls_stop_description">"Peata"</string>
<string name="exo_controls_rewind_description">"Keri tagasi"</string>
<string name="exo_controls_fastforward_description">"Keri edasi"</string> <string name="exo_controls_fastforward_description">"Keri edasi"</string>
<string name="exo_controls_repeat_all_description">"Korda kõike"</string> <string name="exo_controls_repeat_all_description">"Korda kõike"</string>
<string name="exo_controls_repeat_off_description">"Ära korda midagi"</string> <string name="exo_controls_repeat_off_description">"Ära korda midagi"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Hurrengo pista"</string> <string name="exo_controls_next_description">"Hurrengo pista"</string>
<string name="exo_controls_pause_description">"Pausatu"</string> <string name="exo_controls_pause_description">"Pausatu"</string>
<string name="exo_controls_play_description">"Erreproduzitu"</string> <string name="exo_controls_play_description">"Erreproduzitu"</string>
<string name="exo_controls_rewind_description">"Atzeratu"</string> <string name="exo_controls_stop_description">"Gelditu"</string>
<string name="exo_controls_rewind_description">"Atzeratu"</string>
<string name="exo_controls_fastforward_description">"Aurreratu"</string> <string name="exo_controls_fastforward_description">"Aurreratu"</string>
<string name="exo_controls_repeat_all_description">"Errepikatu guztiak"</string> <string name="exo_controls_repeat_all_description">"Errepikatu guztiak"</string>
<string name="exo_controls_repeat_off_description">"Ez errepikatu"</string> <string name="exo_controls_repeat_off_description">"Ez errepikatu"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"آهنگ بعدی"</string> <string name="exo_controls_next_description">"آهنگ بعدی"</string>
<string name="exo_controls_pause_description">"مکث"</string> <string name="exo_controls_pause_description">"مکث"</string>
<string name="exo_controls_play_description">"پخش"</string> <string name="exo_controls_play_description">"پخش"</string>
<string name="exo_controls_rewind_description">"عقب بردن"</string> <string name="exo_controls_stop_description">"توقف"</string>
<string name="exo_controls_rewind_description">"عقب بردن"</string>
<string name="exo_controls_fastforward_description">"جلو بردن سریع"</string> <string name="exo_controls_fastforward_description">"جلو بردن سریع"</string>
<string name="exo_controls_repeat_all_description">"تکرار همه"</string> <string name="exo_controls_repeat_all_description">"تکرار همه"</string>
<string name="exo_controls_repeat_off_description">"تکرار هیچ‌کدام"</string> <string name="exo_controls_repeat_off_description">"تکرار هیچ‌کدام"</string>
<string name="exo_controls_repeat_one_description">"یک‌بار تکرار"</string> <string name="exo_controls_repeat_one_description">"یک‌بار تکرار"</string>
<string name="exo_controls_shuffle_description">"پخش درهم"</string> <string name="exo_controls_shuffle_description">"پخش درهم"</string>
<string name="exo_controls_fullscreen_description">حالت تمام صفحه</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Seuraava raita"</string> <string name="exo_controls_next_description">"Seuraava raita"</string>
<string name="exo_controls_pause_description">"Tauko"</string> <string name="exo_controls_pause_description">"Tauko"</string>
<string name="exo_controls_play_description">"Toista"</string> <string name="exo_controls_play_description">"Toista"</string>
<string name="exo_controls_rewind_description">"Kelaa taakse"</string> <string name="exo_controls_stop_description">"Seis"</string>
<string name="exo_controls_rewind_description">"Kelaa taakse"</string>
<string name="exo_controls_fastforward_description">"Kelaa eteen"</string> <string name="exo_controls_fastforward_description">"Kelaa eteen"</string>
<string name="exo_controls_repeat_all_description">"Toista kaikki"</string> <string name="exo_controls_repeat_all_description">"Toista kaikki"</string>
<string name="exo_controls_repeat_off_description">"Toista ei mitään"</string> <string name="exo_controls_repeat_off_description">"Toista ei mitään"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Chanson suivante"</string> <string name="exo_controls_next_description">"Chanson suivante"</string>
<string name="exo_controls_pause_description">"Pause"</string> <string name="exo_controls_pause_description">"Pause"</string>
<string name="exo_controls_play_description">"Lecture"</string> <string name="exo_controls_play_description">"Lecture"</string>
<string name="exo_controls_rewind_description">"Reculer"</string> <string name="exo_controls_stop_description">"Arrêter"</string>
<string name="exo_controls_rewind_description">"Reculer"</string>
<string name="exo_controls_fastforward_description">"Avance rapide"</string> <string name="exo_controls_fastforward_description">"Avance rapide"</string>
<string name="exo_controls_repeat_all_description">"Tout lire en boucle"</string> <string name="exo_controls_repeat_all_description">"Tout lire en boucle"</string>
<string name="exo_controls_repeat_off_description">"Aucune répétition"</string> <string name="exo_controls_repeat_off_description">"Aucune répétition"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Piste suivante"</string> <string name="exo_controls_next_description">"Piste suivante"</string>
<string name="exo_controls_pause_description">"Interrompre"</string> <string name="exo_controls_pause_description">"Interrompre"</string>
<string name="exo_controls_play_description">"Lire"</string> <string name="exo_controls_play_description">"Lire"</string>
<string name="exo_controls_rewind_description">"Retour arrière"</string> <string name="exo_controls_stop_description">"Arrêter"</string>
<string name="exo_controls_rewind_description">"Retour arrière"</string>
<string name="exo_controls_fastforward_description">"Avance rapide"</string> <string name="exo_controls_fastforward_description">"Avance rapide"</string>
<string name="exo_controls_repeat_all_description">"Tout lire en boucle"</string> <string name="exo_controls_repeat_all_description">"Tout lire en boucle"</string>
<string name="exo_controls_repeat_off_description">"Ne rien lire en boucle"</string> <string name="exo_controls_repeat_off_description">"Ne rien lire en boucle"</string>
<string name="exo_controls_repeat_one_description">"Lire en boucle un élément"</string> <string name="exo_controls_repeat_one_description">"Lire en boucle un élément"</string>
<string name="exo_controls_shuffle_description">"Lire en mode aléatoire"</string> <string name="exo_controls_shuffle_description">"Lire en mode aléatoire"</string>
<string name="exo_controls_fullscreen_description">Mode plein écran</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Seguinte pista"</string> <string name="exo_controls_next_description">"Seguinte pista"</string>
<string name="exo_controls_pause_description">"Pausar"</string> <string name="exo_controls_pause_description">"Pausar"</string>
<string name="exo_controls_play_description">"Reproducir"</string> <string name="exo_controls_play_description">"Reproducir"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string> <string name="exo_controls_stop_description">"Deter"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string>
<string name="exo_controls_fastforward_description">"Avance rápido"</string> <string name="exo_controls_fastforward_description">"Avance rápido"</string>
<string name="exo_controls_repeat_all_description">"Repetir todo"</string> <string name="exo_controls_repeat_all_description">"Repetir todo"</string>
<string name="exo_controls_repeat_off_description">"Non repetir"</string> <string name="exo_controls_repeat_off_description">"Non repetir"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"આગલો ટ્રૅક"</string> <string name="exo_controls_next_description">"આગલો ટ્રૅક"</string>
<string name="exo_controls_pause_description">"થોભો"</string> <string name="exo_controls_pause_description">"થોભો"</string>
<string name="exo_controls_play_description">"ચલાવો"</string> <string name="exo_controls_play_description">"ચલાવો"</string>
<string name="exo_controls_rewind_description">"રીવાઇન્ડ કરો"</string> <string name="exo_controls_stop_description">"રોકો"</string>
<string name="exo_controls_rewind_description">"રીવાઇન્ડ કરો"</string>
<string name="exo_controls_fastforward_description">"ઝડપી ફોરવર્ડ કરો"</string> <string name="exo_controls_fastforward_description">"ઝડપી ફોરવર્ડ કરો"</string>
<string name="exo_controls_repeat_all_description">"બધા પુનરાવર્તન કરો"</string> <string name="exo_controls_repeat_all_description">"બધા પુનરાવર્તન કરો"</string>
<string name="exo_controls_repeat_off_description">"કંઈ પુનરાવર્તન કરો"</string> <string name="exo_controls_repeat_off_description">"કંઈ પુનરાવર્તન કરો"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"अगला ट्रैक"</string> <string name="exo_controls_next_description">"अगला ट्रैक"</string>
<string name="exo_controls_pause_description">"रोकें"</string> <string name="exo_controls_pause_description">"रोकें"</string>
<string name="exo_controls_play_description">"चलाएं"</string> <string name="exo_controls_play_description">"चलाएं"</string>
<string name="exo_controls_rewind_description">"रिवाइंड करें"</string> <string name="exo_controls_stop_description">"बंद करें"</string>
<string name="exo_controls_rewind_description">"रिवाइंड करें"</string>
<string name="exo_controls_fastforward_description">"फ़ास्ट फ़ॉरवर्ड"</string> <string name="exo_controls_fastforward_description">"फ़ास्ट फ़ॉरवर्ड"</string>
<string name="exo_controls_repeat_all_description">"सभी को दोहराएं"</string> <string name="exo_controls_repeat_all_description">"सभी को दोहराएं"</string>
<string name="exo_controls_repeat_off_description">"कुछ भी न दोहराएं"</string> <string name="exo_controls_repeat_off_description">"कुछ भी न दोहराएं"</string>
<string name="exo_controls_repeat_one_description">"एक दोहराएं"</string> <string name="exo_controls_repeat_one_description">"एक दोहराएं"</string>
<string name="exo_controls_shuffle_description">"शफ़ल करें"</string> <string name="exo_controls_shuffle_description">"शफ़ल करें"</string>
<string name="exo_controls_fullscreen_description">पूर्ण-स्क्रीन मोड</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Sljedeća pjesma"</string> <string name="exo_controls_next_description">"Sljedeća pjesma"</string>
<string name="exo_controls_pause_description">"Pauziraj"</string> <string name="exo_controls_pause_description">"Pauziraj"</string>
<string name="exo_controls_play_description">"Reproduciraj"</string> <string name="exo_controls_play_description">"Reproduciraj"</string>
<string name="exo_controls_rewind_description">"Unatrag"</string> <string name="exo_controls_stop_description">"Zaustavi"</string>
<string name="exo_controls_rewind_description">"Unatrag"</string>
<string name="exo_controls_fastforward_description">"Brzo unaprijed"</string> <string name="exo_controls_fastforward_description">"Brzo unaprijed"</string>
<string name="exo_controls_repeat_all_description">"Ponovi sve"</string> <string name="exo_controls_repeat_all_description">"Ponovi sve"</string>
<string name="exo_controls_repeat_off_description">"Bez ponavljanja"</string> <string name="exo_controls_repeat_off_description">"Bez ponavljanja"</string>
<string name="exo_controls_repeat_one_description">"Ponovi jedno"</string> <string name="exo_controls_repeat_one_description">"Ponovi jedno"</string>
<string name="exo_controls_shuffle_description">"Reproduciraj nasumično"</string> <string name="exo_controls_shuffle_description">"Reproduciraj nasumično"</string>
<string name="exo_controls_fullscreen_description">Prikaz na cijelom zaslonu</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Következő szám"</string> <string name="exo_controls_next_description">"Következő szám"</string>
<string name="exo_controls_pause_description">"Szünet"</string> <string name="exo_controls_pause_description">"Szünet"</string>
<string name="exo_controls_play_description">"Lejátszás"</string> <string name="exo_controls_play_description">"Lejátszás"</string>
<string name="exo_controls_rewind_description">"Visszatekerés"</string> <string name="exo_controls_stop_description">"Leállítás"</string>
<string name="exo_controls_rewind_description">"Visszatekerés"</string>
<string name="exo_controls_fastforward_description">"Előretekerés"</string> <string name="exo_controls_fastforward_description">"Előretekerés"</string>
<string name="exo_controls_repeat_all_description">"Összes ismétlése"</string> <string name="exo_controls_repeat_all_description">"Összes ismétlése"</string>
<string name="exo_controls_repeat_off_description">"Nincs ismétlés"</string> <string name="exo_controls_repeat_off_description">"Nincs ismétlés"</string>
<string name="exo_controls_repeat_one_description">"Egy ismétlése"</string> <string name="exo_controls_repeat_one_description">"Egy ismétlése"</string>
<string name="exo_controls_shuffle_description">"Véletlenszerű lejátszás"</string> <string name="exo_controls_shuffle_description">"Véletlenszerű lejátszás"</string>
<string name="exo_controls_fullscreen_description">Teljes képernyős mód</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Հաջորդը"</string> <string name="exo_controls_next_description">"Հաջորդը"</string>
<string name="exo_controls_pause_description">"Դադարեցնել"</string> <string name="exo_controls_pause_description">"Դադարեցնել"</string>
<string name="exo_controls_play_description">"Նվագարկել"</string> <string name="exo_controls_play_description">"Նվագարկել"</string>
<string name="exo_controls_rewind_description">"Հետ փաթաթել"</string> <string name="exo_controls_stop_description">"Դադարեցնել"</string>
<string name="exo_controls_rewind_description">"Հետ փաթաթել"</string>
<string name="exo_controls_fastforward_description">"Արագ առաջ անցնել"</string> <string name="exo_controls_fastforward_description">"Արագ առաջ անցնել"</string>
<string name="exo_controls_repeat_all_description">"կրկնել այն ամենը"</string> <string name="exo_controls_repeat_all_description">"կրկնել այն ամենը"</string>
<string name="exo_controls_repeat_off_description">"Չկրկնել"</string> <string name="exo_controls_repeat_off_description">"Չկրկնել"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Lagu berikutnya"</string> <string name="exo_controls_next_description">"Lagu berikutnya"</string>
<string name="exo_controls_pause_description">"Jeda"</string> <string name="exo_controls_pause_description">"Jeda"</string>
<string name="exo_controls_play_description">"Putar"</string> <string name="exo_controls_play_description">"Putar"</string>
<string name="exo_controls_rewind_description">"Putar Ulang"</string> <string name="exo_controls_stop_description">"Berhenti"</string>
<string name="exo_controls_rewind_description">"Putar Ulang"</string>
<string name="exo_controls_fastforward_description">"Maju cepat"</string> <string name="exo_controls_fastforward_description">"Maju cepat"</string>
<string name="exo_controls_repeat_all_description">"Ulangi Semua"</string> <string name="exo_controls_repeat_all_description">"Ulangi Semua"</string>
<string name="exo_controls_repeat_off_description">"Jangan Ulangi"</string> <string name="exo_controls_repeat_off_description">"Jangan Ulangi"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Næsta lag"</string> <string name="exo_controls_next_description">"Næsta lag"</string>
<string name="exo_controls_pause_description">"Hlé"</string> <string name="exo_controls_pause_description">"Hlé"</string>
<string name="exo_controls_play_description">"Spila"</string> <string name="exo_controls_play_description">"Spila"</string>
<string name="exo_controls_rewind_description">"Spóla til baka"</string> <string name="exo_controls_stop_description">"Stöðva"</string>
<string name="exo_controls_rewind_description">"Spóla til baka"</string>
<string name="exo_controls_fastforward_description">"Spóla áfram"</string> <string name="exo_controls_fastforward_description">"Spóla áfram"</string>
<string name="exo_controls_repeat_all_description">"Endurtaka allt"</string> <string name="exo_controls_repeat_all_description">"Endurtaka allt"</string>
<string name="exo_controls_repeat_off_description">"Endurtaka ekkert"</string> <string name="exo_controls_repeat_off_description">"Endurtaka ekkert"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Traccia successiva"</string> <string name="exo_controls_next_description">"Traccia successiva"</string>
<string name="exo_controls_pause_description">"Metti in pausa"</string> <string name="exo_controls_pause_description">"Metti in pausa"</string>
<string name="exo_controls_play_description">"Riproduci"</string> <string name="exo_controls_play_description">"Riproduci"</string>
<string name="exo_controls_rewind_description">"Riavvolgi"</string> <string name="exo_controls_stop_description">"Interrompi"</string>
<string name="exo_controls_rewind_description">"Riavvolgi"</string>
<string name="exo_controls_fastforward_description">"Avanti veloce"</string> <string name="exo_controls_fastforward_description">"Avanti veloce"</string>
<string name="exo_controls_repeat_all_description">"Ripeti tutti"</string> <string name="exo_controls_repeat_all_description">"Ripeti tutti"</string>
<string name="exo_controls_repeat_off_description">"Non ripetere nessuno"</string> <string name="exo_controls_repeat_off_description">"Non ripetere nessuno"</string>
<string name="exo_controls_repeat_one_description">"Ripeti uno"</string> <string name="exo_controls_repeat_one_description">"Ripeti uno"</string>
<string name="exo_controls_shuffle_description">"Riproduci casualmente"</string> <string name="exo_controls_shuffle_description">"Riproduci casualmente"</string>
<string name="exo_controls_fullscreen_description">Modalità a schermo intero</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"הרצועה הבאה"</string> <string name="exo_controls_next_description">"הרצועה הבאה"</string>
<string name="exo_controls_pause_description">"השהה"</string> <string name="exo_controls_pause_description">"השהה"</string>
<string name="exo_controls_play_description">"הפעל"</string> <string name="exo_controls_play_description">"הפעל"</string>
<string name="exo_controls_rewind_description">"הרץ אחורה"</string> <string name="exo_controls_stop_description">"הפסק"</string>
<string name="exo_controls_rewind_description">"הרץ אחורה"</string>
<string name="exo_controls_fastforward_description">"הרץ קדימה"</string> <string name="exo_controls_fastforward_description">"הרץ קדימה"</string>
<string name="exo_controls_repeat_all_description">"חזור על הכל"</string> <string name="exo_controls_repeat_all_description">"חזור על הכל"</string>
<string name="exo_controls_repeat_off_description">"אל תחזור על כלום"</string> <string name="exo_controls_repeat_off_description">"אל תחזור על כלום"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"次のトラック"</string> <string name="exo_controls_next_description">"次のトラック"</string>
<string name="exo_controls_pause_description">"一時停止"</string> <string name="exo_controls_pause_description">"一時停止"</string>
<string name="exo_controls_play_description">"再生"</string> <string name="exo_controls_play_description">"再生"</string>
<string name="exo_controls_rewind_description">"巻き戻し"</string> <string name="exo_controls_stop_description">"停止"</string>
<string name="exo_controls_rewind_description">"巻き戻し"</string>
<string name="exo_controls_fastforward_description">"早送り"</string> <string name="exo_controls_fastforward_description">"早送り"</string>
<string name="exo_controls_repeat_all_description">"全曲を繰り返し"</string> <string name="exo_controls_repeat_all_description">"全曲を繰り返し"</string>
<string name="exo_controls_repeat_off_description">"繰り返しなし"</string> <string name="exo_controls_repeat_off_description">"繰り返しなし"</string>
<string name="exo_controls_repeat_one_description">"1曲を繰り返し"</string> <string name="exo_controls_repeat_one_description">"1曲を繰り返し"</string>
<string name="exo_controls_shuffle_description">"シャッフル"</string> <string name="exo_controls_shuffle_description">"シャッフル"</string>
<string name="exo_controls_fullscreen_description">フルスクリーンモード</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"შემდეგი ჩანაწერი"</string> <string name="exo_controls_next_description">"შემდეგი ჩანაწერი"</string>
<string name="exo_controls_pause_description">"პაუზა"</string> <string name="exo_controls_pause_description">"პაუზა"</string>
<string name="exo_controls_play_description">"დაკვრა"</string> <string name="exo_controls_play_description">"დაკვრა"</string>
<string name="exo_controls_rewind_description">"უკან გადახვევა"</string> <string name="exo_controls_stop_description">"შეწყვეტა"</string>
<string name="exo_controls_rewind_description">"უკან გადახვევა"</string>
<string name="exo_controls_fastforward_description">"წინ გადახვევა"</string> <string name="exo_controls_fastforward_description">"წინ გადახვევა"</string>
<string name="exo_controls_repeat_all_description">"გამეორება ყველა"</string> <string name="exo_controls_repeat_all_description">"გამეორება ყველა"</string>
<string name="exo_controls_repeat_off_description">"გაიმეორეთ არცერთი"</string> <string name="exo_controls_repeat_off_description">"გაიმეორეთ არცერთი"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Келесі трек"</string> <string name="exo_controls_next_description">"Келесі трек"</string>
<string name="exo_controls_pause_description">"Кідірту"</string> <string name="exo_controls_pause_description">"Кідірту"</string>
<string name="exo_controls_play_description">"Ойнату"</string> <string name="exo_controls_play_description">"Ойнату"</string>
<string name="exo_controls_rewind_description">"Кері айналдыру"</string> <string name="exo_controls_stop_description">"Тоқтату"</string>
<string name="exo_controls_rewind_description">"Кері айналдыру"</string>
<string name="exo_controls_fastforward_description">"Жылдам алға айналдыру"</string> <string name="exo_controls_fastforward_description">"Жылдам алға айналдыру"</string>
<string name="exo_controls_repeat_all_description">"Барлығын қайталау"</string> <string name="exo_controls_repeat_all_description">"Барлығын қайталау"</string>
<string name="exo_controls_repeat_off_description">"Ешқайсысын қайталамау"</string> <string name="exo_controls_repeat_off_description">"Ешқайсысын қайталамау"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"បទ​បន្ទាប់"</string> <string name="exo_controls_next_description">"បទ​បន្ទាប់"</string>
<string name="exo_controls_pause_description">"ផ្អាក"</string> <string name="exo_controls_pause_description">"ផ្អាក"</string>
<string name="exo_controls_play_description">"ចាក់"</string> <string name="exo_controls_play_description">"ចាក់"</string>
<string name="exo_controls_rewind_description">"ខា​ថយក្រោយ"</string> <string name="exo_controls_stop_description">"បញ្ឈប់"</string>
<string name="exo_controls_rewind_description">"ខា​ថយក្រោយ"</string>
<string name="exo_controls_fastforward_description">"ទៅ​មុខ​​​រហ័ស"</string> <string name="exo_controls_fastforward_description">"ទៅ​មុខ​​​រហ័ស"</string>
<string name="exo_controls_repeat_all_description">"ធ្វើ​ម្ដង​ទៀត​ទាំងអស់"</string> <string name="exo_controls_repeat_all_description">"ធ្វើ​ម្ដង​ទៀត​ទាំងអស់"</string>
<string name="exo_controls_repeat_off_description">"មិន​ធ្វើ​ឡើង​វិញ"</string> <string name="exo_controls_repeat_off_description">"មិន​ធ្វើ​ឡើង​វិញ"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"ಮುಂದಿನ ಟ್ರ್ಯಾಕ್"</string> <string name="exo_controls_next_description">"ಮುಂದಿನ ಟ್ರ್ಯಾಕ್"</string>
<string name="exo_controls_pause_description">"ವಿರಾಮಗೊಳಿಸು"</string> <string name="exo_controls_pause_description">"ವಿರಾಮಗೊಳಿಸು"</string>
<string name="exo_controls_play_description">"ಪ್ಲೇ ಮಾಡು"</string> <string name="exo_controls_play_description">"ಪ್ಲೇ ಮಾಡು"</string>
<string name="exo_controls_rewind_description">"ರಿವೈಂಡ್ ಮಾಡು"</string> <string name="exo_controls_stop_description">"ನಿಲ್ಲಿಸು"</string>
<string name="exo_controls_rewind_description">"ರಿವೈಂಡ್ ಮಾಡು"</string>
<string name="exo_controls_fastforward_description">"ವೇಗವಾಗಿ ಮುಂದಕ್ಕೆ"</string> <string name="exo_controls_fastforward_description">"ವೇಗವಾಗಿ ಮುಂದಕ್ಕೆ"</string>
<string name="exo_controls_repeat_all_description">"ಎಲ್ಲವನ್ನು ಪುನರಾವರ್ತಿಸಿ"</string> <string name="exo_controls_repeat_all_description">"ಎಲ್ಲವನ್ನು ಪುನರಾವರ್ತಿಸಿ"</string>
<string name="exo_controls_repeat_off_description">"ಯಾವುದನ್ನೂ ಪುನರಾವರ್ತಿಸಬೇಡಿ"</string> <string name="exo_controls_repeat_off_description">"ಯಾವುದನ್ನೂ ಪುನರಾವರ್ತಿಸಬೇಡಿ"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"다음 트랙"</string> <string name="exo_controls_next_description">"다음 트랙"</string>
<string name="exo_controls_pause_description">"일시중지"</string> <string name="exo_controls_pause_description">"일시중지"</string>
<string name="exo_controls_play_description">"재생"</string> <string name="exo_controls_play_description">"재생"</string>
<string name="exo_controls_rewind_description">"되감기"</string> <string name="exo_controls_stop_description">"중지"</string>
<string name="exo_controls_rewind_description">"되감기"</string>
<string name="exo_controls_fastforward_description">"빨리 감기"</string> <string name="exo_controls_fastforward_description">"빨리 감기"</string>
<string name="exo_controls_repeat_all_description">"전체 반복"</string> <string name="exo_controls_repeat_all_description">"전체 반복"</string>
<string name="exo_controls_repeat_off_description">"반복 안함"</string> <string name="exo_controls_repeat_off_description">"반복 안함"</string>
<string name="exo_controls_repeat_one_description">"한 항목 반복"</string> <string name="exo_controls_repeat_one_description">"한 항목 반복"</string>
<string name="exo_controls_shuffle_description">"셔플"</string> <string name="exo_controls_shuffle_description">"셔플"</string>
<string name="exo_controls_fullscreen_description">전체 화면 모드</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Кийинки трек"</string> <string name="exo_controls_next_description">"Кийинки трек"</string>
<string name="exo_controls_pause_description">"Тындыруу"</string> <string name="exo_controls_pause_description">"Тындыруу"</string>
<string name="exo_controls_play_description">"Ойнотуу"</string> <string name="exo_controls_play_description">"Ойнотуу"</string>
<string name="exo_controls_rewind_description">"Артка түрүү"</string> <string name="exo_controls_stop_description">"Токтотуу"</string>
<string name="exo_controls_rewind_description">"Артка түрүү"</string>
<string name="exo_controls_fastforward_description">"Алдыга түрүү"</string> <string name="exo_controls_fastforward_description">"Алдыга түрүү"</string>
<string name="exo_controls_repeat_all_description">"Баарын кайталоо"</string> <string name="exo_controls_repeat_all_description">"Баарын кайталоо"</string>
<string name="exo_controls_repeat_off_description">"Эч бирин кайталабоо"</string> <string name="exo_controls_repeat_off_description">"Эч бирин кайталабоо"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"​ເພງ​ຕໍ່​ໄປ"</string> <string name="exo_controls_next_description">"​ເພງ​ຕໍ່​ໄປ"</string>
<string name="exo_controls_pause_description">"ຢຸດຊົ່ວຄາວ"</string> <string name="exo_controls_pause_description">"ຢຸດຊົ່ວຄາວ"</string>
<string name="exo_controls_play_description">"ຫຼິ້ນ"</string> <string name="exo_controls_play_description">"ຫຼິ້ນ"</string>
<string name="exo_controls_rewind_description">"​ຣີ​​ວາຍກັບ"</string> <string name="exo_controls_stop_description">"ຢຸດ"</string>
<string name="exo_controls_rewind_description">"​ຣີ​​ວາຍກັບ"</string>
<string name="exo_controls_fastforward_description">"ເລື່ອນ​ໄປ​ໜ້າ"</string> <string name="exo_controls_fastforward_description">"ເລື່ອນ​ໄປ​ໜ້າ"</string>
<string name="exo_controls_repeat_all_description">"ຫຼິ້ນ​ຊ້ຳ​ທັງ​ໝົດ"</string> <string name="exo_controls_repeat_all_description">"ຫຼິ້ນ​ຊ້ຳ​ທັງ​ໝົດ"</string>
<string name="exo_controls_repeat_off_description">"​ບໍ່ຫຼິ້ນ​ຊ້ຳ"</string> <string name="exo_controls_repeat_off_description">"​ບໍ່ຫຼິ້ນ​ຊ້ຳ"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Kitas takelis"</string> <string name="exo_controls_next_description">"Kitas takelis"</string>
<string name="exo_controls_pause_description">"Pristabdyti"</string> <string name="exo_controls_pause_description">"Pristabdyti"</string>
<string name="exo_controls_play_description">"Leisti"</string> <string name="exo_controls_play_description">"Leisti"</string>
<string name="exo_controls_stop_description">"Stabdyti"</string>
<string name="exo_controls_rewind_description">"Sukti atgal"</string> <string name="exo_controls_rewind_description">"Sukti atgal"</string>
<string name="exo_controls_fastforward_description">"Sukti pirmyn"</string> <string name="exo_controls_fastforward_description">"Sukti pirmyn"</string>
<string name="exo_controls_repeat_all_description">"Kartoti viską"</string> <string name="exo_controls_repeat_all_description">"Kartoti viską"</string>
<string name="exo_controls_repeat_off_description">"Nekartoti nieko"</string> <string name="exo_controls_repeat_off_description">"Nekartoti nieko"</string>
<string name="exo_controls_repeat_one_description">"Kartoti vieną"</string> <string name="exo_controls_repeat_one_description">"Kartoti vieną"</string>
<string name="exo_controls_shuffle_description">"Maišyti"</string> <string name="exo_controls_shuffle_description">"Maišyti"</string>
<string name="exo_controls_fullscreen_description">Viso ekrano režimas</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Nākamais ieraksts"</string> <string name="exo_controls_next_description">"Nākamais ieraksts"</string>
<string name="exo_controls_pause_description">"Pārtraukt"</string> <string name="exo_controls_pause_description">"Pārtraukt"</string>
<string name="exo_controls_play_description">"Atskaņot"</string> <string name="exo_controls_play_description">"Atskaņot"</string>
<string name="exo_controls_rewind_description">"Attīt atpakaļ"</string> <string name="exo_controls_stop_description">"Apturēt"</string>
<string name="exo_controls_rewind_description">"Attīt atpakaļ"</string>
<string name="exo_controls_fastforward_description">"Ātri patīt"</string> <string name="exo_controls_fastforward_description">"Ātri patīt"</string>
<string name="exo_controls_repeat_all_description">"Atkārtot visu"</string> <string name="exo_controls_repeat_all_description">"Atkārtot visu"</string>
<string name="exo_controls_repeat_off_description">"Neatkārtot nevienu"</string> <string name="exo_controls_repeat_off_description">"Neatkārtot nevienu"</string>
<string name="exo_controls_repeat_one_description">"Atkārtot vienu"</string> <string name="exo_controls_repeat_one_description">"Atkārtot vienu"</string>
<string name="exo_controls_shuffle_description">"Atskaņot jauktā secībā"</string> <string name="exo_controls_shuffle_description">"Atskaņot jauktā secībā"</string>
<string name="exo_controls_fullscreen_description">Pilnekrāna režīms</string>
</resources> </resources>
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
<string name="exo_controls_next_description">"Следна песна"</string> <string name="exo_controls_next_description">"Следна песна"</string>
<string name="exo_controls_pause_description">"Пауза"</string> <string name="exo_controls_pause_description">"Пауза"</string>
<string name="exo_controls_play_description">"Пушти"</string> <string name="exo_controls_play_description">"Пушти"</string>
<string name="exo_controls_stop_description">"Запри"</string>
<string name="exo_controls_rewind_description">"Премотај назад"</string> <string name="exo_controls_rewind_description">"Премотај назад"</string>
<string name="exo_controls_fastforward_description">"Брзо премотај напред"</string> <string name="exo_controls_fastforward_description">"Брзо премотај напред"</string>
<string name="exo_controls_repeat_all_description">"Повтори ги сите"</string> <string name="exo_controls_repeat_all_description">"Повтори ги сите"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"അടുത്ത ട്രാക്ക്"</string> <string name="exo_controls_next_description">"അടുത്ത ട്രാക്ക്"</string>
<string name="exo_controls_pause_description">"താൽക്കാലികമായി നിർത്തുക"</string> <string name="exo_controls_pause_description">"താൽക്കാലികമായി നിർത്തുക"</string>
<string name="exo_controls_play_description">"പ്ലേ ചെയ്യുക"</string> <string name="exo_controls_play_description">"പ്ലേ ചെയ്യുക"</string>
<string name="exo_controls_rewind_description">"റിവൈൻഡുചെയ്യുക"</string> <string name="exo_controls_stop_description">"നിര്‍ത്തുക"</string>
<string name="exo_controls_rewind_description">"റിവൈൻഡുചെയ്യുക"</string>
<string name="exo_controls_fastforward_description">"വേഗത്തിലുള്ള കൈമാറൽ"</string> <string name="exo_controls_fastforward_description">"വേഗത്തിലുള്ള കൈമാറൽ"</string>
<string name="exo_controls_repeat_all_description">"എല്ലാം ആവർത്തിക്കുക"</string> <string name="exo_controls_repeat_all_description">"എല്ലാം ആവർത്തിക്കുക"</string>
<string name="exo_controls_repeat_off_description">"ഒന്നും ആവർത്തിക്കരുത്"</string> <string name="exo_controls_repeat_off_description">"ഒന്നും ആവർത്തിക്കരുത്"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Дараагийн трек"</string> <string name="exo_controls_next_description">"Дараагийн трек"</string>
<string name="exo_controls_pause_description">"Түр зогсоох"</string> <string name="exo_controls_pause_description">"Түр зогсоох"</string>
<string name="exo_controls_play_description">"Тоглуулах"</string> <string name="exo_controls_play_description">"Тоглуулах"</string>
<string name="exo_controls_rewind_description">"Буцааж хураах"</string> <string name="exo_controls_stop_description">"Зогсоох"</string>
<string name="exo_controls_rewind_description">"Буцааж хураах"</string>
<string name="exo_controls_fastforward_description">"Хурдан урагшлуулах"</string> <string name="exo_controls_fastforward_description">"Хурдан урагшлуулах"</string>
<string name="exo_controls_repeat_all_description">"Бүгдийг давтах"</string> <string name="exo_controls_repeat_all_description">"Бүгдийг давтах"</string>
<string name="exo_controls_repeat_off_description">"Алийг нь ч давтахгүй"</string> <string name="exo_controls_repeat_off_description">"Алийг нь ч давтахгүй"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"पुढील ट्रॅक"</string> <string name="exo_controls_next_description">"पुढील ट्रॅक"</string>
<string name="exo_controls_pause_description">"विराम द्या"</string> <string name="exo_controls_pause_description">"विराम द्या"</string>
<string name="exo_controls_play_description">"प्ले करा"</string> <string name="exo_controls_play_description">"प्ले करा"</string>
<string name="exo_controls_rewind_description">"रिवाईँड करा"</string> <string name="exo_controls_stop_description">"थांबा"</string>
<string name="exo_controls_rewind_description">"रिवाईँड करा"</string>
<string name="exo_controls_fastforward_description">"फास्ट फॉरवर्ड करा"</string> <string name="exo_controls_fastforward_description">"फास्ट फॉरवर्ड करा"</string>
<string name="exo_controls_repeat_all_description">"सर्व पुनरावृत्ती करा"</string> <string name="exo_controls_repeat_all_description">"सर्व पुनरावृत्ती करा"</string>
<string name="exo_controls_repeat_off_description">"काहीही पुनरावृत्ती करू नका"</string> <string name="exo_controls_repeat_off_description">"काहीही पुनरावृत्ती करू नका"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Lagu seterusnya"</string> <string name="exo_controls_next_description">"Lagu seterusnya"</string>
<string name="exo_controls_pause_description">"Jeda"</string> <string name="exo_controls_pause_description">"Jeda"</string>
<string name="exo_controls_play_description">"Main"</string> <string name="exo_controls_play_description">"Main"</string>
<string name="exo_controls_rewind_description">"Gulung semula"</string> <string name="exo_controls_stop_description">"Berhenti"</string>
<string name="exo_controls_rewind_description">"Gulung semula"</string>
<string name="exo_controls_fastforward_description">"Mara laju"</string> <string name="exo_controls_fastforward_description">"Mara laju"</string>
<string name="exo_controls_repeat_all_description">"Ulang semua"</string> <string name="exo_controls_repeat_all_description">"Ulang semua"</string>
<string name="exo_controls_repeat_off_description">"Tiada ulangan"</string> <string name="exo_controls_repeat_off_description">"Tiada ulangan"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"နောက် တစ်ပုဒ်"</string> <string name="exo_controls_next_description">"နောက် တစ်ပုဒ်"</string>
<string name="exo_controls_pause_description">"ခဏရပ်ရန်"</string> <string name="exo_controls_pause_description">"ခဏရပ်ရန်"</string>
<string name="exo_controls_play_description">"ဖွင့်ရန်"</string> <string name="exo_controls_play_description">"ဖွင့်ရန်"</string>
<string name="exo_controls_rewind_description">"ပြန်ရစ်ရန်"</string> <string name="exo_controls_stop_description">"ရပ်ရန်"</string>
<string name="exo_controls_rewind_description">"ပြန်ရစ်ရန်"</string>
<string name="exo_controls_fastforward_description">"ရှေ့သို့ သွားရန်"</string> <string name="exo_controls_fastforward_description">"ရှေ့သို့ သွားရန်"</string>
<string name="exo_controls_repeat_all_description">"အားလုံး ထပ်တလဲလဲဖွင့်ရန်"</string> <string name="exo_controls_repeat_all_description">"အားလုံး ထပ်တလဲလဲဖွင့်ရန်"</string>
<string name="exo_controls_repeat_off_description">"ထပ်တလဲလဲမဖွင့်ရန်"</string> <string name="exo_controls_repeat_off_description">"ထပ်တလဲလဲမဖွင့်ရန်"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Neste spor"</string> <string name="exo_controls_next_description">"Neste spor"</string>
<string name="exo_controls_pause_description">"Sett på pause"</string> <string name="exo_controls_pause_description">"Sett på pause"</string>
<string name="exo_controls_play_description">"Spill av"</string> <string name="exo_controls_play_description">"Spill av"</string>
<string name="exo_controls_rewind_description">"Tilbakespoling"</string> <string name="exo_controls_stop_description">"Stopp"</string>
<string name="exo_controls_rewind_description">"Tilbakespoling"</string>
<string name="exo_controls_fastforward_description">"Fremoverspoling"</string> <string name="exo_controls_fastforward_description">"Fremoverspoling"</string>
<string name="exo_controls_repeat_all_description">"Gjenta alle"</string> <string name="exo_controls_repeat_all_description">"Gjenta alle"</string>
<string name="exo_controls_repeat_off_description">"Ikke gjenta noen"</string> <string name="exo_controls_repeat_off_description">"Ikke gjenta noen"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"अर्को ट्रयाक"</string> <string name="exo_controls_next_description">"अर्को ट्रयाक"</string>
<string name="exo_controls_pause_description">"रोक्नुहोस्"</string> <string name="exo_controls_pause_description">"रोक्नुहोस्"</string>
<string name="exo_controls_play_description">"चलाउनुहोस्"</string> <string name="exo_controls_play_description">"चलाउनुहोस्"</string>
<string name="exo_controls_rewind_description">"दोहोर्याउनुहोस्"</string> <string name="exo_controls_stop_description">"रोक्नुहोस्"</string>
<string name="exo_controls_rewind_description">"दोहोर्याउनुहोस्"</string>
<string name="exo_controls_fastforward_description">"फास्ट फर्वार्ड"</string> <string name="exo_controls_fastforward_description">"फास्ट फर्वार्ड"</string>
<string name="exo_controls_repeat_all_description">"सबै दोहोर्याउनुहोस्"</string> <string name="exo_controls_repeat_all_description">"सबै दोहोर्याउनुहोस्"</string>
<string name="exo_controls_repeat_off_description">"कुनै पनि नदोहोर्याउनुहोस्"</string> <string name="exo_controls_repeat_off_description">"कुनै पनि नदोहोर्याउनुहोस्"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Volgend nummer"</string> <string name="exo_controls_next_description">"Volgend nummer"</string>
<string name="exo_controls_pause_description">"Onderbreken"</string> <string name="exo_controls_pause_description">"Onderbreken"</string>
<string name="exo_controls_play_description">"Afspelen"</string> <string name="exo_controls_play_description">"Afspelen"</string>
<string name="exo_controls_rewind_description">"Terugspoelen"</string> <string name="exo_controls_stop_description">"Stoppen"</string>
<string name="exo_controls_rewind_description">"Terugspoelen"</string>
<string name="exo_controls_fastforward_description">"Vooruitspoelen"</string> <string name="exo_controls_fastforward_description">"Vooruitspoelen"</string>
<string name="exo_controls_repeat_all_description">"Alles herhalen"</string> <string name="exo_controls_repeat_all_description">"Alles herhalen"</string>
<string name="exo_controls_repeat_off_description">"Niet herhalen"</string> <string name="exo_controls_repeat_off_description">"Niet herhalen"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"ਅਗਲਾ ਟਰੈਕ"</string> <string name="exo_controls_next_description">"ਅਗਲਾ ਟਰੈਕ"</string>
<string name="exo_controls_pause_description">"ਰੋਕੋ"</string> <string name="exo_controls_pause_description">"ਰੋਕੋ"</string>
<string name="exo_controls_play_description">"ਪਲੇ ਕਰੋ"</string> <string name="exo_controls_play_description">"ਪਲੇ ਕਰੋ"</string>
<string name="exo_controls_rewind_description">"ਰੀਵਾਈਂਡ ਕਰੋ"</string> <string name="exo_controls_stop_description">"ਰੋਕੋ"</string>
<string name="exo_controls_rewind_description">"ਰੀਵਾਈਂਡ ਕਰੋ"</string>
<string name="exo_controls_fastforward_description">"ਅੱਗੇ ਭੇਜੋ"</string> <string name="exo_controls_fastforward_description">"ਅੱਗੇ ਭੇਜੋ"</string>
<string name="exo_controls_repeat_all_description">"ਸਭ ਨੂੰ ਦੁਹਰਾਓ"</string> <string name="exo_controls_repeat_all_description">"ਸਭ ਨੂੰ ਦੁਹਰਾਓ"</string>
<string name="exo_controls_repeat_off_description">"ਕੋਈ ਵੀ ਨਹੀਂ ਦੁਹਰਾਓ"</string> <string name="exo_controls_repeat_off_description">"ਕੋਈ ਵੀ ਨਹੀਂ ਦੁਹਰਾਓ"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Następny utwór"</string> <string name="exo_controls_next_description">"Następny utwór"</string>
<string name="exo_controls_pause_description">"Wstrzymaj"</string> <string name="exo_controls_pause_description">"Wstrzymaj"</string>
<string name="exo_controls_play_description">"Odtwórz"</string> <string name="exo_controls_play_description">"Odtwórz"</string>
<string name="exo_controls_rewind_description">"Przewiń do tyłu"</string> <string name="exo_controls_stop_description">"Zatrzymaj"</string>
<string name="exo_controls_rewind_description">"Przewiń do tyłu"</string>
<string name="exo_controls_fastforward_description">"Przewiń do przodu"</string> <string name="exo_controls_fastforward_description">"Przewiń do przodu"</string>
<string name="exo_controls_repeat_all_description">"Powtórz wszystkie"</string> <string name="exo_controls_repeat_all_description">"Powtórz wszystkie"</string>
<string name="exo_controls_repeat_off_description">"Nie powtarzaj"</string> <string name="exo_controls_repeat_off_description">"Nie powtarzaj"</string>
<string name="exo_controls_repeat_one_description">"Powtórz jeden"</string> <string name="exo_controls_repeat_one_description">"Powtórz jeden"</string>
<string name="exo_controls_shuffle_description">"Odtwarzaj losowo"</string> <string name="exo_controls_shuffle_description">"Odtwarzaj losowo"</string>
<string name="exo_controls_fullscreen_description">Tryb pełnoekranowy</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Próxima faixa"</string> <string name="exo_controls_next_description">"Próxima faixa"</string>
<string name="exo_controls_pause_description">"Pausar"</string> <string name="exo_controls_pause_description">"Pausar"</string>
<string name="exo_controls_play_description">"Reproduzir"</string> <string name="exo_controls_play_description">"Reproduzir"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string> <string name="exo_controls_stop_description">"Parar"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string>
<string name="exo_controls_fastforward_description">"Avançar"</string> <string name="exo_controls_fastforward_description">"Avançar"</string>
<string name="exo_controls_repeat_all_description">"Repetir tudo"</string> <string name="exo_controls_repeat_all_description">"Repetir tudo"</string>
<string name="exo_controls_repeat_off_description">"Não repetir"</string> <string name="exo_controls_repeat_off_description">"Não repetir"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Faixa seguinte"</string> <string name="exo_controls_next_description">"Faixa seguinte"</string>
<string name="exo_controls_pause_description">"Interromper"</string> <string name="exo_controls_pause_description">"Interromper"</string>
<string name="exo_controls_play_description">"Reproduzir"</string> <string name="exo_controls_play_description">"Reproduzir"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string> <string name="exo_controls_stop_description">"Parar"</string>
<string name="exo_controls_rewind_description">"Rebobinar"</string>
<string name="exo_controls_fastforward_description">"Avançar"</string> <string name="exo_controls_fastforward_description">"Avançar"</string>
<string name="exo_controls_repeat_all_description">"Repetir tudo"</string> <string name="exo_controls_repeat_all_description">"Repetir tudo"</string>
<string name="exo_controls_repeat_off_description">"Não repetir"</string> <string name="exo_controls_repeat_off_description">"Não repetir"</string>
<string name="exo_controls_repeat_one_description">"Repetir um"</string> <string name="exo_controls_repeat_one_description">"Repetir um"</string>
<string name="exo_controls_shuffle_description">"Reproduzir aleatoriamente"</string> <string name="exo_controls_shuffle_description">"Reproduzir aleatoriamente"</string>
<string name="exo_controls_fullscreen_description">Modo de ecrã inteiro</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Próxima faixa"</string> <string name="exo_controls_next_description">"Próxima faixa"</string>
<string name="exo_controls_pause_description">"Pausar"</string> <string name="exo_controls_pause_description">"Pausar"</string>
<string name="exo_controls_play_description">"Reproduzir"</string> <string name="exo_controls_play_description">"Reproduzir"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string> <string name="exo_controls_stop_description">"Parar"</string>
<string name="exo_controls_rewind_description">"Retroceder"</string>
<string name="exo_controls_fastforward_description">"Avançar"</string> <string name="exo_controls_fastforward_description">"Avançar"</string>
<string name="exo_controls_repeat_all_description">"Repetir tudo"</string> <string name="exo_controls_repeat_all_description">"Repetir tudo"</string>
<string name="exo_controls_repeat_off_description">"Não repetir"</string> <string name="exo_controls_repeat_off_description">"Não repetir"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Melodia următoare"</string> <string name="exo_controls_next_description">"Melodia următoare"</string>
<string name="exo_controls_pause_description">"Pauză"</string> <string name="exo_controls_pause_description">"Pauză"</string>
<string name="exo_controls_play_description">"Redați"</string> <string name="exo_controls_play_description">"Redați"</string>
<string name="exo_controls_rewind_description">"Derulați"</string> <string name="exo_controls_stop_description">"Opriți"</string>
<string name="exo_controls_rewind_description">"Derulați"</string>
<string name="exo_controls_fastforward_description">"Derulați rapid înainte"</string> <string name="exo_controls_fastforward_description">"Derulați rapid înainte"</string>
<string name="exo_controls_repeat_all_description">"Repetați toate"</string> <string name="exo_controls_repeat_all_description">"Repetați toate"</string>
<string name="exo_controls_repeat_off_description">"Repetați niciuna"</string> <string name="exo_controls_repeat_off_description">"Repetați niciuna"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Следующий трек"</string> <string name="exo_controls_next_description">"Следующий трек"</string>
<string name="exo_controls_pause_description">"Приостановить"</string> <string name="exo_controls_pause_description">"Приостановить"</string>
<string name="exo_controls_play_description">"Воспроизвести"</string> <string name="exo_controls_play_description">"Воспроизвести"</string>
<string name="exo_controls_rewind_description">"Перемотать назад"</string> <string name="exo_controls_stop_description">"Остановить"</string>
<string name="exo_controls_rewind_description">"Перемотать назад"</string>
<string name="exo_controls_fastforward_description">"Перемотать вперед"</string> <string name="exo_controls_fastforward_description">"Перемотать вперед"</string>
<string name="exo_controls_repeat_all_description">"Повторять все"</string> <string name="exo_controls_repeat_all_description">"Повторять все"</string>
<string name="exo_controls_repeat_off_description">"Не повторять"</string> <string name="exo_controls_repeat_off_description">"Не повторять"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"ඊළඟ ගීතය"</string> <string name="exo_controls_next_description">"ඊළඟ ගීතය"</string>
<string name="exo_controls_pause_description">"විරාමය"</string> <string name="exo_controls_pause_description">"විරාමය"</string>
<string name="exo_controls_play_description">"ධාවනය කරන්න"</string> <string name="exo_controls_play_description">"ධාවනය කරන්න"</string>
<string name="exo_controls_rewind_description">"නැවත ඔතන්න"</string> <string name="exo_controls_stop_description">"නතර කරන්න"</string>
<string name="exo_controls_rewind_description">"නැවත ඔතන්න"</string>
<string name="exo_controls_fastforward_description">"වේගයෙන් ඉදිරියට යන"</string> <string name="exo_controls_fastforward_description">"වේගයෙන් ඉදිරියට යන"</string>
<string name="exo_controls_repeat_all_description">"සියලු නැවත"</string> <string name="exo_controls_repeat_all_description">"සියලු නැවත"</string>
<string name="exo_controls_repeat_off_description">"කිසිවක් නැවත"</string> <string name="exo_controls_repeat_off_description">"කිසිවක් නැවත"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Ďalšia stopa"</string> <string name="exo_controls_next_description">"Ďalšia stopa"</string>
<string name="exo_controls_pause_description">"Pozastaviť"</string> <string name="exo_controls_pause_description">"Pozastaviť"</string>
<string name="exo_controls_play_description">"Prehrať"</string> <string name="exo_controls_play_description">"Prehrať"</string>
<string name="exo_controls_rewind_description">"Pretočiť späť"</string> <string name="exo_controls_stop_description">"Zastaviť"</string>
<string name="exo_controls_rewind_description">"Pretočiť späť"</string>
<string name="exo_controls_fastforward_description">"Pretočiť dopredu"</string> <string name="exo_controls_fastforward_description">"Pretočiť dopredu"</string>
<string name="exo_controls_repeat_all_description">"Opakovať všetko"</string> <string name="exo_controls_repeat_all_description">"Opakovať všetko"</string>
<string name="exo_controls_repeat_off_description">"Neopakovať"</string> <string name="exo_controls_repeat_off_description">"Neopakovať"</string>
<string name="exo_controls_repeat_one_description">"Opakovať jednu položku"</string> <string name="exo_controls_repeat_one_description">"Opakovať jednu položku"</string>
<string name="exo_controls_shuffle_description">"Náhodne prehrávať"</string> <string name="exo_controls_shuffle_description">"Náhodne prehrávať"</string>
<string name="exo_controls_fullscreen_description">Režim celej obrazovky</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Naslednja skladba"</string> <string name="exo_controls_next_description">"Naslednja skladba"</string>
<string name="exo_controls_pause_description">"Zaustavi"</string> <string name="exo_controls_pause_description">"Zaustavi"</string>
<string name="exo_controls_play_description">"Predvajaj"</string> <string name="exo_controls_play_description">"Predvajaj"</string>
<string name="exo_controls_rewind_description">"Previj nazaj"</string> <string name="exo_controls_stop_description">"Ustavi"</string>
<string name="exo_controls_rewind_description">"Previj nazaj"</string>
<string name="exo_controls_fastforward_description">"Previj naprej"</string> <string name="exo_controls_fastforward_description">"Previj naprej"</string>
<string name="exo_controls_repeat_all_description">"Ponovi vse"</string> <string name="exo_controls_repeat_all_description">"Ponovi vse"</string>
<string name="exo_controls_repeat_off_description">"Ne ponovi"</string> <string name="exo_controls_repeat_off_description">"Ne ponovi"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Kënga tjetër"</string> <string name="exo_controls_next_description">"Kënga tjetër"</string>
<string name="exo_controls_pause_description">"Pauzë"</string> <string name="exo_controls_pause_description">"Pauzë"</string>
<string name="exo_controls_play_description">"Luaj"</string> <string name="exo_controls_play_description">"Luaj"</string>
<string name="exo_controls_rewind_description">"Kthehu pas"</string> <string name="exo_controls_stop_description">"Ndalo"</string>
<string name="exo_controls_rewind_description">"Kthehu pas"</string>
<string name="exo_controls_fastforward_description">"Përparo me shpejtësi"</string> <string name="exo_controls_fastforward_description">"Përparo me shpejtësi"</string>
<string name="exo_controls_repeat_all_description">"Përsërit të gjithë"</string> <string name="exo_controls_repeat_all_description">"Përsërit të gjithë"</string>
<string name="exo_controls_repeat_off_description">"Përsëritni asnjë"</string> <string name="exo_controls_repeat_off_description">"Përsëritni asnjë"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Следећа песма"</string> <string name="exo_controls_next_description">"Следећа песма"</string>
<string name="exo_controls_pause_description">"Пауза"</string> <string name="exo_controls_pause_description">"Пауза"</string>
<string name="exo_controls_play_description">"Пусти"</string> <string name="exo_controls_play_description">"Пусти"</string>
<string name="exo_controls_rewind_description">"Премотај уназад"</string> <string name="exo_controls_stop_description">"Заустави"</string>
<string name="exo_controls_rewind_description">"Премотај уназад"</string>
<string name="exo_controls_fastforward_description">"Премотај унапред"</string> <string name="exo_controls_fastforward_description">"Премотај унапред"</string>
<string name="exo_controls_repeat_all_description">"Понови све"</string> <string name="exo_controls_repeat_all_description">"Понови све"</string>
<string name="exo_controls_repeat_off_description">"Понављање је искључено"</string> <string name="exo_controls_repeat_off_description">"Понављање је искључено"</string>
<string name="exo_controls_repeat_one_description">"Понови једну"</string> <string name="exo_controls_repeat_one_description">"Понови једну"</string>
<string name="exo_controls_shuffle_description">"Пусти насумично"</string> <string name="exo_controls_shuffle_description">"Пусти насумично"</string>
<string name="exo_controls_fullscreen_description">Режим целог екрана</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Nästa spår"</string> <string name="exo_controls_next_description">"Nästa spår"</string>
<string name="exo_controls_pause_description">"Pausa"</string> <string name="exo_controls_pause_description">"Pausa"</string>
<string name="exo_controls_play_description">"Spela upp"</string> <string name="exo_controls_play_description">"Spela upp"</string>
<string name="exo_controls_rewind_description">"Spola tillbaka"</string> <string name="exo_controls_stop_description">"Avbryt"</string>
<string name="exo_controls_rewind_description">"Spola tillbaka"</string>
<string name="exo_controls_fastforward_description">"Snabbspola framåt"</string> <string name="exo_controls_fastforward_description">"Snabbspola framåt"</string>
<string name="exo_controls_repeat_all_description">"Upprepa alla"</string> <string name="exo_controls_repeat_all_description">"Upprepa alla"</string>
<string name="exo_controls_repeat_off_description">"Upprepa inga"</string> <string name="exo_controls_repeat_off_description">"Upprepa inga"</string>
<string name="exo_controls_repeat_one_description">"Upprepa en"</string> <string name="exo_controls_repeat_one_description">"Upprepa en"</string>
<string name="exo_controls_shuffle_description">"Blanda"</string> <string name="exo_controls_shuffle_description">"Blanda"</string>
<string name="exo_controls_fullscreen_description">Helskärmsläge</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Wimbo unaofuata"</string> <string name="exo_controls_next_description">"Wimbo unaofuata"</string>
<string name="exo_controls_pause_description">"Sitisha"</string> <string name="exo_controls_pause_description">"Sitisha"</string>
<string name="exo_controls_play_description">"Cheza"</string> <string name="exo_controls_play_description">"Cheza"</string>
<string name="exo_controls_rewind_description">"Rudisha nyuma"</string> <string name="exo_controls_stop_description">"Simamisha"</string>
<string name="exo_controls_rewind_description">"Rudisha nyuma"</string>
<string name="exo_controls_fastforward_description">"Peleka mbele kwa kasi"</string> <string name="exo_controls_fastforward_description">"Peleka mbele kwa kasi"</string>
<string name="exo_controls_repeat_all_description">"Rudia zote"</string> <string name="exo_controls_repeat_all_description">"Rudia zote"</string>
<string name="exo_controls_repeat_off_description">"Usirudie Yoyote"</string> <string name="exo_controls_repeat_off_description">"Usirudie Yoyote"</string>
<string name="exo_controls_repeat_one_description">"Rudia Moja"</string> <string name="exo_controls_repeat_one_description">"Rudia Moja"</string>
<string name="exo_controls_shuffle_description">"Changanya"</string> <string name="exo_controls_shuffle_description">"Changanya"</string>
<string name="exo_controls_fullscreen_description">Hali ya skrini kamili</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"அடுத்த ட்ராக்"</string> <string name="exo_controls_next_description">"அடுத்த ட்ராக்"</string>
<string name="exo_controls_pause_description">"இடைநிறுத்து"</string> <string name="exo_controls_pause_description">"இடைநிறுத்து"</string>
<string name="exo_controls_play_description">"இயக்கு"</string> <string name="exo_controls_play_description">"இயக்கு"</string>
<string name="exo_controls_rewind_description">"மீண்டும் காட்டு"</string> <string name="exo_controls_stop_description">"நிறுத்து"</string>
<string name="exo_controls_rewind_description">"மீண்டும் காட்டு"</string>
<string name="exo_controls_fastforward_description">"வேகமாக முன்செல்"</string> <string name="exo_controls_fastforward_description">"வேகமாக முன்செல்"</string>
<string name="exo_controls_repeat_all_description">"அனைத்தையும் மீண்டும் இயக்கு"</string> <string name="exo_controls_repeat_all_description">"அனைத்தையும் மீண்டும் இயக்கு"</string>
<string name="exo_controls_repeat_off_description">"எதையும் மீண்டும் இயக்காதே"</string> <string name="exo_controls_repeat_off_description">"எதையும் மீண்டும் இயக்காதே"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"తదుపరి ట్రాక్"</string> <string name="exo_controls_next_description">"తదుపరి ట్రాక్"</string>
<string name="exo_controls_pause_description">"పాజ్ చేయి"</string> <string name="exo_controls_pause_description">"పాజ్ చేయి"</string>
<string name="exo_controls_play_description">"ప్లే చేయి"</string> <string name="exo_controls_play_description">"ప్లే చేయి"</string>
<string name="exo_controls_rewind_description">"రివైండ్ చేయి"</string> <string name="exo_controls_stop_description">"ఆపివేయి"</string>
<string name="exo_controls_rewind_description">"రివైండ్ చేయి"</string>
<string name="exo_controls_fastforward_description">"వేగంగా ఫార్వార్డ్ చేయి"</string> <string name="exo_controls_fastforward_description">"వేగంగా ఫార్వార్డ్ చేయి"</string>
<string name="exo_controls_repeat_all_description">"అన్నీ పునరావృతం చేయి"</string> <string name="exo_controls_repeat_all_description">"అన్నీ పునరావృతం చేయి"</string>
<string name="exo_controls_repeat_off_description">"ఏదీ పునరావృతం చేయవద్దు"</string> <string name="exo_controls_repeat_off_description">"ఏదీ పునరావృతం చేయవద్దు"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"แทร็กถัดไป"</string> <string name="exo_controls_next_description">"แทร็กถัดไป"</string>
<string name="exo_controls_pause_description">"หยุดชั่วคราว"</string> <string name="exo_controls_pause_description">"หยุดชั่วคราว"</string>
<string name="exo_controls_play_description">"เล่น"</string> <string name="exo_controls_play_description">"เล่น"</string>
<string name="exo_controls_rewind_description">"กรอกลับ"</string> <string name="exo_controls_stop_description">"หยุด"</string>
<string name="exo_controls_rewind_description">"กรอกลับ"</string>
<string name="exo_controls_fastforward_description">"กรอไปข้างหน้า"</string> <string name="exo_controls_fastforward_description">"กรอไปข้างหน้า"</string>
<string name="exo_controls_repeat_all_description">"เล่นซ้ำทั้งหมด"</string> <string name="exo_controls_repeat_all_description">"เล่นซ้ำทั้งหมด"</string>
<string name="exo_controls_repeat_off_description">"ไม่เล่นซ้ำ"</string> <string name="exo_controls_repeat_off_description">"ไม่เล่นซ้ำ"</string>
<string name="exo_controls_repeat_one_description">"เล่นซ้ำรายการเดียว"</string> <string name="exo_controls_repeat_one_description">"เล่นซ้ำรายการเดียว"</string>
<string name="exo_controls_shuffle_description">"สุ่มเพลง"</string> <string name="exo_controls_shuffle_description">"สุ่มเพลง"</string>
<string name="exo_controls_fullscreen_description">โหมดเต็มหน้าจอ</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Susunod na track"</string> <string name="exo_controls_next_description">"Susunod na track"</string>
<string name="exo_controls_pause_description">"I-pause"</string> <string name="exo_controls_pause_description">"I-pause"</string>
<string name="exo_controls_play_description">"I-play"</string> <string name="exo_controls_play_description">"I-play"</string>
<string name="exo_controls_rewind_description">"I-rewind"</string> <string name="exo_controls_stop_description">"Ihinto"</string>
<string name="exo_controls_rewind_description">"I-rewind"</string>
<string name="exo_controls_fastforward_description">"I-fast forward"</string> <string name="exo_controls_fastforward_description">"I-fast forward"</string>
<string name="exo_controls_repeat_all_description">"Ulitin Lahat"</string> <string name="exo_controls_repeat_all_description">"Ulitin Lahat"</string>
<string name="exo_controls_repeat_off_description">"Walang Uulitin"</string> <string name="exo_controls_repeat_off_description">"Walang Uulitin"</string>
<string name="exo_controls_repeat_one_description">"Ulitin ang Isa"</string> <string name="exo_controls_repeat_one_description">"Ulitin ang Isa"</string>
<string name="exo_controls_shuffle_description">"I-shuffle"</string> <string name="exo_controls_shuffle_description">"I-shuffle"</string>
<string name="exo_controls_fullscreen_description">Fullscreen mode</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Sonraki parça"</string> <string name="exo_controls_next_description">"Sonraki parça"</string>
<string name="exo_controls_pause_description">"Duraklat"</string> <string name="exo_controls_pause_description">"Duraklat"</string>
<string name="exo_controls_play_description">"Çal"</string> <string name="exo_controls_play_description">"Çal"</string>
<string name="exo_controls_rewind_description">"Geri sar"</string> <string name="exo_controls_stop_description">"Durdur"</string>
<string name="exo_controls_rewind_description">"Geri sar"</string>
<string name="exo_controls_fastforward_description">"İleri sar"</string> <string name="exo_controls_fastforward_description">"İleri sar"</string>
<string name="exo_controls_repeat_all_description">"Tümünü Tekrarla"</string> <string name="exo_controls_repeat_all_description">"Tümünü Tekrarla"</string>
<string name="exo_controls_repeat_off_description">"Hiçbirini Tekrarlama"</string> <string name="exo_controls_repeat_off_description">"Hiçbirini Tekrarlama"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Наступна композиція"</string> <string name="exo_controls_next_description">"Наступна композиція"</string>
<string name="exo_controls_pause_description">"Пауза"</string> <string name="exo_controls_pause_description">"Пауза"</string>
<string name="exo_controls_play_description">"Відтворити"</string> <string name="exo_controls_play_description">"Відтворити"</string>
<string name="exo_controls_rewind_description">"Перемотати назад"</string> <string name="exo_controls_stop_description">"Зупинити"</string>
<string name="exo_controls_rewind_description">"Перемотати назад"</string>
<string name="exo_controls_fastforward_description">"Перемотати вперед"</string> <string name="exo_controls_fastforward_description">"Перемотати вперед"</string>
<string name="exo_controls_repeat_all_description">"Повторити все"</string> <string name="exo_controls_repeat_all_description">"Повторити все"</string>
<string name="exo_controls_repeat_off_description">"Не повторювати"</string> <string name="exo_controls_repeat_off_description">"Не повторювати"</string>
<string name="exo_controls_repeat_one_description">"Повторити один елемент"</string> <string name="exo_controls_repeat_one_description">"Повторити один елемент"</string>
<string name="exo_controls_shuffle_description">"Перемішати"</string> <string name="exo_controls_shuffle_description">"Перемішати"</string>
<string name="exo_controls_fullscreen_description">Повноекранний режим</string>
</resources> </resources>
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"اگلا ٹریک"</string> <string name="exo_controls_next_description">"اگلا ٹریک"</string>
<string name="exo_controls_pause_description">"موقوف کریں"</string> <string name="exo_controls_pause_description">"موقوف کریں"</string>
<string name="exo_controls_play_description">"چلائیں"</string> <string name="exo_controls_play_description">"چلائیں"</string>
<string name="exo_controls_rewind_description">"ریوائینڈ کریں"</string> <string name="exo_controls_stop_description">"روکیں"</string>
<string name="exo_controls_rewind_description">"ریوائینڈ کریں"</string>
<string name="exo_controls_fastforward_description">"تیزی سے فارورڈ کریں"</string> <string name="exo_controls_fastforward_description">"تیزی سے فارورڈ کریں"</string>
<string name="exo_controls_repeat_all_description">"سبھی کو دہرائیں"</string> <string name="exo_controls_repeat_all_description">"سبھی کو دہرائیں"</string>
<string name="exo_controls_repeat_off_description">"کسی کو نہ دہرائیں"</string> <string name="exo_controls_repeat_off_description">"کسی کو نہ دہرائیں"</string>
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<string name="exo_controls_next_description">"Keyingi musiqa"</string> <string name="exo_controls_next_description">"Keyingi musiqa"</string>
<string name="exo_controls_pause_description">"To‘xtatib turish"</string> <string name="exo_controls_pause_description">"To‘xtatib turish"</string>
<string name="exo_controls_play_description">"Ijro qilish"</string> <string name="exo_controls_play_description">"Ijro qilish"</string>
<string name="exo_controls_rewind_description">"Orqaga o‘tkazish"</string> <string name="exo_controls_stop_description">"To‘xtatish"</string>
<string name="exo_controls_rewind_description">"Orqaga o‘tkazish"</string>
<string name="exo_controls_fastforward_description">"Oldinga o‘tkazish"</string> <string name="exo_controls_fastforward_description">"Oldinga o‘tkazish"</string>
<string name="exo_controls_repeat_all_description">"Barchasini takrorlash"</string> <string name="exo_controls_repeat_all_description">"Barchasini takrorlash"</string>
<string name="exo_controls_repeat_off_description">"Takrorlamaslik"</string> <string name="exo_controls_repeat_off_description">"Takrorlamaslik"</string>
......
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"Bản nhạc tiếp theo"</string> <string name="exo_controls_next_description">"Bản nhạc tiếp theo"</string>
<string name="exo_controls_pause_description">"Tạm dừng"</string> <string name="exo_controls_pause_description">"Tạm dừng"</string>
<string name="exo_controls_play_description">"Phát"</string> <string name="exo_controls_play_description">"Phát"</string>
<string name="exo_controls_rewind_description">"Tua lại"</string> <string name="exo_controls_stop_description">"Ngừng"</string>
<string name="exo_controls_rewind_description">"Tua lại"</string>
<string name="exo_controls_fastforward_description">"Tua đi"</string> <string name="exo_controls_fastforward_description">"Tua đi"</string>
<string name="exo_controls_repeat_all_description">"Lặp lại tất cả"</string> <string name="exo_controls_repeat_all_description">"Lặp lại tất cả"</string>
<string name="exo_controls_repeat_off_description">"Không lặp lại"</string> <string name="exo_controls_repeat_off_description">"Không lặp lại"</string>
<string name="exo_controls_repeat_one_description">"Lặp lại một mục"</string> <string name="exo_controls_repeat_one_description">"Lặp lại một mục"</string>
<string name="exo_controls_shuffle_description">"Trộn bài"</string> <string name="exo_controls_shuffle_description">"Trộn bài"</string>
<string name="exo_controls_fullscreen_description">Chế độ toàn màn hình</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"下一曲"</string> <string name="exo_controls_next_description">"下一曲"</string>
<string name="exo_controls_pause_description">"暂停"</string> <string name="exo_controls_pause_description">"暂停"</string>
<string name="exo_controls_play_description">"播放"</string> <string name="exo_controls_play_description">"播放"</string>
<string name="exo_controls_rewind_description">"快退"</string> <string name="exo_controls_stop_description">"停止"</string>
<string name="exo_controls_rewind_description">"快退"</string>
<string name="exo_controls_fastforward_description">"快进"</string> <string name="exo_controls_fastforward_description">"快进"</string>
<string name="exo_controls_repeat_all_description">"重复播放全部"</string> <string name="exo_controls_repeat_all_description">"重复播放全部"</string>
<string name="exo_controls_repeat_off_description">"不重复播放"</string> <string name="exo_controls_repeat_off_description">"不重复播放"</string>
<string name="exo_controls_repeat_one_description">"重复播放单个视频"</string> <string name="exo_controls_repeat_one_description">"重复播放单个视频"</string>
<string name="exo_controls_shuffle_description">"随机播放"</string> <string name="exo_controls_shuffle_description">"随机播放"</string>
<string name="exo_controls_fullscreen_description">全屏模式</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"下一首曲目"</string> <string name="exo_controls_next_description">"下一首曲目"</string>
<string name="exo_controls_pause_description">"暫停"</string> <string name="exo_controls_pause_description">"暫停"</string>
<string name="exo_controls_play_description">"播放"</string> <string name="exo_controls_play_description">"播放"</string>
<string name="exo_controls_rewind_description">"倒帶"</string> <string name="exo_controls_stop_description">"停止"</string>
<string name="exo_controls_rewind_description">"倒帶"</string>
<string name="exo_controls_fastforward_description">"向前快轉"</string> <string name="exo_controls_fastforward_description">"向前快轉"</string>
<string name="exo_controls_repeat_all_description">"重複播放所有媒體項目"</string> <string name="exo_controls_repeat_all_description">"重複播放所有媒體項目"</string>
<string name="exo_controls_repeat_off_description">"不重複播放任何媒體項目"</string> <string name="exo_controls_repeat_off_description">"不重複播放任何媒體項目"</string>
<string name="exo_controls_repeat_one_description">"重複播放一個媒體項目"</string> <string name="exo_controls_repeat_one_description">"重複播放一個媒體項目"</string>
<string name="exo_controls_shuffle_description">"隨機播放"</string> <string name="exo_controls_shuffle_description">"隨機播放"</string>
<string name="exo_controls_fullscreen_description">全螢幕模式</string>
</resources> </resources>
...@@ -19,10 +19,12 @@ ...@@ -19,10 +19,12 @@
<string name="exo_controls_next_description">"下一首曲目"</string> <string name="exo_controls_next_description">"下一首曲目"</string>
<string name="exo_controls_pause_description">"暫停"</string> <string name="exo_controls_pause_description">"暫停"</string>
<string name="exo_controls_play_description">"播放"</string> <string name="exo_controls_play_description">"播放"</string>
<string name="exo_controls_rewind_description">"倒轉"</string> <string name="exo_controls_stop_description">"停止"</string>
<string name="exo_controls_rewind_description">"倒轉"</string>
<string name="exo_controls_fastforward_description">"快轉"</string> <string name="exo_controls_fastforward_description">"快轉"</string>
<string name="exo_controls_repeat_all_description">"重複播放所有媒體項目"</string> <string name="exo_controls_repeat_all_description">"重複播放所有媒體項目"</string>
<string name="exo_controls_repeat_off_description">"不重複播放"</string> <string name="exo_controls_repeat_off_description">"不重複播放"</string>
<string name="exo_controls_repeat_one_description">"重複播放單一媒體項目"</string> <string name="exo_controls_repeat_one_description">"重複播放單一媒體項目"</string>
<string name="exo_controls_shuffle_description">"隨機播放"</string> <string name="exo_controls_shuffle_description">"隨機播放"</string>
<string name="exo_controls_fullscreen_description">全螢幕模式</string>
</resources> </resources>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment