2020-11-11 19:48:07 +01:00
|
|
|
<?php echo template::formOpen('translateForm'); ?>
|
2022-09-29 08:45:59 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('translateFormBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl(),
|
|
|
|
'value' => template::ico('left')
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col1">
|
|
|
|
<?php /**echo template::button('translateHelp', [
|
2021-11-04 18:59:53 +01:00
|
|
|
'href' => 'https://doc.zwiicms.fr/prise-en-charge-des-langues-etrangeres',
|
|
|
|
'target' => '_blank',
|
2022-02-18 12:43:48 +01:00
|
|
|
'value' => template::ico('help'),
|
|
|
|
'class' => 'buttonHelp',
|
|
|
|
'help' => 'Consulter l\'aide en ligne'
|
2022-09-28 14:18:05 +02:00
|
|
|
]);*/ ?>
|
2020-11-11 19:48:07 +01:00
|
|
|
</div>
|
2022-09-29 08:45:59 +02:00
|
|
|
<div class="col1 offset6">
|
2022-09-30 11:08:06 +02:00
|
|
|
<?php echo template::button('translateButtonAddContent', [
|
2022-09-29 08:45:59 +02:00
|
|
|
'href' => helper::baseUrl() . 'translate/add',
|
|
|
|
'value' => template::ico('plus'),
|
|
|
|
'class' => 'buttonGreen',
|
2022-09-30 11:44:38 +02:00
|
|
|
'help' => 'Nouveau contenu localisé'
|
2022-09-19 14:56:30 +02:00
|
|
|
]); ?>
|
2022-08-29 22:04:57 +02:00
|
|
|
</div>
|
2022-09-30 11:08:06 +02:00
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('translateButtonCopyContent', [
|
|
|
|
'href' => helper::baseUrl() . 'translate/copy',
|
|
|
|
'value' => template::ico('docs'),
|
|
|
|
'disabled' => $module::$siteCopy,
|
2022-10-03 11:28:28 +02:00
|
|
|
'help' =>'Copie de contenus localisés'
|
2022-09-30 11:08:06 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2022-09-29 08:45:59 +02:00
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::submit('translateFormSubmit'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="tab">
|
|
|
|
<?php echo template::button('translateUiButton', [
|
2022-09-30 14:30:19 +02:00
|
|
|
'value' => 'Interface',
|
2022-09-29 08:45:59 +02:00
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::button('translateContentButton', [
|
|
|
|
'value' => 'Langues du contenu',
|
|
|
|
'class' => 'buttonTab'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="uiContainer" class="tabContent">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
2022-09-29 19:20:10 +02:00
|
|
|
<?php echo helper::translate('Langue de l\'administration'); ?>
|
2022-09-29 08:45:59 +02:00
|
|
|
</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col4 offset4">
|
|
|
|
<?php echo template::select('translateUI', $module::$i18nFiles, [
|
|
|
|
'label' => 'Traductions installées',
|
|
|
|
'selected' => $this->getData(['config', 'i18n', 'interface']),
|
|
|
|
]); ?>
|
2022-09-19 19:08:59 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-29 08:45:59 +02:00
|
|
|
</div>
|
|
|
|
<div id="contentContainer" class="tabContent">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php if ($module::$languagesInstalled) : ?>
|
2022-09-30 14:30:19 +02:00
|
|
|
<?php echo template::table([1, 3, 2, 4, 1, 1], $module::$languagesInstalled, ['Langues', '', '', '', '', '']); ?>
|
2022-09-29 08:45:59 +02:00
|
|
|
<?php endif; ?>
|
2022-09-26 16:30:40 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-29 08:45:59 +02:00
|
|
|
</div>
|
2022-09-19 19:08:59 +02:00
|
|
|
|
2022-09-29 08:45:59 +02:00
|
|
|
<?php echo template::formClose(); ?>
|