From 7aef74eaca988a465cd63013acd5d0d19d9e8343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Fri, 1 Jan 2010 08:43:29 +0000 Subject: [PATCH] 3485: A better message for date validator on AgeOnDate Gramplet. svn: r13950 --- src/plugins/gramplet/AgeOnDateGramplet.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/gramplet/AgeOnDateGramplet.py b/src/plugins/gramplet/AgeOnDateGramplet.py index e0d83fd09..ec4533713 100644 --- a/src/plugins/gramplet/AgeOnDateGramplet.py +++ b/src/plugins/gramplet/AgeOnDateGramplet.py @@ -64,11 +64,11 @@ class AgeOnDateGramplet(Gramplet): description.set_wrap_mode(gtk.WRAP_WORD) description.set_editable(False) buffer = description.get_buffer() - buffer.set_text(_("Enter a date (YYYY-MM-DD) in the entry below" - " and click Run. This will compute the ages for" - " everyone in your Family Tree on that date." - " You can then sort by the age column, and" - " double-click the row to view or edit.")) + buffer.set_text(_("Enter a valid date (like YYYY-MM-DD) in the" + " entry below and click Run. This will compute" + " the ages for everyone in your Family Tree on" + " that date. You can then sort by the age column" + " ,and double-click the row to view or edit.")) label = gtk.Label() label.set_text(_("Date") + ":") self.entry = gtk.Entry()