diff --git a/lib/formfields/admin/domains/formfield.domains_add.php b/lib/formfields/admin/domains/formfield.domains_add.php
index 1c21af4d..f39c9754 100644
--- a/lib/formfields/admin/domains/formfield.domains_add.php
+++ b/lib/formfields/admin/domains/formfield.domains_add.php
@@ -115,8 +115,8 @@ return array(
),
'letsencrypt' => array(
'visible' => (Settings::Get('system.use_ssl') == '1' ? ($ssl_ipsandports != '' ? true : false) : false),
- 'label' => $lng['domains']['letsencrypt']['title'],
- 'desc' => $lng['domains']['letsencrypt']['description'],
+ 'label' => $lng['admin']['letsencrypt']['title'],
+ 'desc' => $lng['admin']['letsencrypt']['description'],
'type' => 'checkbox',
'values' => array(
array ('label' => $lng['panel']['yes'], 'value' => '1')
diff --git a/lib/formfields/admin/domains/formfield.domains_edit.php b/lib/formfields/admin/domains/formfield.domains_edit.php
index 4a77d898..2c68f208 100644
--- a/lib/formfields/admin/domains/formfield.domains_edit.php
+++ b/lib/formfields/admin/domains/formfield.domains_edit.php
@@ -126,8 +126,8 @@ return array(
),
'letsencrypt' => array(
'visible' => (Settings::Get('system.use_ssl') == '1' ? ($ssl_ipsandports != '' ? true : false) : false),
- 'label' => $lng['domains']['letsencrypt']['title'],
- 'desc' => $lng['domains']['letsencrypt']['description'],
+ 'label' => $lng['admin']['letsencrypt']['title'],
+ 'desc' => $lng['admin']['letsencrypt']['description'],
'type' => 'checkbox',
'values' => array(
array ('label' => $lng['panel']['yes'], 'value' => '1')
diff --git a/lib/formfields/customer/domains/formfield.domains_add.php b/lib/formfields/customer/domains/formfield.domains_add.php
index 856d1bdd..753903ea 100644
--- a/lib/formfields/customer/domains/formfield.domains_add.php
+++ b/lib/formfields/customer/domains/formfield.domains_add.php
@@ -72,8 +72,8 @@ return array(
),
'letsencrypt' => array(
'visible' => (Settings::Get('system.use_ssl') == '1' ? ($ssl_ipsandports != '' ? true : false) : false),
- 'label' => $lng['domains']['letsencrypt']['title'],
- 'desc' => $lng['domains']['letsencrypt']['description'],
+ 'label' => $lng['customer']['letsencrypt']['title'],
+ 'desc' => $lng['customer']['letsencrypt']['description'],
'type' => 'checkbox',
'values' => array(
array ('label' => $lng['panel']['yes'], 'value' => '1')
diff --git a/lib/formfields/customer/domains/formfield.domains_edit.php b/lib/formfields/customer/domains/formfield.domains_edit.php
index fc501991..abd4905a 100644
--- a/lib/formfields/customer/domains/formfield.domains_edit.php
+++ b/lib/formfields/customer/domains/formfield.domains_edit.php
@@ -88,8 +88,8 @@ return array(
),
'letsencrypt' => array(
'visible' => (Settings::Get('system.use_ssl') == '1' ? ($ssl_ipsandports != '' ? (domainHasSslIpPort($result['id']) ? true : false) : false) : false),
- 'label' => $lng['domains']['letsencrypt']['title'],
- 'desc' => $lng['domains']['letsencrypt']['description'],
+ 'label' => $lng['customer']['letsencrypt']['title'],
+ 'desc' => $lng['customer']['letsencrypt']['description'],
'type' => 'checkbox',
'values' => array(
array ('label' => $lng['panel']['yes'], 'value' => '1')
diff --git a/lng/english.lng.php b/lng/english.lng.php
index e24f4f9c..80415c77 100644
--- a/lng/english.lng.php
+++ b/lng/english.lng.php
@@ -1926,8 +1926,10 @@ $lng['opcacheinfo']['true'] = 'true';
$lng['opcacheinfo']['false'] = 'false';
// Added for let's encrypt
-$lng['domains']['letsencrypt']['title'] = 'Use Let\'s Encrypt';
-$lng['domains']['letsencrypt']['description'] = 'Get a free certificate from Let\'s Encrypt. The certificate will be created and renewed automatically.
ATTENTION:This is not possible for wildcard - domains';
+$lng['admin']['letsencrypt']['title'] = 'Use Let\'s Encrypt';
+$lng['admin']['letsencrypt']['description'] = 'Get a free certificate from Let\'s Encrypt. The certificate will be created and renewed automatically.
ATTENTION:This is not possible for wildcard - domains';
+$lng['customer']['letsencrypt']['title'] = 'Use Let\'s Encrypt';
+$lng['customer']['letsencrypt']['description'] = 'Get a free certificate from Let\'s Encrypt. The certificate will be created and renewed automatically.';
$lng['error']['sslredirectonlypossiblewithsslipport'] = 'Using Let\'s Encrypt is only possible when the domain has at least one ssl-enabled IP/port combination assigned.';
$lng['panel']['letsencrypt'] = 'Using Let\'s encrypt';
-$lng['crondesc']['cron_letsencrypt'] = 'updating Let\'s Encrypt certificates';
\ No newline at end of file
+$lng['crondesc']['cron_letsencrypt'] = 'updating Let\'s Encrypt certificates';