mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-20 05:21:22 +02:00
Added hindi quiz structure on quiz app
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
<select v-model="locale">
|
||||
<option>en</option>
|
||||
<option>id</option>
|
||||
<option>hi</option>
|
||||
</select>
|
||||
</nav>
|
||||
<div id="app">
|
||||
@@ -104,4 +105,3 @@ h3,
|
||||
margin: 4px auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
2509
quiz-app/src/assets/translations/hi.json
Normal file
2509
quiz-app/src/assets/translations/hi.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,7 @@
|
||||
import en from './en.json';
|
||||
import fr from './fr.json';
|
||||
import id from './id.json';
|
||||
import hi from './hi.json';
|
||||
|
||||
//export const defaultLocale = 'en';
|
||||
|
||||
@@ -9,6 +10,7 @@ const messages = {
|
||||
en: en[0],
|
||||
fr: fr[0],
|
||||
id: id[0],
|
||||
hi: hi[0],
|
||||
};
|
||||
|
||||
export default messages;
|
||||
|
Reference in New Issue
Block a user