Remove string that isn't needed anymore and change one
This commit is contained in:
parent
4ea563f8a3
commit
c885499faf
2 changed files with 2 additions and 3 deletions
|
@ -23,7 +23,7 @@ enum class AppBackupState {
|
|||
FAILED -> notShownString
|
||||
FAILED_NO_DATA -> context.getString(R.string.backup_app_no_data)
|
||||
FAILED_WAS_STOPPED -> context.getString(R.string.backup_app_was_stopped)
|
||||
FAILED_NOT_ALLOWED -> context.getString(R.string.backup_app_not_allowed)
|
||||
FAILED_NOT_ALLOWED -> notShownString
|
||||
FAILED_NOT_INSTALLED -> context.getString(R.string.restore_app_not_installed)
|
||||
FAILED_QUOTA_EXCEEDED -> context.getString(R.string.backup_app_quota_exceeded)
|
||||
}
|
||||
|
|
|
@ -96,14 +96,13 @@
|
|||
<string name="backup_settings">Device settings</string>
|
||||
<string name="backup_call_log">Call history</string>
|
||||
<string name="backup_contacts">Local contacts</string>
|
||||
<string name="backup_section_user">User Apps</string>
|
||||
<string name="backup_section_user">Installed Apps</string>
|
||||
<!-- This text gets shown for apps that the OS did not try to backup for whatever reason e.g. no backup was run yet -->
|
||||
<string name="backup_app_not_yet_backed_up">Waiting to back up…</string>
|
||||
<string name="restore_app_not_yet_backed_up">Was not yet backed up</string>
|
||||
<string name="backup_app_was_stopped">Not backed up as it wasn\'t used recently</string>
|
||||
<string name="restore_app_was_stopped">Was not backed up as it hadn\'t been used recently</string>
|
||||
<string name="backup_app_no_data">App reported no data for backup</string>
|
||||
<string name="backup_app_not_allowed">App doesn\'t allow backup</string> <!-- TODO remove -->
|
||||
<string name="restore_app_not_allowed">App didn\'t allow backup</string>
|
||||
<string name="backup_app_quota_exceeded">Backup quota exceeded</string>
|
||||
<string name="restore_app_quota_exceeded">Backup quota was exceeded</string>
|
||||
|
|
Loading…
Reference in a new issue