Merge pull request #9612 from JosJuice/android-log-to-file
Android: Rename "Enable Logging" to "Write Logs to File"
This commit is contained in:
commit
3533810636
|
@ -668,8 +668,8 @@ public final class SettingsFragmentPresenter
|
|||
|
||||
private void addLogConfigurationSettings(ArrayList<SettingsItem> sl)
|
||||
{
|
||||
sl.add(new CheckBoxSetting(BooleanSetting.LOGGER_WRITE_TO_FILE, R.string.enable_logging,
|
||||
R.string.enable_logging_description));
|
||||
sl.add(new CheckBoxSetting(BooleanSetting.LOGGER_WRITE_TO_FILE, R.string.log_to_file,
|
||||
R.string.log_to_file_description));
|
||||
sl.add(new SingleChoiceSetting(IntSetting.LOGGER_VERBOSITY, R.string.log_verbosity, 0,
|
||||
getLogVerbosityEntries(), getLogVerbosityValues()));
|
||||
sl.add(new RunRunnable(R.string.log_enable_all, 0, R.string.log_enable_all_confirmation, 0,
|
||||
|
|
|
@ -289,8 +289,8 @@
|
|||
|
||||
<!-- Log Configuration -->
|
||||
<string name="log_submenu">Log</string>
|
||||
<string name="enable_logging">Enable Logging</string>
|
||||
<string name="enable_logging_description">Log messages from enabled log types to dolphin-emu/Logs/. Will decrease performance.</string>
|
||||
<string name="log_to_file">Write Logs to File</string>
|
||||
<string name="log_to_file_description">Log messages from enabled log types to the Logs folder. Will decrease performance.</string>
|
||||
<string name="log_verbosity">Verbosity</string>
|
||||
<string name="log_enable_all">Enable all Log Types</string>
|
||||
<string name="log_enable_all_confirmation">Are you sure you want to enable all log types?</string>
|
||||
|
|
Loading…
Reference in New Issue