[Web] Minor changes
parent
14627645da
commit
f7e5f8b51f
|
@ -1085,7 +1085,8 @@ if (isset($_SESSION['mailcow_cc_role'])) {
|
|||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="custom_params"><?=$lang['add']['custom_params'];?></label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" name="custom_params" id="custom_params" value="<?=htmlspecialchars($result['custom_params'], ENT_QUOTES, 'UTF-8');?>">
|
||||
<input type="text" class="form-control" name="custom_params" id="custom_params" value="<?=htmlspecialchars($result['custom_params'], ENT_QUOTES, 'UTF-8');?>" placeholder="--dry --some-param=xy --other-param=yx">
|
||||
<small class="help-block"><?=$lang['add']['custom_params_hint'];?></small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
|
|
@ -438,6 +438,7 @@ $lang['add']['delete2duplicates'] = 'Lösche Duplikate im Ziel';
|
|||
$lang['add']['delete1'] = 'Lösche Nachricht nach Übertragung vom Quell-Server';
|
||||
$lang['add']['delete2'] = 'Lösche Nachrichten von Ziel-Server, die nicht auf Quell-Server vorhanden sind';
|
||||
$lang['add']['custom_params'] = 'Eigene Parameter';
|
||||
$lang['add']['custom_params_hint'] = 'Richtig: --param=xy, falsch: --param xy';
|
||||
$lang['add']['subscribeall'] = 'Alle synchronisierten Ordner abonnieren';
|
||||
$lang['add']['timeout1'] = 'Timeout für Verbindung zum Remote-Host';
|
||||
$lang['add']['timeout2'] = 'Timeout für Verbindung zum lokalen Host';
|
||||
|
|
|
@ -451,6 +451,7 @@ $lang['add']['delete2duplicates'] = 'Delete duplicates on destination';
|
|||
$lang['add']['delete1'] = 'Delete from source when completed';
|
||||
$lang['add']['delete2'] = 'Delete messages on destination that are not on source';
|
||||
$lang['add']['custom_params'] = 'Custom parameters';
|
||||
$lang['add']['custom_params_hint'] = 'Right: --param=xy, wrong: --param xy';
|
||||
$lang['add']['subscribeall'] = 'Subscribe all folders';
|
||||
$lang['add']['timeout1'] = 'Timeout for connection to remote host';
|
||||
$lang['add']['timeout2'] = 'Timeout for connection to local host';
|
||||
|
|
|
@ -464,7 +464,8 @@ if (!isset($_SESSION['mailcow_cc_role'])) {
|
|||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="custom_params"><?=$lang['add']['custom_params'];?></label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" name="custom_params" placeholder="--delete2folders --otheroption">
|
||||
<input type="text" class="form-control" name="custom_params" placeholder="--dry --some-param=xy --other-param=yx">
|
||||
<small class="help-block"><?=$lang['add']['custom_params_hint'];?></small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
|
Loading…
Reference in New Issue