You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
963 B
26 lines
963 B
<?php
|
|
|
|
return [
|
|
// Study Questions
|
|
'study_id' => 'Study Content',
|
|
'title' => 'Question Title',
|
|
'type' => 'Question Type',
|
|
'type_single' => 'Single Choice',
|
|
'type_multiple' => 'Multiple Choice',
|
|
'answer' => 'Answer Options',
|
|
'answer_content' => 'Answer Content',
|
|
'answer_result' => 'Is Correct',
|
|
|
|
// Messages
|
|
'created_successfully' => 'Study question created successfully',
|
|
'updated_successfully' => 'Study question updated successfully',
|
|
'deleted_successfully' => 'Study question deleted successfully',
|
|
'not_found' => 'Study question not found',
|
|
'batch_created_successfully' => 'Questions created successfully in batch',
|
|
|
|
// Validation Messages
|
|
'no_correct_answer' => 'Must have at least one correct answer',
|
|
'single_choice_multiple_correct' => 'Single choice can only have one correct answer',
|
|
'multiple_choice_no_correct' => 'Multiple choice must have at least one correct answer',
|
|
];
|