- Issue created by @kufliievskyi
- Merge request !9Issue #3511982: Make the title link attribute translatable → (Open) created by Unnamed author
The title attribute value "Create a new ..." is always displayed in English. From an accessibility perspective, it is essential to provide translations so that users with disabilities can understand the link meaning in their preferred language.
{{ link('', content_type_link.url, create_attribute({'class': ['admin-item__link'], 'title': "Create a new #{content_type_entity.label}."})) }}
Add translation support for the title attribute using the t filter to ensure proper localization.
Example:
{{ link('', content_type_link.url, create_attribute({
'class': ['admin-item__link'],
'title': 'Create a new @type.'|t({'@type': content_type_entity.label}, {'context': 'Admin interface'})
})) }}
Uses Drupal's t() function to make the string translatable.
Includes a context ("Admin interface") to help translators understand where the text is used.
-
-
-
Active
1.0
Code