northcreationagency/silverstripe-lingo 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

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".

image

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" %>

统计信息

  • 总下载量: 1.42k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 5
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2018-10-17

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固