adding italian, removing french placeholder

pull/163/head
Jen Looper 4 years ago
parent 70c5f70976
commit 48f09c89b5

@ -5,10 +5,10 @@
<label for="locale">locale</label> <label for="locale">locale</label>
<select v-model="locale"> <select v-model="locale">
<option>en</option> <option>en</option>
<option>fr</option>
<option>ko</option> <option>ko</option>
<option>id</option> <option>id</option>
<option>hi</option> <option>hi</option>
<option>it</option>
</select> </select>
</nav> </nav>
<div id="app"> <div id="app">

File diff suppressed because it is too large Load Diff

@ -1,18 +1,18 @@
// index.js // index.js
import en from './en.json'; import en from './en.json';
import fr from './fr.json';
import ko from './ko.json'; import ko from './ko.json';
import id from './id.json'; import id from './id.json';
import hi from './hi.json'; import hi from './hi.json';
import it from './it.json';
//export const defaultLocale = 'en'; //export const defaultLocale = 'en';
const messages = { const messages = {
en: en[0], en: en[0],
fr: fr[0],
ko: ko[0], ko: ko[0],
id: id[0], id: id[0],
hi: hi[0], hi: hi[0],
it: it[0],
}; };
export default messages; export default messages;

Loading…
Cancel
Save