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 | |
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>
-rw-r--r-- | app/src/main/java/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java | 2 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 2 |
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…</string> + <string name="subscribing_label">Subscribing…</string> <!-- Content descriptions for image buttons --> <string name="rewind_label">Rewind</string> |