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>
<select v-model="locale">
<option>en</option>
<option>fr</option>
<option>ko</option>
<option>id</option>
<option>hi</option>
<option>it</option>
</select>
</nav>
<div id="app">

File diff suppressed because it is too large Load Diff

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

Loading…
Cancel
Save