mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
provide content description for shuffle on/off button
PiperOrigin-RevId: 266884166
This commit is contained in:
parent
66ba8d7793
commit
b2aa0ae087
84 changed files with 1217 additions and 88 deletions
|
|
@ -260,6 +260,8 @@ public class PlayerControlView extends FrameLayout {
|
|||
private final Drawable shuffleOffButtonDrawable;
|
||||
private final float buttonAlphaEnabled;
|
||||
private final float buttonAlphaDisabled;
|
||||
private final String shuffleOnContentDescription;
|
||||
private final String shuffleOffContentDescription;
|
||||
|
||||
@Nullable private Player player;
|
||||
private com.google.android.exoplayer2.ControlDispatcher controlDispatcher;
|
||||
|
|
@ -426,6 +428,9 @@ public class PlayerControlView extends FrameLayout {
|
|||
resources.getString(R.string.exo_controls_repeat_one_description);
|
||||
repeatAllButtonContentDescription =
|
||||
resources.getString(R.string.exo_controls_repeat_all_description);
|
||||
shuffleOnContentDescription = resources.getString(R.string.exo_controls_shuffle_on_description);
|
||||
shuffleOffContentDescription =
|
||||
resources.getString(R.string.exo_controls_shuffle_off_description);
|
||||
}
|
||||
|
||||
@SuppressWarnings("ResourceType")
|
||||
|
|
@ -798,6 +803,8 @@ public class PlayerControlView extends FrameLayout {
|
|||
}
|
||||
if (player == null) {
|
||||
setButtonEnabled(false, repeatToggleButton);
|
||||
repeatToggleButton.setImageDrawable(repeatOffButtonDrawable);
|
||||
repeatToggleButton.setContentDescription(repeatOffButtonContentDescription);
|
||||
return;
|
||||
}
|
||||
setButtonEnabled(true, repeatToggleButton);
|
||||
|
|
@ -829,10 +836,15 @@ public class PlayerControlView extends FrameLayout {
|
|||
} else if (player == null) {
|
||||
setButtonEnabled(false, shuffleButton);
|
||||
shuffleButton.setImageDrawable(shuffleOffButtonDrawable);
|
||||
shuffleButton.setContentDescription(shuffleOffContentDescription);
|
||||
} else {
|
||||
setButtonEnabled(true, shuffleButton);
|
||||
shuffleButton.setImageDrawable(
|
||||
player.getShuffleModeEnabled() ? shuffleOnButtonDrawable : shuffleOffButtonDrawable);
|
||||
shuffleButton.setContentDescription(
|
||||
player.getShuffleModeEnabled()
|
||||
? shuffleOnContentDescription
|
||||
: shuffleOffContentDescription);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
style="@style/ExoMediaButton.Rewind"/>
|
||||
|
||||
<ImageButton android:id="@id/exo_shuffle"
|
||||
style="@style/ExoMediaButton.Shuffle"/>
|
||||
style="@style/ExoMediaButton"/>
|
||||
|
||||
<ImageButton android:id="@id/exo_repeat_toggle"
|
||||
style="@style/ExoMediaButton"/>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Vorige snit</string>
|
||||
<string name="exo_controls_next_description">Volgende snit</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Herhaal alles</string>
|
||||
<string name="exo_controls_shuffle_description">Skommel</string>
|
||||
<string name="exo_controls_shuffle_on_description">Skommel</string>
|
||||
<string name="exo_controls_fullscreen_description">Volskermmodus</string>
|
||||
<string name="exo_controls_vr_description">VR-modus</string>
|
||||
<string name="exo_download_description">Aflaai</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">ቀዳሚ ትራክ</string>
|
||||
<string name="exo_controls_next_description">ቀጣይ ትራክ</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ምንም አትድገም</string>
|
||||
<string name="exo_controls_repeat_one_description">አንድ ድገም</string>
|
||||
<string name="exo_controls_repeat_all_description">ሁሉንም ድገም</string>
|
||||
<string name="exo_controls_shuffle_description">በውዝ</string>
|
||||
<string name="exo_controls_shuffle_on_description">በውዝ</string>
|
||||
<string name="exo_controls_fullscreen_description">የሙሉ ማያ ሁነታ</string>
|
||||
<string name="exo_controls_vr_description">የቪአር ሁነታ</string>
|
||||
<string name="exo_download_description">አውርድ</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">المقطع الصوتي السابق</string>
|
||||
<string name="exo_controls_next_description">المقطع الصوتي التالي</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">عدم التكرار</string>
|
||||
<string name="exo_controls_repeat_one_description">تكرار مقطع صوتي واحد</string>
|
||||
<string name="exo_controls_repeat_all_description">تكرار الكل</string>
|
||||
<string name="exo_controls_shuffle_description">ترتيب عشوائي</string>
|
||||
<string name="exo_controls_shuffle_on_description">ترتيب عشوائي</string>
|
||||
<string name="exo_controls_fullscreen_description">وضع ملء الشاشة</string>
|
||||
<string name="exo_controls_vr_description">وضع VR</string>
|
||||
<string name="exo_download_description">تنزيل</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Əvvəlki trek</string>
|
||||
<string name="exo_controls_next_description">Növbəti trek</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Heç biri təkrarlanmasın</string>
|
||||
<string name="exo_controls_repeat_one_description">Biri təkrarlansın</string>
|
||||
<string name="exo_controls_repeat_all_description">Hamısı təkrarlansın</string>
|
||||
<string name="exo_controls_shuffle_description">Qarışdırın</string>
|
||||
<string name="exo_controls_shuffle_on_description">Qarışdırın</string>
|
||||
<string name="exo_controls_fullscreen_description">Tam ekran rejimi</string>
|
||||
<string name="exo_controls_vr_description">VR rejimi</string>
|
||||
<string name="exo_download_description">Endirin</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Prethodna pesma</string>
|
||||
<string name="exo_controls_next_description">Sledeća pesma</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ne ponavljaj nijednu</string>
|
||||
<string name="exo_controls_repeat_one_description">Ponovi jednu</string>
|
||||
<string name="exo_controls_repeat_all_description">Ponovi sve</string>
|
||||
<string name="exo_controls_shuffle_description">Pusti nasumično</string>
|
||||
<string name="exo_controls_shuffle_on_description">Pusti nasumično</string>
|
||||
<string name="exo_controls_fullscreen_description">Režim celog ekrana</string>
|
||||
<string name="exo_controls_vr_description">VR režim</string>
|
||||
<string name="exo_download_description">Preuzmi</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Папярэдні трэк</string>
|
||||
<string name="exo_controls_next_description">Наступны трэк</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Не паўтараць нічога</string>
|
||||
<string name="exo_controls_repeat_one_description">Паўтарыць адзін элемент</string>
|
||||
<string name="exo_controls_repeat_all_description">Паўтарыць усе</string>
|
||||
<string name="exo_controls_shuffle_description">Перамяшаць</string>
|
||||
<string name="exo_controls_shuffle_on_description">Перамяшаць</string>
|
||||
<string name="exo_controls_fullscreen_description">Поўнаэкранны рэжым</string>
|
||||
<string name="exo_controls_vr_description">VR-рэжым</string>
|
||||
<string name="exo_download_description">Спампаваць</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Предишен запис</string>
|
||||
<string name="exo_controls_next_description">Следващ запис</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Без повтаряне</string>
|
||||
<string name="exo_controls_repeat_one_description">Повтаряне на един елемент</string>
|
||||
<string name="exo_controls_repeat_all_description">Повтаряне на всички</string>
|
||||
<string name="exo_controls_shuffle_description">Разбъркване</string>
|
||||
<string name="exo_controls_shuffle_on_description">Разбъркване</string>
|
||||
<string name="exo_controls_fullscreen_description">Режим на цял екран</string>
|
||||
<string name="exo_controls_vr_description">режим за VR</string>
|
||||
<string name="exo_download_description">Изтегляне</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">আগের ট্র্যাক</string>
|
||||
<string name="exo_controls_next_description">পরবর্তী ট্র্যাক</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">কোনও আইটেম আবার চালাবেন না</string>
|
||||
<string name="exo_controls_repeat_one_description">একটি আইটেম আবার চালান</string>
|
||||
<string name="exo_controls_repeat_all_description">সবগুলি আইটেম আবার চালান</string>
|
||||
<string name="exo_controls_shuffle_description">শাফেল করুন</string>
|
||||
<string name="exo_controls_shuffle_on_description">শাফেল করুন</string>
|
||||
<string name="exo_controls_fullscreen_description">পূর্ণ স্ক্রিন মোড</string>
|
||||
<string name="exo_controls_vr_description">ভিআর মোড</string>
|
||||
<string name="exo_download_description">ডাউনলোড করুন</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Prethodna numera</string>
|
||||
<string name="exo_controls_next_description">Sljedeća numera</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ne ponavljaj</string>
|
||||
<string name="exo_controls_repeat_one_description">Ponovi jedno</string>
|
||||
<string name="exo_controls_repeat_all_description">Ponovi sve</string>
|
||||
<string name="exo_controls_shuffle_description">Izmiješaj</string>
|
||||
<string name="exo_controls_shuffle_on_description">Izmiješaj</string>
|
||||
<string name="exo_controls_fullscreen_description">Način rada preko cijelog ekrana</string>
|
||||
<string name="exo_controls_vr_description">VR način rada</string>
|
||||
<string name="exo_download_description">Preuzmi</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Pista anterior</string>
|
||||
<string name="exo_controls_next_description">Pista següent</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">No en repeteixis cap</string>
|
||||
<string name="exo_controls_repeat_one_description">Repeteix una</string>
|
||||
<string name="exo_controls_repeat_all_description">Repeteix tot</string>
|
||||
<string name="exo_controls_shuffle_description">Reprodueix aleatòriament</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reprodueix aleatòriament</string>
|
||||
<string name="exo_controls_fullscreen_description">Mode de pantalla completa</string>
|
||||
<string name="exo_controls_vr_description">Mode RV</string>
|
||||
<string name="exo_download_description">Baixa</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Předchozí skladba</string>
|
||||
<string name="exo_controls_next_description">Další skladba</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Neopakovat</string>
|
||||
<string name="exo_controls_repeat_one_description">Opakovat jednu</string>
|
||||
<string name="exo_controls_repeat_all_description">Opakovat vše</string>
|
||||
<string name="exo_controls_shuffle_description">Náhodně</string>
|
||||
<string name="exo_controls_shuffle_on_description">Náhodně</string>
|
||||
<string name="exo_controls_fullscreen_description">Režim celé obrazovky</string>
|
||||
<string name="exo_controls_vr_description">Režim VR</string>
|
||||
<string name="exo_download_description">Stáhnout</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Afspil forrige</string>
|
||||
<string name="exo_controls_next_description">Afspil næste</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Gentag ingen</string>
|
||||
<string name="exo_controls_repeat_one_description">Gentag én</string>
|
||||
<string name="exo_controls_repeat_all_description">Gentag alle</string>
|
||||
<string name="exo_controls_shuffle_description">Bland</string>
|
||||
<string name="exo_controls_shuffle_on_description">Bland</string>
|
||||
<string name="exo_controls_fullscreen_description">Fuld skærm</string>
|
||||
<string name="exo_controls_vr_description">VR-tilstand</string>
|
||||
<string name="exo_download_description">Download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Vorheriger Titel</string>
|
||||
<string name="exo_controls_next_description">Nächster Titel</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Keinen wiederholen</string>
|
||||
<string name="exo_controls_repeat_one_description">Einen wiederholen</string>
|
||||
<string name="exo_controls_repeat_all_description">Alle wiederholen</string>
|
||||
<string name="exo_controls_shuffle_description">Zufallsmix</string>
|
||||
<string name="exo_controls_shuffle_on_description">Zufallsmix</string>
|
||||
<string name="exo_controls_fullscreen_description">Vollbildmodus</string>
|
||||
<string name="exo_controls_vr_description">VR-Modus</string>
|
||||
<string name="exo_download_description">Herunterladen</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Προηγούμενο κομμάτι</string>
|
||||
<string name="exo_controls_next_description">Επόμενο κομμάτι</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Καμία επανάληψη</string>
|
||||
<string name="exo_controls_repeat_one_description">Επανάληψη ενός κομματιού</string>
|
||||
<string name="exo_controls_repeat_all_description">Επανάληψη όλων</string>
|
||||
<string name="exo_controls_shuffle_description">Τυχαία αναπαραγωγή</string>
|
||||
<string name="exo_controls_shuffle_on_description">Τυχαία αναπαραγωγή</string>
|
||||
<string name="exo_controls_fullscreen_description">Λειτουργία πλήρους οθόνης</string>
|
||||
<string name="exo_controls_vr_description">Λειτουργία VR mode</string>
|
||||
<string name="exo_download_description">Λήψη</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Previous track</string>
|
||||
<string name="exo_controls_next_description">Next track</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Repeat all</string>
|
||||
<string name="exo_controls_shuffle_description">Shuffle</string>
|
||||
<string name="exo_controls_shuffle_on_description">Shuffle</string>
|
||||
<string name="exo_controls_fullscreen_description">Full-screen mode</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_download_description">Download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Previous track</string>
|
||||
<string name="exo_controls_next_description">Next track</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Repeat all</string>
|
||||
<string name="exo_controls_shuffle_description">Shuffle</string>
|
||||
<string name="exo_controls_shuffle_on_description">Shuffle</string>
|
||||
<string name="exo_controls_fullscreen_description">Full-screen mode</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_download_description">Download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Previous track</string>
|
||||
<string name="exo_controls_next_description">Next track</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Repeat all</string>
|
||||
<string name="exo_controls_shuffle_description">Shuffle</string>
|
||||
<string name="exo_controls_shuffle_on_description">Shuffle</string>
|
||||
<string name="exo_controls_fullscreen_description">Full-screen mode</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_download_description">Download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Pista anterior</string>
|
||||
<string name="exo_controls_next_description">Pista siguiente</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Repetir todo</string>
|
||||
<string name="exo_controls_shuffle_description">Reproducir aleatoriamente</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reproducir aleatoriamente</string>
|
||||
<string name="exo_controls_fullscreen_description">Modo de pantalla completa</string>
|
||||
<string name="exo_controls_vr_description">Modo RV</string>
|
||||
<string name="exo_download_description">Descargar</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Pista anterior</string>
|
||||
<string name="exo_controls_next_description">Siguiente pista</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Repetir todo</string>
|
||||
<string name="exo_controls_shuffle_description">Reproducir aleatoriamente</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reproducir aleatoriamente</string>
|
||||
<string name="exo_controls_fullscreen_description">Modo de pantalla completa</string>
|
||||
<string name="exo_controls_vr_description">Modo RV</string>
|
||||
<string name="exo_download_description">Descargar</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Eelmine lugu</string>
|
||||
<string name="exo_controls_next_description">Järgmine lugu</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ära korda ühtegi</string>
|
||||
<string name="exo_controls_repeat_one_description">Korda ühte</string>
|
||||
<string name="exo_controls_repeat_all_description">Korda kõiki</string>
|
||||
<string name="exo_controls_shuffle_description">Esita juhuslikus järjekorras</string>
|
||||
<string name="exo_controls_shuffle_on_description">Esita juhuslikus järjekorras</string>
|
||||
<string name="exo_controls_fullscreen_description">Täisekraani režiim</string>
|
||||
<string name="exo_controls_vr_description">VR-režiim</string>
|
||||
<string name="exo_download_description">Allalaadimine</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Aurreko pista</string>
|
||||
<string name="exo_controls_next_description">Hurrengo pista</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ez errepikatu</string>
|
||||
<string name="exo_controls_repeat_one_description">Errepikatu bat</string>
|
||||
<string name="exo_controls_repeat_all_description">Errepikatu guztiak</string>
|
||||
<string name="exo_controls_shuffle_description">Erreproduzitu ausaz</string>
|
||||
<string name="exo_controls_shuffle_on_description">Erreproduzitu ausaz</string>
|
||||
<string name="exo_controls_fullscreen_description">Pantaila osoko modua</string>
|
||||
<string name="exo_controls_vr_description">EB modua</string>
|
||||
<string name="exo_download_description">Deskargak</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">آهنگ قبلی</string>
|
||||
<string name="exo_controls_next_description">آهنگ بعدی</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">تکرار هیچکدام</string>
|
||||
<string name="exo_controls_repeat_one_description">یکبار تکرار</string>
|
||||
<string name="exo_controls_repeat_all_description">تکرار همه</string>
|
||||
<string name="exo_controls_shuffle_description">درهم</string>
|
||||
<string name="exo_controls_shuffle_on_description">درهم</string>
|
||||
<string name="exo_controls_fullscreen_description">حالت تمامصفحه</string>
|
||||
<string name="exo_controls_vr_description">حالت واقعیت مجازی</string>
|
||||
<string name="exo_download_description">بارگیری</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Edellinen kappale</string>
|
||||
<string name="exo_controls_next_description">Seuraava kappale</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ei uudelleentoistoa</string>
|
||||
<string name="exo_controls_repeat_one_description">Toista yksi uudelleen</string>
|
||||
<string name="exo_controls_repeat_all_description">Toista kaikki uudelleen</string>
|
||||
<string name="exo_controls_shuffle_description">Satunnaistoisto</string>
|
||||
<string name="exo_controls_shuffle_on_description">Satunnaistoisto</string>
|
||||
<string name="exo_controls_fullscreen_description">Koko näytön tila</string>
|
||||
<string name="exo_controls_vr_description">VR-tila</string>
|
||||
<string name="exo_download_description">Lataa</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Chanson précédente</string>
|
||||
<string name="exo_controls_next_description">Chanson suivante</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ne rien lire en boucle</string>
|
||||
<string name="exo_controls_repeat_one_description">Lire une chanson en boucle</string>
|
||||
<string name="exo_controls_repeat_all_description">Tout lire en boucle</string>
|
||||
<string name="exo_controls_shuffle_description">Lecture aléatoire</string>
|
||||
<string name="exo_controls_shuffle_on_description">Lecture aléatoire</string>
|
||||
<string name="exo_controls_fullscreen_description">Mode Plein écran</string>
|
||||
<string name="exo_controls_vr_description">Mode RV</string>
|
||||
<string name="exo_download_description">Télécharger</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Titre précédent</string>
|
||||
<string name="exo_controls_next_description">Titre suivant</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ne rien lire en boucle</string>
|
||||
<string name="exo_controls_repeat_one_description">Lire un titre en boucle</string>
|
||||
<string name="exo_controls_repeat_all_description">Tout lire en boucle</string>
|
||||
<string name="exo_controls_shuffle_description">Aléatoire</string>
|
||||
<string name="exo_controls_shuffle_on_description">Aléatoire</string>
|
||||
<string name="exo_controls_fullscreen_description">Mode plein écran</string>
|
||||
<string name="exo_controls_vr_description">Mode RV</string>
|
||||
<string name="exo_download_description">Télécharger</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Pista anterior</string>
|
||||
<string name="exo_controls_next_description">Pista seguinte</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Non repetir</string>
|
||||
<string name="exo_controls_repeat_one_description">Repetir unha pista</string>
|
||||
<string name="exo_controls_repeat_all_description">Repetir todas as pistas</string>
|
||||
<string name="exo_controls_shuffle_description">Reprodución aleatoria</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reprodución aleatoria</string>
|
||||
<string name="exo_controls_fullscreen_description">Modo de pantalla completa</string>
|
||||
<string name="exo_controls_vr_description">Modo RV</string>
|
||||
<string name="exo_download_description">Descargar</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">પહેલાંનો ટ્રૅક</string>
|
||||
<string name="exo_controls_next_description">આગલો ટ્રૅક</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">કોઈ રિપીટ કરતા નહીં</string>
|
||||
<string name="exo_controls_repeat_one_description">એક રિપીટ કરો</string>
|
||||
<string name="exo_controls_repeat_all_description">બધાને રિપીટ કરો</string>
|
||||
<string name="exo_controls_shuffle_description">શફલ કરો</string>
|
||||
<string name="exo_controls_shuffle_on_description">શફલ કરો</string>
|
||||
<string name="exo_controls_fullscreen_description">પૂર્ણસ્ક્રીન મોડ</string>
|
||||
<string name="exo_controls_vr_description">VR મોડ</string>
|
||||
<string name="exo_download_description">ડાઉનલોડ કરો</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">पिछला ट्रैक</string>
|
||||
<string name="exo_controls_next_description">अगला ट्रैक</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">किसी को न दोहराएं</string>
|
||||
<string name="exo_controls_repeat_one_description">एक को दोहराएं</string>
|
||||
<string name="exo_controls_repeat_all_description">सभी को दोहराएं</string>
|
||||
<string name="exo_controls_shuffle_description">शफ़ल करें</string>
|
||||
<string name="exo_controls_shuffle_on_description">शफ़ल करें</string>
|
||||
<string name="exo_controls_fullscreen_description">फ़ुलस्क्रीन मोड</string>
|
||||
<string name="exo_controls_vr_description">VR मोड</string>
|
||||
<string name="exo_download_description">डाउनलोड करें</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Prethodni zapis</string>
|
||||
<string name="exo_controls_next_description">Sljedeći zapis</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Ponovi sve</string>
|
||||
<string name="exo_controls_shuffle_description">Reproduciraj nasumično</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reproduciraj nasumično</string>
|
||||
<string name="exo_controls_fullscreen_description">Prikaz na cijelom zaslonu</string>
|
||||
<string name="exo_controls_vr_description">VR način</string>
|
||||
<string name="exo_download_description">Preuzmi</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Előző szám</string>
|
||||
<string name="exo_controls_next_description">Következő szám</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Nincs ismétlés</string>
|
||||
<string name="exo_controls_repeat_one_description">Egy szám ismétlése</string>
|
||||
<string name="exo_controls_repeat_all_description">Összes szám ismétlése</string>
|
||||
<string name="exo_controls_shuffle_description">Keverés</string>
|
||||
<string name="exo_controls_shuffle_on_description">Keverés</string>
|
||||
<string name="exo_controls_fullscreen_description">Teljes képernyős mód</string>
|
||||
<string name="exo_controls_vr_description">VR-mód</string>
|
||||
<string name="exo_download_description">Letöltés</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Նախորդը</string>
|
||||
<string name="exo_controls_next_description">Հաջորդը</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Չկրկնել</string>
|
||||
<string name="exo_controls_repeat_one_description">Կրկնել մեկը</string>
|
||||
<string name="exo_controls_repeat_all_description">Կրկնել բոլորը</string>
|
||||
<string name="exo_controls_shuffle_description">Խառնել</string>
|
||||
<string name="exo_controls_shuffle_on_description">Խառնել</string>
|
||||
<string name="exo_controls_fullscreen_description">Լիաէկրան ռեժիմ</string>
|
||||
<string name="exo_controls_vr_description">VR ռեժիմ</string>
|
||||
<string name="exo_download_description">Ներբեռնել</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Lagu sebelumnya</string>
|
||||
<string name="exo_controls_next_description">Lagu berikutnya</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Jangan ulangi</string>
|
||||
<string name="exo_controls_repeat_one_description">Ulangi 1</string>
|
||||
<string name="exo_controls_repeat_all_description">Ulangi semua</string>
|
||||
<string name="exo_controls_shuffle_description">Acak</string>
|
||||
<string name="exo_controls_shuffle_on_description">Acak</string>
|
||||
<string name="exo_controls_fullscreen_description">Mode layar penuh</string>
|
||||
<string name="exo_controls_vr_description">Mode VR</string>
|
||||
<string name="exo_download_description">Download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Fyrra lag</string>
|
||||
<string name="exo_controls_next_description">Næsta lag</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Endurtaka ekkert</string>
|
||||
<string name="exo_controls_repeat_one_description">Endurtaka eitt</string>
|
||||
<string name="exo_controls_repeat_all_description">Endurtaka allt</string>
|
||||
<string name="exo_controls_shuffle_description">Stokka</string>
|
||||
<string name="exo_controls_shuffle_on_description">Stokka</string>
|
||||
<string name="exo_controls_fullscreen_description">Allur skjárinn</string>
|
||||
<string name="exo_controls_vr_description">sýndarveruleikastilling</string>
|
||||
<string name="exo_download_description">Sækja</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Traccia precedente</string>
|
||||
<string name="exo_controls_next_description">Traccia successiva</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Non ripetere nulla</string>
|
||||
<string name="exo_controls_repeat_one_description">Ripeti uno</string>
|
||||
<string name="exo_controls_repeat_all_description">Ripeti tutto</string>
|
||||
<string name="exo_controls_shuffle_description">Riproduzione casuale</string>
|
||||
<string name="exo_controls_shuffle_on_description">Riproduzione casuale</string>
|
||||
<string name="exo_controls_fullscreen_description">Modalità a schermo intero</string>
|
||||
<string name="exo_controls_vr_description">Modalità VR</string>
|
||||
<string name="exo_download_description">Scarica</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">הרצועה הקודמת</string>
|
||||
<string name="exo_controls_next_description">הרצועה הבאה</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">אל תחזור על אף פריט</string>
|
||||
<string name="exo_controls_repeat_one_description">חזור על פריט אחד</string>
|
||||
<string name="exo_controls_repeat_all_description">חזור על הכול</string>
|
||||
<string name="exo_controls_shuffle_description">ערבוב</string>
|
||||
<string name="exo_controls_shuffle_on_description">ערבוב</string>
|
||||
<string name="exo_controls_fullscreen_description">מצב מסך מלא</string>
|
||||
<string name="exo_controls_vr_description">מצב VR</string>
|
||||
<string name="exo_download_description">הורדה</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">前のトラック</string>
|
||||
<string name="exo_controls_next_description">次のトラック</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">リピートなし</string>
|
||||
<string name="exo_controls_repeat_one_description">1 曲をリピート</string>
|
||||
<string name="exo_controls_repeat_all_description">全曲をリピート</string>
|
||||
<string name="exo_controls_shuffle_description">シャッフル</string>
|
||||
<string name="exo_controls_shuffle_on_description">シャッフル</string>
|
||||
<string name="exo_controls_fullscreen_description">全画面モード</string>
|
||||
<string name="exo_controls_vr_description">VR モード</string>
|
||||
<string name="exo_download_description">ダウンロード</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">წინა ჩანაწერი</string>
|
||||
<string name="exo_controls_next_description">შემდეგი ჩანაწერი</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">არცერთის გამეორება</string>
|
||||
<string name="exo_controls_repeat_one_description">ერთის გამეორება</string>
|
||||
<string name="exo_controls_repeat_all_description">ყველას გამეორება</string>
|
||||
<string name="exo_controls_shuffle_description">არეულად დაკვრა</string>
|
||||
<string name="exo_controls_shuffle_on_description">არეულად დაკვრა</string>
|
||||
<string name="exo_controls_fullscreen_description">სრულეკრანიანი რეჟიმი</string>
|
||||
<string name="exo_controls_vr_description">VR რეჟიმი</string>
|
||||
<string name="exo_download_description">ჩამოტვირთვა</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Алдыңғы аудиотрек</string>
|
||||
<string name="exo_controls_next_description">Келесі аудиотрек</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ешқайсысын қайталамау</string>
|
||||
<string name="exo_controls_repeat_one_description">Біреуін қайталау</string>
|
||||
<string name="exo_controls_repeat_all_description">Барлығын қайталау</string>
|
||||
<string name="exo_controls_shuffle_description">Араластыру</string>
|
||||
<string name="exo_controls_shuffle_on_description">Араластыру</string>
|
||||
<string name="exo_controls_fullscreen_description">Толық экран режимі</string>
|
||||
<string name="exo_controls_vr_description">VR режимі</string>
|
||||
<string name="exo_download_description">Жүктеп алу</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">សំនៀងមុន</string>
|
||||
<string name="exo_controls_next_description">សំនៀងបន្ទាប់</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">មិនលេងឡើងវិញ</string>
|
||||
<string name="exo_controls_repeat_one_description">លេងឡើងវិញម្ដង</string>
|
||||
<string name="exo_controls_repeat_all_description">លេងឡើងវិញទាំងអស់</string>
|
||||
<string name="exo_controls_shuffle_description">ច្របល់</string>
|
||||
<string name="exo_controls_shuffle_on_description">ច្របល់</string>
|
||||
<string name="exo_controls_fullscreen_description">មុខងារពេញអេក្រង់</string>
|
||||
<string name="exo_controls_vr_description">មុខងារ VR</string>
|
||||
<string name="exo_download_description">ទាញយក</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">ಹಿಂದಿನ ಟ್ರ್ಯಾಕ್</string>
|
||||
<string name="exo_controls_next_description">ಮುಂದಿನ ಟ್ರ್ಯಾಕ್</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ಯಾವುದನ್ನೂ ಪುನರಾವರ್ತಿಸಬೇಡಿ</string>
|
||||
<string name="exo_controls_repeat_one_description">ಒಂದನ್ನು ಪುನರಾವರ್ತಿಸಿ</string>
|
||||
<string name="exo_controls_repeat_all_description">ಎಲ್ಲವನ್ನು ಪುನರಾವರ್ತಿಸಿ</string>
|
||||
<string name="exo_controls_shuffle_description">ಶಫಲ್</string>
|
||||
<string name="exo_controls_shuffle_on_description">ಶಫಲ್</string>
|
||||
<string name="exo_controls_fullscreen_description">ಪೂರ್ಣ ಪರದೆ ಮೋಡ್</string>
|
||||
<string name="exo_controls_vr_description">VR ಮೋಡ್</string>
|
||||
<string name="exo_download_description">ಡೌನ್ಲೋಡ್</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">이전 트랙</string>
|
||||
<string name="exo_controls_next_description">다음 트랙</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">반복 안함</string>
|
||||
<string name="exo_controls_repeat_one_description">현재 미디어 반복</string>
|
||||
<string name="exo_controls_repeat_all_description">모두 반복</string>
|
||||
<string name="exo_controls_shuffle_description">셔플</string>
|
||||
<string name="exo_controls_shuffle_on_description">셔플</string>
|
||||
<string name="exo_controls_fullscreen_description">전체화면 모드</string>
|
||||
<string name="exo_controls_vr_description">가상 현실 모드</string>
|
||||
<string name="exo_download_description">다운로드</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Мурунку трек</string>
|
||||
<string name="exo_controls_next_description">Кийинки трек</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Кайталанбасын</string>
|
||||
<string name="exo_controls_repeat_one_description">Бирөөнү кайталоо</string>
|
||||
<string name="exo_controls_repeat_all_description">Баарын кайталоо</string>
|
||||
<string name="exo_controls_shuffle_description">Аралаштыруу</string>
|
||||
<string name="exo_controls_shuffle_on_description">Аралаштыруу</string>
|
||||
<string name="exo_controls_fullscreen_description">Толук экран режими</string>
|
||||
<string name="exo_controls_vr_description">VR режими</string>
|
||||
<string name="exo_download_description">Жүктөп алуу</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">ເພງກ່ອນໜ້າ</string>
|
||||
<string name="exo_controls_next_description">ເພງຕໍ່ໄປ</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ບໍ່ຫຼິ້ນຊ້ຳ</string>
|
||||
<string name="exo_controls_repeat_one_description">ຫຼິ້ນຊໍ້າ</string>
|
||||
<string name="exo_controls_repeat_all_description">ຫຼິ້ນຊ້ຳທັງໝົດ</string>
|
||||
<string name="exo_controls_shuffle_description">ຫຼີ້ນແບບສຸ່ມ</string>
|
||||
<string name="exo_controls_shuffle_on_description">ຫຼີ້ນແບບສຸ່ມ</string>
|
||||
<string name="exo_controls_fullscreen_description">ໂໝດເຕັມຈໍ</string>
|
||||
<string name="exo_controls_vr_description">ໂໝດ VR</string>
|
||||
<string name="exo_download_description">ດາວໂຫລດ</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Ankstesnis takelis</string>
|
||||
<string name="exo_controls_next_description">Kitas takelis</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Kartoti viską</string>
|
||||
<string name="exo_controls_shuffle_description">Maišyti</string>
|
||||
<string name="exo_controls_shuffle_on_description">Maišyti</string>
|
||||
<string name="exo_controls_fullscreen_description">Viso ekrano režimas</string>
|
||||
<string name="exo_controls_vr_description">VR režimas</string>
|
||||
<string name="exo_download_description">Atsisiųsti</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Iepriekšējais ieraksts</string>
|
||||
<string name="exo_controls_next_description">Nākamais ieraksts</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Atkārtot visu</string>
|
||||
<string name="exo_controls_shuffle_description">Atskaņot jauktā secībā</string>
|
||||
<string name="exo_controls_shuffle_on_description">Atskaņot jauktā secībā</string>
|
||||
<string name="exo_controls_fullscreen_description">Pilnekrāna režīms</string>
|
||||
<string name="exo_controls_vr_description">VR režīms</string>
|
||||
<string name="exo_download_description">Lejupielādēt</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Претходна песна</string>
|
||||
<string name="exo_controls_next_description">Следна песна</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Не повторувај ниту една</string>
|
||||
<string name="exo_controls_repeat_one_description">Повтори една</string>
|
||||
<string name="exo_controls_repeat_all_description">Повтори ги сите</string>
|
||||
<string name="exo_controls_shuffle_description">Измешај</string>
|
||||
<string name="exo_controls_shuffle_on_description">Измешај</string>
|
||||
<string name="exo_controls_fullscreen_description">Режим на цел екран</string>
|
||||
<string name="exo_controls_vr_description">Режим на VR</string>
|
||||
<string name="exo_download_description">Преземи</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">മുമ്പത്തെ ട്രാക്ക്</string>
|
||||
<string name="exo_controls_next_description">അടുത്ത ട്രാക്ക്</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ഒന്നും ആവർത്തിക്കരുത്</string>
|
||||
<string name="exo_controls_repeat_one_description">ഒരെണ്ണം ആവർത്തിക്കുക</string>
|
||||
<string name="exo_controls_repeat_all_description">എല്ലാം ആവർത്തിക്കുക</string>
|
||||
<string name="exo_controls_shuffle_description">ഇടകലര്ത്തുക</string>
|
||||
<string name="exo_controls_shuffle_on_description">ഇടകലര്ത്തുക</string>
|
||||
<string name="exo_controls_fullscreen_description">പൂർണ്ണ സ്ക്രീൻ മോഡ്</string>
|
||||
<string name="exo_controls_vr_description">VR മോഡ്</string>
|
||||
<string name="exo_download_description">ഡൗൺലോഡ്</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Өмнөх бичлэг</string>
|
||||
<string name="exo_controls_next_description">Дараагийн бичлэг</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Алийг нь ч дахин тоглуулахгүй</string>
|
||||
<string name="exo_controls_repeat_one_description">Одоогийн тоглуулж буй медиаг дахин тоглуулах</string>
|
||||
<string name="exo_controls_repeat_all_description">Бүгдийг нь дахин тоглуулах</string>
|
||||
<string name="exo_controls_shuffle_description">Холих</string>
|
||||
<string name="exo_controls_shuffle_on_description">Холих</string>
|
||||
<string name="exo_controls_fullscreen_description">Бүтэн дэлгэцийн горим</string>
|
||||
<string name="exo_controls_vr_description">VR горим</string>
|
||||
<string name="exo_download_description">Татах</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">मागील ट्रॅक</string>
|
||||
<string name="exo_controls_next_description">पुढील ट्रॅक</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">रीपीट करू नका</string>
|
||||
<string name="exo_controls_repeat_one_description">एक रीपीट करा</string>
|
||||
<string name="exo_controls_repeat_all_description">सर्व रीपीट करा</string>
|
||||
<string name="exo_controls_shuffle_description">शफल करा</string>
|
||||
<string name="exo_controls_shuffle_on_description">शफल करा</string>
|
||||
<string name="exo_controls_fullscreen_description">फुल स्क्रीन मोड</string>
|
||||
<string name="exo_controls_vr_description">VR मोड</string>
|
||||
<string name="exo_download_description">डाउनलोड करा</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Lagu sebelumnya</string>
|
||||
<string name="exo_controls_next_description">Lagu seterusnya</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Jangan ulang</string>
|
||||
<string name="exo_controls_repeat_one_description">Ulang satu</string>
|
||||
<string name="exo_controls_repeat_all_description">Ulang semua</string>
|
||||
<string name="exo_controls_shuffle_description">Rombak</string>
|
||||
<string name="exo_controls_shuffle_on_description">Rombak</string>
|
||||
<string name="exo_controls_fullscreen_description">Mod skrin penuh</string>
|
||||
<string name="exo_controls_vr_description">Mod VR</string>
|
||||
<string name="exo_download_description">Muat turun</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">ယခင် တစ်ပုဒ်</string>
|
||||
<string name="exo_controls_next_description">နောက် တစ်ပုဒ်</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">မည်သည်ကိုမျှ ပြန်မကျော့ရန်</string>
|
||||
<string name="exo_controls_repeat_one_description">တစ်ခုကို ပြန်ကျော့ရန်</string>
|
||||
<string name="exo_controls_repeat_all_description">အားလုံး ပြန်ကျော့ရန်</string>
|
||||
<string name="exo_controls_shuffle_description">ရောသမမွှေ</string>
|
||||
<string name="exo_controls_shuffle_on_description">ရောသမမွှေ</string>
|
||||
<string name="exo_controls_fullscreen_description">မျက်နှာပြင်အပြည့် မုဒ်</string>
|
||||
<string name="exo_controls_vr_description">VR မုဒ်</string>
|
||||
<string name="exo_download_description">ဒေါင်းလုဒ် လုပ်ရန်</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Forrige spor</string>
|
||||
<string name="exo_controls_next_description">Neste spor</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Ikke gjenta noen</string>
|
||||
<string name="exo_controls_repeat_one_description">Gjenta én</string>
|
||||
<string name="exo_controls_repeat_all_description">Gjenta alle</string>
|
||||
<string name="exo_controls_shuffle_description">Tilfeldig rekkefølge</string>
|
||||
<string name="exo_controls_shuffle_on_description">Tilfeldig rekkefølge</string>
|
||||
<string name="exo_controls_fullscreen_description">Fullskjermmodus</string>
|
||||
<string name="exo_controls_vr_description">VR-modus</string>
|
||||
<string name="exo_download_description">Last ned</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">अघिल्लो ट्रयाक</string>
|
||||
<string name="exo_controls_next_description">अर्को ट्र्याक</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">कुनै पनि नदोहोर्याउनुहोस्</string>
|
||||
<string name="exo_controls_repeat_one_description">एउटा दोहोर्याउनुहोस्</string>
|
||||
<string name="exo_controls_repeat_all_description">सबै दोहोर्याउनुहोस्</string>
|
||||
<string name="exo_controls_shuffle_description">मिसाउनुहोस्</string>
|
||||
<string name="exo_controls_shuffle_on_description">मिसाउनुहोस्</string>
|
||||
<string name="exo_controls_fullscreen_description">पूर्ण स्क्रिन मोड</string>
|
||||
<string name="exo_controls_vr_description">VR मोड</string>
|
||||
<string name="exo_download_description">डाउनलोड गर्नुहोस्</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Vorige track</string>
|
||||
<string name="exo_controls_next_description">Volgende track</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Niets herhalen</string>
|
||||
<string name="exo_controls_repeat_one_description">Eén herhalen</string>
|
||||
<string name="exo_controls_repeat_all_description">Alles herhalen</string>
|
||||
<string name="exo_controls_shuffle_description">Shuffle</string>
|
||||
<string name="exo_controls_shuffle_on_description">Shuffle</string>
|
||||
<string name="exo_controls_fullscreen_description">Modus \'Volledig scherm\'</string>
|
||||
<string name="exo_controls_vr_description">VR-modus</string>
|
||||
<string name="exo_download_description">Downloaden</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">ਪਿਛਲਾ ਟਰੈਕ</string>
|
||||
<string name="exo_controls_next_description">ਅਗਲਾ ਟਰੈਕ</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ਕਿਸੇ ਨੂੰ ਨਾ ਦੁਹਰਾਓ</string>
|
||||
<string name="exo_controls_repeat_one_description">ਇੱਕ ਵਾਰ ਦੁਹਰਾਓ</string>
|
||||
<string name="exo_controls_repeat_all_description">ਸਾਰਿਆਂ ਨੂੰ ਦੁਹਰਾਓ</string>
|
||||
<string name="exo_controls_shuffle_description">ਬੇਤਰਤੀਬ ਕਰੋ</string>
|
||||
<string name="exo_controls_shuffle_on_description">ਬੇਤਰਤੀਬ ਕਰੋ</string>
|
||||
<string name="exo_controls_fullscreen_description">ਪੂਰੀ-ਸਕ੍ਰੀਨ ਮੋਡ</string>
|
||||
<string name="exo_controls_vr_description">VR ਮੋਡ</string>
|
||||
<string name="exo_download_description">ਡਾਊਨਲੋਡ ਕਰੋ</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Poprzedni utwór</string>
|
||||
<string name="exo_controls_next_description">Następny utwór</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Powtórz wszystkie</string>
|
||||
<string name="exo_controls_shuffle_description">Odtwarzanie losowe</string>
|
||||
<string name="exo_controls_shuffle_on_description">Odtwarzanie losowe</string>
|
||||
<string name="exo_controls_fullscreen_description">Tryb pełnoekranowy</string>
|
||||
<string name="exo_controls_vr_description">Tryb VR</string>
|
||||
<string name="exo_download_description">Pobierz</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Faixa anterior</string>
|
||||
<string name="exo_controls_next_description">Faixa seguinte</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Não repetir nenhum</string>
|
||||
<string name="exo_controls_repeat_one_description">Repetir um</string>
|
||||
<string name="exo_controls_repeat_all_description">Repetir tudo</string>
|
||||
<string name="exo_controls_shuffle_description">Reproduzir aleatoriamente</string>
|
||||
<string name="exo_controls_shuffle_on_description">Reproduzir aleatoriamente</string>
|
||||
<string name="exo_controls_fullscreen_description">Modo de ecrã inteiro</string>
|
||||
<string name="exo_controls_vr_description">Modo de RV</string>
|
||||
<string name="exo_download_description">Transferir</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Faixa anterior</string>
|
||||
<string name="exo_controls_next_description">Próxima faixa</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Não repetir</string>
|
||||
<string name="exo_controls_repeat_one_description">Repetir uma</string>
|
||||
<string name="exo_controls_repeat_all_description">Repetir tudo</string>
|
||||
<string name="exo_controls_shuffle_description">Aleatório</string>
|
||||
<string name="exo_controls_shuffle_on_description">Aleatório</string>
|
||||
<string name="exo_controls_fullscreen_description">Modo de tela cheia</string>
|
||||
<string name="exo_controls_vr_description">Modo RV</string>
|
||||
<string name="exo_download_description">Fazer o download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Melodia anterioară</string>
|
||||
<string name="exo_controls_next_description">Următoarea înregistrare</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Nu repetați niciunul</string>
|
||||
<string name="exo_controls_repeat_one_description">Repetați unul</string>
|
||||
<string name="exo_controls_repeat_all_description">Repetați-le pe toate</string>
|
||||
<string name="exo_controls_shuffle_description">Redați aleatoriu</string>
|
||||
<string name="exo_controls_shuffle_on_description">Redați aleatoriu</string>
|
||||
<string name="exo_controls_fullscreen_description">Modul Ecran complet</string>
|
||||
<string name="exo_controls_vr_description">Mod RV</string>
|
||||
<string name="exo_download_description">Descărcați</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Предыдущий трек</string>
|
||||
<string name="exo_controls_next_description">Следующий трек</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Не повторять</string>
|
||||
<string name="exo_controls_repeat_one_description">Повторять трек</string>
|
||||
<string name="exo_controls_repeat_all_description">Повторять все</string>
|
||||
<string name="exo_controls_shuffle_description">Перемешать</string>
|
||||
<string name="exo_controls_shuffle_on_description">Перемешать</string>
|
||||
<string name="exo_controls_fullscreen_description">Полноэкранный режим</string>
|
||||
<string name="exo_controls_vr_description">VR-режим</string>
|
||||
<string name="exo_download_description">Скачать</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">පෙර ඛණ්ඩය</string>
|
||||
<string name="exo_controls_next_description">ඊළඟ ඛණ්ඩය</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">කිසිවක් පුනරාවර්තනය නොකරන්න</string>
|
||||
<string name="exo_controls_repeat_one_description">එකක් පුනරාවර්තනය කරන්න</string>
|
||||
<string name="exo_controls_repeat_all_description">සියල්ල පුනරාවර්තනය කරන්න</string>
|
||||
<string name="exo_controls_shuffle_description">කලවම් කරන්න</string>
|
||||
<string name="exo_controls_shuffle_on_description">කලවම් කරන්න</string>
|
||||
<string name="exo_controls_fullscreen_description">සම්පූර්ණ තිර ප්රකාරය</string>
|
||||
<string name="exo_controls_vr_description">VR ප්රකාරය</string>
|
||||
<string name="exo_download_description">බාගන්න</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Predchádzajúca skladba</string>
|
||||
<string name="exo_controls_next_description">Ďalšia skladba</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Neopakovať</string>
|
||||
<string name="exo_controls_repeat_one_description">Opakovať jednu</string>
|
||||
<string name="exo_controls_repeat_all_description">Opakovať všetko</string>
|
||||
<string name="exo_controls_shuffle_description">Náhodne prehrávať</string>
|
||||
<string name="exo_controls_shuffle_on_description">Náhodne prehrávať</string>
|
||||
<string name="exo_controls_fullscreen_description">Režim celej obrazovky</string>
|
||||
<string name="exo_controls_vr_description">režim VR</string>
|
||||
<string name="exo_download_description">Stiahnuť</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Prejšnja skladba</string>
|
||||
<string name="exo_controls_next_description">Naslednja skladba</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Brez ponavljanja</string>
|
||||
<string name="exo_controls_repeat_one_description">Ponavljanje ene</string>
|
||||
<string name="exo_controls_repeat_all_description">Ponavljanje vseh</string>
|
||||
<string name="exo_controls_shuffle_description">Naključno predvajanje</string>
|
||||
<string name="exo_controls_shuffle_on_description">Naključno predvajanje</string>
|
||||
<string name="exo_controls_fullscreen_description">Celozaslonski način</string>
|
||||
<string name="exo_controls_vr_description">Način VR</string>
|
||||
<string name="exo_download_description">Prenos</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Kënga e mëparshme</string>
|
||||
<string name="exo_controls_next_description">Kënga tjetër</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Mos përsërit asnjë</string>
|
||||
<string name="exo_controls_repeat_one_description">Përsërit një</string>
|
||||
<string name="exo_controls_repeat_all_description">Përsërit të gjitha</string>
|
||||
<string name="exo_controls_shuffle_description">Përziej</string>
|
||||
<string name="exo_controls_shuffle_on_description">Përziej</string>
|
||||
<string name="exo_controls_fullscreen_description">Modaliteti me ekran të plotë</string>
|
||||
<string name="exo_controls_vr_description">Modaliteti RV</string>
|
||||
<string name="exo_download_description">Shkarko</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Претходна песма</string>
|
||||
<string name="exo_controls_next_description">Следећа песма</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Не понављај ниједну</string>
|
||||
<string name="exo_controls_repeat_one_description">Понови једну</string>
|
||||
<string name="exo_controls_repeat_all_description">Понови све</string>
|
||||
<string name="exo_controls_shuffle_description">Пусти насумично</string>
|
||||
<string name="exo_controls_shuffle_on_description">Пусти насумично</string>
|
||||
<string name="exo_controls_fullscreen_description">Режим целог екрана</string>
|
||||
<string name="exo_controls_vr_description">ВР режим</string>
|
||||
<string name="exo_download_description">Преузми</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Föregående spår</string>
|
||||
<string name="exo_controls_next_description">Nästa spår</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Upprepa alla</string>
|
||||
<string name="exo_controls_shuffle_description">Blanda spår</string>
|
||||
<string name="exo_controls_shuffle_on_description">Blanda spår</string>
|
||||
<string name="exo_controls_fullscreen_description">Helskärmsläge</string>
|
||||
<string name="exo_controls_vr_description">VR-läge</string>
|
||||
<string name="exo_download_description">Ladda ned</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Wimbo uliotangulia</string>
|
||||
<string name="exo_controls_next_description">Wimbo unaofuata</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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_all_description">Rudia zote</string>
|
||||
<string name="exo_controls_shuffle_description">Changanya</string>
|
||||
<string name="exo_controls_shuffle_on_description">Changanya</string>
|
||||
<string name="exo_controls_fullscreen_description">Hali ya skrini nzima</string>
|
||||
<string name="exo_controls_vr_description">Hali ya Uhalisia Pepe</string>
|
||||
<string name="exo_download_description">Pakua</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">முந்தைய டிராக்</string>
|
||||
<string name="exo_controls_next_description">அடுத்த டிராக்</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">எதையும் மீண்டும் இயக்காதே</string>
|
||||
<string name="exo_controls_repeat_one_description">இதை மட்டும் மீண்டும் இயக்கு</string>
|
||||
<string name="exo_controls_repeat_all_description">அனைத்தையும் மீண்டும் இயக்கு</string>
|
||||
<string name="exo_controls_shuffle_description">வரிசை மாற்றி இயக்கு</string>
|
||||
<string name="exo_controls_shuffle_on_description">வரிசை மாற்றி இயக்கு</string>
|
||||
<string name="exo_controls_fullscreen_description">முழுத்திரைப் பயன்முறை</string>
|
||||
<string name="exo_controls_vr_description">VR பயன்முறை</string>
|
||||
<string name="exo_download_description">பதிவிறக்கும் பட்டன்</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">మునుపటి ట్రాక్</string>
|
||||
<string name="exo_controls_next_description">తదుపరి ట్రాక్</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">దేన్నీ పునరావృతం చేయకండి</string>
|
||||
<string name="exo_controls_repeat_one_description">ఒకదాన్ని పునరావృతం చేయండి</string>
|
||||
<string name="exo_controls_repeat_all_description">అన్నింటినీ పునరావృతం చేయండి</string>
|
||||
<string name="exo_controls_shuffle_description">షఫుల్ చేయండి</string>
|
||||
<string name="exo_controls_shuffle_on_description">షఫుల్ చేయండి</string>
|
||||
<string name="exo_controls_fullscreen_description">పూర్తి స్క్రీన్ మోడ్</string>
|
||||
<string name="exo_controls_vr_description">వర్చువల్ రియాలిటీ మోడ్</string>
|
||||
<string name="exo_download_description">డౌన్లోడ్ చేయి</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">แทร็กก่อนหน้า</string>
|
||||
<string name="exo_controls_next_description">แทร็กถัดไป</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">ไม่เล่นซ้ำ</string>
|
||||
<string name="exo_controls_repeat_one_description">เล่นซ้ำเพลงเดียว</string>
|
||||
<string name="exo_controls_repeat_all_description">เล่นซ้ำทั้งหมด</string>
|
||||
<string name="exo_controls_shuffle_description">สุ่ม</string>
|
||||
<string name="exo_controls_shuffle_on_description">สุ่ม</string>
|
||||
<string name="exo_controls_fullscreen_description">โหมดเต็มหน้าจอ</string>
|
||||
<string name="exo_controls_vr_description">โหมด VR</string>
|
||||
<string name="exo_download_description">ดาวน์โหลด</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Nakaraang track</string>
|
||||
<string name="exo_controls_next_description">Susunod na track</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Walang uulitin</string>
|
||||
<string name="exo_controls_repeat_one_description">Mag-ulit ng isa</string>
|
||||
<string name="exo_controls_repeat_all_description">Ulitin lahat</string>
|
||||
<string name="exo_controls_shuffle_description">I-shuffle</string>
|
||||
<string name="exo_controls_shuffle_on_description">I-shuffle</string>
|
||||
<string name="exo_controls_fullscreen_description">Fullscreen mode</string>
|
||||
<string name="exo_controls_vr_description">VR mode</string>
|
||||
<string name="exo_download_description">I-download</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Önceki parça</string>
|
||||
<string name="exo_controls_next_description">Sonraki parça</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Hiçbirini tekrarlama</string>
|
||||
<string name="exo_controls_repeat_one_description">Birini tekrarla</string>
|
||||
<string name="exo_controls_repeat_all_description">Tümünü tekrarla</string>
|
||||
<string name="exo_controls_shuffle_description">Karıştır</string>
|
||||
<string name="exo_controls_shuffle_on_description">Karıştır</string>
|
||||
<string name="exo_controls_fullscreen_description">Tam ekran modu</string>
|
||||
<string name="exo_controls_vr_description">VR modu</string>
|
||||
<string name="exo_download_description">İndir</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Попередня композиція</string>
|
||||
<string name="exo_controls_next_description">Наступна композиція</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Не повторювати</string>
|
||||
<string name="exo_controls_repeat_one_description">Повторити 1</string>
|
||||
<string name="exo_controls_repeat_all_description">Повторити всі</string>
|
||||
<string name="exo_controls_shuffle_description">Перемішати</string>
|
||||
<string name="exo_controls_shuffle_on_description">Перемішати</string>
|
||||
<string name="exo_controls_fullscreen_description">Повноекранний режим</string>
|
||||
<string name="exo_controls_vr_description">Режим віртуальної реальності</string>
|
||||
<string name="exo_download_description">Завантажити</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">پچھلا ٹریک</string>
|
||||
<string name="exo_controls_next_description">اگلا ٹریک</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">کسی کو نہ دہرائیں</string>
|
||||
<string name="exo_controls_repeat_one_description">ایک کو دہرائیں</string>
|
||||
<string name="exo_controls_repeat_all_description">سبھی کو دہرائیں</string>
|
||||
<string name="exo_controls_shuffle_description">شفل کریں</string>
|
||||
<string name="exo_controls_shuffle_on_description">شفل کریں</string>
|
||||
<string name="exo_controls_fullscreen_description">پوری اسکرین والی وضع</string>
|
||||
<string name="exo_controls_vr_description">VR موڈ</string>
|
||||
<string name="exo_download_description">ڈاؤن لوڈ کریں</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Avvalgi trek</string>
|
||||
<string name="exo_controls_next_description">Keyingi trek</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Takrorlanmasin</string>
|
||||
<string name="exo_controls_repeat_one_description">Bittasini takrorlash</string>
|
||||
<string name="exo_controls_repeat_all_description">Hammasini takrorlash</string>
|
||||
<string name="exo_controls_shuffle_description">Aralash</string>
|
||||
<string name="exo_controls_shuffle_on_description">Aralash</string>
|
||||
<string name="exo_controls_fullscreen_description">Butun ekran rejimi</string>
|
||||
<string name="exo_controls_vr_description">VR rejimi</string>
|
||||
<string name="exo_download_description">Yuklab olish</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Bản nhạc trước</string>
|
||||
<string name="exo_controls_next_description">Bản nhạc tiếp theo</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<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</string>
|
||||
<string name="exo_controls_repeat_all_description">Lặp lại tất cả</string>
|
||||
<string name="exo_controls_shuffle_description">Phát ngẫu nhiên</string>
|
||||
<string name="exo_controls_shuffle_on_description">Phát ngẫu nhiên</string>
|
||||
<string name="exo_controls_fullscreen_description">Chế độ toàn màn hình</string>
|
||||
<string name="exo_controls_vr_description">Chế độ thực tế ảo</string>
|
||||
<string name="exo_download_description">Tải xuống</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">上一曲</string>
|
||||
<string name="exo_controls_next_description">下一曲</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">不重复播放</string>
|
||||
<string name="exo_controls_repeat_one_description">重复播放一项</string>
|
||||
<string name="exo_controls_repeat_all_description">全部重复播放</string>
|
||||
<string name="exo_controls_shuffle_description">随机播放</string>
|
||||
<string name="exo_controls_shuffle_on_description">随机播放</string>
|
||||
<string name="exo_controls_fullscreen_description">全屏模式</string>
|
||||
<string name="exo_controls_vr_description">VR 模式</string>
|
||||
<string name="exo_download_description">下载</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">上一首曲目</string>
|
||||
<string name="exo_controls_next_description">下一首曲目</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">不重複播放</string>
|
||||
<string name="exo_controls_repeat_one_description">重複播放單一項目</string>
|
||||
<string name="exo_controls_repeat_all_description">全部重複播放</string>
|
||||
<string name="exo_controls_shuffle_description">隨機播放</string>
|
||||
<string name="exo_controls_shuffle_on_description">隨機播放</string>
|
||||
<string name="exo_controls_fullscreen_description">全螢幕模式</string>
|
||||
<string name="exo_controls_vr_description">虛擬現實模式</string>
|
||||
<string name="exo_download_description">下載</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">上一首曲目</string>
|
||||
<string name="exo_controls_next_description">下一首曲目</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">不重複播放</string>
|
||||
<string name="exo_controls_repeat_one_description">重複播放單一項目</string>
|
||||
<string name="exo_controls_repeat_all_description">重複播放所有項目</string>
|
||||
<string name="exo_controls_shuffle_description">隨機播放</string>
|
||||
<string name="exo_controls_shuffle_on_description">隨機播放</string>
|
||||
<string name="exo_controls_fullscreen_description">全螢幕模式</string>
|
||||
<string name="exo_controls_vr_description">虛擬實境模式</string>
|
||||
<string name="exo_download_description">下載</string>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2019 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="exo_controls_previous_description">Ithrekhi yangaphambilini</string>
|
||||
<string name="exo_controls_next_description">Ithrekhi elandelayo</string>
|
||||
|
|
@ -10,7 +24,7 @@
|
|||
<string name="exo_controls_repeat_off_description">Phinda okungekho</string>
|
||||
<string name="exo_controls_repeat_one_description">Phinda okukodwa</string>
|
||||
<string name="exo_controls_repeat_all_description">Phinda konke</string>
|
||||
<string name="exo_controls_shuffle_description">Shova</string>
|
||||
<string name="exo_controls_shuffle_on_description">Shova</string>
|
||||
<string name="exo_controls_fullscreen_description">Imodi yesikrini esigcwele</string>
|
||||
<string name="exo_controls_vr_description">Inqubo ye-VR</string>
|
||||
<string name="exo_download_description">Landa</string>
|
||||
|
|
|
|||
|
|
@ -34,8 +34,10 @@
|
|||
<string name="exo_controls_repeat_one_description">Repeat one</string>
|
||||
<!-- Description for a button that controls the repeat mode of a media playback. In this mode the entire playlist is repeated. [CHAR LIMIT=30] -->
|
||||
<string name="exo_controls_repeat_all_description">Repeat all</string>
|
||||
<!-- Description for a media control button that toggles whether shuffle mode is enabled. [CHAR LIMIT=30] -->
|
||||
<string name="exo_controls_shuffle_description">Shuffle</string>
|
||||
<!-- Description for a button that controls the shuffle mode of media playback. In this mode shuffle is on. [CHAR LIMIT=30] -->
|
||||
<string name="exo_controls_shuffle_on_description">Shuffle on</string>
|
||||
<!-- Description for a button that controls the shuffle mode of media playback. In this mode shuffle is off. [CHAR LIMIT=30] -->
|
||||
<string name="exo_controls_shuffle_off_description">Shuffle off</string>
|
||||
<!-- Description for a media control button that toggles whether a video playback is fullscreen. [CHAR LIMIT=30] -->
|
||||
<string name="exo_controls_fullscreen_description">Fullscreen mode</string>
|
||||
<!-- Description for a media control button that toggles whether a video playback is in VR mode. [CHAR LIMIT=30] -->
|
||||
|
|
|
|||
|
|
@ -51,11 +51,6 @@
|
|||
<item name="android:contentDescription">@string/exo_controls_pause_description</item>
|
||||
</style>
|
||||
|
||||
<style name="ExoMediaButton.Shuffle">
|
||||
<item name="android:src">@drawable/exo_controls_shuffle_off</item>
|
||||
<item name="android:contentDescription">@string/exo_controls_shuffle_description</item>
|
||||
</style>
|
||||
|
||||
<style name="ExoMediaButton.VR">
|
||||
<item name="android:src">@drawable/exo_icon_vr</item>
|
||||
<item name="android:contentDescription">@string/exo_controls_vr_description</item>
|
||||
|
|
|
|||
Loading…
Reference in a new issue