diff options
| author | Buddybenj <buddybenj@gmail.com> | 2014-10-27 20:26:18 -0500 |
|---|---|---|
| committer | Buddybenj <buddybenj@gmail.com> | 2014-10-27 20:26:18 -0500 |
| commit | 1b9add5cabfe2df8d396caaf9f1ef1d31cc76bc6 (patch) | |
| tree | 27f101183846518e53e9838a7137f136c4e69b2c /Source/Core | |
| parent | eb865cae20f0ebba215158909977cdbab7b4142a (diff) | |
Fix consistency of cannot throughout the project
Diffstat (limited to 'Source/Core')
| -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); } |
