Skip to content

Commit

Permalink
Faz com que os textos dos botões dos termos de uso e privacidade seja…
Browse files Browse the repository at this point in the history
…m exibidos
  • Loading branch information
erleibiazzio committed Sep 4, 2023
1 parent a65ce7d commit b43d6bf
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions compose/common/config.d/lgpd.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
<?php
<?php

use MapasCulturais\i;

return [
'module.LGPD' => [
'termsOfUsage'=>[
'title'=> 'Termos de Uso',
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/terms-of-usage.html')
'title'=> i::__('Termos de Uso'),
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/terms-of-usage.html'),
'buttonText' => i::__('Aceito os termos de uso')
],
'privacyPolicy' => [
'title'=> 'Política de Privacidade',
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/privacy-policy.html')
'title'=> i::__('Política de Privacidade'),
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/privacy-policy.html'),
'buttonText' => i::__('Aceito as políticas de privacidade')
],
'imageOfUsage' => [
'title'=> 'Autorização de uso de imagem',
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/image-of-usage.html')
'title'=> i::__('Autorização de uso de imagem'),
'text'=> file_get_contents(__DIR__ . '/../lgpd-terms/image-of-usage.html'),
'buttonText' => i::__('Autorizo o uso de imagem')
],
]
];

0 comments on commit b43d6bf

Please sign in to comment.