Change display of text from Download queued to Download pending (#3916)

This commit is contained in:
JessieVela 2020-03-10 02:03:51 -07:00 committed by GitHub
parent fef4fb9a6b
commit ff699ac4ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -77,7 +77,7 @@ public class DownloadlistAdapter extends BaseAdapter {
}
status += " · ";
if (request.getSoFar() <= 0) {
status += context.getString(R.string.download_queued);
status += context.getString(R.string.download_pending);
} else {
status += Converter.byteToString(request.getSoFar());
if (request.getSize() != DownloadStatus.SIZE_UNKNOWN) {

View File

@ -3,7 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingTranslation">
<!-- Activitiy and fragment titles -->
<!-- Activity and fragment titles -->
<string name="app_name" translate="false">AntennaPod</string>
<string name="provider_authority" translate="false">de.danoeh.antennapod.provider</string>
<string name="feed_update_receiver_name">Update Subscriptions</string>
@ -102,7 +102,6 @@
<string name="feed_volume_reduction_light">Light</string>
<string name="feed_volume_reduction_heavy">Heavy</string>
<string name="parallel_downloads_suffix">\u0020parallel downloads</string>
<string name="download_queued">Download queued</string>
<string name="feed_auto_download_global">Global default</string>
<string name="feed_auto_download_always">Always</string>
<string name="feed_auto_download_never">Never</string>