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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/msg_popup.cpp b/ui/msg_popup.cpp
index 0d08768c..7fa1550f 100644
--- a/ui/msg_popup.cpp
+++ b/ui/msg_popup.cpp
@@ -60,7 +60,7 @@ ErrorDlg::ErrorDlg(wxWindow* parent, int activeButtons, const wxString& messageT
SetTitle(!caption.empty() ? caption : _("Error"));
m_bitmapMsgType->SetBitmap(getResourceImage(L"msg_error"));
m_textCtrlMessage->SetValue(messageText);
- checkBoxIgnoreErrors.SetLabel(_("Ignore further errors"));
+ checkBoxIgnoreErrors.SetLabel(_("&Ignore subsequent errors"));
buttonIgnore.SetLabel(_("&Ignore"));
buttonRetry .SetLabel(_("&Retry"));
//buttonIgnore.SetId(wxID_IGNORE); -> setting id after button creation breaks "mouse snap to" functionality
@@ -174,7 +174,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 warning again"));
+ checkBoxDontShowAgain.SetLabel(_("&Don't show this warning again"));
buttonIgnore.SetLabel(_("&Ignore"));
buttonSwitch.SetLabel(_("&Switch"));
//buttonIgnore.SetId(wxID_IGNORE); -> see comment in ErrorDlg
bgstack15