summaryrefslogtreecommitdiff
path: root/ui/msg_popup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/msg_popup.cpp')
-rw-r--r--ui/msg_popup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/msg_popup.cpp b/ui/msg_popup.cpp
index fb33dfb0..940163af 100644
--- a/ui/msg_popup.cpp
+++ b/ui/msg_popup.cpp
@@ -156,7 +156,7 @@ WarningDlg::WarningDlg(wxWindow* parent, int activeButtons, const wxString& mes
SetTitle(_("Warning"));
m_bitmapMsgType->SetBitmap(getResourceImage(L"msg_warning"));
m_textCtrlMessage->SetValue(messageText);
- checkBoxDontShowAgain.SetLabel(_("Don't show this dialog again"));
+ checkBoxDontShowAgain.SetLabel(_("Don't show this warning again"));
buttonIgnore.SetLabel(_("&Ignore"));
buttonSwitch.SetLabel(_("&Switch"));
//buttonIgnore.SetId(wxID_IGNORE); -> see comment in ErrorDlg
bgstack15