From a7b1fd9e16e8f9932ad9be5936c96594bb2b30e5 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 6 Mar 2020 16:08:23 +0100 Subject: [PATCH] wip #3475 @0:05 --- app/Models/Quiz.php | 2 +- app/SubForms/Question.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/Quiz.php b/app/Models/Quiz.php index e7323b96e..fba0ab409 100644 --- a/app/Models/Quiz.php +++ b/app/Models/Quiz.php @@ -73,7 +73,7 @@ class Quiz extends CubistMagicAbstractModel 'type' => 'BunchOfFieldsMultiple', 'bunch' => 'App\SubForms\Question', 'label' => '', - 'add_label' => 'Add question', + 'add_label' => 'New question', 'tab' => 'Questions / Answers', ]); diff --git a/app/SubForms/Question.php b/app/SubForms/Question.php index 706cb4529..9b7625ee5 100644 --- a/app/SubForms/Question.php +++ b/app/SubForms/Question.php @@ -28,6 +28,7 @@ class Question extends SubForm 'name' => 'answers', 'type' => 'BunchOfFieldsMultiple', 'bunch' => 'App\SubForms\Answer', + 'add_label' => 'New answer', 'label' => 'Answers', ]); -- 2.39.5