Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wintercms/wn-translate-plugin
Translate plugin for Winter CMS
https://github.com/wintercms/wn-translate-plugin
hacktoberfest
Last synced: about 1 month ago
JSON representation
Translate plugin for Winter CMS
- Host: GitHub
- URL: https://github.com/wintercms/wn-translate-plugin
- Owner: wintercms
- License: mit
- Created: 2021-03-06T05:11:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T16:35:26.000Z (9 months ago)
- Last Synced: 2024-04-14T07:11:11.131Z (8 months ago)
- Topics: hacktoberfest
- Language: PHP
- Homepage:
- Size: 672 KB
- Stars: 13
- Watchers: 6
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wintercms - Winter.Translate - Frontend localization for all records. (Uncategorized / Uncategorized)
README
# Translate Plugin
Adds multi-lingual / localization capabilities to the frontends of Winter CMS websites.
Supports:
- Frontend Language Picker component
- Static string/message localizations
- CMS Content files localizations
- Mail template localizations
- Model attribute localizations
- Theme Data & Settings localizations
- URL & URL attribute localizations
- Simple UX in backend for providing localized values
- Easy integration with external plugins## Installation
This plugin is available for installation via [Composer](http://getcomposer.org/).
```bash
composer require winter/wn-translate-plugin
```After installing the plugin you will need to run the migrations and (if you are using a [public folder](https://wintercms.com/docs/develop/docs/setup/configuration#using-a-public-folder)) [republish your public directory](https://wintercms.com/docs/develop/docs/console/setup-maintenance#mirror-public-files).
```bash
php artisan migrate
```## Selecting a language
Different languages can be set up in the back-end area, with a single default language selected. This activates the use of the language on the front-end and in the back-end UI.
A visitor can select a language by prefixing the language code to the URL, this is then stored in the user's session as their chosen language. For example:
* `http://website/ru/` will display the site in Russian
* `http://website/fr/` will display the site in French
* `http://website/` will display the site in the default language or the user's chosen language.## Language Picker Component
A visitor can select their chosen language using the `LocalePicker` component. This component will display a simple dropdown that changes the page language depending on the selection.
title = "Home"
url = "/"[localePicker]
==
{{ 'Please select your language:'|_ }}
{% component 'localePicker' %}If translated, the text above will appear as whatever language is selected by the user. The dropdown is very basic and is intended to be restyled. A simpler example might be:
[...]
==
Switch language to:
English,
Russian
## Message translation
Message or string translation is the conversion of adhoc strings used throughout the site. A message can be translated with parameters.
{{ 'site.name'|_ }}
{{ 'Welcome to our website!'|_ }}
{{ 'Hello :name!'|_({ name: 'Friend' }) }}
A message can also be translated for a choice usage.
{{ 'There are no apples|There are :number applies!'|__(2, { number: 'two' }) }}
Or you set a locale manually by passing a second argument.
{{ 'this is always english'|_({}, 'en') }}
Themes can provide default values for these messages by defining a `translate` key in the `theme.yaml` file, located in the theme directory.
name: My Theme
# [...]translate:
en:
site.name: 'My Website'
nav.home: 'Home'
nav.video: 'Video'
title.home: 'Welcome Home'
title.video: 'Screencast Video'You may also define the translations in a separate file, where the path is relative to the theme. The following definition will source the default messages from the file **config/lang.yaml** inside the theme.
name: My Theme
# [...]translate: config/lang.yaml
This is an example of **config/lang.yaml** file with two languages:
en:
site.name: 'My Website'
nav.home: 'Home'
nav.video: 'Video'
title.home: 'Welcome Home'
hr:
site.name: 'Moje web stranice'
nav.home: 'Početna'
nav.video: 'Video'
title.home: 'Dobrodošli'You may also define the translations in a separate file per locale, where the path is relative to the theme. The following definition will source the default messages from the file **config/lang-en.yaml** inside the theme for the english locale and from the file **config/lang-fr.yaml** for the french locale.
name: My Theme
# [...]translate:
en: config/lang-en.yaml
fr: config/lang-fr.yamlThis is an example for the **config/lang-en.yaml** file:
site.name: 'My Website'
nav.home: 'Home'
nav.video: 'Video'
title.home: 'Welcome Home'In order to make these default values reflected to your frontend site, go to **Settings -> Translate messages** in the backend and hit **Scan for messages**. They will also be loaded automatically when the theme is activated.
The same operation can be performed with the `translate:scan` artisan command. It may be worth including it in a deployment script to automatically fetch updated messages:
php artisan translate:scan
Add the `--purge` option to clear old messages first:
php artisan translate:scan --purge
## Content translationThis plugin activates a feature in the CMS that allows content files to use language suffixes, for example:
* **welcome.htm** will contain the content in the default language.
* **welcome.ru.htm** will contain the content in Russian.
* **welcome.fr.htm** will contain the content in French.## Mail template translation
This plugin activates a feature in the CMS that allows Mail template files to use language suffixes, for example:
* **mail-notify.htm** will contain the mail template in the default language.
* **mail-notify-ru.htm** will contain the mail template in Russian.
* **mail-notify-fr.htm** will contain the mail template in French.## Extending a plugin with translatable fields
If you are extending a plugin and want the added fields in the backend to be translatable, you have to use the '[backend.form.extendFieldsBefore](https://wintercms.com/docs/events/event/backend.form.extendFieldsBefore)' and tell which fields you want to be translatable by pushing them to the array.```
public function boot() {
Event::listen('backend.form.extendFieldsBefore', function($widget) {// Only apply this listener when the Page controller is being used
if (!$widget->getController() instanceof \Winter\Pages\Controllers\Index) {
return;
}// Only apply this listener when the Page model is being modified
if (!$widget->model instanceof \Winter\Pages\Classes\Page) {
return;
}// Only apply this listener when the Form widget in question is a root-level
// Form widget (not a repeater, nestedform, etc)
if ($widget->isNested) {
return;
}// Add fields
$widget->tabs['fields']['viewBag[myField]'] = [
'tab' => 'mytab',
'label' => 'myLabel',
'type' => 'text'
];// Translate fields
$translatable = [
'viewBag[myField]'
];// Merge the fields in the translatable array
$widget->model->translatable = array_merge($widget->model->translatable, $translatable);});
}
```
## Model translationModels can have their attributes translated by using the `Winter.Translate.Behaviors.TranslatableModel` behavior and specifying which attributes to translate in the class.
class User
{
public $implement = ['Winter.Translate.Behaviors.TranslatableModel'];public $translatable = ['name'];
}The attribute will then contain the default language value and other language code values can be created by using the `translateContext()` method.
$user = User::first();
// Outputs the name in the default language
echo $user->name;$user->translateContext('fr');
// Outputs the name in French
echo $user->name;You may use the same process for setting values.
$user = User::first();
// Sets the name in the default language
$user->name = 'English';$user->translateContext('fr');
// Sets the name in French
$user->name = 'Anglais';The `lang()` method is a shorthand version of `translateContext()` and is also chainable.
// Outputs the name in French
echo $user->lang('fr')->name;This can be useful inside a Twig template.
{{ user.lang('fr').name }}
There are ways to get and set attributes without changing the context.
// Gets a single translated attribute for a language
$user->getAttributeTranslated('name', 'fr');// Sets a single translated attribute for a language
$user->setAttributeTranslated('name', 'Jean-Claude', 'fr');
## Theme data translationIt is also possible to translate theme customisation options. Just mark your form fields with `translatable` property and the plugin will take care about everything else:
tabs:
fields:
website_name:
tab: Info
label: Website Name
type: text
default: Your website name
translatable: true## Fallback attribute values
By default, untranslated attributes will fall back to the default locale. This behavior can be disabled by calling the `setTranslatableUseFallback()` method.
$user = User::first();
$user->setTranslatableUseFallback(false)->lang('fr');
// Returns NULL if there is no French translation
$user->name;## Indexed attributes
Translatable model attributes can also be declared as an index by passing the `$transatable` attribute value as an array. The first value is the attribute name, the other values represent options, in this case setting the option `index` to `true`.
public $translatable = [
'name',
['slug', 'index' => true]
];Once an attribute is indexed, you may use the `transWhere` method to apply a basic query to the model.
Post::transWhere('slug', 'hello-world')->first();
The `transWhere` method accepts a third argument to explicitly pass a locale value, otherwise it will be detected from the environment.
Post::transWhere('slug', 'hello-world', 'en')->first();
## URL translation
Pages in the CMS support translating the URL property. Assuming you have 3 languages set up:
- en: English
- fr: French
- ru: RussianThere is a page with the following content:
url = "/contact"
[viewBag]
localeUrl[ru] = "/контакт"
==
Page content
The word "Contact" in French is the same so a translated URL is not given, or needed. If the page has no URL override specified, then the default URL will be used. Pages will not be duplicated for a given language.
- /fr/contact - Page in French
- /en/contact - Page in English
- /ru/контакт - Page in Russian
- /ru/contact - 404## URL parameter translation
It's possible to translate URL parameters by listening to the `translate.localePicker.translateParams` event, which is fired when switching languages.
Event::listen('translate.localePicker.translateParams', function($page, $params, $oldLocale, $newLocale) {
if ($page->baseFileName == 'your-page-filename') {
return YourModel::translateParams($params, $oldLocale, $newLocale);
}
});In YourModel, one possible implementation might look like this:
public static function translateParams($params, $oldLocale, $newLocale) {
$newParams = $params;
foreach ($params as $paramName => $paramValue) {
$records = self::transWhere($paramName, $paramValue, $oldLocale)->first();
if ($records) {
$records->translateContext($newLocale);
$newParams[$paramName] = $records->$paramName;
}
}
return $newParams;
}## Query string translation
It's possible to translate query string parameters by listening to the `translate.localePicker.translateQuery` event, which is fired when switching languages.
Event::listen('translate.localePicker.translateQuery', function($page, $params, $oldLocale, $newLocale) {
if ($page->baseFileName == 'your-page-filename') {
return YourModel::translateParams($params, $oldLocale, $newLocale);
}
});For a possible implementation of the `YourModel::translateParams` method look at the example under `URL parameter translation` from above.
## Extend theme scan
Event::listen('winter.translate.themeScanner.afterScan', function (ThemeScanner $scanner) {
...
});## Settings model translation
It's possible to translate your settings model like any other model. To retrieve translated values use:
Settings::instance()->getAttributeTranslated('your_attribute_name');
## Conditionally extending plugins
#### Models
It is possible to conditionally extend a plugin's models to support translation by placing an `@` symbol before the behavior definition. This is a soft implement will only use `TranslatableModel` if the Translate plugin is installed, otherwise it will not cause any errors.
/**
* Blog Post Model
*/
class Post extends Model
{[...]
/**
* Softly implement the TranslatableModel behavior.
*/
public $implement = ['@Winter.Translate.Behaviors.TranslatableModel'];/**
* @var array Attributes that support translation, if available.
*/
public $translatable = ['title'];[...]
}
The back-end forms will automatically detect the presence of translatable fields and replace their controls for multilingual equivalents.
#### Messages
Since the Twig filter will not be available all the time, we can pipe them to the native Laravel translation methods instead. This ensures translated messages will always work on the front end.
/**
* Register new Twig variables
* @return array
*/
public function registerMarkupTags()
{
// Check the translate plugin is installed
if (!class_exists('Winter\Translate\Behaviors\TranslatableModel'))
return;return [
'filters' => [
'_' => ['Lang', 'get'],
'__' => ['Lang', 'choice'],
]
];
}# User Interface
#### Switching locales
Users can switch between locales by clicking on the locale indicator on the right hand side of the Multi-language input. By holding the CMD / CTRL key all Multi-language Input fields will switch to the selected locale.
## Integration without jQuery and Winter CMS Framework files
It is possible to use the front-end language switcher without using jQuery or the Winter CMS AJAX Framework by making the AJAX API request yourself manually. The following is an example of how to do that.
document.querySelector('#languageSelect').addEventListener('change', function () {
const details = {
_session_key: document.querySelector('input[name="_session_key"]').value,
_token: document.querySelector('input[name="_token"]').value,
locale: this.value
}let formBody = []
for (var property in details) {
let encodedKey = encodeURIComponent(property)
let encodedValue = encodeURIComponent(details[property])
formBody.push(encodedKey + '=' + encodedValue)
}formBody = formBody.join('&')
fetch(location.href + '/', {
method: 'POST',
body: formBody,
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'X-WINTER-REQUEST-HANDLER': 'onSwitchLocale',
'X-WINTER-REQUEST-PARTIALS': '',
'X-Requested-With': 'XMLHttpRequest'
}
})
.then(res => res.json())
.then(res => window.location.replace(res.X_WINTER_REDIRECT))
.catch(err => console.log(err))
})The HTML:
{{ form_open() }}
{% for code, name in locales %}
{% if code != activeLocale %}
{{code | upper }}
{% endif %}
{% endfor %}
{{ form_close() }}