mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
* add thai language config
* update thai translation
* update thai translation
* add THSarabunNew fonts to using in pdf
* update: pdf file to support thai language by checking isLocale('th') and include thai font-family
* update: thai translation
* remove the index.php file (not used)
* move THSarabunNew fonts to resoureces/static/fonts
* Add .gitkeep to storage/fonts to pre-build the fonts directory
Co-authored-by: Ritthikrai (Champ) Wiengchai <ritthikrai.w@aware.co.th>
44 lines
688 B
JavaScript
44 lines
688 B
JavaScript
import cs from './cs.json'
|
|
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 ja from './ja.json'
|
|
import pl from './pl.json'
|
|
import pt_BR from './pt-br.json'
|
|
import it from './it.json'
|
|
import sr from './sr.json'
|
|
import nl from './nl.json'
|
|
import ko from './ko.json'
|
|
import lv from './lv.json'
|
|
import sv from './sv.json'
|
|
import sk from './sk.json'
|
|
import vi from './vi.json'
|
|
import el from './el.json'
|
|
import hr from './hr.json'
|
|
import th from './th.json'
|
|
|
|
export default {
|
|
cs,
|
|
en,
|
|
fr,
|
|
es,
|
|
ar,
|
|
de,
|
|
ja,
|
|
pt_BR,
|
|
it,
|
|
sr,
|
|
nl,
|
|
ko,
|
|
lv,
|
|
sv,
|
|
sk,
|
|
vi,
|
|
pl,
|
|
el,
|
|
hr,
|
|
th
|
|
}
|