diff --git a/Source/Core/DolphinWX/Src/ISOProperties.cpp b/Source/Core/DolphinWX/Src/ISOProperties.cpp index 84e9d1e645..c58a6e163e 100644 --- a/Source/Core/DolphinWX/Src/ISOProperties.cpp +++ b/Source/Core/DolphinWX/Src/ISOProperties.cpp @@ -66,7 +66,7 @@ CISOProperties::CISOProperties(const std::string fileName, wxWindow* parent, wxW if (GameIni.Load(GameIniFile.c_str())) LoadGameConfig(); else - wxMessageBox(wxString::Format("Could not create %s", GameIniFile.c_str()), _("Error"), wxOK|wxICON_ERROR, this); + wxMessageBox(wxString::Format(_("Could not create %s"), GameIniFile.c_str()), _("Error"), wxOK|wxICON_ERROR, this); } // Disk header and apploader @@ -112,7 +112,7 @@ CISOProperties::CISOProperties(const std::string fileName, wxWindow* parent, wxW CreateDirectoryTree(RootId, beginning, end, pos, (char *)"\\"); m_Treectrl->Expand(RootId); - SetTitle(wxString::Format("Properties: %s - %s", OpenISO_.GetUniqueID().c_str(), OpenISO_.GetName().c_str())); + SetTitle(wxString::Format(_("Properties: %s - %s"), OpenISO_.GetUniqueID().c_str(), OpenISO_.GetName().c_str())); Fit(); } @@ -366,7 +366,7 @@ void CISOProperties::CreateGUIControls() void CISOProperties::OnClose(wxCloseEvent& WXUNUSED (event)) { if (!SaveGameConfig(GameIniFile)) - wxMessageBox(wxString::Format("Could not save %s", GameIniFile.c_str()), _("Error"), wxOK|wxICON_ERROR, this); + wxMessageBox(wxString::Format(_("Could not save %s"), GameIniFile.c_str()), _("Error"), wxOK|wxICON_ERROR, this); Destroy(); } diff --git a/Source/Core/DolphinWX/Src/SConscript b/Source/Core/DolphinWX/Src/SConscript index b02757f550..73a389ec22 100644 --- a/Source/Core/DolphinWX/Src/SConscript +++ b/Source/Core/DolphinWX/Src/SConscript @@ -13,11 +13,11 @@ if not env['osx64']: files += [ 'AboutDolphin.cpp', 'ConfigMain.cpp', - 'FilesystemViewer.cpp', 'Frame.cpp', 'GameListCtrl.cpp', 'Globals.cpp', 'ISOFile.cpp', + 'ISOProperties.cpp', 'MemcardManager.cpp', 'MemoryCards/GCMemcard.cpp', 'PluginManager.cpp', diff --git a/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp index 774305870b..00fe94042c 100644 --- a/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp @@ -328,8 +328,12 @@ void ConfigDialog::OnButtonClick(wxCommandEvent& event) void ConfigDialog::DllAbout(wxCommandEvent& event) { wxString message; - _WIN32 ? message = "A simple keyboard and XInput plugin for dolphin." : message = "A simple keyboard plugin for dolphin."; +#ifdef _WIN32 + message = _("A simple keyboard and XInput plugin for dolphin."); +#else + message = _("A simple keyboard plugin for dolphin."); +#endif wxMessageBox(_T("Dolphin PadSimple Plugin\nBy ector and F|RES\n\n" + message), _T("Dolphin PadSimple"), wxOK, this); -} \ No newline at end of file +}