fix missing language-strings

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-11-21 12:52:33 +01:00
parent 777991e0e3
commit 4b7ae46fd7
5 changed files with 14 additions and 6 deletions

View File

@@ -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'
]

View File

@@ -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']