Skip to content

Commit

Permalink
Use translatable playback speed strings
Browse files Browse the repository at this point in the history
Issue: #9811
PiperOrigin-RevId: 423855051
  • Loading branch information
ojw28 authored and icbaker committed Jan 25, 2022
1 parent 34102ee commit abef4f4
Show file tree
Hide file tree
Showing 84 changed files with 15 additions and 130 deletions.
2 changes: 2 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@
* Fix the color of the numbers in `StyledPlayerView` rewind and
fastforward buttons when using certain themes
([#9765](https://github.com/google/ExoPlayer/issues/9765)).
* Correctly translate playback speed strings
([#9811](https://github.com/google/ExoPlayer/issues/9811)).
* Transformer:
* Increase required min API version to 21.
* `TransformationException` is now used to describe errors that occur
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,9 @@ public interface OnFullScreenModeChangedListener {
public static final int MAX_WINDOWS_FOR_MULTI_WINDOW_TIME_BAR = 100;
/** The maximum interval between time bar position updates. */
private static final int MAX_UPDATE_INTERVAL_MS = 1_000;
// LINT.IfChange(playback_speeds)
private static final float[] PLAYBACK_SPEEDS =
new float[] {0.25f, 0.5f, 0.75f, 1f, 1.25f, 1.5f, 2f};

private static final int SETTINGS_PLAYBACK_SPEED_POSITION = 0;
private static final int SETTINGS_AUDIO_TRACK_SELECTION_POSITION = 1;
Expand Down Expand Up @@ -686,8 +689,7 @@ public StyledPlayerControlView(
audioTrackSelectionAdapter = new AudioTrackSelectionAdapter();
playbackSpeedAdapter =
new PlaybackSpeedAdapter(
resources.getStringArray(R.array.exo_playback_speeds),
resources.getIntArray(R.array.exo_speed_multiplied_by_100));
resources.getStringArray(R.array.exo_controls_playback_speeds), PLAYBACK_SPEEDS);

fullScreenExitDrawable = resources.getDrawable(R.drawable.exo_styled_controls_fullscreen_exit);
fullScreenEnterDrawable =
Expand Down Expand Up @@ -1877,20 +1879,19 @@ public SettingViewHolder(View itemView) {
private final class PlaybackSpeedAdapter extends RecyclerView.Adapter<SubSettingViewHolder> {

private final String[] playbackSpeedTexts;
private final int[] playbackSpeedsMultBy100;
private final float[] playbackSpeeds;
private int selectedIndex;

public PlaybackSpeedAdapter(String[] playbackSpeedTexts, int[] playbackSpeedsMultBy100) {
public PlaybackSpeedAdapter(String[] playbackSpeedTexts, float[] playbackSpeeds) {
this.playbackSpeedTexts = playbackSpeedTexts;
this.playbackSpeedsMultBy100 = playbackSpeedsMultBy100;
this.playbackSpeeds = playbackSpeeds;
}

public void updateSelectedIndex(float playbackSpeed) {
int currentSpeedMultBy100 = Math.round(playbackSpeed * 100);
int closestMatchIndex = 0;
int closestMatchDifference = Integer.MAX_VALUE;
for (int i = 0; i < playbackSpeedsMultBy100.length; i++) {
int difference = Math.abs(currentSpeedMultBy100 - playbackSpeedsMultBy100[i]);
float closestMatchDifference = Float.MAX_VALUE;
for (int i = 0; i < playbackSpeeds.length; i++) {
float difference = Math.abs(playbackSpeed - playbackSpeeds[i]);
if (difference < closestMatchDifference) {
closestMatchIndex = i;
closestMatchDifference = difference;
Expand Down Expand Up @@ -1921,8 +1922,7 @@ public void onBindViewHolder(SubSettingViewHolder holder, int position) {
holder.itemView.setOnClickListener(
v -> {
if (position != selectedIndex) {
float speed = playbackSpeedsMultBy100[position] / 100.0f;
setPlaybackSpeed(speed);
setPlaybackSpeed(playbackSpeeds[position]);
}
settingsWindow.dismiss();
});
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-af/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Deaktiveer onderskrifte</string>
<string name="exo_controls_cc_disabled_description">Aktiveer onderskrifte</string>
<string name="exo_controls_playback_speed">Spoed</string>
<string name="exo_controls_playback_speed_normal">Normaal</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-am/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">የግርጌ ጽሑፎችን አሰናክል</string>
<string name="exo_controls_cc_disabled_description">የግርጌ ጽሑፎችን አንቃ</string>
<string name="exo_controls_playback_speed">ፍጥነት</string>
<string name="exo_controls_playback_speed_normal">መደበኛ</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-ar/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
<string name="exo_controls_cc_enabled_description">إيقاف الترجمة</string>
<string name="exo_controls_cc_disabled_description">تفعيل الترجمة</string>
<string name="exo_controls_playback_speed">السرعة</string>
<string name="exo_controls_playback_speed_normal">عادية</string>
<string-array name="exo_controls_playback_speeds">
<item>أسرع بـ 0.25 مرة</item>
<item>أسرع بـ 0.5 مرات</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-az/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Subtitrləri deaktiv edin</string>
<string name="exo_controls_cc_disabled_description">Subtitrləri aktiv edin</string>
<string name="exo_controls_playback_speed">Sürət</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-b+sr+Latn/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<string name="exo_controls_cc_enabled_description">Onemogući titlove</string>
<string name="exo_controls_cc_disabled_description">Omogući titlove</string>
<string name="exo_controls_playback_speed">Brzina</string>
<string name="exo_controls_playback_speed_normal">Uobičajena</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-be/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
<string name="exo_controls_cc_enabled_description">Выключыць субцітры</string>
<string name="exo_controls_cc_disabled_description">Уключыць субцітры</string>
<string name="exo_controls_playback_speed">Хуткасць</string>
<string name="exo_controls_playback_speed_normal">Звычайная</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-bg/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Деактивиране на субтитрите</string>
<string name="exo_controls_cc_disabled_description">Активиране на субтитрите</string>
<string name="exo_controls_playback_speed">Скорост</string>
<string name="exo_controls_playback_speed_normal">Нормално</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-bn/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">সাবটাইটেল বন্ধ করুন</string>
<string name="exo_controls_cc_disabled_description">সাবটাইটেল চালু করুন</string>
<string name="exo_controls_playback_speed">স্পিড</string>
<string name="exo_controls_playback_speed_normal">সাধারণ</string>
<string-array name="exo_controls_playback_speeds">
<item>০.২৫x</item>
<item>০.৫x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-bs/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<string name="exo_controls_cc_enabled_description">Onemogućavanje titlova</string>
<string name="exo_controls_cc_disabled_description">Omogućavanje titlova</string>
<string name="exo_controls_playback_speed">Brzina</string>
<string name="exo_controls_playback_speed_normal">Normalno</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25 x</item>
<item>0,5 x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-ca/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Desactiva els subtítols</string>
<string name="exo_controls_cc_disabled_description">Activa els subtítols</string>
<string name="exo_controls_playback_speed">Velocitat</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-cs/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
<string name="exo_controls_cc_enabled_description">Vypnout titulky</string>
<string name="exo_controls_cc_disabled_description">Zapnout titulky</string>
<string name="exo_controls_playback_speed">Rychlost</string>
<string name="exo_controls_playback_speed_normal">Normální</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25×</item>
<item>0,5×</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-da/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Deaktiver undertekster</string>
<string name="exo_controls_cc_disabled_description">Aktivér undertekster</string>
<string name="exo_controls_playback_speed">Hastighed</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Untertitel deaktivieren</string>
<string name="exo_controls_cc_disabled_description">Untertitel aktivieren</string>
<string name="exo_controls_playback_speed">Geschwindigkeit</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25-fach</item>
<item>0,5-fach</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-el/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Απενεργοποίηση υπότιτλων</string>
<string name="exo_controls_cc_disabled_description">Ενεργοποίηση υπότιτλων</string>
<string name="exo_controls_playback_speed">Ταχύτητα</string>
<string name="exo_controls_playback_speed_normal">Κανονική</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-en-rAU/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Disable subtitles</string>
<string name="exo_controls_cc_disabled_description">Enable subtitles</string>
<string name="exo_controls_playback_speed">Speed</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-en-rGB/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Disable subtitles</string>
<string name="exo_controls_cc_disabled_description">Enable subtitles</string>
<string name="exo_controls_playback_speed">Speed</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-en-rIN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Disable subtitles</string>
<string name="exo_controls_cc_disabled_description">Enable subtitles</string>
<string name="exo_controls_playback_speed">Speed</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-es-rUS/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Inhabilitar subtítulos</string>
<string name="exo_controls_cc_disabled_description">Habilitar subtítulos</string>
<string name="exo_controls_playback_speed">Velocidad</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Inhabilitar subtítulos</string>
<string name="exo_controls_cc_disabled_description">Habilitar subtítulos</string>
<string name="exo_controls_playback_speed">Velocidad</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>×0,25</item>
<item>×0,5</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-et/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Keela subtiitrid</string>
<string name="exo_controls_cc_disabled_description">Luba subtiitrid</string>
<string name="exo_controls_playback_speed">Kiirus</string>
<string name="exo_controls_playback_speed_normal">Tavaline</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25-kordne</item>
<item>0,5-kordne</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-eu/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Desgaitu azpitituluak</string>
<string name="exo_controls_cc_disabled_description">Gaitu azpitituluak</string>
<string name="exo_controls_playback_speed">Abiadura</string>
<string name="exo_controls_playback_speed_normal">Normala</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-fa/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">غیرفعال کردن زیرنویس</string>
<string name="exo_controls_cc_disabled_description">فعال کردن زیرنویس</string>
<string name="exo_controls_playback_speed">سرعت</string>
<string name="exo_controls_playback_speed_normal">عادی</string>
<string-array name="exo_controls_playback_speeds">
<item>۰٫۲۵ برابر</item>
<item>۰٫۵ برابر</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-fi/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Poista tekstitykset käytöstä</string>
<string name="exo_controls_cc_disabled_description">Ota tekstitykset käyttöön</string>
<string name="exo_controls_playback_speed">Nopeus</string>
<string name="exo_controls_playback_speed_normal">Normaali</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-fr-rCA/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Désactiver les sous-titres</string>
<string name="exo_controls_cc_disabled_description">Activer les sous-titres</string>
<string name="exo_controls_playback_speed">Vitesse</string>
<string name="exo_controls_playback_speed_normal">Normale</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Désactiver les sous-titres</string>
<string name="exo_controls_cc_disabled_description">Activer les sous-titres</string>
<string name="exo_controls_playback_speed">Vitesse</string>
<string name="exo_controls_playback_speed_normal">Normale</string>
<string-array name="exo_controls_playback_speeds">
<item>x 0,25</item>
<item>x 0,5</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-gl/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Desactiva os subtítulos</string>
<string name="exo_controls_cc_disabled_description">Activa os subtítulos</string>
<string name="exo_controls_playback_speed">Velocidade</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>x 0,25</item>
<item>x 0,5</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-gu/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">સબટાઇટલ બંધ કરો</string>
<string name="exo_controls_cc_disabled_description">સબટાઇટલ ચાલુ કરો</string>
<string name="exo_controls_playback_speed">ઝડપ</string>
<string name="exo_controls_playback_speed_normal">સામાન્ય</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-hi/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">सबटाइटल बंद करें</string>
<string name="exo_controls_cc_disabled_description">सबटाइटल चालू करें</string>
<string name="exo_controls_playback_speed">रफ़्तार</string>
<string name="exo_controls_playback_speed_normal">सामान्य</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-hr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<string name="exo_controls_cc_enabled_description">Onemogući titlove</string>
<string name="exo_controls_cc_disabled_description">Omogući titlove</string>
<string name="exo_controls_playback_speed">Brzina</string>
<string name="exo_controls_playback_speed_normal">Obično</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25 x</item>
<item>0,5 x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-hu/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Feliratok kikapcsolása</string>
<string name="exo_controls_cc_disabled_description">Feliratok bekapcsolása</string>
<string name="exo_controls_playback_speed">Sebesség</string>
<string name="exo_controls_playback_speed_normal">Normál</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25×</item>
<item>0,5×</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-hy/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Անջատել ենթագրերը</string>
<string name="exo_controls_cc_disabled_description">Միացնել ենթագրերը</string>
<string name="exo_controls_playback_speed">Արագություն</string>
<string name="exo_controls_playback_speed_normal">Սովորական</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-in/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Nonaktifkan subtitel</string>
<string name="exo_controls_cc_disabled_description">Aktifkan subtitel</string>
<string name="exo_controls_playback_speed">Kecepatan</string>
<string name="exo_controls_playback_speed_normal">Normal</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-is/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Slökkva á skjátexta</string>
<string name="exo_controls_cc_disabled_description">Kveikja á skjátexta</string>
<string name="exo_controls_playback_speed">Hraði</string>
<string name="exo_controls_playback_speed_normal">Venjulegur</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-it/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Disattiva i sottotitoli</string>
<string name="exo_controls_cc_disabled_description">Attiva i sottotitoli</string>
<string name="exo_controls_playback_speed">Velocità</string>
<string name="exo_controls_playback_speed_normal">Normale</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-iw/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
<string name="exo_controls_cc_enabled_description">השבתת כתוביות</string>
<string name="exo_controls_cc_disabled_description">הפעלת כתוביות</string>
<string name="exo_controls_playback_speed">מהירות</string>
<string name="exo_controls_playback_speed_normal">רגילה</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-ja/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">字幕の無効化</string>
<string name="exo_controls_cc_disabled_description">字幕の有効化</string>
<string name="exo_controls_playback_speed">速度</string>
<string name="exo_controls_playback_speed_normal">標準</string>
<string-array name="exo_controls_playback_speeds">
<item>0.25x</item>
<item>0.5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-ka/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">სუბტიტრების გათიშვა</string>
<string name="exo_controls_cc_disabled_description">სუბტიტრების ჩართვა</string>
<string name="exo_controls_playback_speed">სიჩქარე</string>
<string name="exo_controls_playback_speed_normal">ჩვეულებრივი</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
1 change: 0 additions & 1 deletion library/ui/src/main/res/values-kk/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<string name="exo_controls_cc_enabled_description">Субтитрді өшіру</string>
<string name="exo_controls_cc_disabled_description">Субтитрді қосу</string>
<string name="exo_controls_playback_speed">Жылдамдық</string>
<string name="exo_controls_playback_speed_normal">Қалыпты</string>
<string-array name="exo_controls_playback_speeds">
<item>0,25x</item>
<item>0,5x</item>
Expand Down
Loading

0 comments on commit abef4f4

Please sign in to comment.