From f0f1a5b5e1f0c264bcd0698d6ef1f2939fba4a31 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 20 Mar 2011 08:34:47 +0000 Subject: [PATCH] Text changes --- openlp/core/ui/starttimeform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/starttimeform.py b/openlp/core/ui/starttimeform.py index eb70536cb..2a1c270b4 100644 --- a/openlp/core/ui/starttimeform.py +++ b/openlp/core/ui/starttimeform.py @@ -72,14 +72,14 @@ class StartTimeForm(QtGui.QDialog, Ui_StartTimeDialog): title=translate('OpenLP.StartTimeForm', 'Time Validation Error'), message=translate('OpenLP.StartTimeForm', - 'End time is after the end of the Media Item')) + 'End time is set after the end of the media item')) return elif start > end: critical_error_message_box( title=translate('OpenLP.StartTimeForm', 'Time Validation Error'), message=translate('OpenLP.StartTimeForm', - 'Start time is after the End of the Media Item')) + 'Start time is after the End Time of the media item')) return self.item[u'service_item'].start_time = start self.item[u'service_item'].end_time = end