Skip to content

Commit

Permalink
Fixed issue: Missing translation in tutorial
Browse files Browse the repository at this point in the history
Tutorial question 29 is missing a gT(...) call for the text inside the alert box.
ToDo: The text "Please add at least two answer options to proceed." must be added to the .po translations.
  • Loading branch information
m-unkel authored and c-schmitz committed Nov 19, 2019
1 parent 6b08f8c commit c6e53e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/core/LsDefaultDataSets.php
Expand Up @@ -806,7 +806,7 @@ public static function getTutorialEntryData()
'title' => gT('Edit answer options'),
'content' => gT("As you can see, editing answer options is quite similar to editing subquestions.").'<br/>'
.gT('Remember the plus button').'<i class="icon-add text-success"></i>?'.'<br/>'
.'<p class="alert bg-warning">'."Please add at least two answer options to proceed.".'</p>',
.'<p class="alert bg-warning">'.gT("Please add at least two answer options to proceed.").'</p>',
'settings' => json_encode(array(
'element' => '#rowcontainer',
'delayOnElement' => "{element: 'element'}",
Expand Down

0 comments on commit c6e53e1

Please sign in to comment.