Annotation for translatable text in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Annotation/Translation.php \Drupal\Core\Annotation\plugin_translatable
Describes how to put translatable UI text into annotations.
When providing plugin annotation, properties whose values are displayed in the user interface should be made translatable. Much the same as how user interface text elsewhere is wrapped in t() to make it translatable, in plugin annotation, wrap translatable strings in the @ Translation() annotation. For example:
title = @ Translation("Title of the plugin"),
Remove spaces after @ in your actual plugin - these are put into this sample code so that it is not recognized as annotation.
To provide replacement values for placeholders, use the "arguments" array:
title = @ Translation("Bundle !title", arguments = {"!title" = "Foo"}),
It is also possible to provide a context with the text, similar to t():
title = @ Translation("Bundle", context = "Validation"),
Other t() arguments like language code are not valid to pass in. Only context is supported.
See also
File
- core/
lib/ Drupal/ Core/ Annotation/ Translation.php, line 13 - Contains \Drupal\Core\Annotation\Translation.
Classes
Name | Location | Description |
---|---|---|
Translation |
core/ |
Defines a translatable annotation object. |