summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Gouchet <xavier.gouchet@gmail.com>2019-10-14 09:13:42 +0200
committerXavier Gouchet <xavier.gouchet@gmail.com>2019-10-14 09:14:00 +0200
commit504bbb0058ec7a802e4decabda5c921c20f485d3 (patch)
tree37199ed652010761624bb4f680efc653f62af885
parentc81fcba22d1f89c00050b5a99acd30a40ef3a084 (diff)
downloadAntennaPod-504bbb0058ec7a802e4decabda5c921c20f485d3.zip
Remove duplicate string
-rw-r--r--app/src/main/java/de/danoeh/antennapod/fragment/preferences/StatisticsFragment.java2
-rw-r--r--core/src/main/res/values/strings.xml1
2 files changed, 1 insertions, 2 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/fragment/preferences/StatisticsFragment.java b/app/src/main/java/de/danoeh/antennapod/fragment/preferences/StatisticsFragment.java
index 531540f8d..7e1fdf2b9 100644
--- a/app/src/main/java/de/danoeh/antennapod/fragment/preferences/StatisticsFragment.java
+++ b/app/src/main/java/de/danoeh/antennapod/fragment/preferences/StatisticsFragment.java
@@ -132,7 +132,7 @@ public class StatisticsFragment extends Fragment {
if (!countAll) {
ConfirmationDialog conDialog = new ConfirmationDialog(
getActivity(),
- R.string.statistics_reset_data_title,
+ R.string.statistics_reset_data,
R.string.statistics_reset_data_msg) {
@Override
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index e23422817..5a0267232 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -38,7 +38,6 @@
<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>
<string name="statistics_reset_data">Reset statistics data</string>
- <string name="statistics_reset_data_title">Reset statistics data</string>
<string name="statistics_reset_data_msg">This will erase the history of duration played for all episodes. Are you sure you want to proceed?</string>
<!-- Main activity -->