Index: openacs-4/contrib/packages/survey/www/admin/question-add-3.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/survey/www/admin/Attic/question-add-3.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/survey/www/admin/question-add-3.tcl 19 Sep 2003 16:48:04 -0000 1.1 +++ openacs-4/contrib/packages/survey/www/admin/question-add-3.tcl 14 Feb 2004 19:57:59 -0000 1.2 @@ -51,7 +51,7 @@ get_section_info -section_id $section_id if {![info exists survey_info(survey_id)]} { - ad_return_complaint 1 "Requested survey does not exist" + ad_return_complaint 1 "[_ survey.lt_Requested_survey_does]" ad_script_abort } @@ -61,17 +61,17 @@ if { [empty_string_p $question_text] } { incr exception_count - append exception_text "
  • You did not enter a question.\n" + append exception_text "
  • [_ survey.lt_You_did_not_enter_a_q]\n" } if { $type != "scored" && $type != "general" } { incr exception_count - append exception_text "
  • Surveys of type $type are not currently available.\n" + append exception_text "
  • [_ survey.lt_Surveys_of_type_type_]\n" } if { $type == "general" && $abstract_data_type == "choice" && [empty_string_p $valid_responses] } { incr exception_count - append exception_text "
  • You did not enter a list of valid responses/choices.\n" + append exception_text "
  • [_ survey.lt_You_did_not_enter_a_l]\n" }