rene-roscher/laravel-i18n-json-converter

A Package for Laravel that converts PHP array-based translation files into flattened JSON files, making them compatible with Vue i18n

1.0.2 2025-03-23 05:41 UTC

This package is auto-updated.

Last update: 2025-03-23 05:41:53 UTC


README

PVM Banner

A Package for Laravel that converts PHP array-based translation files into flattened JSON files, making them compatible with e.g. xiCO2k/laravel-vue-i18n

Latest Version on Packagist GitHub Code Style Action Status Total Downloads

A Package for Laravel that converts PHP array-based translation files into flattened JSON files, making them compatible with xiCO2k/laravel-vue-i18n.

Installation

You can install the package via composer:

composer require rene-roscher/laravel-i18n-json-converter

You can convert your PHP array-based translation files into flattened JSON files by running the following command:

php artisan i18n:convert

Configure i18n for vue-i18n

import { i18nVue } from 'laravel-vue-i18n'

// Register the i18n plugin like this
// Tested with Vue 3 (Inertia) and Vite 4
// You need to add the locales manually to the switch, dynamic loading is not supported yet
app.use(i18nVue, {
    resolve: async (lang) => {
        const langFiles = import.meta.glob('../lang/*.json', { eager: true })

        let modules
        switch (lang) {
            case 'en':
                modules = import.meta.glob('../lang/json/en/*.json', { eager: true })
                break
            case 'de':
                modules = import.meta.glob('../lang/json/de/*.json', { eager: true })
                break
        }

        const messages = langFiles[`../lang/${lang}.json`] || {}

        for (const path in modules) {
            const regex = new RegExp(`../lang/json/${lang}/(.+)\\.json$`)
            const match = path.match(regex)
            if (match) {
                const prefix = match[1]
                const moduleMessages = modules[path].default
                for (const key in moduleMessages) {
                    messages.default[`${prefix}.${key}`] = moduleMessages[key]
                }
            }
        }

        return messages
    }
})

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.