Is kohana 3.1 i18n effective for long messages?

Should I use the __ () function for emails, notifications, etc.? Are texts at least 1024 characters long for the hash keys of the php array? If so, is there a better way to handle long message translations, ensuring that the Validation class also works with it?

Using a label instead of a message would also be a choice, but Kohana does not translate strings from the native language ...

+3
source share
1 answer

Use custom view templates for large posts. For example, views/i18n/fr/confirmation.php, views/i18n/default/confirmation.phpetc.

+1
source

All Articles