summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsevenmaster <sevenmaster@users.noreply.github.com>2019-10-31 23:00:39 +0100
committerH. Lehmann <ByteHamster@users.noreply.github.com>2019-10-31 23:00:39 +0100
commit386395629b9ed317cdf0ac277598f7f10ea369da (patch)
tree64e9891f3e2dcaa000e808e24b23dda67805094f
parent2a2ced1631ebd9dc84f3e91339d2706b30a850b5 (diff)
downloadAntennaPod-386395629b9ed317cdf0ac277598f7f10ea369da.zip
Clearer button text for feching podcast (#3575)
When subscribing to a podcast, the old text might be confusing to new users (it's not downloading an episode, just the feed. That is not considered downloading for most users) Signed-off-by: sevenmaster <seven-master@hotmail.de>
-rw-r--r--app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java2
-rw-r--r--core/src/main/res/values/strings.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java b/app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java
index 97a2d5913..5102095a7 100644
--- a/app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java
+++ b/app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java
@@ -492,7 +492,7 @@ public class OnlineFeedViewActivity extends AppCompatActivity {
if (subscribeButton != null && feed != null) {
if (DownloadRequester.getInstance().isDownloadingFile(feed.getDownload_url())) {
subscribeButton.setEnabled(false);
- subscribeButton.setText(R.string.downloading_label);
+ subscribeButton.setText(R.string.subscribing_label);
} else if (feedInFeedlist(feed)) {
subscribeButton.setEnabled(true);
subscribeButton.setText(R.string.open_podcast);
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index 78d747e5e..6541524fb 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -618,7 +618,7 @@
<!-- Online feed view -->
<string name="subscribe_label">Subscribe</string>
- <string name="downloading_label">Downloading&#8230;</string>
+ <string name="subscribing_label">Subscribing&#8230;</string>
<!-- Content descriptions for image buttons -->
<string name="rewind_label">Rewind</string>