Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: revert question type values #183

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export const APP_DATA_TYPES = {
};

export enum QuestionType {
MULTIPLE_CHOICES = 'MULTIPLE_CHOICES',
TEXT_INPUT = 'TEXT_INPUT',
SLIDER = 'SLIDER',
FILL_BLANKS = 'FILL_BLANKS',
MULTIPLE_CHOICES = 'multipleChoices',
TEXT_INPUT = 'textInput',
SLIDER = 'slider',
FILL_BLANKS = 'fillBlanks',
}

export const DEFAULT_CHOICE = {
Expand Down
8 changes: 4 additions & 4 deletions src/langs/en.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Answer Type": "Answer Type",
"MULTIPLE_CHOICES": "Multiple Choices",
"TEXT_INPUT": "Text Input",
"SLIDER": "Slider",
"FILL_BLANKS": "Fill In The Blanks",
"multipleChoices": "Multiple Choices",
"textInput": "Text Input",
"slider": "Slider",
"fillBlanks": "Fill In The Blanks",
"Question": "Question",
"Enter Question": "Enter Question",
"Previous": "Previous",
Expand Down
8 changes: 4 additions & 4 deletions src/langs/fr.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Answer Type": "Type de la réponse",
"MULTIPLE_CHOICES": "Réponse à choix multiples",
"TEXT_INPUT": "Texte",
"SLIDER": "Slider",
"FILL_BLANKS": "Texte à trous",
"multipleChoices": "Réponse à choix multiples",
"textInput": "Texte",
"slider": "Slider",
"fillBlanks": "Texte à trous",
"Question": "Question",
"Enter Question": "Entrer une question",
"Previous": "Précédent",
Expand Down
Loading