Improved Dutch version 3.1.1

This commit is contained in:
René Loos
2020-06-20 20:29:16 +02:00
parent 9bd23ffac8
commit e06639daa5
2 changed files with 3 additions and 0 deletions

View File

@ -146,6 +146,7 @@ class CompanyController extends Controller
$languages = [ // alphabetical order $languages = [ // alphabetical order
["code"=>"pt_BR", "name" => "Brazilian Portuguese"], ["code"=>"pt_BR", "name" => "Brazilian Portuguese"],
["code"=>"en", "name" => "English"], ["code"=>"en", "name" => "English"],
["code"=>"nl", "name" => "Dutch"],
["code"=>"fr", "name" => "French"], ["code"=>"fr", "name" => "French"],
["code"=>"de", "name" => "German"], ["code"=>"de", "name" => "German"],
["code"=>"it", "name" => "Italian"], ["code"=>"it", "name" => "Italian"],

View File

@ -7,6 +7,7 @@ import ar from './ar.json'
import de from './de.json' import de from './de.json'
import pt_BR from './pt-br.json' import pt_BR from './pt-br.json'
import it from './it.json' import it from './it.json'
import nl from './nl.json'
Vue.use(VueI18n) Vue.use(VueI18n)
@ -20,6 +21,7 @@ const i18n = new VueI18n({
de, de,
pt_BR, pt_BR,
it, it,
nl,
}, },
}) })