Commit 37677f38 authored by Viktor De Pasquale's avatar Viktor De Pasquale

Finished rebranding core-only mode to safe mode

In compliance with #2131

Mentioned features are not contained within this commit
parent 2692234b
......@@ -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
......
......@@ -139,7 +139,9 @@
<string name="settings_update_beta">Beta</string>
<string name="settings_update_custom">Custom Channel</string>
<string name="settings_update_custom_msg">Insert a custom URL</string>
<!--deprecated-->
<string name="settings_core_only_title">Magisk Core Only Mode</string>
<!--deprecated-->
<string name="settings_core_only_summary">Enable only core features. MagiskSU and MagiskHide will still be enabled, but no modules will be loaded</string>
<string name="settings_magiskhide_summary">Hide Magisk from various forms of detection</string>
<string name="settings_hosts_title">Systemless hosts</string>
......
......@@ -68,6 +68,8 @@
<string name="settings_dark_mode_light">Always Light</string>
<string name="settings_dark_mode_system">Follow System</string>
<string name="settings_dark_mode_dark">Always Dark</string>
<string name="settings_safe_mode_title">Safe Mode</string>
<string name="settings_safe_mode_summary">Disables everything but essential functionality within Magisk and Magisk Manager. Magisk Hide, as a separate subsystem, will stand unaffected.</string>
<string name="install_options_title">Options</string>
<string name="install_method_title">Method</string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment