diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2020-05-23 23:21:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 23:21:24 +0200 |
commit | 3ee3ba3f6e770d03791fa3f0ed68e09778291437 (patch) | |
tree | 73ee3142bd1aa5dfb857ad5281d0bffc8237e539 | |
parent | 65dc10e8f019d5a14eda4ddf1c9698922a807fbb (diff) | |
parent | d2ac8c48566045db614ed95aaf47cc8c6b1c5754 (diff) | |
download | AntennaPod-3ee3ba3f6e770d03791fa3f0ed68e09778291437.zip |
Merge pull request #4184 from ByteHamster/fix-wrong-string
Fixed wrong translation
-rw-r--r-- | app/src/main/res/layout/audio_controls.xml | 4 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/audio_controls.xml b/app/src/main/res/layout/audio_controls.xml index 9a1c525a7..aa1bdf236 100644 --- a/app/src/main/res/layout/audio_controls.xml +++ b/app/src/main/res/layout/audio_controls.xml @@ -55,7 +55,7 @@ android:textStyle="bold" android:textSize="24sp" android:textColor="?attr/colorSecondary" - android:contentDescription="@string/decrease_volume" + android:contentDescription="@string/decrease_speed" android:background="?attr/selectableItemBackgroundBorderless"/> <SeekBar @@ -76,7 +76,7 @@ android:textStyle="bold" android:textSize="24sp" android:textColor="?attr/colorSecondary" - android:contentDescription="@string/increase_volume" + android:contentDescription="@string/increase_speed" android:background="?attr/selectableItemBackgroundBorderless" /> </LinearLayout> diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 41333f5ae..2827f666e 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -674,8 +674,8 @@ <!-- Content descriptions for image buttons --> <string name="rewind_label">Rewind</string> <string name="fast_forward_label">Fast forward</string> - <string name="increase_volume">Increase volume</string> - <string name="decrease_volume">Decrease volume</string> + <string name="increase_speed">Increase speed</string> + <string name="decrease_speed">Decrease speed</string> <string name="media_type_audio_label">Audio</string> <string name="media_type_video_label">Video</string> <string name="navigate_upwards_label">Navigate upwards</string> |