Finished rebranding core-only mode to safe mode

In compliance with #2131

Mentioned features are not contained within this commit
This commit is contained in:
Viktor De Pasquale
2019-12-06 15:00:55 +01:00
parent 2692234b8c
commit 37677f389c
3 changed files with 6 additions and 2 deletions

View File

@@ -208,8 +208,8 @@ object Magisk : SettingsItem.Section() {
}
object SafeMode : SettingsItem.Toggle() {
override val title = R.string.settings_core_only_title.asTransitive()
override val description = R.string.settings_core_only_summary.asTransitive()
override val title = R.string.settings_safe_mode_title.asTransitive()
override val description = R.string.settings_safe_mode_summary.asTransitive()
override var value by dataObservable(Config.coreOnly) {
if (Config.coreOnly == it) return@dataObservable
Config.coreOnly = it