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>
This commit is contained in:
sevenmaster 2019-10-31 23:00:39 +01:00 committed by H. Lehmann
parent 2a2ced1631
commit 386395629b
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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>