X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56364fa2218d6acc78d8d77066926527a6116f41..4e916e61ea24c165fb55e78172f1093bf7481b48:/src/common/valtext.cpp diff --git a/src/common/valtext.cpp b/src/common/valtext.cpp index 93762c52d8..59a7eaa6bb 100644 --- a/src/common/valtext.cpp +++ b/src/common/valtext.cpp @@ -149,7 +149,7 @@ bool wxTextValidator::Validate(wxWindow *parent) wxString errormsg; if ( HasFlag(wxFILTER_EMPTY) && val.empty() ) { - errormsg = _("Please enter a non-empty string."); + errormsg = _("Required information entry is empty."); } else if ( !(errormsg = IsValid(val)).empty() ) {