Add resource for Backup summary.

- currently, the backup summary is using the accessibility summary
resource. In Spanish, the summary needs to be gender specific. Create
its own resource string so that it can be translated into correct
gender.

Change-Id: Iae14d7d3fc342264c5c8bff6bdfca0849bb4ba93
Fixes: 78477107
Test: make RunSettingsRoboTests
This commit is contained in:
Doris Ling
2018-05-16 16:10:21 -07:00
parent 579300b00c
commit ba62229b3c
3 changed files with 8 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ public class BackupSettingsActivityPreferenceController extends BasePreferenceCo
final boolean backupEnabled = mBackupManager.isBackupEnabled();
return backupEnabled
? mContext.getText(R.string.accessibility_feature_state_on)
: mContext.getText(R.string.accessibility_feature_state_off);
? mContext.getText(R.string.backup_summary_state_on)
: mContext.getText(R.string.backup_summary_state_off);
}
}