fix missing language-strings
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -394,13 +394,13 @@ return [
|
||||
'visible' => Settings::Get('system.bind_enable') == '1' && $userinfo['change_serversettings'] == '1',
|
||||
'fields' => [
|
||||
'isbinddomain' => [
|
||||
'label' => 'Nameserver',
|
||||
'label' => lng('admin.createzonefile'),
|
||||
'type' => 'checkbox',
|
||||
'value' => '1',
|
||||
'checked' => true
|
||||
],
|
||||
'zonefile' => [
|
||||
'label' => 'Zonefile',
|
||||
'label' => lng('admin.custombindzone'),
|
||||
'desc' => lng('admin.bindzonewarning'),
|
||||
'type' => 'text'
|
||||
]
|
||||
|
||||
@@ -430,13 +430,13 @@ return [
|
||||
'visible' => Settings::Get('system.bind_enable') == '1' && $userinfo['change_serversettings'] == '1',
|
||||
'fields' => [
|
||||
'isbinddomain' => [
|
||||
'label' => 'Nameserver',
|
||||
'label' => lng('admin.createzonefile'),
|
||||
'type' => 'checkbox',
|
||||
'value' => '1',
|
||||
'checked' => $result['isbinddomain']
|
||||
],
|
||||
'zonefile' => [
|
||||
'label' => 'Zonefile',
|
||||
'label' => lng('admin.custombindzone'),
|
||||
'desc' => lng('admin.bindzonewarning'),
|
||||
'type' => 'text',
|
||||
'value' => $result['zonefile']
|
||||
|
||||
@@ -43,7 +43,8 @@ return [
|
||||
'type' => 'textarea',
|
||||
'cols' => 100,
|
||||
'rows' => 15,
|
||||
'value' => $result['ssl_cert_file']
|
||||
'value' => $result['ssl_cert_file'],
|
||||
'placeholder' => lng('domain.ssl_certificate_placeholder')
|
||||
],
|
||||
'ssl_key_file' => [
|
||||
'label' => lng('admin.ipsandports.ssl_key_file_content'),
|
||||
@@ -51,7 +52,8 @@ return [
|
||||
'type' => 'textarea',
|
||||
'cols' => 100,
|
||||
'rows' => 15,
|
||||
'value' => $result['ssl_key_file']
|
||||
'value' => $result['ssl_key_file'],
|
||||
'placeholder' => lng('domain.ssl_key_placeholder')
|
||||
],
|
||||
'ssl_cert_chainfile' => [
|
||||
'label' => lng('admin.ipsandports.ssl_cert_chainfile_content'),
|
||||
|
||||
Reference in New Issue
Block a user