mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
ISOProperties: Rename Edit Config and Show Defaults
This commit is contained in:
parent
a1467f0e5a
commit
1fabc93756
@ -231,13 +231,17 @@ void CISOProperties::CreateGUIControls()
|
||||
{
|
||||
const int space5 = FromDIP(5);
|
||||
|
||||
wxButton* const edit_config = new wxButton(this, ID_EDITCONFIG, _("Edit Config"));
|
||||
edit_config->SetToolTip(_("This will let you manually edit the INI config file."));
|
||||
wxButton* const edit_config = new wxButton(this, ID_EDITCONFIG, _("Edit User Config"));
|
||||
edit_config->SetToolTip(
|
||||
_("Allows manual editing of the user configuration INI file for this "
|
||||
"game. Settings in the user config INI override default config INI settings."));
|
||||
|
||||
wxButton* const edit_default_config =
|
||||
new wxButton(this, ID_SHOWDEFAULTCONFIG, _("Show Defaults"));
|
||||
new wxButton(this, ID_SHOWDEFAULTCONFIG, _("View Default Config"));
|
||||
edit_default_config->SetToolTip(
|
||||
_("Opens the default (read-only) configuration for this game in an external text editor."));
|
||||
_("Displays the default configuration INI file(s) for this game. These defaults are "
|
||||
"recommended settings from the developers to avoid known issues. Changes should be made to "
|
||||
"the user config INI files only, not to default config INI files."));
|
||||
|
||||
// Notebook
|
||||
wxNotebook* const notebook = new wxNotebook(this, ID_NOTEBOOK);
|
||||
|
Loading…
Reference in New Issue
Block a user