diff options
author | sevenmaster <sevenmaster@users.noreply.github.com> | 2019-10-31 23:00:39 +0100 |
---|---|---|
committer | H. Lehmann <ByteHamster@users.noreply.github.com> | 2019-10-31 23:00:39 +0100 |
commit | 386395629b9ed317cdf0ac277598f7f10ea369da (patch) | |
tree | 64e9891f3e2dcaa000e808e24b23dda67805094f /app | |
parent | 2a2ced1631ebd9dc84f3e91339d2706b30a850b5 (diff) | |
download | AntennaPod-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>
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java | 2 |
1 files changed, 1 insertions, 1 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); |