Is the message that is shown to the user translatable into different languages?
Permalink Browser Info Environment
I would like to use the add-on on an international site with several languages. Is the message localizable?
Type: | Pre-Sale |
---|---|
Status: | In Progress |

It's fully translatable, but only one message can be displayed, so multiple language on same site a problem.
I'm having the same issue. Is this something you plan for implementing?
Why not take a backup of the package and try this. Change line 132 of controllers/cookiesDisclosure.php which reads like this:
to this:
Note the inclusion of the t() function. This should exposure whatever message you put in the disclosure message box to translation should offer multilanguage support on the same site.
If this works we'll add this to the next update of this package.
"\t\tmessage: '".self::$cfg['display_message']."',\n" .
to this:
"\t\tmessage: '" . t(self::$cfg['display_message']) . "',\n" .
Note the inclusion of the t() function. This should exposure whatever message you put in the disclosure message box to translation should offer multilanguage support on the same site.
If this works we'll add this to the next update of this package.
Nope, this is not working...