Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webfactory/webfactoryicutranslationbundle
Enables ICU message formatting for translations in Symfony applications.
https://github.com/webfactory/webfactoryicutranslationbundle
bundle i18n icu l10n php symfony symfony-bundle translation
Last synced: about 14 hours ago
JSON representation
Enables ICU message formatting for translations in Symfony applications.
- Host: GitHub
- URL: https://github.com/webfactory/webfactoryicutranslationbundle
- Owner: webfactory
- License: mit
- Created: 2014-02-27T11:57:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-08-27T11:33:35.000Z (4 months ago)
- Last Synced: 2024-12-16T09:18:35.551Z (8 days ago)
- Topics: bundle, i18n, icu, l10n, php, symfony, symfony-bundle, translation
- Language: PHP
- Homepage:
- Size: 242 KB
- Stars: 27
- Watchers: 10
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ICU Translation Bundle #
[![Build Status](https://travis-ci.org/webfactory/WebfactoryIcuTranslationBundle.svg?branch=master)](https://travis-ci.org/webfactory/WebfactoryIcuTranslationBundle)
[![Coverage Status](https://coveralls.io/repos/webfactory/icu-translation-bundle/badge.png?branch=master)](https://coveralls.io/r/webfactory/icu-translation-bundle?branch=master)While the [Symfony translation component](http://symfony.com/doc/current/components/translation/index.html) does a
great job in most cases, it can become difficult to use if you need conditions other than numbers (e.g. gender) or
nested conditions. This is where the ICU Translation Bundle steps in. Using the [International Components for Unicode
project](http://site.icu-project.org/)'s standard message format, it enhances the Symfony component with arbitrary and
nested conditions, as well as easy-to-use localized number and date formatting. The enhancement is non-invasive, i.e.
you don't have to touch your former messages, they'll still work as usual.## Installation ##
Assuming you've already [enabled and configured the Symfony translation component](http://symfony.com/doc/current/book/translation.html#book-translation-configuration),
all you have to do is to install the bundle via [composer](https://getcomposer.org) with something like this:php composer.phar require webfactory/icu-translation-bundle
(We use [Semantic Versioning](http://semver.org/), so as soon as a version tagged 1.0.0 is available, you'll probably
want to use something like ~1.0 as the version string.)As usual, enable the bundle in your kernel:
get('translator');
$output = $translator->trans(
'message-number',
array('%mile_to_metres%' => 1609.34)
);E.g. for the locale "en", the output will be "1 mile = 1,609.34 metres", while for the locale "de" it will be "1 mile =
1.609,34 metres" (or "1 Meile = 1.609,34 Meter" with a proper translation).For other parameter types such as date, see the bundle documentation.
### Gender Specific Translations ###
Gender specific translations are a special case of arbitrary conditions. Conditions are denoted by the key word "select"
after the variable, followed by possible variable values and their respective messages. See the following example
message stored for the locale "en" under the key "message-gender":{gender, select,
female {She spent all her money on horses}
other {He spent all his money on horses}
}If your controller looks something like this:
$output = $translator->trans(
'message-gender',
array('%gender%' => 'male')
);the output will be "He spent all his money on horses" for the locale "en".
Why didn't we list "female" and "male" as possible variable values in the message, but "female" and "other" instead?
Find out in the bundle documentation.### More Readable Pluralization ###
While [Symfony's translation component already supports pluralization](http://symfony.com/doc/current/components/translation/usage.html#component-translation-pluralization),
we think the ICU Translation Bundle provides it in a more readable way. Analogously to conditions, pluralizations are
denoted by the key word "plural" after the variable, followed by possible variable values and their respective messages.
See the following example message stored for the locale "en" under the key "message-pluralization":{number_of_participants, plural,
=0 {Nobody is participating}
=1 {One person participates}
other {# persons are participating}
}If your controller looks something like this:
$output = $translator->trans(
'message-pluralization',
array('%number_of_participants%' => 2)
);The output for the locale "en" will be: "2 persons are participating".
Note that you can distinguish both between exact numbers like with "=0" and [Unicode Common Locale Data Repository
number categories](http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html) like "other". Also
note that the number sign "#" becomes substituted with the value of the variable, 2 in this example.Now that you've got an idea of the ICU translation bundle's features, we once more invite you to read the [bundle
documentation](Resources/doc/index.rst).## Changelog ##
### 0.5.0 -> 0.6.0 ###
Introduced logging of missing parameters.
### 0.4.0 -> 0.5.0 ###
Improved performance by removing lexer/parser classes and message rewriting that was necessary to support named
parameters in PHP versions < 5.5.### 0.3.0 -> 0.4.0 ###
Symfony 3 is now supported.
### 0.2.3 -> 0.3.0 ###
Dropped support for PHP 5.3 and 5.4, added support for PHP 7.
### 0.2.2 -> 0.2.3 ###
The ``GracefulExceptionsDecorator`` logs all types of exception now, not just instances of ``FormattingException``.
Credits, Copyright and License
------------------------------
Copyright 2012-2019 webfactory GmbH, Bonn. Code released under [the MIT license](LICENSE).-
-