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
Using Symfony\Component\Translation\t function and using named domain argument "translation:extract" and "debug:translations" use incorrect domain (default one messages is used).
How to reproduce
class DAMFileNameTemplate extends Constraint
{
public function getMessage()
{
return t('error.dam_file_name_template_evaluation', domain: 'validators');
}
}
class DAMFileNameTemplate extends Constraint
{
public function getMessage()
{
return t('error.dam_file_name_template_evaluation', [], 'validators');
}
}