Merge pull request #140 from DaehunGwak/quiz-kr

Translating quiz-app into ko(Korean) (in progress)
pull/158/head
Jen Looper 4 years ago committed by GitHub
commit 48335892cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,8 @@
<label for="locale">locale</label>
<select v-model="locale">
<option>en</option>
<option>fr</option>
<option>ko</option>
<option>id</option>
</select>
</nav>

@ -1,6 +1,7 @@
// index.js
import en from './en.json';
import fr from './fr.json';
import ko from './ko.json';
import id from './id.json';
//export const defaultLocale = 'en';
@ -8,6 +9,7 @@ import id from './id.json';
const messages = {
en: en[0],
fr: fr[0],
ko: ko[0],
id: id[0],
};

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save