承接 hsm/lokale 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

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 @TODO comments for untranslated placeholders when --comment is 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

📄 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 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 347
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 24
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-12