定制 bambamboole/laravel-i18next 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bambamboole/laravel-i18next

最新稳定版本:0.5.0

Composer 安装命令:

composer require bambamboole/laravel-i18next

包简介

A laravel package which provides a HTTP backend for i18next.js

README 文档

README

Latest Version on Packagist Total Downloads GitHub Actions

If you are using i18next in your frontend and Laravel in your backend, this package is for you.

Requirements

  • PHP 8.3+
  • Laravel 11, 12 or 13

How does it work?

The package provides the routes to fetch the translations and to save missing translations when using i18next-http-backend.
it supports Laravels JSON and PHP translation files and converts them on the fly to be compatible with i18next.

PHP files in sub directories are namespaced by their path, so lang/en/entities/salesOrder.php is exposed under the entities.salesOrder.* keys.

Pluralization

Laravel plural strings are converted to i18next plurals:

Laravel i18next
one apple|:count apples key_one, key_other
{0} no files|{1} one file|[2,*] :count files key_interval (see below)

Simple one\|other strings become standard i18next _one/_other plurals.

Explicit count/range forms ({0}, {1}, [2,*], …) are converted to the i18next-intervalplural-postprocessor format, e.g. (0)[no files];(1)[one file];(2-inf)[{{count}} files];. Add that postprocessor on the frontend to resolve them.

Installation

You can install the package via composer.

composer require bambamboole/laravel-i18next

Configuration

Publish the config to customise routing, the missing-translation endpoint and caching:

php artisan vendor:publish --tag="i18next-config"
return [
    'routes' => [
        'enabled' => true,
        'prefix' => '',                 // e.g. 'api'
        'middleware' => [],             // e.g. ['web'] for session/CSRF
        'locale_pattern' => '[A-Za-z_-]+', // also guards against path traversal
    ],

    // Map a requested locale to the one used on disk, e.g. ['de-DE' => 'de'].
    'locale_map' => [],

    // The store route writes files to disk — keep it out of production.
    'save_missing' => [
        'enabled' => env('I18NEXT_SAVE_MISSING', true),
        'middleware' => [],             // e.g. ['auth'] or a throttle
    ],

    // Cache the converted payload per locale; flushed when missing keys are saved.
    'cache' => [
        'enabled' => false,
        'store' => null,                // null = default cache store
        'ttl' => null,                  // null = forever
    ],

    // 'flat' = dotted keys (use keySeparator: false), 'nested' = nested JSON tree.
    'output' => 'flat',

    // Load translations as i18next namespaces (/locales/{lng}/{ns}.json).
    'namespaces' => false,
];

Set 'output' => 'nested' if you'd rather receive a nested JSON tree and keep i18next's default dot key separator (no keySeparator: false needed).

Namespaces

Set 'namespaces' => true to load translations as i18next namespaces, where the namespace is the path of the group file under lang/{locale}:

Request Source i18next
/locales/en/translation.json lang/en.json (root strings) t('key')
/locales/en/auth.json lang/en/auth.php t('auth:key')
/locales/en/entities/salesOrder.json lang/en/entities/salesOrder.php t('entities/salesOrder:title')

Keys are returned unprefixed (the namespace is the prefix). Configure the backend with loadPath: '/locales/{{lng}}/{{ns}}.json' and list your namespaces in ns.

Saving missing keys for a slashed namespace reconstructs the full dotted key (entities.salesOrder.subtitle). With a laravel-translation-dumper version that supports writing into existing nested files, it lands back in entities/salesOrder.php; otherwise it falls into a flat entities.php.

Security: the store route writes translation files. Disable it in production (I18NEXT_SAVE_MISSING=false) or put it behind auth via save_missing.middleware.

Usage

The package is still in its early development and therefor pretty opinionated and not very flexible.

It provides two routes. One is for fetching the translations and the other one is for saving missing translations.

Fetching translations

GET /locales/{locale}/translation.json returns all translations for the locale, converted to the i18next format. Point i18next-http-backend's loadPath at it.

Saving missing translations

POST /locales/add/{locale}/translation persists the keys reported by i18next's saveMissing. Point i18next-http-backend's addPath at it (and send the CSRF token, see below).

With Vue.js

To use the translations in your Vue.js components you can use the i18next-vue package.

npm install -D i18next-vue i18next-http-backend

To configure i18next-vue you can use the following code snippet:

import I18NextVue from 'i18next-vue';
import HttpBackend from 'i18next-http-backend'

i18next.use(HttpBackend).init({
    saveMissing: true,
    lng: 'en',
    backend: {
        // This is needed for CSRF protection
        withCredentials: true,
        customHeaders: () => {
            const csrf = document.querySelector<HTMLElement>('meta[name="csrf-token"]')

            return csrf === null ? {} : {'X-CSRF-TOKEN': csrf.getAttribute('content')}
        },
    },
});

//...

app.use(I18NextVue, {i18next})

With React (Inertia v3)

Install i18next and the React bindings alongside your Inertia app:

npm install -D i18next i18next-http-backend react-i18next
# optional, only needed for interval plurals:
npm install -D i18next-intervalplural-postprocessor

Initialise i18next in your Inertia entry point (resources/js/app.tsx) and wrap the app with I18nextProvider. Resolving the init() promise before createInertiaApp avoids a flash of untranslated keys on first paint:

import { createInertiaApp } from '@inertiajs/react'
import { createRoot } from 'react-dom/client'
import i18next from 'i18next'
import HttpBackend from 'i18next-http-backend'
import IntervalPlural from 'i18next-intervalplural-postprocessor'
import { initReactI18next, I18nextProvider } from 'react-i18next'

const csrfHeaders = () => {
    const token = document.querySelector<HTMLMetaElement>('meta[name="csrf-token"]')?.content

    return token ? { 'X-CSRF-TOKEN': token } : {}
}

i18next
    .use(HttpBackend)
    .use(IntervalPlural) // optional: resolves the `_interval` plural keys
    .use(initReactI18next)
    .init({
        lng: document.documentElement.lang || 'en',
        fallbackLng: false,
        keySeparator: false, // the package exposes flat, dotted keys
        saveMissing: true,
        backend: {
            loadPath: '/locales/{{lng}}/translation.json',
            addPath: '/locales/add/{{lng}}/translation',
            withCredentials: true, // send the session cookie for CSRF
            customHeaders: csrfHeaders,
        },
    })
    .then(() =>
        createInertiaApp({
            resolve: (name) => {
                const pages = import.meta.glob('./Pages/**/*.tsx')

                return pages[`./Pages/${name}.tsx`]()
            },
            setup({ el, App, props }) {
                createRoot(el).render(
                    <I18nextProvider i18n={i18next}>
                        <App {...props} />
                    </I18nextProvider>,
                )
            },
        }),
    )

Then translate inside your pages with the useTranslation hook:

import { useTranslation } from 'react-i18next'

export default function Dashboard() {
    const { t } = useTranslation()

    return (
        <div>
            <h1>{t('test.greeting', { name: 'World' })}</h1>
            <p>{t('test.plural', { count: 5 })}</p>
            {/* interval plurals use the postprocessor and the `_interval` key */}
            <p>{t('test.multiPlural_interval', { count: 5, postProcess: 'interval' })}</p>
        </div>
    )
}

Set keySeparator: false so i18next looks up the flat, dotted keys the package emits (test.greeting) verbatim instead of treating the dots as nesting.

A t / tp helper

Interval plurals need the _interval suffix and postProcess: 'interval' on every call. A tiny wrapper hides that — t for everything (including standard plurals), tp for interval plurals:

// resources/js/useT.ts
import { useTranslation } from 'react-i18next'

export function useT() {
    const { t, i18n } = useTranslation()

    return {
        t,
        // interval pluralization, e.g. tp('test.multiPlural', 5)
        tp: (key: string, count: number, options: Record<string, unknown> = {}) =>
            t(`${key}_interval`, { count, postProcess: 'interval', ...options }),
        i18n,
    }
}
const { t, tp } = useT()

t('test.greeting', { name: 'World' }) // Hello World
t('test.plural', { count: 5 })        // 5 apples  (standard plural, handled by i18next)
tp('test.multiPlural', 5)             // 5 files   (interval plural)

Outside of React, bind the same two functions to the i18next instance directly:

import i18next from 'i18next'

export const t = i18next.t.bind(i18next)
export const tp = (key: string, count: number, options: Record<string, unknown> = {}) =>
    i18next.t(`${key}_interval`, { count, postProcess: 'interval', ...options })

Testing

composer test          # unit + feature
composer test:browser  # end-to-end browser test (needs npm install + playwright)

Demo

Run a live demo page that drives i18next in the browser against the package routes:

npm install
composer serve   # then open http://127.0.0.1:8000/i18next-demo

Contributing

Ideas/Roadmap

  • Add more tests
  • Make the package more flexible
  • Support namespaces
  • Support i18next multiload

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email manuel@christlieb.eu instead of using the issue tracker.

Credits

License

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

bambamboole/laravel-i18next 适用场景与选型建议

bambamboole/laravel-i18next 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 168 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 07 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「translations」 「laravel」 「i18next」 「bambamboole」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 bambamboole/laravel-i18next 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 bambamboole/laravel-i18next 我们能提供哪些服务?
定制开发 / 二次开发

基于 bambamboole/laravel-i18next 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 168
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-07-01