Change "inserting" string to not include progress for last phase of update.

This commit is contained in:
Peter Serwylo 2015-11-25 17:57:21 +11:00
parent 90290f830a
commit 6969dcb90e
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@
<string name="status_processing_xml_percent">Processing %2$s / %3$s (%4$d%%) from %1$s</string>
<string name="status_connecting_to_repo">Connecting to\n%1$s</string>
<string name="status_checking_compatibility">Checking apps compatibility with your device…</string>
<string name="status_inserting">Saving application details (%1$d%%)</string>
<string name="status_inserting_apps">Saving application details</string>
<string name="repos_unchanged">All repositories are up to date</string>
<string name="all_other_repos_fine">All other repos didn\'t create errors.</string>
<string name="global_error_updating_repos">Error during update: %s</string>

View File

@ -514,7 +514,7 @@ public class UpdateService extends IntentService implements ProgressListener {
message = getString(R.string.status_processing_xml_percent, repoAddress, downloadedSize, totalSize, percent);
break;
case RepoUpdater.PROGRESS_COMMITTING:
message = getString(R.string.status_inserting, 50);
message = getString(R.string.status_inserting_apps);
break;
}
sendStatus(this, STATUS_INFO, message, percent);