mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			412 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			412 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import Vue from 'vue'
 | |
| import VueI18n from 'vue-i18n'
 | |
| import en from './en.json'
 | |
| import fr from './fr.json'
 | |
| import es from './es.json'
 | |
| import ar from './ar.json'
 | |
| import de from './de.json'
 | |
| import pt_BR from './pt-br.json'
 | |
| import it from './it.json'
 | |
| 
 | |
| Vue.use(VueI18n)
 | |
| 
 | |
| const i18n = new VueI18n({
 | |
|   locale: 'en',
 | |
|   messages: {
 | |
|     en,
 | |
|     fr,
 | |
|     es,
 | |
|     ar,
 | |
|     de,
 | |
|     pt_BR,
 | |
|     it,
 | |
|   },
 | |
| })
 | |
| 
 | |
| export default i18n
 |