You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Background: we built a "trans" (translation) filter - that actually uses translation messages of a Symfony2 backend - and can be used e.g. like so:
{{ 'translate-this' | trans : 'translation-domain' }}
We want to be able to set the default translation domain like so
{{# transDefaultDomain: 'whatever' }}
{{ 'translate-this' | trans }}
{{ 'and-this' | trans }}
{{/ transDefaultDomain }}
so that for multiple translations the domain has not to be given per element ...
Therefore our trans-filter needs to access the current binding context ...
Best Regards
P.S.: We love your extension.
The text was updated successfully, but these errors were encountered:
Background: we built a "trans" (translation) filter - that actually uses translation messages of a Symfony2 backend - and can be used e.g. like so:
{{ 'translate-this' | trans : 'translation-domain' }}
We want to be able to set the default translation domain like so
{{# transDefaultDomain: 'whatever' }}
{{ 'translate-this' | trans }}
{{ 'and-this' | trans }}
{{/ transDefaultDomain }}
so that for multiple translations the domain has not to be given per element ...
Therefore our trans-filter needs to access the current binding context ...
Best Regards
P.S.: We love your extension.
The text was updated successfully, but these errors were encountered: