Add German and English survey translations

This commit is contained in:
Jürgen Mummert
2026-05-24 21:24:53 +02:00
parent 6eec9ec537
commit e204da60b6
18 changed files with 498 additions and 127 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
$GLOBALS['TL_LANG']['tl_survey_content']['type'] = ['Question type', 'Type of the question.'];
$GLOBALS['TL_LANG']['tl_survey_content']['types'] = [
'yes_no_maybe' => 'Yes-no question',
'text' => 'Open question',
'range' => 'Rating question',
'choice' => 'Single/multiple choice',
];
$GLOBALS['TL_LANG']['tl_survey_content']['question'] = ['Question', 'Title or wording of the question.'];
$GLOBALS['TL_LANG']['tl_survey_content']['description'] = ['Description', 'Optional additional description for the question.'];
$GLOBALS['TL_LANG']['tl_survey_content']['question_legend'] = 'Question';
$GLOBALS['TL_LANG']['tl_survey_content']['settings_legend'] = 'Settings';
$GLOBALS['TL_LANG']['tl_survey_content']['mandatory'] = ['Required question', 'This question must be answered.'];
$GLOBALS['TL_LANG']['tl_survey_content']['published'] = ['Active', 'The question is shown in the survey.'];
$GLOBALS['TL_LANG']['tl_survey_content']['allowMaybe'] = ['Offer maybe', 'Adds the Maybe answer option to the yes-no question.'];
$GLOBALS['TL_LANG']['tl_survey_content']['jumpOnYes'] = ['Jump to question on yes', 'Jumps directly to this question when the answer is Yes.'];
$GLOBALS['TL_LANG']['tl_survey_content']['jumpOnNo'] = ['Jump to question on no', 'Jumps directly to this question when the answer is No.'];
$GLOBALS['TL_LANG']['tl_survey_content']['allowMultiple'] = ['Enable multiple choice', 'Allows multiple answers instead of a single selection.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption1'] = ['Answer 1', 'First possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption2'] = ['Answer 2', 'Second possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption3'] = ['Answer 3', 'Third possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption4'] = ['Answer 4', 'Fourth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption5'] = ['Answer 5', 'Fifth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption6'] = ['Answer 6', 'Sixth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption7'] = ['Answer 7', 'Seventh possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption8'] = ['Answer 8', 'Eighth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption9'] = ['Answer 9', 'Ninth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['answerOption10'] = ['Answer 10', 'Tenth possible answer.'];
$GLOBALS['TL_LANG']['tl_survey_content']['rangeMin'] = ['Minimum value', 'Smallest value of the slider.'];
$GLOBALS['TL_LANG']['tl_survey_content']['rangeMax'] = ['Maximum value', 'Largest value of the slider.'];
$GLOBALS['TL_LANG']['tl_survey_content']['rangeStep'] = ['Step size', 'Distance between the possible slider values.'];