diff options
author | ByteHamster <info@bytehamster.com> | 2022-04-24 22:45:56 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2022-04-24 22:45:56 +0200 |
commit | ff60d3648dbee201905c104eacbe911fd22faea8 (patch) | |
tree | fa8c48939d54419928b64d5bb43bed04b648129a /app | |
parent | 9b78d4c3f39b085184ae54e88b22fb71f3fc13a3 (diff) | |
download | AntennaPod-ff60d3648dbee201905c104eacbe911fd22faea8.zip |
Translate widget config screen
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/activity_widget_config.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/activity_widget_config.xml b/app/src/main/res/layout/activity_widget_config.xml index 6e7bd8eb9..325b5cec5 100644 --- a/app/src/main/res/layout/activity_widget_config.xml +++ b/app/src/main/res/layout/activity_widget_config.xml @@ -85,28 +85,28 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="Playback Speed" /> + android:text="@string/playback_speed" /> <CheckBox android:id="@+id/ckRewind" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="Rewind" /> + android:text="@string/rewind_label" /> <CheckBox android:id="@+id/ckFastForward" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="Forward" /> + android:text="@string/fast_forward_label" /> <CheckBox android:id="@+id/ckSkip" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" - android:text="Skip" /> + android:text="@string/skip_episode_label" /> </LinearLayout> |