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:
parent
2a2ced1631
commit
386395629b
|
@ -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);
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue