northcreationagency/silverstripe-lingo
Composer 安装命令:
composer require northcreationagency/silverstripe-lingo
包简介
Translate and handle keys from yml-files from within the SilverStripe admin.
README 文档
README
Lingo lets developers define keys in yml-files in the same style as the normal lang-files but that can be viewed and translated from within the SilverStripe admin.
Requirements
- SilverStripe 4 (tested with 4.12 and PHP 8.1.0)
Installation
composer require northcreationagency/silverstripe-lingo
How to use
Set the location of the file/s that should be used for the texts to be handled in the yml config file of your project, ie: app/_config/mysite.yml
moduleCatalog is the catalog that the textCatalog is placed in (at the "first level").
textCatalog is the catalog that will contain the yml-files to be read by the module.
Example: app/lingotext
Where app is the "moduleCatalog" and lingotext is the "textCatalog".
NorthCreationAgency\SilverStripeLingo\Lingo:
moduleCatalog: app
textCatalog: lingotext
Place one or more yml-files (one for each language) for your texts in the textCatalog catalog.
The files should follow the same structure as SilverStripes yml lang files.
Example:
en:
List:
Header: 'This is a list header'
Company:
Header: This is a company header
Sync the texts to the database
To sync the texts from the yml files to the database add a url variable to the build url, like this: dev/build?synclingo=1
Then when you run dev/build?synclingo=1 the texts in the yml-file(s) are read and stored in the database and can be edited from the admin.
The Lingo cache is also cleared on build.
You can also add an extra config variable if you want it to always sync the lingo texts upon build. If you do the config like this the lingo texts will be read and synced to the database upon every dev/build without the need to use the url variable.
NorthCreationAgency\SilverStripeLingo\Lingo:
moduleCatalog: app
textCatalog: lingotext
syncOnBuild: true
There is also a task that can be used to sync the texts to the DB. You can run it via dev/tasks/SyncLingoTask .
Usage
Use the SilverStripe translation functions as you would normally use the Silverstripe translate function.
It will first search the regular yml-files for the entity. If it not exists there it will check if a Lingo translation entity exists in the DB. If it does the value of that will be cached and returned.
Use in php function
// Simple string translation
_t('LeftAndMain.FILESIMAGES','Files & Images');
// Using injection to add variables into the translated strings.
_t('CMSMain.RESTORED',
"Restored {value} successfully",
['value' => $itemRestored]
);
Use in template
//with string
<%t Foo.BAR 'Bar' %>
//with variable
<%t Member.WELCOME 'Welcome {name} to {site}' name=$Member.Name site="Foobar.com" %>
northcreationagency/silverstripe-lingo 适用场景与选型建议
northcreationagency/silverstripe-lingo 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.42k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2018 年 10 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「translation」 「language」 「yml」 「silverstripe」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 northcreationagency/silverstripe-lingo 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 northcreationagency/silverstripe-lingo 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 northcreationagency/silverstripe-lingo 相关的其它包
同方向 / 同关键字的高下载量 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
YML (Yandex Market Language) parser
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
统计信息
- 总下载量: 1.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2018-10-17
