Added notice that playback speed is not taken into account

This commit is contained in:
ByteHamster 2017-04-15 15:59:12 +02:00
parent 2f5fc1966d
commit 8f226803cb
2 changed files with 20 additions and 13 deletions

View File

@ -1,19 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:text="@string/statistics_speed_not_counted"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"/>
<RadioButton
android:id="@+id/statistics_mode_normal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/statistics_mode_normal" />
android:id="@+id/statistics_mode_normal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/statistics_mode_normal"/>
<RadioButton
android:id="@+id/statistics_mode_count_all"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/statistics_mode_count_all" />
android:id="@+id/statistics_mode_count_all"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/statistics_mode_count_all"/>
</RadioGroup>

View File

@ -32,8 +32,9 @@
<string name="total_time_listened_to_podcasts">Total time of podcasts played:</string>
<string name="statistics_details_dialog">%1$d out of %2$d episodes started.\n\nPlayed %3$s out of %4$s.</string>
<string name="statistics_mode">Statistics mode</string>
<string name="statistics_mode_normal">Calculate duration that was actually played. Playing twice counts twice, while marking as played does not count.</string>
<string name="statistics_mode_normal">Calculate duration that was actually played. Playing twice is counted twice, while marking as played is not counted</string>
<string name="statistics_mode_count_all">Sum up all podcasts marked as played</string>
<string name="statistics_speed_not_counted">Notice: Playback speed is never taken into account.</string>
<!-- Main activity -->
<string name="drawer_open">Open menu</string>