diff --git a/quiz-app/src/App.vue b/quiz-app/src/App.vue index 41b741a..a6a9261 100644 --- a/quiz-app/src/App.vue +++ b/quiz-app/src/App.vue @@ -4,11 +4,9 @@ Home
diff --git a/quiz-app/src/assets/translations/bn.json b/quiz-app/src/assets/translations/bn.json index 737d911..1617b60 100644 --- a/quiz-app/src/assets/translations/bn.json +++ b/quiz-app/src/assets/translations/bn.json @@ -788,7 +788,7 @@ "questionText": "IoT Hub সিক্যুরিটি ছাড়াই যেকোন ডিভাইস কানেক্ট করতে দেয়", "answerOptions": [ { - "answerText": "মিথ্যা"", + "answerText": "মিথ্যা", "isCorrect": "true" }, { diff --git a/quiz-app/src/assets/translations/index.js b/quiz-app/src/assets/translations/index.js index ffcbad9..1f11878 100644 --- a/quiz-app/src/assets/translations/index.js +++ b/quiz-app/src/assets/translations/index.js @@ -1,9 +1,13 @@ // index.js +import ar from './ar.json'; +import bn from './bn.json'; import en from './en.json'; //export const defaultLocale = 'en'; const messages = { + ar: ar[0], + bn: bn[0], en: en[0], };