From 10fe08f2ea87c75bdef35d278bb074656dbaa394 Mon Sep 17 00:00:00 2001 From: Vibina Date: Thu, 21 Sep 2023 15:22:46 +0530 Subject: [PATCH] Label and tooltip is changed --- php/classes/class-qsm-install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/classes/class-qsm-install.php b/php/classes/class-qsm-install.php index b8b2770cc..57be09e0b 100644 --- a/php/classes/class-qsm-install.php +++ b/php/classes/class-qsm-install.php @@ -1449,10 +1449,10 @@ public function register_default_settings() { // Registers limit the number of choices $field_array = array( 'id' => 'quiz_limit_choice', - 'label' => __( 'Limit of choice is reached.', 'quiz-master-next' ), + 'label' => __( 'Answer choice limit message', 'quiz-master-next' ), 'type' => 'text', 'default' => __( 'Limit of choice is reached.', 'quiz-master-next' ), - 'tooltip' => __( 'Limit of choice is reached.', 'quiz-master-next' ), + 'tooltip' => __( 'Text to notify that the answer choice limit is exceeded in the multiple response type question.', 'quiz-master-next' ), 'option_tab' => 'text-other', ); $mlwQuizMasterNext->pluginHelper->register_quiz_setting( $field_array, 'quiz_text' );