traduction génération du template.json

This commit is contained in:
Fred Tempez 2022-09-05 20:17:50 +02:00
parent 6aef6e81cd
commit 915997a3ff
2 changed files with 12 additions and 11 deletions

View File

@ -24,15 +24,16 @@ class helper {
*/
public static function translate($text) {
$r = (array_key_exists($text, core::$dialog)) ? core::$dialog[$text] : $text;
// Captation
$data = json_decode(file_get_contents('site/i18n/template.json'), true);
if (!array_key_exists($text, $data)
&& !empty($text)
) {
$data = array_merge($data,[$text => ''] );
file_put_contents ('site/i18n/template.json', json_encode($data, JSON_UNESCAPED_UNICODE), LOCK_EX);
if (!array_key_exists($text, $data) ) {
if ($text !== '' ) {
$data = array_merge($data,[$text => ''] );
file_put_contents ('site/i18n/template.json', json_encode($data, JSON_UNESCAPED_UNICODE), LOCK_EX);
}
}
$r = (array_key_exists($text, core::$dialog)) ? core::$dialog[$text] : $text;
return ($r);
}

View File

@ -239,7 +239,7 @@ class template {
// Traduction de l'aide et de l'étiquette
$attributes['label'] = helper::translate($attributes['label']);
$attributes['help'] = helper::translate($attributes['help']);
$attributes['placeholder'] = helper::translate($attributes['placeholder']);
//$attributes['placeholder'] = helper::translate($attributes['placeholder']);
// Sauvegarde des données en cas d'erreur
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
$attributes['value'] = common::$inputBefore[$attributes['id']];
@ -507,7 +507,7 @@ class template {
'help' => ''
], $attributes);
// Traduction de l'étiquette si déjà appelée par une fonction de template
; if (
; if (
get_called_class() !== 'template'
) {
$attributes['help'] = helper::translate($attributes['help']);
@ -550,7 +550,7 @@ class template {
// Traduction de l'aide et de l'étiquette
$attributes['value'] = helper::translate($attributes['value']);
$attributes['help'] = helper::translate($attributes['help']);
$attributes['placeholder'] = helper::translate($attributes['placeholder']);
//$attributes['placeholder'] = helper::translate($attributes['placeholder']);
// Sauvegarde des données en cas d'erreur
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
$attributes['value'] = common::$inputBefore[$attributes['id']];
@ -615,7 +615,7 @@ class template {
], $attributes);
// Traduction de l'aide et de l'étiquette
$attributes['label'] = helper::translate($attributes['label']);
$attributes['placeholder'] = helper::translate($attributes['placeholder']);
//$attributes['placeholder'] = helper::translate($attributes['placeholder']);
$attributes['help'] = helper::translate($attributes['help']);
// Début du wrapper
$html = '<div id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
@ -841,7 +841,7 @@ class template {
// Traduction de l'aide et de l'étiquette
$attributes['label'] = helper::translate($attributes['label']);
$attributes['help'] = helper::translate($attributes['help']);
$attributes['placeholder'] = helper::translate($attributes['placeholder']);
//$attributes['placeholder'] = helper::translate($attributes['placeholder']);
// Sauvegarde des données en cas d'erreur
if($attributes['before'] AND array_key_exists($attributes['id'], common::$inputBefore)) {
$attributes['value'] = common::$inputBefore[$attributes['id']];