Skip to content
Permalink
Browse files
Merge pull request #6299 from Ebola16/master
ISOProperties: Rename "Edit Config" and "Show Defaults"
  • Loading branch information
leoetlino committed Jan 12, 2018
2 parents 56d74d6 + 1fabc93 commit 955214c
Showing 1 changed file with 8 additions and 4 deletions.
@@ -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);

0 comments on commit 955214c

Please sign in to comment.