hsm/lokale
Composer 安装命令:
composer require hsm/lokale
包简介
Laravel Auto Locale Generator: Scan your Laravel project and automatically generate missing translation keys.
README 文档
README
Lokale is a Laravel package designed to automatically extract and generate translation files by scanning your source code for translation keys. It also supports syncing translations between different locales.
🧩 Installation
Install the package using Composer:
composer require hsm/lokale
⚙️ Configuration
This package uses Laravel's package discovery. If for some reason it's not auto-discovered, register it manually:
'providers' => [ Hsm\Lokale\LokaleServiceProvider::class, ];
🚀 Usage
1. Generate Locale Files
You can generate translation files by scanning your source code:
php artisan locale:make
Options
| Option | Description |
|---|---|
--locale |
Target locale to generate files for (default: value of app.locale). |
--src |
Directory to scan for translation keys (default: app/). |
--default |
Used for generating default translation placeholders (default: default). |
--comment |
Adds @TODO comments to missing translations with context information. |
--output |
Output directory for language files (default: lang/). |
--no-placeholder |
Do not generate placeholder values. |
Example
php artisan locale:make --locale=fr --src=app --comment
This will generate files like:
resources/lang/fr/messages.php
resources/lang/fr/auth.php
Each file will contain translation keys extracted from __(), trans(), or trans_choice() usage across your source code.
2. Sync Between Locales
You can synchronize translation files between two locales using:
php artisan locale:sync --from=en --to=fr
Options
| Option | Description |
|---|---|
--from |
Source locale. Required. |
--to |
Target locale. Required. |
--output |
Base directory for language files (default: lang/). |
--comment |
Adds @TODO comments for untranslated keys in target files. |
--no-placeholder |
Do not generate placeholder values. |
This is useful when adding new keys in one language and you want the same structure in another language.
3. Generate Attribute Translations
This command generates translation files for form request attributes:
php artisan locale:attributes --locale=fr
Options
| Option | Description |
|---|---|
--locale |
Target locale. |
--src |
Directory for form requests (default: app/Http/Requests). |
--output |
Output directory (default: lang/). |
--comment |
Add comments for missing translations. |
--no-placeholder |
Do not generate placeholder values. |
This helps to keep validation error messages localized and consistent.
🧠 How It Works
- Scans PHP and Blade files for translation functions (
__(),trans(),trans_choice()). - Extracts keys and organizes them into proper translation files.
- Adds
@TODOcomments for untranslated placeholders when--commentis enabled. - Generates modern, readable PHP array syntax.
📂 Output Example
resources/lang/fr/messages.php
<?php /** * Generated with hsm/lokale */ return [ 'welcome' => 'Welcome', 'greeting' => 'Greeting', // @TODO Add translation ];
👨💻 Author
- Amirhesam Bahmankhah
📧 bahmankhah1@gmail.com
📄 License
MIT © Amirhesam Bahmankhah
hsm/lokale 适用场景与选型建议
hsm/lokale 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 347 次下载、GitHub Stars 达 6, 最近一次更新时间为 2025 年 02 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「translation」 「locale」 「language」 「laravel」 「localization」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 hsm/lokale 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hsm/lokale 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 hsm/lokale 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
Easy to use i18n translation PHP class for multi-language websites
Package for convenient work with Laravel's localization features
Store your language lines in the database, yaml or other sources
A custom URL rule class for Yii 2 which allows to create translated URL rules
Set Links with a specific language parameter
统计信息
- 总下载量: 347
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-02-12