# HG changeset patch # User Lennard de Rijk # Date 1246462124 -7200 # Node ID c27c21beba3532ea92c26d4c6728fb58a3bc6f21 # Parent dfb9249d91b6fe80036b2b6f4c1c994c59bd6b13 Fixed multiple typos in Survey tooltips strings. diff -r dfb9249d91b6 -r c27c21beba35 app/soc/views/models/survey.py --- a/app/soc/views/models/survey.py Wed Jul 01 17:25:54 2009 +0200 +++ b/app/soc/views/models/survey.py Wed Jul 01 17:28:44 2009 +0200 @@ -60,7 +60,7 @@ _short_answer = ("Short Answer", "Less than 40 characters. Rendered as a text input. " "It's possible to add a free form question (Content) " - "and a in-input propmt/example text.") + "and a in-input prompt/example text.") _choice = ("Selection", "Can be set as a single choice (selection) or multiple choice " "(pick_multi) question. Rendered as a select (single choice) " @@ -69,7 +69,7 @@ "as wanted. Each option can be edited (double-click), deleted " "(click on (-) button) or reordered (drag and drop).") _long_answer = ("Long Answer", - "Unlimited length, auto-growing field. endered as a textarea. " + "Unlimited length, auto-growing field. Rendered as a textarea. " "It's possible to add a free form question (Content) and " "an in-input prompt/example text.") QUESTION_TYPES = dict(short_answer=_short_answer, long_answer=_long_answer,