diff options
| author | comex <comexk@gmail.com> | 2014-10-27 21:28:17 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2014-10-27 21:28:17 -0400 |
| commit | 5f4c22df1a31d4cc4cc4115caef28cc8afc70997 (patch) | |
| tree | 21fc03da2f8504b5ef57ba5c81c968d40d182550 /Source | |
| parent | 07a8b1b28f41a6902c217ea1a513dba5d965dafa (diff) | |
| parent | 1b9add5cabfe2df8d396caaf9f1ef1d31cc76bc6 (diff) | |
Merge pull request #1423 from Buddybenj/cannot
Fix consistency of cannot throughout the project
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinWX/FrameAui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/FrameAui.cpp b/Source/Core/DolphinWX/FrameAui.cpp index 34d52068c1..c309976a46 100644 --- a/Source/Core/DolphinWX/FrameAui.cpp +++ b/Source/Core/DolphinWX/FrameAui.cpp @@ -548,7 +548,7 @@ void CFrame::OnPerspectiveMenu(wxCommandEvent& event) } else if (dlg.GetValue().Find(",") != -1) { - wxMessageBox(_("The name can not contain the character ','"), + wxMessageBox(_("The name cannot contain the character ','"), _("Notice"), wxOK, this); wxString Str = dlg.GetValue(); Str.Replace(",", "", true); @@ -556,7 +556,7 @@ void CFrame::OnPerspectiveMenu(wxCommandEvent& event) } else if (dlg.GetValue().IsSameAs("")) { - wxMessageBox(_("The name can not be empty"), + wxMessageBox(_("The name cannot be empty"), _("Notice"), wxOK, this); dlg.SetValue(DefaultValue); } |
