Skip to content

Commit

Permalink
Less ambiguous string.
Browse files Browse the repository at this point in the history
  • Loading branch information
codesquid committed Aug 29, 2011
1 parent ccb57ed commit 1de90a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interface/filteredit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void CFilterEditDialog::OnNew(wxCommandEvent& event)

if (m_pFilterListCtrl->FindString(newName) != wxNOT_FOUND)
{
wxMessageBox(_("The entered filter name already exists."), _("Duplicate filter name"), wxICON_ERROR, this);
wxMessageBox(_("The entered filter name already exists, please choose a different name."), _("Filter name already exists"), wxICON_ERROR, this);
return;
}

Expand Down Expand Up @@ -212,7 +212,7 @@ void CFilterEditDialog::OnRename(wxCommandEvent& event)

if (m_pFilterListCtrl->FindString(newName) != wxNOT_FOUND)
{
wxMessageBox(_("The entered filter name already exists."), _("Duplicate filter name"), wxICON_ERROR, this);
wxMessageBox(_("The entered filter name already exists, please choose a different name."), _("Filter name already exists"), wxICON_ERROR, this);
return;
}

Expand Down Expand Up @@ -251,7 +251,7 @@ void CFilterEditDialog::OnCopy(wxCommandEvent& event)

if (m_pFilterListCtrl->FindString(newName) != wxNOT_FOUND)
{
wxMessageBox(_("The entered filter name already exists."), _("Duplicate filter name"), wxICON_ERROR, this);
wxMessageBox(_("The entered filter name already exists, please choose a different name."), _("Filter name already exists"), wxICON_ERROR, this);
return;
}

Expand Down

0 comments on commit 1de90a4

Please sign in to comment.