Re-add a string which was accidently removed.

bug:20051165
Change-Id: I43214f30650565499ffbdddb3819e96ac957ebf1
This commit is contained in:
Stuart Scott
2015-06-03 17:01:42 -07:00
parent b8df8a29bf
commit 1da842af41
2 changed files with 3 additions and 1 deletions

View File

@@ -4582,6 +4582,8 @@
<string name="auto_restore_summary">When reinstalling an app, restore backed up settings and data</string> <string name="auto_restore_summary">When reinstalling an app, restore backed up settings and data</string>
<!-- Title of the preference informing the user about the backup service being inactive [CHAR LIMIT=50]--> <!-- Title of the preference informing the user about the backup service being inactive [CHAR LIMIT=50]-->
<string name="backup_inactive_title">Backup service is inactive.</string> <string name="backup_inactive_title">Backup service is inactive.</string>
<!-- Default summary text of the "Configure backup account" setting [CHAR LIMIT=80]-->
<string name="backup_configure_account_default_summary">No account is currently storing backed up data</string>
<!-- Local (desktop) backup password menu title [CHAR LIMIT=25] --> <!-- Local (desktop) backup password menu title [CHAR LIMIT=25] -->
<string name="local_backup_password_title">Desktop backup password</string> <string name="local_backup_password_title">Desktop backup password</string>

View File

@@ -170,7 +170,7 @@ public class PrivacySettings extends SettingsPreferenceFragment implements Index
if (summary != null) { if (summary != null) {
mConfigure.setSummary(summary); mConfigure.setSummary(summary);
} else { } else {
//mConfigure.setSummary(R.string.backup_configure_account_default_summary); mConfigure.setSummary(R.string.backup_configure_account_default_summary);
} }
} }