From af59b3fc6dadf64dedc1dcaed3226e84ee62fb0a Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Sun, 15 Feb 2009 12:19:08 +0000 Subject: [PATCH] even more user-friendly message (as suggested by John Roberts) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58908 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/valtext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) { -- 2.50.0