Rename assets to avoid naming conflicts
Issue #1823 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=133267642
@ -108,7 +108,7 @@ public class PlaybackControlView extends FrameLayout {
|
||||
formatter = new Formatter(formatBuilder, Locale.getDefault());
|
||||
componentListener = new ComponentListener();
|
||||
|
||||
LayoutInflater.from(context).inflate(R.layout.playback_control_view, this);
|
||||
LayoutInflater.from(context).inflate(R.layout.exo_playback_control_view, this);
|
||||
time = (TextView) findViewById(R.id.time);
|
||||
timeCurrent = (TextView) findViewById(R.id.time_current);
|
||||
progressBar = (SeekBar) findViewById(R.id.mediacontroller_progress);
|
||||
@ -240,9 +240,11 @@ public class PlaybackControlView extends FrameLayout {
|
||||
return;
|
||||
}
|
||||
boolean playing = player != null && player.getPlayWhenReady();
|
||||
playButton.setImageResource(playing ? R.drawable.ic_media_pause : R.drawable.ic_media_play);
|
||||
playButton.setContentDescription(
|
||||
getResources().getString(playing ? R.string.pause_description : R.string.play_description));
|
||||
String contentDescription = getResources().getString(
|
||||
playing ? R.string.exo_controls_pause_description : R.string.exo_controls_play_description);
|
||||
playButton.setContentDescription(contentDescription);
|
||||
playButton.setImageResource(
|
||||
playing ? R.drawable.exo_controls_pause : R.drawable.exo_controls_play);
|
||||
}
|
||||
|
||||
private void updateNavigation() {
|
||||
|
@ -71,8 +71,7 @@ public final class SimpleExoPlayerView extends FrameLayout {
|
||||
TypedArray a = context.getTheme().obtainStyledAttributes(attrs,
|
||||
R.styleable.SimpleExoPlayerView, 0, 0);
|
||||
try {
|
||||
useController = a.getBoolean(R.styleable.SimpleExoPlayerView_use_controller,
|
||||
useController);
|
||||
useController = a.getBoolean(R.styleable.SimpleExoPlayerView_use_controller, useController);
|
||||
useTextureView = a.getBoolean(R.styleable.SimpleExoPlayerView_use_texture_view,
|
||||
useTextureView);
|
||||
} finally {
|
||||
@ -80,7 +79,7 @@ public final class SimpleExoPlayerView extends FrameLayout {
|
||||
}
|
||||
}
|
||||
|
||||
LayoutInflater.from(context).inflate(R.layout.exoplayer_video_view, this);
|
||||
LayoutInflater.from(context).inflate(R.layout.exo_simple_player_view, this);
|
||||
componentListener = new ComponentListener();
|
||||
layout = (AspectRatioFrameLayout) findViewById(R.id.video_frame);
|
||||
controller = (PlaybackControlView) findViewById(R.id.control);
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 599 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 886 B After Width: | Height: | Size: 886 B |
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 735 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 673 B After Width: | Height: | Size: 673 B |
Before Width: | Height: | Size: 770 B After Width: | Height: | Size: 770 B |
Before Width: | Height: | Size: 906 B After Width: | Height: | Size: 906 B |
Before Width: | Height: | Size: 929 B After Width: | Height: | Size: 929 B |
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 843 B |
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 540 B |
Before Width: | Height: | Size: 897 B After Width: | Height: | Size: 897 B |
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 837 B |
Before Width: | Height: | Size: 997 B After Width: | Height: | Size: 997 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 685 B After Width: | Height: | Size: 685 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
@ -29,23 +29,23 @@
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageButton android:id="@+id/prev"
|
||||
android:contentDescription="@string/prev_description"
|
||||
style="@style/MediaButton.Previous"/>
|
||||
android:contentDescription="@string/exo_controls_previous_description"
|
||||
style="@style/ExoMediaButton.Previous"/>
|
||||
|
||||
<ImageButton android:id="@+id/rew"
|
||||
android:contentDescription="@string/rew_description"
|
||||
style="@style/MediaButton.Rew"/>
|
||||
android:contentDescription="@string/exo_controls_rewind_description"
|
||||
style="@style/ExoMediaButton.Rewind"/>
|
||||
|
||||
<ImageButton android:id="@+id/play"
|
||||
style="@style/MediaButton"/>
|
||||
style="@style/ExoMediaButton"/>
|
||||
|
||||
<ImageButton android:id="@+id/ffwd"
|
||||
android:contentDescription="@string/ffw_description"
|
||||
style="@style/MediaButton.Ffwd"/>
|
||||
android:contentDescription="@string/exo_controls_fastforward_description"
|
||||
style="@style/ExoMediaButton.FastForward"/>
|
||||
|
||||
<ImageButton android:id="@+id/next"
|
||||
android:contentDescription="@string/prev_description"
|
||||
style="@style/MediaButton.Next"/>
|
||||
android:contentDescription="@string/exo_controls_previous_description"
|
||||
style="@style/ExoMediaButton.Next"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Vorige snit"</string>
|
||||
<string name="next_description">"Volgende snit"</string>
|
||||
<string name="pause_description">"Wag"</string>
|
||||
<string name="play_description">"Speel"</string>
|
||||
<string name="stop_description">"Stop"</string>
|
||||
<string name="rew_description">"Spoel terug"</string>
|
||||
<string name="ffw_description">"Vinnig vorentoe"</string>
|
||||
<string name="exo_controls_previous_description">"Vorige snit"</string>
|
||||
<string name="exo_controls_next_description">"Volgende snit"</string>
|
||||
<string name="exo_controls_pause_description">"Wag"</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_fastforward_description">"Vinnig vorentoe"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"ቀዳሚ ትራክ"</string>
|
||||
<string name="next_description">"ቀጣይ ትራክ"</string>
|
||||
<string name="pause_description">"ለአፍታ አቁም"</string>
|
||||
<string name="play_description">"አጫውት"</string>
|
||||
<string name="stop_description">"አቁም"</string>
|
||||
<string name="rew_description">"ወደኋላ አጠንጥን"</string>
|
||||
<string name="ffw_description">"በፍጥነት አሳልፍ"</string>
|
||||
<string name="exo_controls_previous_description">"ቀዳሚ ትራክ"</string>
|
||||
<string name="exo_controls_next_description">"ቀጣይ ትራክ"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"በፍጥነት አሳልፍ"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"المقطع الصوتي السابق"</string>
|
||||
<string name="next_description">"المقطع الصوتي التالي"</string>
|
||||
<string name="pause_description">"إيقاف مؤقت"</string>
|
||||
<string name="play_description">"تشغيل"</string>
|
||||
<string name="stop_description">"إيقاف"</string>
|
||||
<string name="rew_description">"إرجاع"</string>
|
||||
<string name="ffw_description">"تقديم سريع"</string>
|
||||
<string name="exo_controls_previous_description">"المقطع الصوتي السابق"</string>
|
||||
<string name="exo_controls_next_description">"المقطع الصوتي التالي"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"تقديم سريع"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Öncəki trek"</string>
|
||||
<string name="next_description">"Növbəti trek"</string>
|
||||
<string name="pause_description">"Pauza"</string>
|
||||
<string name="play_description">"Oyun"</string>
|
||||
<string name="stop_description">"Dayandır"</string>
|
||||
<string name="rew_description">"Geri sarıma"</string>
|
||||
<string name="ffw_description">"Sürətlə irəli"</string>
|
||||
<string name="exo_controls_previous_description">"Öncəki 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_play_description">"Oyun"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Prethodna pesma"</string>
|
||||
<string name="next_description">"Sledeća pesma"</string>
|
||||
<string name="pause_description">"Pauza"</string>
|
||||
<string name="play_description">"Pusti"</string>
|
||||
<string name="stop_description">"Zaustavi"</string>
|
||||
<string name="rew_description">"Premotaj unazad"</string>
|
||||
<string name="ffw_description">"Premotaj unapred"</string>
|
||||
<string name="exo_controls_previous_description">"Prethodna pesma"</string>
|
||||
<string name="exo_controls_next_description">"Sledeća pesma"</string>
|
||||
<string name="exo_controls_pause_description">"Pauza"</string>
|
||||
<string name="exo_controls_play_description">"Pusti"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Папярэдні трэк"</string>
|
||||
<string name="next_description">"Наступны трэк"</string>
|
||||
<string name="pause_description">"Прыпыніць"</string>
|
||||
<string name="play_description">"Прайграць"</string>
|
||||
<string name="stop_description">"Спыніць"</string>
|
||||
<string name="rew_description">"Перамотка назад"</string>
|
||||
<string name="ffw_description">"Перамотка ўперад"</string>
|
||||
<string name="exo_controls_previous_description">"Папярэдні трэк"</string>
|
||||
<string name="exo_controls_next_description">"Наступны трэк"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Перамотка ўперад"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Предишен запис"</string>
|
||||
<string name="next_description">"Следващ запис"</string>
|
||||
<string name="pause_description">"Пауза"</string>
|
||||
<string name="play_description">"Пускане"</string>
|
||||
<string name="stop_description">"Спиране"</string>
|
||||
<string name="rew_description">"Превъртане назад"</string>
|
||||
<string name="ffw_description">"Превъртане напред"</string>
|
||||
<string name="exo_controls_previous_description">"Предишен запис"</string>
|
||||
<string name="exo_controls_next_description">"Следващ запис"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Превъртане напред"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"পূর্ববর্তী ট্র্যাক"</string>
|
||||
<string name="next_description">"পরবর্তী ট্র্যাক"</string>
|
||||
<string name="pause_description">"বিরাম দিন"</string>
|
||||
<string name="play_description">"প্লে করুন"</string>
|
||||
<string name="stop_description">"থামান"</string>
|
||||
<string name="rew_description">"গুটিয়ে নিন"</string>
|
||||
<string name="ffw_description">"দ্রুত সামনে এগোন"</string>
|
||||
<string name="exo_controls_previous_description">"পূর্ববর্তী ট্র্যাক"</string>
|
||||
<string name="exo_controls_next_description">"পরবর্তী ট্র্যাক"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"দ্রুত সামনে এগোন"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Prethodna numera"</string>
|
||||
<string name="next_description">"Sljedeća numera"</string>
|
||||
<string name="pause_description">"Pauziraj"</string>
|
||||
<string name="play_description">"Reproduciraj"</string>
|
||||
<string name="stop_description">"Zaustavi"</string>
|
||||
<string name="rew_description">"Premotaj"</string>
|
||||
<string name="ffw_description">"Ubrzaj"</string>
|
||||
<string name="exo_controls_previous_description">"Prethodna numera"</string>
|
||||
<string name="exo_controls_next_description">"Sljedeća numera"</string>
|
||||
<string name="exo_controls_pause_description">"Pauziraj"</string>
|
||||
<string name="exo_controls_play_description">"Reproduciraj"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Ruta anterior"</string>
|
||||
<string name="next_description">"Ruta següent"</string>
|
||||
<string name="pause_description">"Posa en pausa"</string>
|
||||
<string name="play_description">"Reprodueix"</string>
|
||||
<string name="stop_description">"Atura"</string>
|
||||
<string name="rew_description">"Rebobina"</string>
|
||||
<string name="ffw_description">"Avança ràpidament"</string>
|
||||
<string name="exo_controls_previous_description">"Ruta anterior"</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_play_description">"Reprodueix"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Předchozí skladba"</string>
|
||||
<string name="next_description">"Další skladba"</string>
|
||||
<string name="pause_description">"Pozastavit"</string>
|
||||
<string name="play_description">"Přehrát"</string>
|
||||
<string name="stop_description">"Zastavit"</string>
|
||||
<string name="rew_description">"Přetočit zpět"</string>
|
||||
<string name="ffw_description">"Přetočit vpřed"</string>
|
||||
<string name="exo_controls_previous_description">"Předchozí skladba"</string>
|
||||
<string name="exo_controls_next_description">"Další skladba"</string>
|
||||
<string name="exo_controls_pause_description">"Pozastavit"</string>
|
||||
<string name="exo_controls_play_description">"Přehrá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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Forrige nummer"</string>
|
||||
<string name="next_description">"Næste nummer"</string>
|
||||
<string name="pause_description">"Pause"</string>
|
||||
<string name="play_description">"Afspil"</string>
|
||||
<string name="stop_description">"Stop"</string>
|
||||
<string name="rew_description">"Spol tilbage"</string>
|
||||
<string name="ffw_description">"Spol frem"</string>
|
||||
<string name="exo_controls_previous_description">"Forrige nummer"</string>
|
||||
<string name="exo_controls_next_description">"Næste nummer"</string>
|
||||
<string name="exo_controls_pause_description">"Pause"</string>
|
||||
<string name="exo_controls_play_description">"Afspil"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Vorheriger Titel"</string>
|
||||
<string name="next_description">"Nächster Titel"</string>
|
||||
<string name="pause_description">"Pausieren"</string>
|
||||
<string name="play_description">"Wiedergabe"</string>
|
||||
<string name="stop_description">"Beenden"</string>
|
||||
<string name="rew_description">"Zurückspulen"</string>
|
||||
<string name="ffw_description">"Vorspulen"</string>
|
||||
<string name="exo_controls_previous_description">"Vorheriger Titel"</string>
|
||||
<string name="exo_controls_next_description">"Nächster Titel"</string>
|
||||
<string name="exo_controls_pause_description">"Pausieren"</string>
|
||||
<string name="exo_controls_play_description">"Wiedergabe"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Προηγούμενο κομμάτι"</string>
|
||||
<string name="next_description">"Επόμενο κομμάτι"</string>
|
||||
<string name="pause_description">"Παύση"</string>
|
||||
<string name="play_description">"Αναπαραγωγή"</string>
|
||||
<string name="stop_description">"Διακοπή"</string>
|
||||
<string name="rew_description">"Επαναφορά"</string>
|
||||
<string name="ffw_description">"Γρήγορη προώθηση"</string>
|
||||
<string name="exo_controls_previous_description">"Προηγούμενο κομμάτι"</string>
|
||||
<string name="exo_controls_next_description">"Επόμενο κομμάτι"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Γρήγορη προώθηση"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Previous track"</string>
|
||||
<string name="next_description">"Next track"</string>
|
||||
<string name="pause_description">"Pause"</string>
|
||||
<string name="play_description">"Play"</string>
|
||||
<string name="stop_description">"Stop"</string>
|
||||
<string name="rew_description">"Rewind"</string>
|
||||
<string name="ffw_description">"Fast-forward"</string>
|
||||
<string name="exo_controls_previous_description">"Previous track"</string>
|
||||
<string name="exo_controls_next_description">"Next track"</string>
|
||||
<string name="exo_controls_pause_description">"Pause"</string>
|
||||
<string name="exo_controls_play_description">"Play"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Previous track"</string>
|
||||
<string name="next_description">"Next track"</string>
|
||||
<string name="pause_description">"Pause"</string>
|
||||
<string name="play_description">"Play"</string>
|
||||
<string name="stop_description">"Stop"</string>
|
||||
<string name="rew_description">"Rewind"</string>
|
||||
<string name="ffw_description">"Fast-forward"</string>
|
||||
<string name="exo_controls_previous_description">"Previous track"</string>
|
||||
<string name="exo_controls_next_description">"Next track"</string>
|
||||
<string name="exo_controls_pause_description">"Pause"</string>
|
||||
<string name="exo_controls_play_description">"Play"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Previous track"</string>
|
||||
<string name="next_description">"Next track"</string>
|
||||
<string name="pause_description">"Pause"</string>
|
||||
<string name="play_description">"Play"</string>
|
||||
<string name="stop_description">"Stop"</string>
|
||||
<string name="rew_description">"Rewind"</string>
|
||||
<string name="ffw_description">"Fast-forward"</string>
|
||||
<string name="exo_controls_previous_description">"Previous track"</string>
|
||||
<string name="exo_controls_next_description">"Next track"</string>
|
||||
<string name="exo_controls_pause_description">"Pause"</string>
|
||||
<string name="exo_controls_play_description">"Play"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Pista anterior"</string>
|
||||
<string name="next_description">"Siguiente pista"</string>
|
||||
<string name="pause_description">"Pausar"</string>
|
||||
<string name="play_description">"Reproducir"</string>
|
||||
<string name="stop_description">"Detener"</string>
|
||||
<string name="rew_description">"Retroceder"</string>
|
||||
<string name="ffw_description">"Avanzar"</string>
|
||||
<string name="exo_controls_previous_description">"Pista anterior"</string>
|
||||
<string name="exo_controls_next_description">"Siguiente pista"</string>
|
||||
<string name="exo_controls_pause_description">"Pausar"</string>
|
||||
<string name="exo_controls_play_description">"Reproducir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Canción anterior"</string>
|
||||
<string name="next_description">"Siguiente canción"</string>
|
||||
<string name="pause_description">"Pausar"</string>
|
||||
<string name="play_description">"Reproducir"</string>
|
||||
<string name="stop_description">"Detener"</string>
|
||||
<string name="rew_description">"Rebobinar"</string>
|
||||
<string name="ffw_description">"Avance rápido"</string>
|
||||
<string name="exo_controls_previous_description">"Canción anterior"</string>
|
||||
<string name="exo_controls_next_description">"Siguiente canción"</string>
|
||||
<string name="exo_controls_pause_description">"Pausar"</string>
|
||||
<string name="exo_controls_play_description">"Reproducir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Eelmine lugu"</string>
|
||||
<string name="next_description">"Järgmine lugu"</string>
|
||||
<string name="pause_description">"Peata"</string>
|
||||
<string name="play_description">"Esita"</string>
|
||||
<string name="stop_description">"Peata"</string>
|
||||
<string name="rew_description">"Keri tagasi"</string>
|
||||
<string name="ffw_description">"Keri edasi"</string>
|
||||
<string name="exo_controls_previous_description">"Eelmine lugu"</string>
|
||||
<string name="exo_controls_next_description">"Järgmine lugu"</string>
|
||||
<string name="exo_controls_pause_description">"Peata"</string>
|
||||
<string name="exo_controls_play_description">"Esita"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Aurreko pista"</string>
|
||||
<string name="next_description">"Hurrengo pista"</string>
|
||||
<string name="pause_description">"Pausatu"</string>
|
||||
<string name="play_description">"Erreproduzitu"</string>
|
||||
<string name="stop_description">"Gelditu"</string>
|
||||
<string name="rew_description">"Atzeratu"</string>
|
||||
<string name="ffw_description">"Aurreratu"</string>
|
||||
<string name="exo_controls_previous_description">"Aurreko pista"</string>
|
||||
<string name="exo_controls_next_description">"Hurrengo pista"</string>
|
||||
<string name="exo_controls_pause_description">"Pausatu"</string>
|
||||
<string name="exo_controls_play_description">"Erreproduzitu"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"آهنگ قبلی"</string>
|
||||
<string name="next_description">"آهنگ بعدی"</string>
|
||||
<string name="pause_description">"مکث"</string>
|
||||
<string name="play_description">"پخش"</string>
|
||||
<string name="stop_description">"توقف"</string>
|
||||
<string name="rew_description">"عقب بردن"</string>
|
||||
<string name="ffw_description">"جلو بردن سریع"</string>
|
||||
<string name="exo_controls_previous_description">"آهنگ قبلی"</string>
|
||||
<string name="exo_controls_next_description">"آهنگ بعدی"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"جلو بردن سریع"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Edellinen raita"</string>
|
||||
<string name="next_description">"Seuraava raita"</string>
|
||||
<string name="pause_description">"Tauko"</string>
|
||||
<string name="play_description">"Toista"</string>
|
||||
<string name="stop_description">"Seis"</string>
|
||||
<string name="rew_description">"Kelaa taakse"</string>
|
||||
<string name="ffw_description">"Kelaa eteen"</string>
|
||||
<string name="exo_controls_previous_description">"Edellinen raita"</string>
|
||||
<string name="exo_controls_next_description">"Seuraava raita"</string>
|
||||
<string name="exo_controls_pause_description">"Tauko"</string>
|
||||
<string name="exo_controls_play_description">"Toista"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Chanson précédente"</string>
|
||||
<string name="next_description">"Chanson suivante"</string>
|
||||
<string name="pause_description">"Pause"</string>
|
||||
<string name="play_description">"Lecture"</string>
|
||||
<string name="stop_description">"Arrêter"</string>
|
||||
<string name="rew_description">"Reculer"</string>
|
||||
<string name="ffw_description">"Avance rapide"</string>
|
||||
<string name="exo_controls_previous_description">"Chanson précédente"</string>
|
||||
<string name="exo_controls_next_description">"Chanson suivante"</string>
|
||||
<string name="exo_controls_pause_description">"Pause"</string>
|
||||
<string name="exo_controls_play_description">"Lecture"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Piste précédente"</string>
|
||||
<string name="next_description">"Piste suivante"</string>
|
||||
<string name="pause_description">"Interrompre"</string>
|
||||
<string name="play_description">"Lire"</string>
|
||||
<string name="stop_description">"Arrêter"</string>
|
||||
<string name="rew_description">"Retour arrière"</string>
|
||||
<string name="ffw_description">"Avance rapide"</string>
|
||||
<string name="exo_controls_previous_description">"Piste précédente"</string>
|
||||
<string name="exo_controls_next_description">"Piste suivante"</string>
|
||||
<string name="exo_controls_pause_description">"Interrompre"</string>
|
||||
<string name="exo_controls_play_description">"Lire"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Pista anterior"</string>
|
||||
<string name="next_description">"Seguinte pista"</string>
|
||||
<string name="pause_description">"Pausar"</string>
|
||||
<string name="play_description">"Reproducir"</string>
|
||||
<string name="stop_description">"Deter"</string>
|
||||
<string name="rew_description">"Rebobinar"</string>
|
||||
<string name="ffw_description">"Avance rápido"</string>
|
||||
<string name="exo_controls_previous_description">"Pista anterior"</string>
|
||||
<string name="exo_controls_next_description">"Seguinte pista"</string>
|
||||
<string name="exo_controls_pause_description">"Pausar"</string>
|
||||
<string name="exo_controls_play_description">"Reproducir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"પહેલાનો ટ્રૅક"</string>
|
||||
<string name="next_description">"આગલો ટ્રૅક"</string>
|
||||
<string name="pause_description">"થોભો"</string>
|
||||
<string name="play_description">"ચલાવો"</string>
|
||||
<string name="stop_description">"રોકો"</string>
|
||||
<string name="rew_description">"રીવાઇન્ડ કરો"</string>
|
||||
<string name="ffw_description">"ઝડપી ફોરવર્ડ કરો"</string>
|
||||
<string name="exo_controls_previous_description">"પહેલાનો ટ્રૅક"</string>
|
||||
<string name="exo_controls_next_description">"આગલો ટ્રૅક"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ઝડપી ફોરવર્ડ કરો"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"पिछला ट्रैक"</string>
|
||||
<string name="next_description">"अगला ट्रैक"</string>
|
||||
<string name="pause_description">"रोकें"</string>
|
||||
<string name="play_description">"चलाएं"</string>
|
||||
<string name="stop_description">"बंद करें"</string>
|
||||
<string name="rew_description">"रिवाइंड करें"</string>
|
||||
<string name="ffw_description">"फ़ास्ट फ़ॉरवर्ड"</string>
|
||||
<string name="exo_controls_previous_description">"पिछला ट्रैक"</string>
|
||||
<string name="exo_controls_next_description">"अगला ट्रैक"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"फ़ास्ट फ़ॉरवर्ड"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Prethodna pjesma"</string>
|
||||
<string name="next_description">"Sljedeća pjesma"</string>
|
||||
<string name="pause_description">"Pauziraj"</string>
|
||||
<string name="play_description">"Reproduciraj"</string>
|
||||
<string name="stop_description">"Zaustavi"</string>
|
||||
<string name="rew_description">"Unatrag"</string>
|
||||
<string name="ffw_description">"Brzo unaprijed"</string>
|
||||
<string name="exo_controls_previous_description">"Prethodna pjesma"</string>
|
||||
<string name="exo_controls_next_description">"Sljedeća pjesma"</string>
|
||||
<string name="exo_controls_pause_description">"Pauziraj"</string>
|
||||
<string name="exo_controls_play_description">"Reproduciraj"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Előző szám"</string>
|
||||
<string name="next_description">"Következő szám"</string>
|
||||
<string name="pause_description">"Szünet"</string>
|
||||
<string name="play_description">"Lejátszás"</string>
|
||||
<string name="stop_description">"Leállítás"</string>
|
||||
<string name="rew_description">"Visszatekerés"</string>
|
||||
<string name="ffw_description">"Előretekerés"</string>
|
||||
<string name="exo_controls_previous_description">"Előző 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_play_description">"Lejátszá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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Նախորդը"</string>
|
||||
<string name="next_description">"Հաջորդը"</string>
|
||||
<string name="pause_description">"Դադարեցնել"</string>
|
||||
<string name="play_description">"Նվագարկել"</string>
|
||||
<string name="stop_description">"Դադարեցնել"</string>
|
||||
<string name="rew_description">"Հետ փաթաթել"</string>
|
||||
<string name="ffw_description">"Արագ առաջ անցնել"</string>
|
||||
<string name="exo_controls_previous_description">"Նախորդը"</string>
|
||||
<string name="exo_controls_next_description">"Հաջորդը"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Արագ առաջ անցնել"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Lagu sebelumnya"</string>
|
||||
<string name="next_description">"Lagu berikutnya"</string>
|
||||
<string name="pause_description">"Jeda"</string>
|
||||
<string name="play_description">"Putar"</string>
|
||||
<string name="stop_description">"Berhenti"</string>
|
||||
<string name="rew_description">"Putar Ulang"</string>
|
||||
<string name="ffw_description">"Maju cepat"</string>
|
||||
<string name="exo_controls_previous_description">"Lagu sebelumnya"</string>
|
||||
<string name="exo_controls_next_description">"Lagu berikutnya"</string>
|
||||
<string name="exo_controls_pause_description">"Jeda"</string>
|
||||
<string name="exo_controls_play_description">"Putar"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Fyrra lag"</string>
|
||||
<string name="next_description">"Næsta lag"</string>
|
||||
<string name="pause_description">"Hlé"</string>
|
||||
<string name="play_description">"Spila"</string>
|
||||
<string name="stop_description">"Stöðva"</string>
|
||||
<string name="rew_description">"Spóla til baka"</string>
|
||||
<string name="ffw_description">"Spóla áfram"</string>
|
||||
<string name="exo_controls_previous_description">"Fyrra lag"</string>
|
||||
<string name="exo_controls_next_description">"Næsta lag"</string>
|
||||
<string name="exo_controls_pause_description">"Hlé"</string>
|
||||
<string name="exo_controls_play_description">"Spila"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Traccia precedente"</string>
|
||||
<string name="next_description">"Traccia successiva"</string>
|
||||
<string name="pause_description">"Metti in pausa"</string>
|
||||
<string name="play_description">"Riproduci"</string>
|
||||
<string name="stop_description">"Interrompi"</string>
|
||||
<string name="rew_description">"Riavvolgi"</string>
|
||||
<string name="ffw_description">"Avanti veloce"</string>
|
||||
<string name="exo_controls_previous_description">"Traccia precedente"</string>
|
||||
<string name="exo_controls_next_description">"Traccia successiva"</string>
|
||||
<string name="exo_controls_pause_description">"Metti in pausa"</string>
|
||||
<string name="exo_controls_play_description">"Riproduci"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"הרצועה הקודמת"</string>
|
||||
<string name="next_description">"הרצועה הבאה"</string>
|
||||
<string name="pause_description">"השהה"</string>
|
||||
<string name="play_description">"הפעל"</string>
|
||||
<string name="stop_description">"הפסק"</string>
|
||||
<string name="rew_description">"הרץ אחורה"</string>
|
||||
<string name="ffw_description">"הרץ קדימה"</string>
|
||||
<string name="exo_controls_previous_description">"הרצועה הקודמת"</string>
|
||||
<string name="exo_controls_next_description">"הרצועה הבאה"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"הרץ קדימה"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"前のトラック"</string>
|
||||
<string name="next_description">"次のトラック"</string>
|
||||
<string name="pause_description">"一時停止"</string>
|
||||
<string name="play_description">"再生"</string>
|
||||
<string name="stop_description">"停止"</string>
|
||||
<string name="rew_description">"巻き戻し"</string>
|
||||
<string name="ffw_description">"早送り"</string>
|
||||
<string name="exo_controls_previous_description">"前のトラック"</string>
|
||||
<string name="exo_controls_next_description">"次のトラック"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"早送り"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"წინა ჩანაწერი"</string>
|
||||
<string name="next_description">"შემდეგი ჩანაწერი"</string>
|
||||
<string name="pause_description">"პაუზა"</string>
|
||||
<string name="play_description">"დაკვრა"</string>
|
||||
<string name="stop_description">"შეწყვეტა"</string>
|
||||
<string name="rew_description">"უკან გადახვევა"</string>
|
||||
<string name="ffw_description">"წინ გადახვევა"</string>
|
||||
<string name="exo_controls_previous_description">"წინა ჩანაწერი"</string>
|
||||
<string name="exo_controls_next_description">"შემდეგი ჩანაწერი"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"წინ გადახვევა"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Алдыңғы трек"</string>
|
||||
<string name="next_description">"Келесі трек"</string>
|
||||
<string name="pause_description">"Кідірту"</string>
|
||||
<string name="play_description">"Ойнату"</string>
|
||||
<string name="stop_description">"Тоқтату"</string>
|
||||
<string name="rew_description">"Кері айналдыру"</string>
|
||||
<string name="ffw_description">"Жылдам алға айналдыру"</string>
|
||||
<string name="exo_controls_previous_description">"Алдыңғы трек"</string>
|
||||
<string name="exo_controls_next_description">"Келесі трек"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Жылдам алға айналдыру"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"បទមុន"</string>
|
||||
<string name="next_description">"បទបន្ទាប់"</string>
|
||||
<string name="pause_description">"ផ្អាក"</string>
|
||||
<string name="play_description">"ចាក់"</string>
|
||||
<string name="stop_description">"បញ្ឈប់"</string>
|
||||
<string name="rew_description">"ខាថយក្រោយ"</string>
|
||||
<string name="ffw_description">"ទៅមុខរហ័ស"</string>
|
||||
<string name="exo_controls_previous_description">"បទមុន"</string>
|
||||
<string name="exo_controls_next_description">"បទបន្ទាប់"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ទៅមុខរហ័ស"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"ಹಿಂದಿನ ಟ್ರ್ಯಾಕ್"</string>
|
||||
<string name="next_description">"ಮುಂದಿನ ಟ್ರ್ಯಾಕ್"</string>
|
||||
<string name="pause_description">"ವಿರಾಮಗೊಳಿಸು"</string>
|
||||
<string name="play_description">"ಪ್ಲೇ ಮಾಡು"</string>
|
||||
<string name="stop_description">"ನಿಲ್ಲಿಸು"</string>
|
||||
<string name="rew_description">"ರಿವೈಂಡ್ ಮಾಡು"</string>
|
||||
<string name="ffw_description">"ವೇಗವಾಗಿ ಮುಂದಕ್ಕೆ"</string>
|
||||
<string name="exo_controls_previous_description">"ಹಿಂದಿನ ಟ್ರ್ಯಾಕ್"</string>
|
||||
<string name="exo_controls_next_description">"ಮುಂದಿನ ಟ್ರ್ಯಾಕ್"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ವೇಗವಾಗಿ ಮುಂದಕ್ಕೆ"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"이전 트랙"</string>
|
||||
<string name="next_description">"다음 트랙"</string>
|
||||
<string name="pause_description">"일시중지"</string>
|
||||
<string name="play_description">"재생"</string>
|
||||
<string name="stop_description">"중지"</string>
|
||||
<string name="rew_description">"되감기"</string>
|
||||
<string name="ffw_description">"빨리 감기"</string>
|
||||
<string name="exo_controls_previous_description">"이전 트랙"</string>
|
||||
<string name="exo_controls_next_description">"다음 트랙"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"빨리 감기"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Мурунку трек"</string>
|
||||
<string name="next_description">"Кийинки трек"</string>
|
||||
<string name="pause_description">"Тындыруу"</string>
|
||||
<string name="play_description">"Ойнотуу"</string>
|
||||
<string name="stop_description">"Токтотуу"</string>
|
||||
<string name="rew_description">"Артка түрүү"</string>
|
||||
<string name="ffw_description">"Алдыга түрүү"</string>
|
||||
<string name="exo_controls_previous_description">"Мурунку трек"</string>
|
||||
<string name="exo_controls_next_description">"Кийинки трек"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Алдыга түрүү"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"ເພງກ່ອນໜ້າ"</string>
|
||||
<string name="next_description">"ເພງຕໍ່ໄປ"</string>
|
||||
<string name="pause_description">"ຢຸດຊົ່ວຄາວ"</string>
|
||||
<string name="play_description">"ຫຼິ້ນ"</string>
|
||||
<string name="stop_description">"ຢຸດ"</string>
|
||||
<string name="rew_description">"ຣີວາຍກັບ"</string>
|
||||
<string name="ffw_description">"ເລື່ອນໄປໜ້າ"</string>
|
||||
<string name="exo_controls_previous_description">"ເພງກ່ອນໜ້າ"</string>
|
||||
<string name="exo_controls_next_description">"ເພງຕໍ່ໄປ"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ເລື່ອນໄປໜ້າ"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Ankstesnis takelis"</string>
|
||||
<string name="next_description">"Kitas takelis"</string>
|
||||
<string name="pause_description">"Pristabdyti"</string>
|
||||
<string name="play_description">"Leisti"</string>
|
||||
<string name="stop_description">"Stabdyti"</string>
|
||||
<string name="rew_description">"Sukti atgal"</string>
|
||||
<string name="ffw_description">"Sukti pirmyn"</string>
|
||||
<string name="exo_controls_previous_description">"Ankstesnis takelis"</string>
|
||||
<string name="exo_controls_next_description">"Kitas takelis"</string>
|
||||
<string name="exo_controls_pause_description">"Pristabdyti"</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_fastforward_description">"Sukti pirmyn"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Iepriekšējais ieraksts"</string>
|
||||
<string name="next_description">"Nākamais ieraksts"</string>
|
||||
<string name="pause_description">"Pārtraukt"</string>
|
||||
<string name="play_description">"Atskaņot"</string>
|
||||
<string name="stop_description">"Apturēt"</string>
|
||||
<string name="rew_description">"Attīt atpakaļ"</string>
|
||||
<string name="ffw_description">"Ātri patīt"</string>
|
||||
<string name="exo_controls_previous_description">"Iepriekšējais 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_play_description">"Atskaņot"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Претходна песна"</string>
|
||||
<string name="next_description">"Следна песна"</string>
|
||||
<string name="pause_description">"Пауза"</string>
|
||||
<string name="play_description">"Пушти"</string>
|
||||
<string name="stop_description">"Запри"</string>
|
||||
<string name="rew_description">"Премотај назад"</string>
|
||||
<string name="ffw_description">"Брзо премотај напред"</string>
|
||||
<string name="exo_controls_previous_description">"Претходна песна"</string>
|
||||
<string name="exo_controls_next_description">"Следна песна"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Брзо премотај напред"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"മുമ്പത്തെ ട്രാക്ക്"</string>
|
||||
<string name="next_description">"അടുത്ത ട്രാക്ക്"</string>
|
||||
<string name="pause_description">"താൽക്കാലികമായി നിർത്തുക"</string>
|
||||
<string name="play_description">"പ്ലേ ചെയ്യുക"</string>
|
||||
<string name="stop_description">"നിര്ത്തുക"</string>
|
||||
<string name="rew_description">"റിവൈൻഡുചെയ്യുക"</string>
|
||||
<string name="ffw_description">"വേഗത്തിലുള്ള കൈമാറൽ"</string>
|
||||
<string name="exo_controls_previous_description">"മുമ്പത്തെ ട്രാക്ക്"</string>
|
||||
<string name="exo_controls_next_description">"അടുത്ത ട്രാക്ക്"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"വേഗത്തിലുള്ള കൈമാറൽ"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Өмнөх трек"</string>
|
||||
<string name="next_description">"Дараагийн трек"</string>
|
||||
<string name="pause_description">"Түр зогсоох"</string>
|
||||
<string name="play_description">"Тоглуулах"</string>
|
||||
<string name="stop_description">"Зогсоох"</string>
|
||||
<string name="rew_description">"Буцааж хураах"</string>
|
||||
<string name="ffw_description">"Хурдан урагшлуулах"</string>
|
||||
<string name="exo_controls_previous_description">"Өмнөх трек"</string>
|
||||
<string name="exo_controls_next_description">"Дараагийн трек"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Хурдан урагшлуулах"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"मागील ट्रॅक"</string>
|
||||
<string name="next_description">"पुढील ट्रॅक"</string>
|
||||
<string name="pause_description">"विराम द्या"</string>
|
||||
<string name="play_description">"प्ले करा"</string>
|
||||
<string name="stop_description">"थांबा"</string>
|
||||
<string name="rew_description">"रिवाईँड करा"</string>
|
||||
<string name="ffw_description">"फास्ट फॉरवर्ड करा"</string>
|
||||
<string name="exo_controls_previous_description">"मागील ट्रॅक"</string>
|
||||
<string name="exo_controls_next_description">"पुढील ट्रॅक"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"फास्ट फॉरवर्ड करा"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Lagu sebelumnya"</string>
|
||||
<string name="next_description">"Lagu seterusnya"</string>
|
||||
<string name="pause_description">"Jeda"</string>
|
||||
<string name="play_description">"Main"</string>
|
||||
<string name="stop_description">"Berhenti"</string>
|
||||
<string name="rew_description">"Gulung semula"</string>
|
||||
<string name="ffw_description">"Mara laju"</string>
|
||||
<string name="exo_controls_previous_description">"Lagu sebelumnya"</string>
|
||||
<string name="exo_controls_next_description">"Lagu seterusnya"</string>
|
||||
<string name="exo_controls_pause_description">"Jeda"</string>
|
||||
<string name="exo_controls_play_description">"Main"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"ယခင် တစ်ပုဒ်"</string>
|
||||
<string name="next_description">"နောက် တစ်ပုဒ်"</string>
|
||||
<string name="pause_description">"ခဏရပ်ရန်"</string>
|
||||
<string name="play_description">"ဖွင့်ရန်"</string>
|
||||
<string name="stop_description">"ရပ်ရန်"</string>
|
||||
<string name="rew_description">"ပြန်ရစ်ရန်"</string>
|
||||
<string name="ffw_description">"ရှေ့သို့ သွားရန်"</string>
|
||||
<string name="exo_controls_previous_description">"ယခင် တစ်ပုဒ်"</string>
|
||||
<string name="exo_controls_next_description">"နောက် တစ်ပုဒ်"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ရှေ့သို့ သွားရန်"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Forrige spor"</string>
|
||||
<string name="next_description">"Neste spor"</string>
|
||||
<string name="pause_description">"Sett på pause"</string>
|
||||
<string name="play_description">"Spill av"</string>
|
||||
<string name="stop_description">"Stopp"</string>
|
||||
<string name="rew_description">"Tilbakespoling"</string>
|
||||
<string name="ffw_description">"Fremoverspoling"</string>
|
||||
<string name="exo_controls_previous_description">"Forrige 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_play_description">"Spill av"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"अघिल्लो ट्रयाक"</string>
|
||||
<string name="next_description">"अर्को ट्रयाक"</string>
|
||||
<string name="pause_description">"रोक्नुहोस्"</string>
|
||||
<string name="play_description">"चलाउनुहोस्"</string>
|
||||
<string name="stop_description">"रोक्नुहोस्"</string>
|
||||
<string name="rew_description">"दोहोर्याउनुहोस्"</string>
|
||||
<string name="ffw_description">"फास्ट फर्वार्ड"</string>
|
||||
<string name="exo_controls_previous_description">"अघिल्लो ट्रयाक"</string>
|
||||
<string name="exo_controls_next_description">"अर्को ट्रयाक"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"फास्ट फर्वार्ड"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Vorig nummer"</string>
|
||||
<string name="next_description">"Volgend nummer"</string>
|
||||
<string name="pause_description">"Onderbreken"</string>
|
||||
<string name="play_description">"Afspelen"</string>
|
||||
<string name="stop_description">"Stoppen"</string>
|
||||
<string name="rew_description">"Terugspoelen"</string>
|
||||
<string name="ffw_description">"Vooruitspoelen"</string>
|
||||
<string name="exo_controls_previous_description">"Vorig nummer"</string>
|
||||
<string name="exo_controls_next_description">"Volgend nummer"</string>
|
||||
<string name="exo_controls_pause_description">"Onderbreken"</string>
|
||||
<string name="exo_controls_play_description">"Afspelen"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"ਪਿਛਲਾ ਟਰੈਕ"</string>
|
||||
<string name="next_description">"ਅਗਲਾ ਟਰੈਕ"</string>
|
||||
<string name="pause_description">"ਰੋਕੋ"</string>
|
||||
<string name="play_description">"ਪਲੇ ਕਰੋ"</string>
|
||||
<string name="stop_description">"ਰੋਕੋ"</string>
|
||||
<string name="rew_description">"ਰੀਵਾਈਂਡ ਕਰੋ"</string>
|
||||
<string name="ffw_description">"ਅੱਗੇ ਭੇਜੋ"</string>
|
||||
<string name="exo_controls_previous_description">"ਪਿਛਲਾ ਟਰੈਕ"</string>
|
||||
<string name="exo_controls_next_description">"ਅਗਲਾ ਟਰੈਕ"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"ਅੱਗੇ ਭੇਜੋ"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Poprzedni utwór"</string>
|
||||
<string name="next_description">"Następny utwór"</string>
|
||||
<string name="pause_description">"Wstrzymaj"</string>
|
||||
<string name="play_description">"Odtwórz"</string>
|
||||
<string name="stop_description">"Zatrzymaj"</string>
|
||||
<string name="rew_description">"Przewiń do tyłu"</string>
|
||||
<string name="ffw_description">"Przewiń do przodu"</string>
|
||||
<string name="exo_controls_previous_description">"Poprzedni 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_play_description">"Odtwórz"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Faixa anterior"</string>
|
||||
<string name="next_description">"Próxima faixa"</string>
|
||||
<string name="pause_description">"Pausar"</string>
|
||||
<string name="play_description">"Reproduzir"</string>
|
||||
<string name="stop_description">"Parar"</string>
|
||||
<string name="rew_description">"Retroceder"</string>
|
||||
<string name="ffw_description">"Avançar"</string>
|
||||
<string name="exo_controls_previous_description">"Faixa anterior"</string>
|
||||
<string name="exo_controls_next_description">"Próxima faixa"</string>
|
||||
<string name="exo_controls_pause_description">"Pausar"</string>
|
||||
<string name="exo_controls_play_description">"Reproduzir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Faixa anterior"</string>
|
||||
<string name="next_description">"Faixa seguinte"</string>
|
||||
<string name="pause_description">"Interromper"</string>
|
||||
<string name="play_description">"Reproduzir"</string>
|
||||
<string name="stop_description">"Parar"</string>
|
||||
<string name="rew_description">"Rebobinar"</string>
|
||||
<string name="ffw_description">"Avançar"</string>
|
||||
<string name="exo_controls_previous_description">"Faixa anterior"</string>
|
||||
<string name="exo_controls_next_description">"Faixa seguinte"</string>
|
||||
<string name="exo_controls_pause_description">"Interromper"</string>
|
||||
<string name="exo_controls_play_description">"Reproduzir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Faixa anterior"</string>
|
||||
<string name="next_description">"Próxima faixa"</string>
|
||||
<string name="pause_description">"Pausar"</string>
|
||||
<string name="play_description">"Reproduzir"</string>
|
||||
<string name="stop_description">"Parar"</string>
|
||||
<string name="rew_description">"Retroceder"</string>
|
||||
<string name="ffw_description">"Avançar"</string>
|
||||
<string name="exo_controls_previous_description">"Faixa anterior"</string>
|
||||
<string name="exo_controls_next_description">"Próxima faixa"</string>
|
||||
<string name="exo_controls_pause_description">"Pausar"</string>
|
||||
<string name="exo_controls_play_description">"Reproduzir"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Melodia anterioară"</string>
|
||||
<string name="next_description">"Melodia următoare"</string>
|
||||
<string name="pause_description">"Pauză"</string>
|
||||
<string name="play_description">"Redați"</string>
|
||||
<string name="stop_description">"Opriți"</string>
|
||||
<string name="rew_description">"Derulați"</string>
|
||||
<string name="ffw_description">"Derulați rapid înainte"</string>
|
||||
<string name="exo_controls_previous_description">"Melodia anterioară"</string>
|
||||
<string name="exo_controls_next_description">"Melodia următoare"</string>
|
||||
<string name="exo_controls_pause_description">"Pauză"</string>
|
||||
<string name="exo_controls_play_description">"Redaț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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Предыдущий трек"</string>
|
||||
<string name="next_description">"Следующий трек"</string>
|
||||
<string name="pause_description">"Приостановить"</string>
|
||||
<string name="play_description">"Воспроизвести"</string>
|
||||
<string name="stop_description">"Остановить"</string>
|
||||
<string name="rew_description">"Перемотать назад"</string>
|
||||
<string name="ffw_description">"Перемотать вперед"</string>
|
||||
<string name="exo_controls_previous_description">"Предыдущий трек"</string>
|
||||
<string name="exo_controls_next_description">"Следующий трек"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Перемотать вперед"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"පෙර ගීතය"</string>
|
||||
<string name="next_description">"ඊළඟ ගීතය"</string>
|
||||
<string name="pause_description">"විරාමය"</string>
|
||||
<string name="play_description">"ධාවනය කරන්න"</string>
|
||||
<string name="stop_description">"නතර කරන්න"</string>
|
||||
<string name="rew_description">"නැවත ඔතන්න"</string>
|
||||
<string name="ffw_description">"වේගයෙන් ඉදිරියට යන"</string>
|
||||
<string name="exo_controls_previous_description">"පෙර ගීතය"</string>
|
||||
<string name="exo_controls_next_description">"ඊළඟ ගීතය"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"වේගයෙන් ඉදිරියට යන"</string>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Predchádzajúca stopa"</string>
|
||||
<string name="next_description">"Ďalšia stopa"</string>
|
||||
<string name="pause_description">"Pozastaviť"</string>
|
||||
<string name="play_description">"Prehrať"</string>
|
||||
<string name="stop_description">"Zastaviť"</string>
|
||||
<string name="rew_description">"Pretočiť späť"</string>
|
||||
<string name="ffw_description">"Pretočiť dopredu"</string>
|
||||
<string name="exo_controls_previous_description">"Predchádzajúca stopa"</string>
|
||||
<string name="exo_controls_next_description">"Ďalšia stopa"</string>
|
||||
<string name="exo_controls_pause_description">"Pozastaviť"</string>
|
||||
<string name="exo_controls_play_description">"Prehrať"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Prejšnja skladba"</string>
|
||||
<string name="next_description">"Naslednja skladba"</string>
|
||||
<string name="pause_description">"Zaustavi"</string>
|
||||
<string name="play_description">"Predvajaj"</string>
|
||||
<string name="stop_description">"Ustavi"</string>
|
||||
<string name="rew_description">"Previj nazaj"</string>
|
||||
<string name="ffw_description">"Previj naprej"</string>
|
||||
<string name="exo_controls_previous_description">"Prejšnja skladba"</string>
|
||||
<string name="exo_controls_next_description">"Naslednja skladba"</string>
|
||||
<string name="exo_controls_pause_description">"Zaustavi"</string>
|
||||
<string name="exo_controls_play_description">"Predvajaj"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Kënga e mëparshme"</string>
|
||||
<string name="next_description">"Kënga tjetër"</string>
|
||||
<string name="pause_description">"Pauzë"</string>
|
||||
<string name="play_description">"Luaj"</string>
|
||||
<string name="stop_description">"Ndalo"</string>
|
||||
<string name="rew_description">"Kthehu pas"</string>
|
||||
<string name="ffw_description">"Përparo me shpejtësi"</string>
|
||||
<string name="exo_controls_previous_description">"Kënga e mëparshme"</string>
|
||||
<string name="exo_controls_next_description">"Kënga tjetër"</string>
|
||||
<string name="exo_controls_pause_description">"Pauzë"</string>
|
||||
<string name="exo_controls_play_description">"Luaj"</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>
|
||||
</resources>
|
||||
|
@ -15,11 +15,11 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources>
|
||||
<string name="prev_description">"Претходна песма"</string>
|
||||
<string name="next_description">"Следећа песма"</string>
|
||||
<string name="pause_description">"Пауза"</string>
|
||||
<string name="play_description">"Пусти"</string>
|
||||
<string name="stop_description">"Заустави"</string>
|
||||
<string name="rew_description">"Премотај уназад"</string>
|
||||
<string name="ffw_description">"Премотај унапред"</string>
|
||||
<string name="exo_controls_previous_description">"Претходна песма"</string>
|
||||
<string name="exo_controls_next_description">"Следећа песма"</string>
|
||||
<string name="exo_controls_pause_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_fastforward_description">"Премотај унапред"</string>
|
||||
</resources>
|
||||
|