mutation/translate
Composer 安装命令:
composer require mutation/translate
包简介
Translate messages in the control panel
README 文档
README
This plugins adds a control panel interface for your clients to edit your static translations for each language side by side.
Features
-
Add, edit or delete translations in the Control Panel with each language side by side.
-
Choose a category, filter by missing translations, search by keywords and sort by key/date.
-
Export all or a subset of your translations to a CSV file and import it back after translators worked on it.
-
Translations will be kept inside your database instead of PHP files for a better workflow.
-
Optionally, missing translations are automatically added to the database when a page is visited.
-
Ability to parse your twig templates or migrate from your existing PHP translations (and export it back to PHP files).
-
GraphQL support to query your translations.
Requirements
This plugin requires Craft CMS 4.0.0 or later.
Installation
Install the plugin via the Plugin Store or by command line:
composer require mutation/translate
php craft install/plugin translations-admin
You can now edit your translations in the control panel /admin/translations-admin.
Permissions
You have special permissions for the Translations admin plugin:
- Save translations
- Add translations
- Delete translations
- Update translations
- Export translations
- Import translations
- Use translations utilities
- Change translations settings
Settings
You can either go the settings page or create a file translations-admin.php in your config directory.
- Plugin Name: How the plugin should be named in the CP
- Source Language: By default, the plugin uses the primary site for the source language, but you can override it with this setting.
- Categories: Choose the source message categories you want to have in your database and control panel.
- Add missing translations: Controls whether missing translations are automatically added to the database when a page is visited.
- Add missing translations for site request only: Controls whether missing translations are only added when the request is from the site.
- Excluded Messages: Messages that should not be added to the database, identified by the start of the string (basic matching, no regex — see example).
Config file example:
<?php return [ 'pluginName' => 'Translations', 'sourceLanguage' => 'en', 'categories' => [ 'site', 'app' ], 'addMissingTranslations' => false, 'addMissingSiteRequestOnly' => false, 'excludedMessages' => [ 'Submission triggered for', 'Submission marked as spam' ] ];
GraphQL
Query static messages this way:
{
staticMessages(language:["en-CA", "fr-CA"], category: ["site", "app"]) {
key
message
language
category
dateCreated
}
}
Events
You can use these custom events in your plugin or module to do any actions after translations are added, saved or deleted (example: empty the cache):
use mutation\translate\services\MessagesService; Event::on(MessagesService::class, MessagesService::EVENT_AFTER_SAVE_MESSAGES, function (Event $e) { ... }); Event::on(MessagesService::class, MessagesService::EVENT_AFTER_ADD_MESSAGE, function (Event $e) { ... }); Event::on(MessagesService::class, MessagesService::EVENT_AFTER_DELETE_MESSAGES, function (Event $e) { ... });
Methods
You can create a new translation programmatically (in migrations or otherwise):
use mutation\translate\Translate as TranslatePlugin; ... TranslatePlugin::getInstance()->messages->addMessage("Lorem ipsum", "site");
The second parameter is the category (site, app, etc.)
mutation/translate 适用场景与选型建议
mutation/translate 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 62.5k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2018 年 04 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mutation/translate 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mutation/translate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 62.5k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2018-04-16
