diff --git a/CLManager/CageFS.py b/CLManager/CageFS.py
index d2281e0ff..79cd2a96c 100644
--- a/CLManager/CageFS.py
+++ b/CLManager/CageFS.py
@@ -63,7 +63,9 @@ class CageFS:
logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath,
"Checking if LVE Kernel is loaded ..\n", 1)
- if ProcessUtilities.outputExecutioner('uname -a').find('lve') == -1:
+ if ProcessUtilities.outputExecutioner('uname -a').find('lve') > -1 or ProcessUtilities.outputExecutioner('lsmod').find('lve') > -1:
+ pass
+ else:
logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath,
"CloudLinux is installed but kernel is not loaded, please reboot your server to load appropriate kernel. [404]\n", 1)
return 0
diff --git a/backup/backupManager.py b/backup/backupManager.py
index 38f82d796..7635bddfa 100755
--- a/backup/backupManager.py
+++ b/backup/backupManager.py
@@ -751,7 +751,7 @@ class BackupManager:
return HttpResponse(final_json)
except BaseException as msg:
- final_dic = {'restoreStatus': 0, 'error_message': str(msg)}
+ final_dic = {'restoreStatus': 0, 'error_message': str(msg), 'abort': 0, 'running': 'Running..', 'status': ''}
final_json = json.dumps(final_dic)
return HttpResponse(final_json)
@@ -2073,6 +2073,12 @@ class BackupManager:
userID = request.session['userID']
currentACL = ACLManager.loadedACL(userID)
admin = Administrator.objects.get(pk=userID)
+
+ if currentACL['admin'] == 1:
+ pass
+ else:
+ return ACLManager.loadErrorJson()
+
from IncBackups.models import OneClickBackups
ocb = OneClickBackups.objects.get(pk = request.GET.get('id'), owner=admin)
@@ -2170,6 +2176,11 @@ class BackupManager:
userID = request.session['userID']
currentACL = ACLManager.loadedACL(userID)
+ if currentACL['admin'] == 1:
+ pass
+ else:
+ return ACLManager.loadErrorJson()
+
data = json.loads(request.body)
id = data['idValue']
folder = data['folder']
diff --git a/backup/templates/backup/oneClickBackups.html b/backup/templates/backup/oneClickBackups.html
index e7aa97afa..b59d94fc9 100755
--- a/backup/templates/backup/oneClickBackups.html
+++ b/backup/templates/backup/oneClickBackups.html
@@ -12,10 +12,10 @@
{% trans "One-click Backups" %} - {% trans "Remote Backups" %}
+ title="">{% trans "One-Click Backup Docs" %}
{% trans "On this page you purchase and manage one-click backups." %}
diff --git a/cyberpanel_upgrade.sh b/cyberpanel_upgrade.sh
index cb46d3244..ff037e8d6 100644
--- a/cyberpanel_upgrade.sh
+++ b/cyberpanel_upgrade.sh
@@ -121,7 +121,7 @@ elif grep -q -E "CloudLinux 7|CloudLinux 8" /etc/os-release ; then
Server_OS="CloudLinux"
elif grep -q -E "Rocky Linux" /etc/os-release ; then
Server_OS="RockyLinux"
-elif grep -q "AlmaLinux-8" /etc/os-release ; then
+elif grep -q -E "AlmaLinux-8|AlmaLinux-9" /etc/os-release ; then
Server_OS="AlmaLinux"
elif grep -q -E "Ubuntu 18.04|Ubuntu 20.04|Ubuntu 20.10|Ubuntu 22.04" /etc/os-release ; then
Server_OS="Ubuntu"
@@ -417,6 +417,22 @@ EOF
dnf install epel-release -y
+ dnf install -y wget strace htop net-tools telnet curl which bc telnet htop libevent-devel gcc libattr-devel xz-devel mariadb-connector-c-devel curl-devel git platform-python-devel tar socat bind-utils
+ dnf install gpgme-devel -y
+ dnf install python3 -y
+ fi
+
+ elif [[ "$Server_OS_Version" = "9" ]] ; then
+ rm -f /etc/yum.repos.d/CentOS-PowerTools-CyberPanel.repo
+
+ if [[ "$Server_Country" = "CN" ]] ; then
+ dnf --nogpg install -y https://cyberpanel.sh/mirror.ghettoforge.org/distributions/gf/gf-release-latest.gf.el9.noarch.rpm
+ else
+ dnf --nogpg install -y https://mirror.ghettoforge.org/distributions/gf/gf-release-latest.gf.el9.noarch.rpm
+ fi
+
+ dnf install epel-release -y
+
dnf install -y wget strace htop net-tools telnet curl which bc telnet htop libevent-devel gcc libattr-devel xz-devel mariadb-connector-c-devel curl-devel git platform-python-devel tar socat bind-utils
dnf install gpgme-devel -y
dnf install python3 -y
diff --git a/index.html b/index.html
index 313115f41..86e7a2e71 100755
--- a/index.html
+++ b/index.html
@@ -1,5 +1,5 @@
\ No newline at end of file
diff --git a/install/install.py b/install/install.py
index 6d408ae97..418ba164c 100755
--- a/install/install.py
+++ b/install/install.py
@@ -40,15 +40,17 @@ CloudLinux8 = 0
def FetchCloudLinuxAlmaVersionVersion():
if os.path.exists('/etc/os-release'):
data = open('/etc/os-release', 'r').read()
- if (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.9') > -1 or data.find('Anatoly Levchenko') > -1):
+ if (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.9') > -1 or data.find('Anatoly Levchenko') > -1 or data.find('VERSION="8.') > -1):
return 'cl-89'
elif (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.8') > -1 or data.find('Anatoly Filipchenko') > -1):
return 'cl-88'
- elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.9') > -1 or data.find('Midnight Oncilla') > -1):
+ elif (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('9.4') > -1 or data.find('VERSION="9.') > -1):
+ return 'cl-88'
+ elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.9') > -1 or data.find('Midnight Oncilla') > -1 or data.find('VERSION="8.') > -1):
return 'al-88'
elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.7') > -1 or data.find('Stone Smilodon') > -1):
return 'al-87'
- elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('9.4') > -1 or data.find('9.3') > -1 or data.find('Shamrock Pampas') > -1 or data.find('Seafoam Ocelot') > -1):
+ elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('9.4') > -1 or data.find('9.3') > -1 or data.find('Shamrock Pampas') > -1 or data.find('Seafoam Ocelot') > -1 or data.find('VERSION="9.') > -1):
return 'al-93'
else:
return -1
diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py
index 96c07e65c..6dcb2763f 100755
--- a/install/installCyberPanel.py
+++ b/install/installCyberPanel.py
@@ -40,15 +40,17 @@ def get_Ubuntu_release():
def FetchCloudLinuxAlmaVersionVersion():
if os.path.exists('/etc/os-release'):
data = open('/etc/os-release', 'r').read()
- if (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.9') > -1 or data.find('Anatoly Levchenko') > -1):
+ if (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.9') > -1 or data.find('Anatoly Levchenko') > -1 or data.find('VERSION="8.') > -1):
return 'cl-89'
elif (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('8.8') > -1 or data.find('Anatoly Filipchenko') > -1):
return 'cl-88'
- elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.9') > -1 or data.find('Midnight Oncilla') > -1):
+ elif (data.find('CloudLinux') > -1 or data.find('cloudlinux') > -1) and (data.find('9.4') > -1 or data.find('VERSION="9.') > -1):
+ return 'cl-88'
+ elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.9') > -1 or data.find('Midnight Oncilla') > -1 or data.find('VERSION="8.') > -1):
return 'al-88'
elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('8.7') > -1 or data.find('Stone Smilodon') > -1):
return 'al-87'
- elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('9.4') > -1 or data.find('9.3') > -1 or data.find('Shamrock Pampas') > -1 or data.find('Seafoam Ocelot') > -1):
+ elif (data.find('AlmaLinux') > -1 or data.find('almalinux') > -1) and (data.find('9.4') > -1 or data.find('9.3') > -1 or data.find('Shamrock Pampas') > -1 or data.find('Seafoam Ocelot') > -1 or data.find('VERSION="9.') > -1):
return 'al-93'
else:
return -1
diff --git a/langcomp.sh b/langcomp.sh
new file mode 100755
index 000000000..6214b1dd7
--- /dev/null
+++ b/langcomp.sh
@@ -0,0 +1,22 @@
+# Create message files for all the languages
+django-admin makemessages -l zh-Hans
+django-admin makemessages -l bg
+django-admin makemessages -l pt
+django-admin makemessages -l ja
+django-admin makemessages -l bs
+django-admin makemessages -l el
+django-admin makemessages -l ru
+django-admin makemessages -l tr
+django-admin makemessages -l es
+django-admin makemessages -l fr
+django-admin makemessages -l pl
+django-admin makemessages -l vi
+django-admin makemessages -l it
+django-admin makemessages -l de
+django-admin makemessages -l id
+django-admin makemessages -l bn
+
+# Translate the .po files
+
+# Compile the message files
+django-admin compilemessages
diff --git a/locale/bg/LC_MESSAGES/django.mo b/locale/bg/LC_MESSAGES/django.mo
new file mode 100644
index 000000000..71cbdf3e9
Binary files /dev/null and b/locale/bg/LC_MESSAGES/django.mo differ
diff --git a/locale/bg/LC_MESSAGES/django.po b/locale/bg/LC_MESSAGES/django.po
new file mode 100644
index 000000000..dfeb54afc
--- /dev/null
+++ b/locale/bg/LC_MESSAGES/django.po
@@ -0,0 +1,8948 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR
, YEAR.
+#
+#: IncBackups/templates/IncBackups/backupSchedule.html:273
+#: baseTemplate/templates/baseTemplate/design.html:14
+#: emailMarketing/templates/emailMarketing/sendEmails.html:93
+#: userManagment/templates/userManagment/modifyACL.html:361
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:87
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:92
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:211
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:243
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:316
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-05-28 18:59+0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: CLManager/templates/CLManager/cloudLinux.html:3
+msgid "CloudLinux - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:13
+#: CLManager/templates/CLManager/cloudLinux.html:20
+#: baseTemplate/templates/baseTemplate/index.html:842
+#: baseTemplate/templates/baseTemplate/index.html:844
+msgid "CloudLinux"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:14
+msgid "Access LVEManager"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:24
+msgid ""
+"CloudLinux is now integrated via their new API. You can manage CageFS and "
+"Package limits directly from LVEManager by clicking below. You can use your "
+"server root credentials to access LVEManager."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:3
+msgid "Create Cloud Linux Package - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:9
+msgid "Create CloudLinux Package."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:10
+msgid ""
+"Each CloudLinux package have one associated (owner) CyberPanel package. "
+"During website creation associated CloudLinux package will be assigned to "
+"website user."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:15
+#: CLManager/templates/CLManager/createPackage.html:130
+#: baseTemplate/templates/baseTemplate/index.html:457
+#: baseTemplate/templates/baseTemplate/index.html:851
+#: packages/templates/packages/createPackage.html:13
+#: packages/templates/packages/createPackage.html:106
+#: packages/templates/packages/index.html:25
+#: packages/templates/packages/index.html:28
+#: userManagment/templates/userManagment/createACL.html:152
+#: userManagment/templates/userManagment/modifyACL.html:156
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:95
+msgid "Create Package"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:24
+#: packages/templates/packages/deletePackage.html:26
+#: packages/templates/packages/modifyPackage.html:24
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:111
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:121
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:112
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:182
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45
+msgid "Select Package"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:40
+#: packages/templates/packages/createPackage.html:27
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:113
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:227
+msgid "Package Name"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:47
+#: CLManager/templates/CLManager/listPackages.html:87
+msgid "SPEED"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:56
+#: CLManager/templates/CLManager/listPackages.html:98
+msgid "VMEM"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:64
+#: CLManager/templates/CLManager/listPackages.html:109
+msgid "PMEM"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:73
+#: CLManager/templates/CLManager/listPackages.html:120
+msgid "IO"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:81
+#: CLManager/templates/CLManager/listPackages.html:131
+#: containerization/templates/containerization/websiteContainerLimit.html:52
+#: containerization/templates/containerization/websiteContainerLimit.html:99
+msgid "IOPS"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:89
+#: CLManager/templates/CLManager/listPackages.html:142
+msgid "EP"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:97
+#: CLManager/templates/CLManager/listPackages.html:153
+msgid "NPROC"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:105
+#: CLManager/templates/CLManager/listPackages.html:164
+msgid "INODES soft"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:113
+#: CLManager/templates/CLManager/listPackages.html:175
+msgid "INODES hard"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:3
+msgid "Manage CloudLinux Packages - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:14
+msgid "Manage CloudLinux Packages"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:15
+msgid "Manage/Delete CloudLinux Packages."
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:76
+#: backup/templates/backup/OneClickBackupSchedule.html:36
+#: backup/templates/backup/OneClickBackupSchedule.html:44
+#: backup/templates/backup/backupDestinations.html:51
+#: backup/templates/backup/backupDestinations.html:115
+#: backup/templates/backup/backupDestinations.html:148
+#: backup/templates/backup/backupDestinations.html:182
+#: backup/templates/backup/backupSchedule.html:46
+#: baseTemplate/templates/baseTemplate/FileManager.html:198
+#: dns/templates/dns/addDeleteDNSRecords.html:86
+#: dns/templates/dns/addDeleteDNSRecords.html:112
+#: dns/templates/dns/addDeleteDNSRecords.html:139
+#: dns/templates/dns/addDeleteDNSRecords.html:165
+#: dns/templates/dns/addDeleteDNSRecords.html:197
+#: dns/templates/dns/addDeleteDNSRecords.html:224
+#: dns/templates/dns/addDeleteDNSRecords.html:251
+#: dns/templates/dns/addDeleteDNSRecords.html:278
+#: dns/templates/dns/addDeleteDNSRecords.html:305
+#: dns/templates/dns/addDeleteDNSRecords.html:336
+#: dns/templates/dns/addDeleteDNSRecords.html:368
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:168
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:199
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:231
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:261
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:298
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:329
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:360
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:391
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:422
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:458
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:494
+#: dockerManager/templates/dockerManager/runContainer.html:29
+#: filemanager/templates/filemanager/index.html:200
+#: firewall/templates/firewall/firewall.html:120
+#: packages/templates/packages/listPackages.html:84
+#: pluginHolder/templates/pluginHolder/plugins.html:28
+#: serverStatus/templates/serverStatus/litespeedStatus.html:38
+#: serverStatus/templates/serverStatus/litespeedStatus.html:276
+#: userManagment/templates/userManagment/listUsers.html:120
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:85
+msgid "Name"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:205
+#: CLManager/templates/CLManager/listWebsites.html:86
+#: CLManager/templates/CLManager/monitorUsage.html:57
+#: containerization/templates/containerization/listWebsites.html:57
+#: emailPremium/templates/emailPremium/emailLimits.html:172
+#: emailPremium/templates/emailPremium/emailPage.html:179
+#: emailPremium/templates/emailPremium/listDomains.html:75
+#: pluginHolder/templates/pluginHolder/plugins.html:51
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:153
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:264
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:107
+msgid "Cannot list websites. Error message:"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:3
+msgid "CageFS - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:14
+#: CLManager/templates/CLManager/monitorUsage.html:14
+#: baseTemplate/templates/baseTemplate/index.html:420
+#: containerization/templates/containerization/listWebsites.html:14
+#: websiteFunctions/templates/websiteFunctions/index.html:31
+#: websiteFunctions/templates/websiteFunctions/index.html:55
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19
+msgid "List Websites"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:15
+msgid "Enable/Disable and view CageFS status for websites."
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:28
+msgid "Default: "
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:3
+msgid "Monitor Usage - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:15
+msgid "Monitor usage of your websites."
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:21
+#: baseTemplate/templates/baseTemplate/homePage.html:42
+#: baseTemplate/templates/baseTemplate/index.html:406
+#: baseTemplate/templates/baseTemplate/index.html:407
+#: baseTemplate/templates/baseTemplate/index.html:408
+#: containerization/templates/containerization/listWebsites.html:21
+msgid "Websites"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:3
+#: containerization/templates/containerization/notAvailable.html:3
+#: firewall/templates/firewall/notAvailable.html:3
+#: firewall/templates/firewall/notAvailableAV.html:3
+msgid "Not available - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:13
+#: containerization/templates/containerization/notAvailable.html:13
+#: firewall/templates/firewall/notAvailable.html:13
+#: firewall/templates/firewall/notAvailableAV.html:13
+msgid "Not available"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:14
+msgid "Either CageFS is not installed or you are not on CloudLinux OS."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:22
+#: firewall/templates/firewall/notAvailable.html:26
+msgid "CloudLinux is not installed on your server."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:24
+#: containerization/templates/containerization/notAvailable.html:24
+#: firewall/templates/firewall/notAvailable.html:28
+msgid " for conversion details."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:34
+#: firewall/templates/firewall/notAvailable.html:38
+#: firewall/templates/firewall/notAvailableAV.html:24
+msgid "Activate Now"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:39
+msgid "CloudLinux is installed, but not activated."
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:3
+msgid " usage - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:14
+#: emailMarketing/templates/emailMarketing/website.html:40
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:50
+#: websiteFunctions/templates/websiteFunctions/website.html:49
+msgid "Usage"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:15
+msgid "View CPU, Memory and Disk usage for "
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:21
+#: containerization/templates/containerization/websiteContainerLimit.html:155
+msgid "CPU Usage of"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:30
+#: containerization/templates/containerization/websiteContainerLimit.html:164
+msgid "Memory Usage of"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:39
+#: containerization/templates/containerization/websiteContainerLimit.html:173
+msgid "Disk Usage of"
+msgstr ""
+
+#: CyberCP/settings.py:175
+msgid "English"
+msgstr ""
+
+#: CyberCP/settings.py:176
+msgid "Chinese"
+msgstr ""
+
+#: CyberCP/settings.py:177
+msgid "Bulgarian"
+msgstr ""
+
+#: CyberCP/settings.py:178
+msgid "Portuguese"
+msgstr ""
+
+#: CyberCP/settings.py:179
+msgid "Japanese"
+msgstr ""
+
+#: CyberCP/settings.py:180
+msgid "Bosnian"
+msgstr ""
+
+#: CyberCP/settings.py:181
+msgid "Greek"
+msgstr ""
+
+#: CyberCP/settings.py:182
+msgid "Russian"
+msgstr ""
+
+#: CyberCP/settings.py:183
+msgid "Turkish"
+msgstr ""
+
+#: CyberCP/settings.py:184
+msgid "Spanish"
+msgstr ""
+
+#: CyberCP/settings.py:185
+msgid "French"
+msgstr ""
+
+#: CyberCP/settings.py:186
+msgid "Polish"
+msgstr ""
+
+#: CyberCP/settings.py:187
+msgid "Vietnamese"
+msgstr ""
+
+#: CyberCP/settings.py:188
+msgid "Italian"
+msgstr ""
+
+#: CyberCP/settings.py:189
+msgid "Deutsch"
+msgstr ""
+
+#: CyberCP/settings.py:190
+msgid "Indonesian"
+msgstr ""
+
+#: CyberCP/settings.py:191
+msgid "Bangla"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:3
+msgid "Configure V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:17
+msgid "Configure v2 Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:26
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:41
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:38
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:36
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:36
+#: IncBackups/templates/IncBackups/createBackup.html:33
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35
+#: backup/templates/backup/backup.html:35
+#: databases/templates/databases/createDatabase.html:26
+#: databases/templates/databases/deleteDatabase.html:26
+#: ftp/templates/ftp/createFTPAccount.html:42
+#: mailServer/templates/mailServer/EmailLimits.html:45
+#: mailServer/templates/mailServer/changeEmailPassword.html:44
+#: mailServer/templates/mailServer/createEmailAccount.html:46
+#: mailServer/templates/mailServer/deleteEmailAccount.html:44
+#: mailServer/templates/mailServer/dkimManager.html:83
+#: mailServer/templates/mailServer/emailForwarding.html:38
+#: manageSSL/templates/manageSSL/manageSSL.html:32
+#: manageSSL/templates/manageSSL/sslForHostName.html:37
+#: manageSSL/templates/manageSSL/sslForMailServer.html:37
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:139
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29
+msgid "Select Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:39
+msgid "Select Backup Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:58
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:116
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:171
+#: backup/templates/backup/googleDrive.html:39
+msgid "Set up account"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:65
+#: backup/templates/backup/googleDrive.html:46
+msgid "Account Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:74
+msgid "client_id"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:82
+msgid "client_secret"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:123
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:84
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:308
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:724
+msgid "Repo Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:131
+msgid "Host Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:139
+#: backup/templates/backup/backupDestinations.html:65
+#: backup/templates/backup/backupDestinations.html:117
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:44
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78
+#: serverLogs/templates/serverLogs/serverMail.html:58
+#: userManagment/templates/userManagment/createUser.html:76
+#: userManagment/templates/userManagment/listUsers.html:34
+#: userManagment/templates/userManagment/userProfile.html:36
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:322
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:48
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:268
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:76
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:300
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:716
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:69
+msgid "Username"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:147
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:54
+#: backup/templates/backup/backupDestinations.html:72
+#: backup/templates/backup/remoteBackups.html:37
+#: databases/templates/databases/createDatabase.html:55
+#: databases/templates/databases/listDataBases.html:110
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50
+#: ftp/templates/ftp/listFTPAccounts.html:126
+#: mailServer/templates/mailServer/changeEmailPassword.html:68
+#: mailServer/templates/mailServer/createEmailAccount.html:70
+#: mailServer/templates/mailServer/listEmails.html:217
+#: serverLogs/templates/serverLogs/serverMail.html:65
+#: userManagment/templates/userManagment/createUser.html:83
+#: userManagment/templates/userManagment/modifyUser.html:62
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:341
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:56
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:286
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:58
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:44
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:37
+msgid "Password"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:155
+#: firewall/templates/firewall/secureSSH.html:50
+msgid "SSH Port"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:3
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:26
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:27
+msgid "Create v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:16
+#: baseTemplate/templates/baseTemplate/index.html:669
+msgid "Create V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:19
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:20
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:20
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:20
+#: IncBackups/templates/IncBackups/createBackup.html:15
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17
+#: backup/templates/backup/backup.html:16
+#: backup/templates/backup/restore.html:14
+#: backup/templates/backup/restoreOCBackups.html:16
+msgid "Backup Docs"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:20
+msgid "This page can be used to create your backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:52
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:49
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:47
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:62
+msgid "Select Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:60
+msgid "Backup Contents"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:99
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:58
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:120
+msgid " "
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:125
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:84
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:130
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:212
+#: backup/templates/backup/restore.html:86
+#: backup/templates/backup/restoreOCBackups.html:78
+#: databases/templates/databases/deleteDatabase.html:60
+#: databases/templates/databases/listDataBases.html:56
+#: dockerManager/templates/dockerManager/listContainers.html:57
+#: dockerManager/templates/dockerManager/runContainer.html:176
+#: emailMarketing/templates/emailMarketing/website.html:411
+#: emailMarketing/templates/emailMarketing/website.html:947
+#: firewall/templates/firewall/firewall.html:152
+#: managePHP/templates/managePHP/editPHPConfig.html:218
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:228
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:72
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:383
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:126
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:519
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:612
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:274
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:248
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:98
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:662
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:117
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:237
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:283
+#: websiteFunctions/templates/websiteFunctions/website.html:385
+#: websiteFunctions/templates/websiteFunctions/website.html:900
+msgid "Error message:"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:129
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:88
+msgid "Backup succesfully."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:134
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:93
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:139
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:221
+#: backup/templates/backup/restore.html:95
+#: backup/templates/backup/restoreOCBackups.html:87
+#: databases/templates/databases/deleteDatabase.html:69
+#: dns/templates/dns/addDeleteDNSRecords.html:440
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:562
+#: dns/templates/dns/createDNSZone.html:70
+#: dns/templates/dns/createNameServer.html:102
+#: dns/templates/dns/deleteDNSZone.html:77
+#: dockerManager/templates/dockerManager/runContainer.html:185
+#: emailMarketing/templates/emailMarketing/website.html:161
+#: emailMarketing/templates/emailMarketing/website.html:420
+#: emailMarketing/templates/emailMarketing/website.html:471
+#: emailMarketing/templates/emailMarketing/website.html:633
+#: emailMarketing/templates/emailMarketing/website.html:689
+#: emailMarketing/templates/emailMarketing/website.html:749
+#: emailMarketing/templates/emailMarketing/website.html:835
+#: emailMarketing/templates/emailMarketing/website.html:955
+#: emailPremium/templates/emailPremium/emailLimits.html:101
+#: emailPremium/templates/emailPremium/emailPage.html:119
+#: mailServer/templates/mailServer/EmailLimits.html:91
+#: mailServer/templates/mailServer/changeEmailPassword.html:114
+#: mailServer/templates/mailServer/createEmailAccount.html:117
+#: mailServer/templates/mailServer/deleteEmailAccount.html:98
+#: mailServer/templates/mailServer/dkimManager.html:156
+#: mailServer/templates/mailServer/emailForwarding.html:83
+#: manageSSL/templates/manageSSL/manageSSL.html:64
+#: userManagment/templates/userManagment/createUser.html:137
+#: userManagment/templates/userManagment/modifyUser.html:138
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:237
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:392
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:135
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:528
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:621
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:283
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:257
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:107
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:158
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:102
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:135
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:88
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:96
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:173
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:349
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:405
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:461
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:547
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:670
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:127
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:247
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:293
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77
+#: websiteFunctions/templates/websiteFunctions/website.html:155
+#: websiteFunctions/templates/websiteFunctions/website.html:394
+#: websiteFunctions/templates/websiteFunctions/website.html:445
+#: websiteFunctions/templates/websiteFunctions/website.html:603
+#: websiteFunctions/templates/websiteFunctions/website.html:650
+#: websiteFunctions/templates/websiteFunctions/website.html:719
+#: websiteFunctions/templates/websiteFunctions/website.html:802
+#: websiteFunctions/templates/websiteFunctions/website.html:908
+msgid "Could not connect to server. Please refresh this page."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:145
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:104
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:150
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:232
+#: backup/templates/backup/restoreOCBackups.html:98
+#: dockerManager/templates/dockerManager/runContainer.html:196
+#: emailMarketing/templates/emailMarketing/createEmailList.html:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:224
+#: emailMarketing/templates/emailMarketing/sendEmails.html:135
+#: emailMarketing/templates/emailMarketing/website.html:431
+#: managePHP/templates/managePHP/installExtensions.html:103
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:248
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:403
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:145
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:539
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:631
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:294
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:268
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:112
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:146
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:98
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:106
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:241
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:137
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90
+#: websiteFunctions/templates/websiteFunctions/website.html:405
+msgid "Go Back"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:3
+msgid "Delete v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:17
+msgid "Delete V2 Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:21
+msgid "This page can be used to delete your backup repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:3
+#: IncBackups/templates/IncBackups/createBackup.html:13
+#: IncBackups/templates/IncBackups/createBackup.html:23
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25
+#: backup/templates/backup/backup.html:3 backup/templates/backup/backup.html:13
+#: backup/templates/backup/backup.html:23
+msgid "Backup Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:17
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:27
+msgid "Restore V2 Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:21
+msgid "This page can be used to restore your backup sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:69
+#: IncBackups/templates/IncBackups/createBackup.html:162
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97
+msgid "Snapshot ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:70
+#: serverStatus/templates/serverStatus/topProcesses.html:199
+msgid "Time"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:71
+#: IncBackups/templates/IncBackups/createBackup.html:165
+#: websiteFunctions/templates/websiteFunctions/listCron.html:44
+msgid "Action"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:89
+#: IncBackups/templates/IncBackups/createBackup.html:129
+#: backup/templates/backup/index.html:46
+#: backup/templates/backup/restore.html:45
+#: baseTemplate/templates/baseTemplate/FileManager.html:649
+#: filemanager/templates/filemanager/index.html:683
+#: filemanager/templates/filemanager/index.html:736
+msgid "Restore"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:98
+msgid "Are you ready to restore the backup? This may overwrite existing files."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:134
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:216
+msgid "Restored succesfully."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:173
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:145
+#: IncBackups/templates/IncBackups/backupSchedule.html:185
+#: IncBackups/templates/IncBackups/backupSchedule.html:198
+#: IncBackups/templates/IncBackups/backupSchedule.html:315
+#: IncBackups/templates/IncBackups/createBackup.html:130
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:91
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:152
+#: backup/templates/backup/OneClickBackupSchedule.html:117
+#: backup/templates/backup/OneClickBackupSchedule.html:272
+#: backup/templates/backup/backup.html:116
+#: backup/templates/backup/backupDestinations.html:120
+#: backup/templates/backup/backupDestinations.html:184
+#: backup/templates/backup/backupSchedule.html:120
+#: backup/templates/backup/backupSchedule.html:275
+#: backup/templates/backup/googleDrive.html:86
+#: backup/templates/backup/googleDrive.html:228
+#: baseTemplate/templates/baseTemplate/FileManager.html:64
+#: baseTemplate/templates/baseTemplate/FileManager.html:642
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:500
+#: emailMarketing/templates/emailMarketing/manageLists.html:43
+#: emailMarketing/templates/emailMarketing/manageLists.html:282
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92
+#: emailMarketing/templates/emailMarketing/sendEmails.html:170
+#: emailMarketing/templates/emailMarketing/website.html:533
+#: filemanager/templates/filemanager/index.html:64
+#: filemanager/templates/filemanager/index.html:731
+#: firewall/templates/firewall/firewall.html:124
+#: firewall/templates/firewall/secureSSH.html:122
+#: mailServer/templates/mailServer/listEmails.html:182
+#: packages/templates/packages/listPackages.html:63
+#: userManagment/templates/userManagment/listUsers.html:67
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:204
+#: websiteFunctions/templates/websiteFunctions/listCron.html:57
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:66
+#: websiteFunctions/templates/websiteFunctions/website.html:508
+msgid "Delete"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:180
+msgid "Are you ready to delete this snapshot? This process can not be undone."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:3
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:27
+msgid "Schedule v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:17
+#: baseTemplate/templates/baseTemplate/index.html:675
+msgid "Schedule V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:21
+msgid "This page can be used to schedule your backups."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:47
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:35
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:149
+msgid "Backup Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:70
+msgid "Backup Retention"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:81
+#: IncBackups/templates/IncBackups/backupSchedule.html:66
+#: IncBackups/templates/IncBackups/createBackup.html:56
+msgid "Backup Content"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:138
+msgid "Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:139
+#: IncBackups/templates/IncBackups/backupSchedule.html:183
+msgid "Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:140
+msgid "Retention"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:141
+msgid "Backup Websites?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:142
+msgid "Backup Databases?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:143
+msgid "Backup Emails?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:144
+msgid "Last Run"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:179
+#: dns/templates/dns/deleteDNSZone.html:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:58
+#: emailMarketing/templates/emailMarketing/sendEmails.html:51
+#: ftp/templates/ftp/deleteFTPAccount.html:73
+#: mailServer/templates/mailServer/deleteEmailAccount.html:82
+#: packages/templates/packages/deletePackage.html:47
+#: serverStatus/templates/serverStatus/litespeedStatus.html:177
+#: userManagment/templates/userManagment/deleteACL.html:49
+#: userManagment/templates/userManagment/deleteUser.html:51
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51
+msgid "Are you sure?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:3
+#: backup/templates/backup/OneClickBackupSchedule.html:3
+#: backup/templates/backup/backupSchedule.html:3
+msgid "Schedule Backup - CyberPanel"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:13
+#: IncBackups/templates/IncBackups/backupSchedule.html:23
+#: backup/templates/backup/OneClickBackupSchedule.html:14
+#: backup/templates/backup/backupSchedule.html:14
+#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77
+#: baseTemplate/templates/baseTemplate/index.html:716
+#: userManagment/templates/userManagment/createACL.html:392
+#: userManagment/templates/userManagment/modifyACL.html:396
+msgid "Schedule Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:16
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:18
+#: backup/templates/backup/OneClickBackupSchedule.html:18
+#: backup/templates/backup/backupDestinations.html:18
+#: backup/templates/backup/backupSchedule.html:18
+#: backup/templates/backup/googleDrive.html:18
+#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92
+#: backup/templates/backup/remoteBackups.html:14
+#: backup/templates/backup/remoteBackups.html:21
+#: baseTemplate/templates/baseTemplate/index.html:726
+#: userManagment/templates/userManagment/createACL.html:402
+#: userManagment/templates/userManagment/modifyACL.html:406
+msgid "Remote Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:17
+msgid ""
+"On this page you can schedule Backups to localhost or remote server (If you "
+"have added one)."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:33
+#: backup/templates/backup/OneClickBackupSchedule.html:101
+#: backup/templates/backup/backupSchedule.html:35
+#: backup/templates/backup/backupSchedule.html:102
+msgid "Select Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:44
+msgid "Select Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:54
+#: backup/templates/backup/OneClickBackupSchedule.html:63
+#: backup/templates/backup/backupSchedule.html:65
+msgid "Select Backup Retention. Leave 0 for no limit"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:110
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:72
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:132
+#: backup/templates/backup/backupDestinations.html:98
+#: backup/templates/backup/backupDestinations.html:165
+#: baseTemplate/templates/baseTemplate/index.html:711
+msgid "Add Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:124
+#: backup/templates/backup/remoteBackups.html:96
+msgid "Search Accounts.."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:136
+msgid "Select sites to be included in this job"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:181
+#: IncBackups/templates/IncBackups/backupSchedule.html:302
+#: IncBackups/templates/IncBackups/createBackup.html:127
+#: backup/templates/backup/backup.html:111
+#: databases/templates/databases/listDataBases.html:107
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:43
+#: emailMarketing/templates/emailMarketing/manageLists.html:266
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74
+#: firewall/templates/firewall/firewall.html:119
+#: firewall/templates/firewall/modSecurityRulesPacks.html:109
+#: ftp/templates/ftp/listFTPAccounts.html:122
+#: mailServer/templates/mailServer/emailForwarding.html:117
+#: managePHP/templates/managePHP/installExtensions.html:60
+msgid "ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:182
+#: IncBackups/templates/IncBackups/createBackup.html:44
+#: IncBackups/templates/IncBackups/createBackup.html:164
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46
+#: backup/templates/backup/backup.html:46
+#: mailServer/templates/mailServer/emailForwarding.html:101
+#: mailServer/templates/mailServer/emailForwarding.html:119
+msgid "Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:184
+#: IncBackups/templates/IncBackups/backupSchedule.html:284
+msgid "Sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:203
+#: baseTemplate/templates/baseTemplate/FileManager.html:76
+#: baseTemplate/templates/baseTemplate/FileManager.html:645
+#: emailPremium/templates/emailPremium/emailLimits.html:58
+#: emailPremium/templates/emailPremium/emailPage.html:66
+#: filemanager/templates/filemanager/index.html:76
+#: filemanager/templates/filemanager/index.html:734
+#: packages/templates/packages/listPackages.html:60
+#: userManagment/templates/userManagment/listUsers.html:63
+#: websiteFunctions/templates/websiteFunctions/listCron.html:58
+msgid "Edit"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:227
+#: IncBackups/templates/IncBackups/createBackup.html:161
+#: emailMarketing/templates/emailMarketing/sendEmails.html:151
+msgid "Job ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:237
+msgid "Data"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:249
+#: baseTemplate/templates/baseTemplate/homePage.html:66
+#: baseTemplate/templates/baseTemplate/index.html:480
+#: baseTemplate/templates/baseTemplate/index.html:481
+#: baseTemplate/templates/baseTemplate/index.html:482
+#: emailMarketing/templates/emailMarketing/website.html:51
+#: packages/templates/packages/createPackage.html:69
+#: packages/templates/packages/listPackages.html:37
+#: packages/templates/packages/listPackages.html:134
+#: packages/templates/packages/modifyPackage.html:73
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:61
+#: websiteFunctions/templates/websiteFunctions/website.html:60
+msgid "Databases"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:261
+#: baseTemplate/templates/baseTemplate/homePage.html:111
+#: baseTemplate/templates/baseTemplate/homePage.html:114
+#: mailServer/templates/mailServer/listEmails.html:165
+#: packages/templates/packages/createPackage.html:77
+#: packages/templates/packages/listPackages.html:143
+#: packages/templates/packages/modifyPackage.html:80
+msgid "Emails"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:275
+#: baseTemplate/templates/baseTemplate/FileManager.html:300
+#: baseTemplate/templates/baseTemplate/design.html:59
+#: databases/templates/databases/listDataBases.html:163
+#: filemanager/templates/filemanager/editFile.html:152
+#: filemanager/templates/filemanager/index.html:302
+#: firewall/templates/firewall/secureSSH.html:73
+#: mailServer/templates/mailServer/EmailLimits.html:123
+#: managePHP/templates/managePHP/editPHPConfig.html:138
+#: managePHP/templates/managePHP/editPHPConfig.html:207
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:157
+#: userManagment/templates/userManagment/apiAccess.html:53
+#: userManagment/templates/userManagment/modifyACL.html:447
+#: userManagment/templates/userManagment/resellerCenter.html:58
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:47
+msgid "Save Changes"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:291
+msgid "Add Sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:303
+#: backup/templates/backup/remoteBackups.html:107
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65
+msgid "Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:304
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101
+#: backup/templates/backup/oneClickBackups.html:67
+#: backup/templates/backup/oneClickBackups.html:129
+#: baseTemplate/templates/baseTemplate/FileManager.html:202
+#: dns/templates/dns/addDeleteDNSRecords.html:372
+#: dockerManager/templates/dockerManager/viewContainer.html:108
+#: emailMarketing/templates/emailMarketing/manageLists.html:270
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79
+#: emailMarketing/templates/emailMarketing/sendEmails.html:157
+#: filemanager/templates/filemanager/index.html:204
+#: mailServer/templates/mailServer/emailForwarding.html:120
+#: mailServer/templates/mailServer/listEmails.html:167
+#: manageServices/templates/manageServices/applications.html:34
+#: packages/templates/packages/listPackages.html:41
+#: serverStatus/templates/serverStatus/packageManager.html:118
+#: serverStatus/templates/serverStatus/packageManager.html:285
+#: serverStatus/templates/serverStatus/packageManager.html:448
+#: serverStatus/templates/serverStatus/topProcesses.html:201
+#: userManagment/templates/userManagment/listUsers.html:40
+msgid "Actions"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:332
+msgid "Select Site"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:351
+#: dns/templates/dns/addDeleteDNSRecords.html:103
+#: dns/templates/dns/addDeleteDNSRecords.html:129
+#: dns/templates/dns/addDeleteDNSRecords.html:156
+#: dns/templates/dns/addDeleteDNSRecords.html:187
+#: dns/templates/dns/addDeleteDNSRecords.html:215
+#: dns/templates/dns/addDeleteDNSRecords.html:242
+#: dns/templates/dns/addDeleteDNSRecords.html:269
+#: dns/templates/dns/addDeleteDNSRecords.html:296
+#: dns/templates/dns/addDeleteDNSRecords.html:328
+#: dns/templates/dns/addDeleteDNSRecords.html:349
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:190
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:221
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:252
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:288
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:320
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:351
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:382
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:413
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:450
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:476
+#: firewall/templates/firewall/firewall.html:104
+msgid "Add"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:3
+msgid "Create Incremental Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:17
+msgid "This page can be used to create incremental backups for your websites."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:113
+#: backup/templates/backup/backup.html:89
+#: baseTemplate/templates/baseTemplate/index.html:701
+#: baseTemplate/templates/baseTemplate/index.html:744
+#: userManagment/templates/userManagment/createACL.html:352
+#: userManagment/templates/userManagment/modifyACL.html:356
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:586
+msgid "Create Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:128
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98
+#: backup/templates/backup/backup.html:113
+#: emailMarketing/templates/emailMarketing/sendEmails.html:152
+msgid "Date"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:163
+#: dns/templates/dns/addDeleteDNSRecords.html:367
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:495
+#: pluginHolder/templates/pluginHolder/plugins.html:29
+msgid "Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:14
+msgid "Set up Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:14
+msgid "Set up Incremental Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:20
+msgid "On this page you can set up your Backup destinations. (SFTP and AWS)"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:26
+#: backup/templates/backup/backupDestinations.html:26
+#: backup/templates/backup/oneClickBackups.html:26
+msgid "Set up Backup Destinations."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:35
+#: backup/templates/backup/backupDestinations.html:39
+msgid "Select Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:47
+#: backup/templates/backup/backupDestinations.html:58
+#: backup/templates/backup/remoteBackups.html:29
+#: dns/templates/dns/addDeleteDNSRecords.html:96
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:180
+#: dns/templates/dns/createNameServer.html:55
+#: dns/templates/dns/createNameServer.html:71
+#: firewall/templates/firewall/firewall.html:122
+msgid "IP Address"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:61
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:90
+#: backup/templates/backup/backupDestinations.html:79
+#: backup/templates/backup/backupDestinations.html:119
+#: dockerManager/templates/dockerManager/runContainer.html:74
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77
+#: firewall/templates/firewall/firewall.html:123
+#: mailServer/templates/mailServer/listEmails.html:87
+#: mailServer/templates/mailServer/listEmails.html:91
+#: mailServer/templates/mailServer/listEmails.html:114
+#: mailServer/templates/mailServer/listEmails.html:118
+#: mailServer/templates/mailServer/listEmails.html:141
+#: mailServer/templates/mailServer/listEmails.html:145
+#: mailServer/templates/mailServer/listEmails.html:149
+#: serverLogs/templates/serverLogs/serverMail.html:51
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:34
+msgid "Port"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:63
+#: backup/templates/backup/backupDestinations.html:81
+msgid "Backup server SSH Port, leave empty for 22."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:89
+#: backup/templates/backup/backupDestinations.html:116
+msgid "IP"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:115
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:151
+msgid "AWS_ACCESS_KEY_ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:122
+msgid "AWS_SECRET_ACCESS_KEY"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13
+msgid "Restore Remote Incremental Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19
+msgid ""
+"This page can be used to restore remote incremental backups for your "
+"websites."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58
+msgid "Encrypted Backup Password"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69
+msgid "Fetch Restore Points"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76
+msgid "Host"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100
+#: backup/templates/backup/backupDestinations.html:87
+#: backup/templates/backup/backupDestinations.html:118
+#: backup/templates/backup/backupDestinations.html:183
+#: emailMarketing/templates/emailMarketing/createEmailList.html:33
+#: emailMarketing/templates/emailMarketing/manageLists.html:195
+#: emailMarketing/templates/emailMarketing/website.html:330
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:176
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:57
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:67
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56
+#: websiteFunctions/templates/websiteFunctions/website.html:308
+msgid "Path"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:3
+msgid "Terminal - CyberPanel"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:13
+msgid "Terminal"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:16
+msgid "Web Terminal Docs"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:17
+msgid "Execute your terminal commands."
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:24
+msgid "Web Terminal"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:26
+msgid "Reboot SSH Server"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:20
+#: backup/templates/backup/backupSchedule.html:20
+msgid ""
+"On this page you can schedule Backups to localhost or remote server (If you "
+"have added one)"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:26
+#: backup/templates/backup/backupSchedule.html:26
+msgid "Create New Backup Schedule"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:52
+#: backup/templates/backup/backupSchedule.html:54
+#: backup/templates/backup/googleDrive.html:90
+msgid "Select Backup Frequency"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:76
+#: backup/templates/backup/backupSchedule.html:78
+msgid "Add Schedule"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:91
+#: backup/templates/backup/backupSchedule.html:93
+msgid "Manage Existing Backup Schedules"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:110
+#: backup/templates/backup/backupSchedule.html:113
+msgid "Select Job"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:121
+#: backup/templates/backup/backupSchedule.html:124
+#: backup/templates/backup/googleDrive.html:102
+msgid "Add Sites for Backup"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:130
+#: backup/templates/backup/backupSchedule.html:133
+#: backup/templates/backup/googleDrive.html:111
+msgid "Add Site"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:132
+#: backup/templates/backup/backupSchedule.html:135
+msgid "Add All"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:172
+#: backup/templates/backup/backupSchedule.html:175
+#: backup/templates/backup/googleDrive.html:132
+msgid "View Logs"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:180
+#: backup/templates/backup/backupSchedule.html:183
+msgid "Backup logs"
+msgstr ""
+
+#: backup/templates/backup/backup.html:17
+msgid "This page can be used to Backup your websites"
+msgstr ""
+
+#: backup/templates/backup/backup.html:50
+#: baseTemplate/templates/baseTemplate/FileManager.html:130
+#: baseTemplate/templates/baseTemplate/error.html:12
+#: baseTemplate/templates/baseTemplate/homePage.html:12
+#: filemanager/templates/filemanager/index.html:132
+msgid "Home"
+msgstr ""
+
+#: backup/templates/backup/backup.html:66
+#: backup/templates/backup/restore.html:62
+#: baseTemplate/templates/baseTemplate/FileManager.html:153
+#: filemanager/templates/filemanager/index.html:155
+msgid "File Name"
+msgstr ""
+
+#: backup/templates/backup/backup.html:67
+#: backup/templates/backup/backup.html:115
+#: backup/templates/backup/restore.html:63
+#: baseTemplate/templates/baseTemplate/FileManager.html:201
+#: baseTemplate/templates/baseTemplate/homePage.html:140
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:45
+#: emailMarketing/templates/emailMarketing/manageLists.html:138
+#: filemanager/templates/filemanager/index.html:203
+#: firewall/templates/firewall/firewall.html:35
+#: firewall/templates/firewall/modSecurityRulesPacks.html:112
+#: managePHP/templates/managePHP/installExtensions.html:64
+#: manageServices/templates/manageServices/applications.html:33
+msgid "Status"
+msgstr ""
+
+#: backup/templates/backup/backup.html:73
+#: serverStatus/templates/serverStatus/topProcesses.html:52
+msgid "Running"
+msgstr ""
+
+#: backup/templates/backup/backup.html:97
+msgid "Cancel Backup"
+msgstr ""
+
+#: backup/templates/backup/backup.html:112
+msgid "File"
+msgstr ""
+
+#: backup/templates/backup/backup.html:114
+#: baseTemplate/templates/baseTemplate/FileManager.html:199
+#: filemanager/templates/filemanager/index.html:156
+#: filemanager/templates/filemanager/index.html:201
+#: ftp/templates/ftp/listFTPAccounts.html:125
+msgid "Size"
+msgstr ""
+
+#: backup/templates/backup/backup.html:143
+msgid "Cannot delete website, Error message: "
+msgstr ""
+
+#: backup/templates/backup/backup.html:147
+msgid "Successfully Deleted"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:20
+msgid "On this page you can set up your Backup destinations. (SFTP)"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:155
+msgid "Local Path"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:3
+msgid "Backup Logs - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:14
+#: backup/templates/backup/backupLogs.html:21
+msgid "Backup Logs"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:15
+msgid ""
+"On this page you can view detailed logs of your local and remote scheduled "
+"backups."
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:29
+msgid "Select Log File"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:47
+msgid "Successful Sites"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:48
+msgid "Failed Sites"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:49
+msgid "Location"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:86
+msgid "LEVEL"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:87
+#: emailMarketing/templates/emailMarketing/manageLists.html:139
+#: emailPremium/templates/emailPremium/mailQueue.html:89
+msgid "Message"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:3
+msgid "Google Drive Backups - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:14
+msgid "Set up Google Drive Backups"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:20
+#: backup/templates/backup/googleDrive.html:26
+msgid "On this page you can set up and manage Google Drive Backups."
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:31
+msgid "Setup new Account"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:77
+msgid "Select Drive Account"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:116
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:50
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:166
+msgid "Backup File Retention"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:140
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:564
+msgid "Git Logs"
+msgstr ""
+
+#: backup/templates/backup/index.html:3
+msgid "Backup Home - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30
+#: baseTemplate/templates/baseTemplate/homePage.html:99
+#: baseTemplate/templates/baseTemplate/homePage.html:102
+#: baseTemplate/templates/baseTemplate/index.html:687
+#: baseTemplate/templates/baseTemplate/index.html:689
+msgid "Backup"
+msgstr ""
+
+#: backup/templates/backup/index.html:14
+msgid "Backup and restore sites."
+msgstr ""
+
+#: backup/templates/backup/index.html:19
+#: baseTemplate/templates/baseTemplate/homePage.html:21
+#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19
+#: dockerManager/templates/dockerManager/index.html:21
+#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19
+#: mailServer/templates/mailServer/index.html:19
+#: managePHP/templates/managePHP/index.html:18
+#: manageSSL/templates/manageSSL/index.html:20
+#: packages/templates/packages/index.html:19
+#: serverLogs/templates/serverLogs/index.html:19
+#: serverStatus/templates/serverStatus/index.html:19
+#: tuning/templates/tuning/index.html:18
+#: userManagment/templates/userManagment/index.html:19
+#: websiteFunctions/templates/websiteFunctions/index.html:21
+msgid "Available Functions"
+msgstr ""
+
+#: backup/templates/backup/index.html:28
+msgid "Backup Site"
+msgstr ""
+
+#: backup/templates/backup/index.html:44
+#: backup/templates/backup/restoreOCBackups.html:57
+#: baseTemplate/templates/baseTemplate/index.html:706
+#: baseTemplate/templates/baseTemplate/index.html:749
+#: userManagment/templates/userManagment/createACL.html:372
+#: userManagment/templates/userManagment/modifyACL.html:376
+msgid "Restore Backup"
+msgstr ""
+
+#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62
+msgid "Add/Delete Destinations"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:3
+#: backup/templates/backup/oneClickBackups.html:14
+msgid "One-click Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:18
+msgid "One-Click Backup Docs"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:20
+msgid "On this page you purchase and manage one-click backups."
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:62
+msgid "Account"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:63
+#: backup/templates/backup/oneClickBackups.html:126
+msgid "Plan Name"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:64
+msgid "Subscription"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:65
+msgid "Billing Cycle"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:66
+msgid "Purchase Date"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:87
+#: baseTemplate/templates/baseTemplate/index.html:754
+msgid "Schedule Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:91
+#: baseTemplate/templates/baseTemplate/index.html:364
+msgid "Restore Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:96
+msgid "Deploy Account"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:115
+msgid "Subscribe to one-click backup plans."
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:127
+msgid "Monthly Price"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:128
+msgid "Yearly Price"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:141
+msgid "Buy Monthly"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:144
+msgid "Buy Yearly"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:3
+msgid "Transfer Websites from Remote Server - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:14
+msgid "Remote Transfer"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:15
+msgid "This feature can import website(s) from remote server"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:46
+msgid "Fetch Accounts"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:55
+msgid "Start Transfer"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:59
+#: baseTemplate/templates/baseTemplate/FileManager.html:225
+#: emailMarketing/templates/emailMarketing/website.html:324
+#: emailMarketing/templates/emailMarketing/website.html:804
+#: emailMarketing/templates/emailMarketing/website.html:928
+#: emailPremium/templates/emailPremium/emailLimits.html:75
+#: emailPremium/templates/emailPremium/emailPage.html:83
+#: emailPremium/templates/emailPremium/emailPage.html:93
+#: filemanager/templates/filemanager/index.html:227
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:52
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:516
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:643
+#: websiteFunctions/templates/websiteFunctions/website.html:301
+#: websiteFunctions/templates/websiteFunctions/website.html:771
+#: websiteFunctions/templates/websiteFunctions/website.html:882
+msgid "Cancel"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:72
+msgid "Could not connect, please refresh this page."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:76
+msgid "Accounts Successfully Fetched from remote server."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:80
+msgid "Backup Process successfully started."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:84
+msgid "Backup successfully cancelled."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:108
+#: baseTemplate/templates/baseTemplate/homePage.html:152
+#: baseTemplate/templates/baseTemplate/index.html:965
+#: baseTemplate/templates/baseTemplate/index.html:967
+#: managePHP/templates/managePHP/installExtensions.html:61
+msgid "PHP"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:109
+#: packages/templates/packages/createPackage.html:118
+#: packages/templates/packages/deletePackage.html:60
+#: packages/templates/packages/listPackages.html:33
+#: packages/templates/packages/modifyPackage.html:131
+#: serverStatus/templates/serverStatus/packageManager.html:114
+#: serverStatus/templates/serverStatus/packageManager.html:281
+#: serverStatus/templates/serverStatus/packageManager.html:445
+msgid "Package"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:110
+#: baseTemplate/templates/baseTemplate/index.html:568
+#: baseTemplate/templates/baseTemplate/index.html:570
+#: mailServer/templates/mailServer/listEmails.html:205
+#: userManagment/templates/userManagment/createUser.html:45
+#: userManagment/templates/userManagment/modifyUser.html:54
+#: userManagment/templates/userManagment/userProfile.html:41
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:332
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:278
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:147
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:44
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:37
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:195
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67
+msgid "Email"
+msgstr ""
+
+#: backup/templates/backup/restore.html:3
+#: backup/templates/backup/restoreOCBackups.html:3
+msgid "Restore Website - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/restore.html:14
+#: backup/templates/backup/restore.html:21
+#: backup/templates/backup/restoreOCBackups.html:14
+#: backup/templates/backup/restoreOCBackups.html:24
+msgid "Restore Website"
+msgstr ""
+
+#: backup/templates/backup/restore.html:15
+#: backup/templates/backup/restoreOCBackups.html:18
+msgid ""
+"This page can be used to restore your websites, Backup should be generated "
+"from CyberPanel Backup generation tool, it will detect all Backups under "
+"/home/backup."
+msgstr ""
+
+#: backup/templates/backup/restore.html:30
+#: backup/templates/backup/restoreOCBackups.html:44
+msgid "Select Backup"
+msgstr ""
+
+#: backup/templates/backup/restore.html:61
+msgid "Condition"
+msgstr ""
+
+#: backup/templates/backup/restore.html:90
+msgid "Site related to this Backup already exists."
+msgstr ""
+
+#: backup/templates/backup/restoreOCBackups.html:33
+msgid "Select Folder"
+msgstr ""
+
+#: backup/templates/backup/restoreOCBackups.html:82
+msgid "Backup restored successfully."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:5
+#: filemanager/templates/filemanager/index.html:5
+msgid "File Manager - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:51
+#: filemanager/templates/filemanager/editFile.html:67
+#: filemanager/templates/filemanager/index.html:51
+msgid " File Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:55
+#: baseTemplate/templates/baseTemplate/FileManager.html:192
+#: baseTemplate/templates/baseTemplate/FileManager.html:222
+#: filemanager/templates/filemanager/index.html:55
+#: filemanager/templates/filemanager/index.html:194
+#: filemanager/templates/filemanager/index.html:224
+msgid "Upload"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:58
+#: filemanager/templates/filemanager/index.html:58
+msgid "New File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:61
+#: filemanager/templates/filemanager/index.html:61
+msgid "New Folder"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:67
+#: baseTemplate/templates/baseTemplate/FileManager.html:559
+#: baseTemplate/templates/baseTemplate/FileManager.html:639
+#: filemanager/templates/filemanager/index.html:67
+#: filemanager/templates/filemanager/index.html:561
+#: filemanager/templates/filemanager/index.html:728
+msgid "Copy"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:70
+#: baseTemplate/templates/baseTemplate/FileManager.html:524
+#: baseTemplate/templates/baseTemplate/FileManager.html:635
+#: filemanager/templates/filemanager/index.html:70
+#: filemanager/templates/filemanager/index.html:526
+#: filemanager/templates/filemanager/index.html:726
+msgid "Move"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:73
+#: baseTemplate/templates/baseTemplate/FileManager.html:589
+#: baseTemplate/templates/baseTemplate/FileManager.html:640
+#: filemanager/templates/filemanager/index.html:73
+#: filemanager/templates/filemanager/index.html:591
+#: filemanager/templates/filemanager/index.html:729
+msgid "Rename"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:79
+#: baseTemplate/templates/baseTemplate/FileManager.html:434
+#: baseTemplate/templates/baseTemplate/FileManager.html:461
+#: baseTemplate/templates/baseTemplate/FileManager.html:643
+#: filemanager/templates/filemanager/index.html:79
+#: filemanager/templates/filemanager/index.html:436
+#: filemanager/templates/filemanager/index.html:463
+#: filemanager/templates/filemanager/index.html:732
+msgid "Compress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:82
+#: baseTemplate/templates/baseTemplate/FileManager.html:489
+#: baseTemplate/templates/baseTemplate/FileManager.html:644
+#: filemanager/templates/filemanager/index.html:82
+#: filemanager/templates/filemanager/index.html:491
+#: filemanager/templates/filemanager/index.html:733
+msgid "Extract"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:108
+#: filemanager/templates/filemanager/index.html:110
+msgid "Current Path"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:133
+#: filemanager/templates/filemanager/index.html:135
+msgid "Back"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:137
+#: emailPremium/templates/emailPremium/mailQueue.html:49
+#: filemanager/templates/filemanager/index.html:139
+#: serverLogs/templates/serverLogs/accessLogs.html:38
+#: serverLogs/templates/serverLogs/emailLogs.html:39
+#: serverLogs/templates/serverLogs/errorLogs.html:35
+#: serverLogs/templates/serverLogs/ftplogs.html:35
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:36
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37
+msgid "Refresh"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:141
+#: filemanager/templates/filemanager/index.html:143
+msgid "Select All"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:145
+#: filemanager/templates/filemanager/index.html:147
+msgid "UnSelect All"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:154
+msgid "Size (KB)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:155
+#: filemanager/templates/filemanager/index.html:157
+msgid "Last Modified"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:156
+#: filemanager/templates/filemanager/index.html:158
+msgid "Permissions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:176
+#: filemanager/templates/filemanager/index.html:178
+msgid "Upload File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:176
+#: filemanager/templates/filemanager/index.html:178
+msgid "Upload Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:182
+#: filemanager/templates/filemanager/index.html:184
+msgid "Upload queue"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:183
+#: filemanager/templates/filemanager/index.html:185
+msgid "Queue length:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:187
+#: filemanager/templates/filemanager/index.html:189
+msgid "Drop"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:188
+#: filemanager/templates/filemanager/index.html:190
+msgid "Drop Files here to upload them."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:200
+#: filemanager/templates/filemanager/index.html:202
+msgid "Progress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:228
+#: filemanager/templates/filemanager/index.html:230
+#: manageServices/templates/manageServices/applications.html:47
+msgid "Remove"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:238
+#: filemanager/templates/filemanager/index.html:240
+msgid "Queue progress:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:247
+#: filemanager/templates/filemanager/index.html:249
+msgid "can not be uploaded, Error message:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:251
+#: filemanager/templates/filemanager/index.html:253
+msgid "Upload all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:254
+#: filemanager/templates/filemanager/index.html:256
+msgid "Cancel all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:257
+#: filemanager/templates/filemanager/index.html:259
+msgid "Remove all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:293
+#: filemanager/templates/filemanager/index.html:295
+msgid "File Successfully saved."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:317
+#: filemanager/templates/filemanager/index.html:319
+msgid "Create new folder!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:325
+#: filemanager/templates/filemanager/index.html:327
+msgid "New Folder Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:327
+#: filemanager/templates/filemanager/index.html:329
+msgid "Folder will be created in your current directory"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:329
+#: filemanager/templates/filemanager/index.html:331
+msgid "Create Folder"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:342
+#: filemanager/templates/filemanager/index.html:344
+msgid "Folder Successfully created."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:361
+#: filemanager/templates/filemanager/index.html:363
+msgid "Create new file!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:369
+#: filemanager/templates/filemanager/index.html:371
+msgid "New File Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:371
+#: filemanager/templates/filemanager/index.html:373
+msgid ""
+"File will be created in your current directory, if it already exists it will "
+"not overwirte."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:373
+#: filemanager/templates/filemanager/index.html:375
+msgid "Create File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:386
+#: filemanager/templates/filemanager/index.html:388
+msgid "File Successfully created."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:402
+#: filemanager/templates/filemanager/index.html:404
+msgid "Confirm Deletion!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:412
+#: filemanager/templates/filemanager/index.html:414
+msgid "Skip trash and permanently delete this file."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:418
+#: emailMarketing/templates/emailMarketing/manageLists.html:64
+#: emailMarketing/templates/emailMarketing/sendEmails.html:55
+#: filemanager/templates/filemanager/index.html:420
+msgid "Confirm"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:419
+#: baseTemplate/templates/baseTemplate/FileManager.html:462
+#: baseTemplate/templates/baseTemplate/FileManager.html:525
+#: baseTemplate/templates/baseTemplate/FileManager.html:560
+#: baseTemplate/templates/baseTemplate/FileManager.html:590
+#: emailMarketing/templates/emailMarketing/manageLists.html:62
+#: emailMarketing/templates/emailMarketing/manageLists.html:177
+#: emailMarketing/templates/emailMarketing/sendEmails.html:54
+#: emailMarketing/templates/emailMarketing/website.html:484
+#: filemanager/templates/filemanager/editFile.html:156
+#: filemanager/templates/filemanager/index.html:421
+#: filemanager/templates/filemanager/index.html:464
+#: filemanager/templates/filemanager/index.html:527
+#: filemanager/templates/filemanager/index.html:562
+#: filemanager/templates/filemanager/index.html:592
+#: filemanager/templates/filemanager/index.html:653
+#: filemanager/templates/filemanager/index.html:684
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:171
+#: websiteFunctions/templates/websiteFunctions/website.html:458
+msgid "Close"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:442
+#: filemanager/templates/filemanager/index.html:444
+msgid "List of files/folder!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:446
+#: filemanager/templates/filemanager/index.html:448
+msgid "Compressed File Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:448
+#: filemanager/templates/filemanager/index.html:450
+msgid "Enter without extension name!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:452
+#: filemanager/templates/filemanager/index.html:454
+msgid "Compression Type"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:477
+#: filemanager/templates/filemanager/index.html:479
+msgid "Extracting"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:485
+#: filemanager/templates/filemanager/index.html:487
+msgid "Extract in"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:487
+#: filemanager/templates/filemanager/index.html:489
+msgid "You can enter . to extract in current directory!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:505
+#: filemanager/templates/filemanager/index.html:507
+msgid "Move Files"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:513
+#: baseTemplate/templates/baseTemplate/FileManager.html:548
+#: filemanager/templates/filemanager/index.html:515
+#: filemanager/templates/filemanager/index.html:550
+msgid "List of files/folders!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:517
+#: filemanager/templates/filemanager/index.html:519
+msgid "Move to"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:519
+#: filemanager/templates/filemanager/index.html:521
+msgid "Enter a path to move your files!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:540
+#: filemanager/templates/filemanager/index.html:542
+msgid "Copy Files"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:552
+#: filemanager/templates/filemanager/index.html:554
+msgid "Copy to"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:554
+#: filemanager/templates/filemanager/index.html:556
+msgid "Enter a path to copy your files to!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:574
+#: filemanager/templates/filemanager/index.html:576
+msgid "Renaming"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:582
+#: filemanager/templates/filemanager/index.html:584
+msgid "New Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:584
+#: filemanager/templates/filemanager/index.html:586
+msgid "Enter new name of file!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:641
+#: filemanager/templates/filemanager/index.html:651
+#: filemanager/templates/filemanager/index.html:730
+msgid "Change Permissions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:3
+msgid "Design - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:13
+#: baseTemplate/templates/baseTemplate/index.html:268
+#: baseTemplate/templates/baseTemplate/index.html:270
+#: baseTemplate/templates/baseTemplate/index.html:272
+msgid "Design"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:19
+msgid "Custom CSS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:33
+msgid "Changes saved."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:3
+#: baseTemplate/templates/baseTemplate/homePage.html:3
+msgid "Home - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:13
+#: baseTemplate/templates/baseTemplate/homePage.html:13
+msgid "Use the tabs to navigate through the control panel."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:22
+msgid "Something went wrong..."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:27
+#: userManagment/templates/userManagment/index.html:13
+msgid "User Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:30
+#: baseTemplate/templates/baseTemplate/index.html:294
+#: baseTemplate/templates/baseTemplate/index.html:295
+#: baseTemplate/templates/baseTemplate/index.html:296
+msgid "Users"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:39
+#: websiteFunctions/templates/websiteFunctions/index.html:13
+msgid "Website Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:51
+msgid "Add/Modify Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:54
+#: baseTemplate/templates/baseTemplate/index.html:448
+#: baseTemplate/templates/baseTemplate/index.html:450
+#: packages/templates/packages/index.html:13
+msgid "Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:63
+#: databases/templates/databases/index.html:12
+msgid "Database Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:75
+msgid "Control DNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:78
+#: baseTemplate/templates/baseTemplate/index.html:515
+#: baseTemplate/templates/baseTemplate/index.html:517
+msgid "DNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:87
+#: ftp/templates/ftp/index.html:12
+msgid "FTP Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:90
+#: baseTemplate/templates/baseTemplate/index.html:626
+#: baseTemplate/templates/baseTemplate/index.html:628
+#: emailMarketing/templates/emailMarketing/website.html:46
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:56
+#: websiteFunctions/templates/websiteFunctions/website.html:55
+msgid "FTP"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:123
+#: baseTemplate/templates/baseTemplate/homePage.html:126
+#: baseTemplate/templates/baseTemplate/index.html:786
+#: baseTemplate/templates/baseTemplate/index.html:787
+#: baseTemplate/templates/baseTemplate/index.html:788
+#: mailServer/templates/mailServer/listEmails.html:95
+#: mailServer/templates/mailServer/listEmails.html:122
+#: mailServer/templates/mailServer/listEmails.html:153
+msgid "SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:137
+#: baseTemplate/templates/baseTemplate/index.html:937
+#: baseTemplate/templates/baseTemplate/index.html:939
+#: baseTemplate/templates/baseTemplate/index.html:984
+#: emailPremium/templates/emailPremium/policyServer.html:30
+#: serverStatus/templates/serverStatus/index.html:13
+msgid "Server Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:149
+msgid "PHP Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:161
+#: baseTemplate/templates/baseTemplate/homePage.html:164
+#: baseTemplate/templates/baseTemplate/index.html:986
+#: dockerManager/templates/dockerManager/viewContainer.html:174
+#: emailMarketing/templates/emailMarketing/website.html:117
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:372
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:133
+#: websiteFunctions/templates/websiteFunctions/website.html:121
+msgid "Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:173
+#: baseTemplate/templates/baseTemplate/homePage.html:176
+#: baseTemplate/templates/baseTemplate/index.html:1018
+#: baseTemplate/templates/baseTemplate/index.html:1020
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:866
+msgid "Security"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:199
+msgid "Resources"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:208
+#: baseTemplate/templates/baseTemplate/index.html:138
+#: dockerManager/templates/dockerManager/viewContainer.html:48
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:247
+msgid "CPU Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:229
+msgid "Ram Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:250
+msgid "Disk Usage '/'"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:149
+msgid "RAM Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:157
+#: emailMarketing/templates/emailMarketing/website.html:58
+#: emailMarketing/templates/emailMarketing/website.html:78
+#: mailServer/templates/mailServer/listEmails.html:166
+#: userManagment/templates/userManagment/listUsers.html:36
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:68
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:96
+#: websiteFunctions/templates/websiteFunctions/website.html:65
+#: websiteFunctions/templates/websiteFunctions/website.html:91
+msgid "Disk Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:189
+#: baseTemplate/templates/baseTemplate/index.html:192
+#: baseTemplate/templates/baseTemplate/index.html:196
+msgid "CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:194
+#: baseTemplate/templates/baseTemplate/index.html:198
+msgid "Web Hosting Control Panel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:200
+msgid "Close sidebar"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:223
+msgid "Youtube Channel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:227
+#: baseTemplate/templates/baseTemplate/index.html:283
+#: baseTemplate/templates/baseTemplate/index.html:285
+msgid "Community"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:231
+msgid "Support"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:234
+msgid "Logout"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:246
+msgid "Overview"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:249
+#: baseTemplate/templates/baseTemplate/index.html:250
+msgid "Server IP Address"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:255
+#: baseTemplate/templates/baseTemplate/index.html:257
+msgid "Dashboard"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:261
+#: baseTemplate/templates/baseTemplate/index.html:263
+#: baseTemplate/templates/baseTemplate/index.html:265
+#: baseTemplate/templates/baseTemplate/versionManagment.html:36
+#: userManagment/templates/userManagment/createACL.html:47
+#: userManagment/templates/userManagment/createACL.html:52
+#: userManagment/templates/userManagment/modifyACL.html:51
+#: userManagment/templates/userManagment/modifyACL.html:56
+msgid "Version Management"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:275
+#: baseTemplate/templates/baseTemplate/index.html:276
+#: baseTemplate/templates/baseTemplate/index.html:278
+#: baseTemplate/templates/baseTemplate/index.html:282
+msgid "Connect"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:291
+msgid "Main"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:302
+#: userManagment/templates/userManagment/index.html:24
+#: userManagment/templates/userManagment/index.html:27
+msgid "View Profile"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:307
+#: userManagment/templates/userManagment/createACL.html:64
+#: userManagment/templates/userManagment/createUser.html:12
+#: userManagment/templates/userManagment/modifyACL.html:68
+msgid "Create New User"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:313
+#: userManagment/templates/userManagment/createACL.html:73
+#: userManagment/templates/userManagment/index.html:36
+#: userManagment/templates/userManagment/index.html:39
+#: userManagment/templates/userManagment/listUsers.html:13
+#: userManagment/templates/userManagment/listUsers.html:21
+#: userManagment/templates/userManagment/modifyACL.html:77
+msgid "List Users"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:317
+#: userManagment/templates/userManagment/index.html:61
+#: userManagment/templates/userManagment/index.html:64
+#: userManagment/templates/userManagment/modifyUser.html:12
+#: userManagment/templates/userManagment/modifyUser.html:119
+msgid "Modify User"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:321
+#: userManagment/templates/userManagment/createACL.html:82
+#: userManagment/templates/userManagment/modifyACL.html:86
+#: userManagment/templates/userManagment/resellerCenter.html:12
+#: userManagment/templates/userManagment/resellerCenter.html:19
+msgid "Reseller Center"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:326
+#: userManagment/templates/userManagment/createACL.html:12
+msgid "Create New ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:329
+#: userManagment/templates/userManagment/deleteACL.html:12
+#: userManagment/templates/userManagment/deleteACL.html:40
+msgid "Delete ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:332
+msgid "Modify ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:335
+#: userManagment/templates/userManagment/apiAccess.html:13
+#: userManagment/templates/userManagment/apiAccess.html:20
+msgid "API Access"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:345
+#: baseTemplate/templates/baseTemplate/index.html:346
+#: baseTemplate/templates/baseTemplate/index.html:347
+msgid "WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:354
+msgid "Deploy WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:358
+msgid "List WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:361
+msgid "ConfigurePlugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:361
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:12
+msgid "Configure Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:364
+msgid "RestoreBackups"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:367
+msgid "Remote Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:377
+msgid "Dockersite"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:378
+#: baseTemplate/templates/baseTemplate/index.html:379
+msgid "Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:380
+msgid "Beta"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:386
+msgid "Create Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:389
+msgid "List Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:393
+msgid "Docker Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:397
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:95
+msgid "Assign Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:415
+#: userManagment/templates/userManagment/createACL.html:112
+#: userManagment/templates/userManagment/modifyACL.html:116
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:362
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:95
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:227
+#: websiteFunctions/templates/websiteFunctions/index.html:43
+#: websiteFunctions/templates/websiteFunctions/index.html:45
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:20
+msgid "Create Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:423
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:96
+msgid "Create Sub/Addon Domain"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:426
+msgid "List Sub-Domains"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:426
+msgid "List Sub/Addon Domains"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:430
+#: userManagment/templates/userManagment/createACL.html:121
+#: userManagment/templates/userManagment/modifyACL.html:125
+#: websiteFunctions/templates/websiteFunctions/index.html:67
+#: websiteFunctions/templates/websiteFunctions/index.html:69
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93
+msgid "Modify Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:435
+#: websiteFunctions/templates/websiteFunctions/index.html:81
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41
+msgid "Suspend/Unsuspend"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:440
+#: userManagment/templates/userManagment/createACL.html:139
+#: userManagment/templates/userManagment/deleteACL.html:19
+#: userManagment/templates/userManagment/modifyACL.html:143
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42
+#: websiteFunctions/templates/websiteFunctions/index.html:90
+#: websiteFunctions/templates/websiteFunctions/index.html:92
+msgid "Delete Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:462
+#: baseTemplate/templates/baseTemplate/index.html:856
+#: packages/templates/packages/index.html:37
+#: packages/templates/packages/index.html:40
+#: packages/templates/packages/listPackages.html:13
+#: packages/templates/packages/listPackages.html:19
+#: userManagment/templates/userManagment/createACL.html:161
+#: userManagment/templates/userManagment/modifyACL.html:165
+msgid "List Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:467
+#: packages/templates/packages/deletePackage.html:12
+#: packages/templates/packages/deletePackage.html:18
+#: packages/templates/packages/deletePackage.html:39
+#: packages/templates/packages/index.html:50
+#: packages/templates/packages/index.html:53
+#: userManagment/templates/userManagment/createACL.html:170
+#: userManagment/templates/userManagment/modifyACL.html:174
+msgid "Delete Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:472
+#: packages/templates/packages/index.html:63
+#: packages/templates/packages/index.html:66
+#: packages/templates/packages/modifyPackage.html:9
+#: packages/templates/packages/modifyPackage.html:15
+#: packages/templates/packages/modifyPackage.html:114
+#: userManagment/templates/userManagment/createACL.html:179
+#: userManagment/templates/userManagment/modifyACL.html:183
+msgid "Modify Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:489
+#: databases/templates/databases/createDatabase.html:12
+#: databases/templates/databases/createDatabase.html:19
+#: databases/templates/databases/createDatabase.html:78
+#: databases/templates/databases/index.html:25
+#: databases/templates/databases/index.html:27
+#: databases/templates/databases/listDataBases.html:14
+#: userManagment/templates/userManagment/createACL.html:191
+#: userManagment/templates/userManagment/modifyACL.html:195
+msgid "Create Database"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:494
+#: databases/templates/databases/deleteDatabase.html:12
+#: databases/templates/databases/deleteDatabase.html:19
+#: databases/templates/databases/deleteDatabase.html:51
+#: databases/templates/databases/index.html:37
+#: databases/templates/databases/index.html:39
+#: userManagment/templates/userManagment/createACL.html:200
+#: userManagment/templates/userManagment/modifyACL.html:204
+msgid "Delete Database"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:499
+#: databases/templates/databases/index.html:48
+#: databases/templates/databases/index.html:50
+#: databases/templates/databases/listDataBases.html:13
+#: databases/templates/databases/listDataBases.html:21
+#: userManagment/templates/userManagment/createACL.html:209
+#: userManagment/templates/userManagment/modifyACL.html:213
+msgid "List Databases"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:504
+#: databases/templates/databases/index.html:59
+#: databases/templates/databases/index.html:61
+#: databases/templates/databases/phpMyAdmin.html:13
+#: databases/templates/databases/phpMyAdmin.html:20
+msgid "PHPMYAdmin"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:524
+#: dns/templates/dns/createNameServer.html:12
+#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72
+#: dns/templates/dns/index.html:74
+#: userManagment/templates/userManagment/createACL.html:221
+#: userManagment/templates/userManagment/modifyACL.html:225
+msgid "Create Nameserver"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:529
+msgid "Configure Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:529
+msgid "Config Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:534
+#: dns/templates/dns/createDNSZone.html:12
+#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29
+#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84
+#: dns/templates/dns/index.html:86
+#: userManagment/templates/userManagment/createACL.html:230
+#: userManagment/templates/userManagment/modifyACL.html:234
+msgid "Create DNS Zone"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:539
+#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41
+#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96
+#: dns/templates/dns/index.html:98
+#: userManagment/templates/userManagment/createACL.html:239
+#: userManagment/templates/userManagment/modifyACL.html:243
+msgid "Delete Zone"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:544
+msgid "Add/Delete Records"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:550
+msgid "CloudFlare"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:555
+#: dns/templates/dns/resetdnsconf.html:11
+msgid "Reset DNS Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:577
+#: mailServer/templates/mailServer/createEmailAccount.html:12
+#: mailServer/templates/mailServer/createEmailAccount.html:19
+msgid "Create Email Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:577
+#: mailServer/templates/mailServer/createEmailAccount.html:100
+#: mailServer/templates/mailServer/index.html:25
+#: mailServer/templates/mailServer/index.html:28
+#: mailServer/templates/mailServer/listEmails.html:14
+#: userManagment/templates/userManagment/createACL.html:262
+#: userManagment/templates/userManagment/modifyACL.html:266
+msgid "Create Email"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:582
+#: mailServer/templates/mailServer/index.html:37
+#: mailServer/templates/mailServer/index.html:40
+#: userManagment/templates/userManagment/createACL.html:271
+#: userManagment/templates/userManagment/modifyACL.html:275
+msgid "List Emails"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:587
+#: mailServer/templates/mailServer/deleteEmailAccount.html:12
+#: mailServer/templates/mailServer/deleteEmailAccount.html:19
+msgid "Delete Email Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:587
+#: mailServer/templates/mailServer/deleteEmailAccount.html:73
+#: mailServer/templates/mailServer/index.html:50
+#: mailServer/templates/mailServer/index.html:53
+#: userManagment/templates/userManagment/createACL.html:280
+#: userManagment/templates/userManagment/modifyACL.html:284
+msgid "Delete Email"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:592
+msgid "Email Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:597
+#: mailServer/templates/mailServer/index.html:62
+#: mailServer/templates/mailServer/index.html:65
+#: userManagment/templates/userManagment/createACL.html:289
+#: userManagment/templates/userManagment/modifyACL.html:293
+msgid "Email Forwarding"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:602
+#: databases/templates/databases/listDataBases.html:93
+#: ftp/templates/ftp/listFTPAccounts.html:108
+#: mailServer/templates/mailServer/changeEmailPassword.html:97
+#: mailServer/templates/mailServer/index.html:75
+#: mailServer/templates/mailServer/index.html:78
+#: mailServer/templates/mailServer/listEmails.html:179
+msgid "Change Password"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:607
+#: mailServer/templates/mailServer/dkimManager.html:13
+#: mailServer/templates/mailServer/dkimManager.html:22
+#: mailServer/templates/mailServer/dkimManager.html:75
+#: mailServer/templates/mailServer/index.html:87
+#: mailServer/templates/mailServer/index.html:90
+#: userManagment/templates/userManagment/createACL.html:309
+#: userManagment/templates/userManagment/modifyACL.html:313
+msgid "DKIM Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:612
+#: baseTemplate/templates/baseTemplate/index.html:613
+#: mailServer/templates/mailServer/index.html:99
+#: mailServer/templates/mailServer/index.html:102
+msgid "Access Webmail"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:635
+#: emailMarketing/templates/emailMarketing/website.html:886
+#: emailMarketing/templates/emailMarketing/website.html:889
+#: ftp/templates/ftp/createFTPAccount.html:12
+#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24
+#: ftp/templates/ftp/index.html:26
+#: userManagment/templates/userManagment/createACL.html:322
+#: userManagment/templates/userManagment/modifyACL.html:326
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:599
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:602
+#: websiteFunctions/templates/websiteFunctions/website.html:845
+#: websiteFunctions/templates/websiteFunctions/website.html:848
+msgid "Create FTP Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:640
+#: emailMarketing/templates/emailMarketing/website.html:898
+#: emailMarketing/templates/emailMarketing/website.html:901
+#: ftp/templates/ftp/deleteFTPAccount.html:12
+#: ftp/templates/ftp/deleteFTPAccount.html:18
+#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35
+#: ftp/templates/ftp/index.html:37
+#: userManagment/templates/userManagment/createACL.html:331
+#: userManagment/templates/userManagment/modifyACL.html:335
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:611
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:614
+#: websiteFunctions/templates/websiteFunctions/website.html:854
+#: websiteFunctions/templates/websiteFunctions/website.html:857
+msgid "Delete FTP Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:645
+#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48
+#: ftp/templates/ftp/listFTPAccounts.html:13
+#: ftp/templates/ftp/listFTPAccounts.html:19
+#: userManagment/templates/userManagment/createACL.html:340
+#: userManagment/templates/userManagment/modifyACL.html:344
+msgid "List FTP Accounts"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:650
+#: ftp/templates/ftp/ResetFTPconf.html:11
+msgid "Reset FTP Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:661
+msgid "BackupV2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:663
+msgid "Backup V2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:669
+msgid "Create/Restore V2 Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:672
+msgid "Configure Backends"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:678
+msgid "Delete V2 Backup Repo"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:696
+msgid "One-Click Backups"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:711
+#: userManagment/templates/userManagment/createACL.html:381
+#: userManagment/templates/userManagment/modifyACL.html:385
+msgid "Add/Delete Destination"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:721
+msgid "Setup Google Drive"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:735
+msgid "Incremental Backup - Beta"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:737
+msgid "Incremental Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:744
+msgid "Create/Restore Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:749
+msgid "Add/Remove Destinations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:759
+msgid "Restore from Remote Server"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:759
+msgid "Restore from Remote"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:768
+#: baseTemplate/templates/baseTemplate/index.html:769
+#: baseTemplate/templates/baseTemplate/index.html:770
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:13
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:28
+msgid "SSL v2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:777
+msgid "Manage SSL v2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:795
+#: manageSSL/templates/manageSSL/index.html:29
+#: manageSSL/templates/manageSSL/index.html:31
+#: manageSSL/templates/manageSSL/manageSSL.html:13
+#: manageSSL/templates/manageSSL/manageSSL.html:23
+#: userManagment/templates/userManagment/createACL.html:415
+#: userManagment/templates/userManagment/modifyACL.html:419
+msgid "Manage SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:800
+#: manageSSL/templates/manageSSL/index.html:45
+#: manageSSL/templates/manageSSL/index.html:47
+#: userManagment/templates/userManagment/createACL.html:424
+#: userManagment/templates/userManagment/modifyACL.html:428
+msgid "Hostname SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:805
+#: manageSSL/templates/manageSSL/index.html:60
+#: manageSSL/templates/manageSSL/index.html:62
+#: userManagment/templates/userManagment/createACL.html:433
+#: userManagment/templates/userManagment/modifyACL.html:437
+msgid "MailServer SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:815
+msgid "Server"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:819
+#: baseTemplate/templates/baseTemplate/index.html:830
+#: baseTemplate/templates/baseTemplate/index.html:832
+#: baseTemplate/templates/baseTemplate/index.html:834
+msgid "Root File Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:821
+#: baseTemplate/templates/baseTemplate/index.html:823
+#: databases/templates/databases/mysqlmanager.html:12
+msgid "MySQL Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:824
+#: baseTemplate/templates/baseTemplate/index.html:845
+#: baseTemplate/templates/baseTemplate/index.html:1058
+msgid "NEW"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:851
+msgid "Create Cloud Linux Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:856
+msgid "List Cloud Linux Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:861
+msgid "Monitor Usage of your Websites"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:861
+msgid "Monitor Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:866
+#: firewall/templates/firewall/index.html:91
+msgid "CageFS Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:866
+#: firewall/templates/firewall/index.html:93
+msgid "CageFS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:891
+msgid "Docker"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:893
+msgid "Docker Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:899
+msgid "Manage Docker Images"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:899
+#: dockerManager/templates/dockerManager/index.html:49
+#: dockerManager/templates/dockerManager/index.html:51
+#: dockerManager/templates/dockerManager/manageImages.html:14
+msgid "Manage Images"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:902
+msgid "Manage Docker Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:902
+#: dockerManager/templates/dockerManager/index.html:29
+#: dockerManager/templates/dockerManager/index.html:31
+msgid "Manage Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:905
+msgid "Create New Docker Container"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:905
+msgid "Create New Container"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:913
+#: baseTemplate/templates/baseTemplate/index.html:915
+msgid "Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:921
+#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26
+#: tuning/templates/tuning/liteSpeedTuning.html:12
+msgid "LiteSpeed Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:925
+msgid "LiteSpeed Ent Global Conf"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:929
+#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38
+#: tuning/templates/tuning/phpTuning.html:13
+#: tuning/templates/tuning/phpTuning.html:149
+msgid "PHP Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:945
+#: serverStatus/templates/serverStatus/index.html:25
+#: serverStatus/templates/serverStatus/index.html:28
+#: serverStatus/templates/serverStatus/topProcesses.html:14
+#: serverStatus/templates/serverStatus/topProcesses.html:179
+msgid "Top Processes"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:948
+#: serverStatus/templates/serverStatus/index.html:37
+#: serverStatus/templates/serverStatus/index.html:40
+msgid "LiteSpeed Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:951
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:23
+msgid "Change CyberPanel Port"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:951
+msgid "Change Port"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:954
+#: serverStatus/templates/serverStatus/packageManager.html:14
+msgid "Package Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:973
+#: managePHP/templates/managePHP/installExtensions.html:13
+msgid "Install PHP Extensions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:973
+#: managePHP/templates/managePHP/index.html:24
+#: managePHP/templates/managePHP/index.html:26
+msgid "Install Extensions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:976
+#: managePHP/templates/managePHP/index.html:35
+#: managePHP/templates/managePHP/index.html:37
+msgid "Edit PHP Configs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:992
+#: serverLogs/templates/serverLogs/index.html:25
+#: serverLogs/templates/serverLogs/index.html:28
+msgid "Server Mail"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:995
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13
+#: serverStatus/templates/serverStatus/index.html:50
+msgid "CyberPanel Main Log File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:998
+msgid "Access Log"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1001
+#: emailMarketing/templates/emailMarketing/website.html:139
+#: serverLogs/templates/serverLogs/errorLogs.html:13
+#: serverLogs/templates/serverLogs/index.html:49
+#: serverLogs/templates/serverLogs/index.html:52
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:153
+#: websiteFunctions/templates/websiteFunctions/website.html:141
+msgid "Error Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1004
+#: emailPremium/templates/emailPremium/emailPage.html:144
+#: serverLogs/templates/serverLogs/emailLogs.html:14
+#: serverLogs/templates/serverLogs/index.html:61
+#: serverLogs/templates/serverLogs/index.html:64
+msgid "Email Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1004
+msgid "Email Log"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1007
+#: serverLogs/templates/serverLogs/ftplogs.html:13
+#: serverLogs/templates/serverLogs/index.html:73
+#: serverLogs/templates/serverLogs/index.html:76
+msgid "FTP Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1010
+#: serverLogs/templates/serverLogs/index.html:85
+#: serverLogs/templates/serverLogs/index.html:88
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:14
+msgid "ModSecurity Audit Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1010
+msgid "ModSec Audit Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1026
+msgid "Firewall Home"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1026
+#: firewall/templates/firewall/csf.html:119
+#: firewall/templates/firewall/index.html:25
+#: firewall/templates/firewall/index.html:27
+msgid "Firewall"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1029
+#: firewall/templates/firewall/index.html:36
+#: firewall/templates/firewall/index.html:38
+#: firewall/templates/firewall/secureSSH.html:13
+#: firewall/templates/firewall/secureSSH.html:23
+msgid "Secure SSH"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1032
+#: firewall/templates/firewall/index.html:58
+msgid "ModSecurity Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1032
+#: firewall/templates/firewall/index.html:60
+msgid "ModSecurity Conf"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1035
+#: firewall/templates/firewall/index.html:69
+#: firewall/templates/firewall/index.html:71
+#: firewall/templates/firewall/modSecurityRules.html:20
+msgid "ModSecurity Rules"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1038
+#: firewall/templates/firewall/index.html:80
+#: firewall/templates/firewall/index.html:82
+msgid "ModSecurity Rules Packs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1041
+#: firewall/templates/firewall/index.html:47
+msgid "ConfigServer Security & Firewall (CSF)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1041
+#: firewall/templates/firewall/csf.html:21
+#: firewall/templates/firewall/csf.html:86
+#: firewall/templates/firewall/csf.html:95
+#: firewall/templates/firewall/index.html:49
+msgid "CSF"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1044
+#: firewall/templates/firewall/index.html:102
+#: firewall/templates/firewall/index.html:104
+msgid "Imunify 360"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1047
+#: firewall/templates/firewall/imunifyAV.html:13
+#: firewall/templates/firewall/imunifyAV.html:24
+msgid "ImunifyAV"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1055
+#: baseTemplate/templates/baseTemplate/index.html:1057
+msgid "Mail Settings"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1064
+#: emailPremium/templates/emailPremium/EmailDebugger.html:14
+msgid "Email Debugger"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1067
+#: emailPremium/templates/emailPremium/mailQueue.html:14
+#: emailPremium/templates/emailPremium/mailQueue.html:27
+msgid "Mail Queue"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1076
+msgid "SpamAssassin Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1076
+#: emailPremium/templates/emailPremium/SpamAssassin.html:25
+#: firewall/templates/firewall/spamassassin.html:20
+msgid "SpamAssassin"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1079
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:14
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:22
+#: emailMarketing/templates/emailMarketing/website.html:978
+#: websiteFunctions/templates/websiteFunctions/website.html:933
+msgid "Email Marketing"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1082
+#: emailPremium/templates/emailPremium/MailScanner.html:13
+#: emailPremium/templates/emailPremium/MailScanner.html:20
+msgid "MailScanner"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1085
+#: emailPremium/templates/emailPremium/Rspamd.html:22
+msgid "Rspamd"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1085
+msgid "RSPAMD"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1093
+#: baseTemplate/templates/baseTemplate/index.html:1095
+msgid "Manage Services"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1101
+#: manageServices/templates/manageServices/applications.html:13
+msgid "Manage Applications"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1101
+#: manageServices/templates/manageServices/applications.html:19
+msgid "Applications"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1104
+#: serverStatus/templates/serverStatus/index.html:62
+#: serverStatus/templates/serverStatus/index.html:65
+msgid "Services Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1107
+#: manageServices/templates/manageServices/managePowerDNS.html:25
+msgid "Manage PowerDNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1110
+#: manageServices/templates/manageServices/managePostfix.html:22
+msgid "Manage Postfix"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1113
+msgid "Manage FTP"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1122
+#: baseTemplate/templates/baseTemplate/index.html:1124
+#: pluginHolder/templates/pluginHolder/plugins.html:14
+#: pluginHolder/templates/pluginHolder/plugins.html:21
+msgid "Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1130
+msgid "Installed Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1130
+msgid "Installed"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:3
+msgid "Configure Hostname and other default Settings - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:13
+#: baseTemplate/templates/baseTemplate/onboarding.html:23
+msgid "Initial Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:16
+msgid "Learn More"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:17
+msgid "Configure Hostname and other default Settings for CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:45
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:40
+msgid "Hostname"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:53
+#: emailMarketing/templates/emailMarketing/website.html:354
+#: packages/templates/packages/createPackage.html:84
+#: packages/templates/packages/modifyPackage.html:87
+#: userManagment/templates/userManagment/modifyUser.html:84
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:150
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:200
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:167
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:60
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:75
+#: websiteFunctions/templates/websiteFunctions/website.html:330
+msgid "Additional Features"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:68
+msgid "Start Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:78
+msgid "Restart CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:3
+msgid "Version Management - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:37
+msgid "Here you can manage versions and check for updates to CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:41
+msgid "Note: Latest commit does not match, please upgrade CyberPanel."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:52
+msgid "Select Branch:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:57
+msgid "Upgrade CyberPanel to selected branch (Beta)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:59
+msgid "Refresh page"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:66
+msgid "Current Version:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:72
+msgid "Build:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:76
+msgid "Current Commit:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:82
+msgid "Latest Version:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:88
+msgid "Latest Build:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:92
+msgid "Latest Commit:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:100
+msgid "Upgrade Progress Log:"
+msgstr ""
+
+#: containerization/templates/containerization/listWebsites.html:3
+msgid "Limits - CyberPanel"
+msgstr ""
+
+#: containerization/templates/containerization/listWebsites.html:15
+msgid "Launch and set limits for the websites."
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:14
+msgid "CyberPanel Ent is required for Containerization."
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:22
+msgid "Containerization is only available on CyberPanel Ent. "
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:34
+msgid "Install Packages"
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:39
+msgid ""
+"Required packages are not installed on this server. Please proceed to "
+"installation."
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:3
+msgid " limits - CyberPanel"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:14
+msgid "Limits/Usage"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:16
+msgid "Set limits and view usage for "
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:25
+msgid ""
+"Limits are not being inforced, click Edit Limits to inforace the limits."
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:33
+msgid "Limit"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:34
+#: dns/templates/dns/addDeleteDNSRecords.html:370
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:497
+msgid "Value"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:40
+#: containerization/templates/containerization/websiteContainerLimit.html:77
+msgid "CPU Percentage"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:44
+#: serverStatus/templates/serverStatus/topProcesses.html:131
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:129
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:243
+msgid "Memory"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:48
+#: containerization/templates/containerization/websiteContainerLimit.html:91
+msgid "I/O"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:56
+#: containerization/templates/containerization/websiteContainerLimit.html:107
+msgid "Network Speed"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:84
+msgid "Memory Limit"
+msgstr ""
+
+#: databases/templates/databases/OptimizeMySQL.html:3
+#: databases/templates/databases/mysqlmanager.html:3
+msgid "Mysql Manager - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/OptimizeMySQL.html:12
+msgid "Optimize MySQL"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:3
+#: databases/templates/databases/listDataBases.html:3
+msgid "List Databases - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:13
+msgid "Upgrade Mysql"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:16
+msgid "On this page you can update mysql."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:21
+#: databases/templates/databases/Updatemysql.html:43
+msgid "Update Mysql"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:30
+msgid "Mysql version"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:54
+#: dns/templates/dns/resetdnsconf.html:30
+#: emailPremium/templates/emailPremium/MailScanner.html:44
+#: emailPremium/templates/emailPremium/Rspamd.html:123
+#: emailPremium/templates/emailPremium/SpamAssassin.html:49
+#: firewall/templates/firewall/csf.html:43
+#: firewall/templates/firewall/modSecurity.html:47
+#: firewall/templates/firewall/modSecurity.html:244
+#: firewall/templates/firewall/spamassassin.html:43
+#: ftp/templates/ftp/ResetFTPconf.html:30
+msgid "Failed to start installation, Error message: "
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:59
+#: dns/templates/dns/resetdnsconf.html:35
+#: emailPremium/templates/emailPremium/MailScanner.html:49
+#: emailPremium/templates/emailPremium/Rspamd.html:66
+#: emailPremium/templates/emailPremium/Rspamd.html:128
+#: emailPremium/templates/emailPremium/Rspamd.html:253
+#: emailPremium/templates/emailPremium/Rspamd.html:330
+#: emailPremium/templates/emailPremium/Rspamd.html:390
+#: emailPremium/templates/emailPremium/Rspamd.html:448
+#: emailPremium/templates/emailPremium/SpamAssassin.html:54
+#: emailPremium/templates/emailPremium/SpamAssassin.html:146
+#: emailPremium/templates/emailPremium/policyServer.html:60
+#: firewall/templates/firewall/csf.html:47
+#: firewall/templates/firewall/litespeed_ent_conf.html:53
+#: firewall/templates/firewall/modSecurity.html:53
+#: firewall/templates/firewall/modSecurity.html:183
+#: firewall/templates/firewall/modSecurity.html:249
+#: firewall/templates/firewall/modSecurity.html:371
+#: firewall/templates/firewall/modSecurityRules.html:53
+#: firewall/templates/firewall/modSecurityRulesPacks.html:88
+#: firewall/templates/firewall/secureSSH.html:92
+#: firewall/templates/firewall/secureSSH.html:176
+#: firewall/templates/firewall/spamassassin.html:47
+#: firewall/templates/firewall/spamassassin.html:177
+#: ftp/templates/ftp/ResetFTPconf.html:35
+#: mailServer/templates/mailServer/dkimManager.html:44
+#: managePHP/templates/managePHP/editPHPConfig.html:159
+#: managePHP/templates/managePHP/editPHPConfig.html:227
+#: managePHP/templates/managePHP/installExtensions.html:124
+#: manageServices/templates/manageServices/managePostfix.html:59
+#: manageServices/templates/manageServices/managePowerDNS.html:130
+#: manageServices/templates/manageServices/managePureFtpd.html:59
+msgid "Could not connect. Please refresh this page."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:63
+#: dns/templates/dns/resetdnsconf.html:39
+#: emailPremium/templates/emailPremium/MailScanner.html:53
+#: emailPremium/templates/emailPremium/Rspamd.html:70
+#: emailPremium/templates/emailPremium/Rspamd.html:132
+#: emailPremium/templates/emailPremium/SpamAssassin.html:58
+#: firewall/templates/firewall/csf.html:51
+#: firewall/templates/firewall/modSecurity.html:57
+#: firewall/templates/firewall/modSecurity.html:253
+#: firewall/templates/firewall/spamassassin.html:51
+#: ftp/templates/ftp/ResetFTPconf.html:39
+msgid "Installation failed."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:67
+msgid "Upgrading Done successfully."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:79
+#: firewall/templates/firewall/csf.html:66
+msgid "In winter we must protect each other.."
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:3
+msgid "Create New Database - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:13
+msgid "Create a new database on this page."
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:39
+#: databases/templates/databases/listDataBases.html:108
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:649
+msgid "Database Name"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:47
+#: firewall/templates/firewall/secureSSH.html:120
+#: ftp/templates/ftp/createFTPAccount.html:57
+#: ftp/templates/ftp/listFTPAccounts.html:123
+#: mailServer/templates/mailServer/createEmailAccount.html:61
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:64
+msgid "User Name"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:60
+#: databases/templates/databases/listDataBases.html:76
+#: ftp/templates/ftp/createFTPAccount.html:73
+#: ftp/templates/ftp/listFTPAccounts.html:92
+#: mailServer/templates/mailServer/changeEmailPassword.html:74
+#: mailServer/templates/mailServer/createEmailAccount.html:76
+#: userManagment/templates/userManagment/createUser.html:90
+#: userManagment/templates/userManagment/modifyUser.html:68
+msgid "Generate"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:65
+#: databases/templates/databases/listDataBases.html:80
+#: ftp/templates/ftp/createFTPAccount.html:78
+#: ftp/templates/ftp/listFTPAccounts.html:96
+#: mailServer/templates/mailServer/changeEmailPassword.html:79
+#: mailServer/templates/mailServer/createEmailAccount.html:81
+#: userManagment/templates/userManagment/createUser.html:95
+#: userManagment/templates/userManagment/modifyUser.html:73
+msgid "Generated Password"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:70
+#: databases/templates/databases/listDataBases.html:87
+#: ftp/templates/ftp/createFTPAccount.html:85
+#: ftp/templates/ftp/listFTPAccounts.html:103
+#: mailServer/templates/mailServer/changeEmailPassword.html:86
+#: mailServer/templates/mailServer/createEmailAccount.html:88
+#: userManagment/templates/userManagment/createUser.html:101
+#: userManagment/templates/userManagment/modifyUser.html:79
+msgid "Use"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:3
+msgid "Delete Database - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:13
+msgid "Delete an existing database on this page."
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:38
+msgid "Select Database"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:64
+msgid "Database deleted successfully."
+msgstr ""
+
+#: databases/templates/databases/index.html:3
+msgid "Database Functions - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/index.html:13
+msgid "Create, edit and delete databases on this page."
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:16
+msgid "List Databases or change their passwords."
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:28
+#: dns/templates/dns/addDeleteDNSRecords.html:47
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:110
+#: ftp/templates/ftp/deleteFTPAccount.html:39
+#: ftp/templates/ftp/listFTPAccounts.html:42
+#: mailServer/templates/mailServer/listEmails.html:45
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:66
+#: tuning/templates/tuning/phpTuning.html:30
+msgid "Select Domain"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:46
+#: dns/templates/dns/addDeleteDNSRecords.html:422
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:541
+#: ftp/templates/ftp/listFTPAccounts.html:61
+msgid "Records successfully fetched for"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:51
+msgid "Password changed for: "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:55
+msgid "Cannot change password for "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:61
+#: firewall/templates/firewall/firewall.html:161
+#: ftp/templates/ftp/listFTPAccounts.html:76
+msgid "Could Not Connect to server. Please refresh this page"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:109
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:659
+msgid "Database User"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:111
+#: databases/templates/databases/listDataBases.html:135
+msgid "Remote Access"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:121
+#: ftp/templates/ftp/listFTPAccounts.html:139
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:45
+msgid "Change"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:126
+#: emailPremium/templates/emailPremium/emailLimits.html:164
+#: emailPremium/templates/emailPremium/listDomains.html:67
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:71
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:58
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:207
+msgid "Manage"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:146
+msgid "Allow Remote Access on following IP"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:3
+msgid "PHPMYAdmin - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:14
+msgid "Access your databases via PHPMYAdmin"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:24
+msgid ""
+"Auto-login for PHPMYAdmin is now supported. Click the button below to "
+"generate auto-access for PHPMYAdmin"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:3
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:3
+msgid "Add/Modify DNS Records - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:13
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:13
+msgid "Add/Modify DNS Zone"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:16
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:16
+#: dns/templates/dns/configureDefaultNameServers.html:12
+#: dns/templates/dns/createDNSZone.html:12
+#: dns/templates/dns/createNameServer.html:12
+#: dns/templates/dns/deleteDNSZone.html:12
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:16
+msgid "DNS Docs"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:17
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:17
+msgid ""
+"On this page you can add/modify dns records for domains whose dns zone is "
+"already created."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:22
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:22
+msgid "Add Records"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:30
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:30
+#: dns/templates/dns/configureDefaultNameServers.html:24
+#: dns/templates/dns/createDNSZone.html:24
+#: dns/templates/dns/createNameServer.html:24
+#: dns/templates/dns/deleteDNSZone.html:25
+msgid "PowerDNS is disabled."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:33
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:33
+#: dns/templates/dns/configureDefaultNameServers.html:26
+#: dns/templates/dns/createDNSZone.html:26
+#: dns/templates/dns/createNameServer.html:26
+#: dns/templates/dns/deleteDNSZone.html:27
+#: ftp/templates/ftp/createFTPAccount.html:29
+#: ftp/templates/ftp/deleteFTPAccount.html:27
+#: ftp/templates/ftp/listFTPAccounts.html:29
+#: mailServer/templates/mailServer/EmailLimits.html:33
+#: mailServer/templates/mailServer/changeEmailPassword.html:30
+#: mailServer/templates/mailServer/createEmailAccount.html:32
+#: mailServer/templates/mailServer/deleteEmailAccount.html:30
+#: mailServer/templates/mailServer/emailForwarding.html:28
+#: mailServer/templates/mailServer/listEmails.html:32
+msgid "Enable Now"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:91
+#: dns/templates/dns/addDeleteDNSRecords.html:117
+#: dns/templates/dns/addDeleteDNSRecords.html:144
+#: dns/templates/dns/addDeleteDNSRecords.html:170
+#: dns/templates/dns/addDeleteDNSRecords.html:202
+#: dns/templates/dns/addDeleteDNSRecords.html:229
+#: dns/templates/dns/addDeleteDNSRecords.html:256
+#: dns/templates/dns/addDeleteDNSRecords.html:283
+#: dns/templates/dns/addDeleteDNSRecords.html:310
+#: dns/templates/dns/addDeleteDNSRecords.html:340
+#: dns/templates/dns/addDeleteDNSRecords.html:369
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:174
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:205
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:237
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:267
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:304
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:335
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:366
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:397
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:428
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:463
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:496
+msgid "TTL"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:122
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:211
+msgid "IPV6 Address"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:149
+#: dns/templates/dns/addDeleteDNSRecords.html:180
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:243
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:279
+#: dns/templates/dns/createDNSZone.html:38
+#: dns/templates/dns/createNameServer.html:36
+#: emailMarketing/templates/emailMarketing/website.html:318
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:132
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:140
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:72
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:432
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:469
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:169
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:137
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:46
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:158
+#: websiteFunctions/templates/websiteFunctions/website.html:295
+msgid "Domain Name"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:175
+#: dns/templates/dns/addDeleteDNSRecords.html:371
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:273
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:498
+msgid "Priority"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:208
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:311
+msgid "Policy"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:235
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:342
+msgid "Text"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:262
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:373
+msgid "SOA Value"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:289
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:404
+msgid "Name server"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:315
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:434
+msgid "Prioirty"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:321
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:441
+msgid "Content"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:414
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:531
+msgid "Cannot fetch records. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:418
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:536
+msgid "Cannot add record. Error message: "
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:427
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:547
+msgid "Record Successfully Deleted"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:431
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:552
+msgid "Cannot delete record. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:435
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:557
+msgid "Record Successfully Added."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:47
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:581
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:112
+msgid "CloudFlare Email"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:55
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:591
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:120
+msgid "API Token"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:63
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:601
+msgid "Sync local Records to CloudFlare"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:77
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:615
+#: dns/templates/dns/configureDefaultNameServers.html:68
+#: emailMarketing/templates/emailMarketing/configureVerify.html:84
+#: emailMarketing/templates/emailMarketing/website.html:656
+#: emailMarketing/templates/emailMarketing/website.html:716
+#: firewall/templates/firewall/secureSSH.html:162
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:132
+#: serverLogs/templates/serverLogs/serverMail.html:75
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:137
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:372
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:432
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:106
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55
+#: websiteFunctions/templates/websiteFunctions/website.html:626
+#: websiteFunctions/templates/websiteFunctions/website.html:676
+msgid "Save"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:90
+msgid "Manage DNS"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:97
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:53
+msgid "API Settings"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:122
+msgid "Sync Local Records to CloudFlare"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:499
+msgid "Proxy"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:3
+msgid "Configure Default Nameserver - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:12
+msgid "Configure Default Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:13
+#: dns/templates/dns/createNameServer.html:13
+msgid ""
+"You can use this page to setup nameservers using which people on the "
+"internet can resolve websites hosted on this server."
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:18
+#: dns/templates/dns/createDNSZone.html:18
+#: dns/templates/dns/createNameServer.html:18
+#: mailServer/templates/mailServer/listEmails.html:78
+#: mailServer/templates/mailServer/listEmails.html:105
+#: mailServer/templates/mailServer/listEmails.html:132
+#: userManagment/templates/userManagment/modifyUser.html:19
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:107
+msgid "Details"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:36
+#: dns/templates/dns/createNameServer.html:46
+msgid "First Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:45
+msgid "Second Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:52
+msgid "Third Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:59
+msgid "Forth Nameserver"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:3
+msgid "Create DNS Zone - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:13
+msgid ""
+"This page is used to create DNS zone, to edit dns zone you can visit Modify "
+"DNS Zone Page."
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:61
+msgid "Cannot create DNS Zone. Error message:"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:65
+msgid "DNS Zone for domain:"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:3
+msgid "Create Nameserver - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:62
+msgid "Second Nameserver (Backup)"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:89
+msgid "Nameserver cannot be created. Error message:"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:93
+msgid "The following nameservers were successfully created:"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:3
+msgid "Delete DNS Zone - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:12
+#: dns/templates/dns/deleteDNSZone.html:18
+msgid "Delete DNS Zone"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:13
+msgid ""
+"This page can be used to delete DNS Zone. Deleting the DNS zone will remove "
+"all its related records as well."
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:37
+msgid "Select Zone"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:69
+msgid "Cannot delete zone. Error message: "
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:73
+msgid "Zone for domain:"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:73
+msgid "is successfully erased."
+msgstr ""
+
+#: dns/templates/dns/index.html:3
+msgid "DNS Functions - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/index.html:12
+msgid "DNS Functions"
+msgstr ""
+
+#: dns/templates/dns/index.html:13
+msgid "Create, edit and delete DNS zones on this page."
+msgstr ""
+
+#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108
+msgid "Add Delete Records"
+msgstr ""
+
+#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110
+msgid "Add Delete/Records"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:3
+msgid "Reset DNS Configurations - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:12
+msgid "Reset your DNS Configurations here."
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:20
+#: ftp/templates/ftp/ResetFTPconf.html:20
+msgid "Reset Configuration"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:43
+#: ftp/templates/ftp/ResetFTPconf.html:43
+msgid "successfully Completed Reset Process."
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:54
+#: ftp/templates/ftp/ResetFTPconf.html:54
+msgid "Reseting...."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:3
+#: dockerManager/templates/dockerManager/manageImages.html:3
+msgid "Docker Manage Images - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:14
+#: dockerManager/templates/dockerManager/index.html:39
+msgid "Create new container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:15
+msgid "Search new images and manage existing ones"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:22
+msgid "Locally Available Images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:48
+msgid "Create"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:3
+msgid "Docker Container Management - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:13
+msgid "Docker Container Management"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:41
+msgid "New Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:3
+msgid "Install Docker - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:12
+#: dockerManager/templates/dockerManager/install.html:18
+msgid "Install Docker"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:26
+msgid ""
+"Unable to connect to docker daemon, please try restarting docker from "
+"service page"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:28
+msgid "You do not have sufficient permissions to access this page"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:32
+msgid ""
+"Docker is currently not installed on this server. To manage containers, you "
+"must first install it."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:53
+msgid ""
+"You do not have permissions to install Docker. Please contact your system "
+"administrator"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:3
+msgid "Containers List - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:14
+msgid "List Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:17
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:24
+msgid "Manage containers on server"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:23
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:20
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:30
+msgid "Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:101
+msgid "Unlisted Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:102
+msgid ""
+"Containers listed below were either not created through panel or were not "
+"saved to database properly"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:148
+#: dockerManager/templates/dockerManager/runContainer.html:52
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:120
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:173
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:122
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:125
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:168
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56
+msgid "Select Owner"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:17
+msgid "On this page you can manage docker images."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:65
+#: dockerManager/templates/dockerManager/manageImages.html:66
+msgid "Images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:67
+msgid "Delete unused images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:95
+msgid "Official image"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:104
+msgid "Pull"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:3
+msgid "Run new container - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:12
+msgid "Run Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:13
+msgid "Modify parameters for your new container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:20
+msgid "Container Details"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:36
+#: dockerManager/templates/dockerManager/viewContainer.html:70
+msgid "Image"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:44
+msgid "Tag"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:64
+#: dockerManager/templates/dockerManager/viewContainer.html:206
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:406
+msgid "Memory limit"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:104
+#: dockerManager/templates/dockerManager/viewContainer.html:250
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:451
+msgid "ENV"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:125
+#: dockerManager/templates/dockerManager/viewContainer.html:283
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:486
+msgid "Map Volumes"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:153
+#: dockerManager/templates/dockerManager/viewContainer.html:310
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:517
+msgid "Add field"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:161
+msgid "Create Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:180
+msgid "Container succesfully created."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:3
+msgid "Container Home - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:14
+msgid "Manage Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:15
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:203
+msgid "Currently managing: "
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:24
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:221
+msgid "Container Information"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:37
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:234
+msgid "Memory Usage"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:68
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:210
+msgid "Container ID"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:77
+msgid "Ports"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:79
+msgid "to"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:227
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:428
+msgid "Confirmation"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:3
+msgid "Compose Email Message - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:13
+#: emailMarketing/templates/emailMarketing/composeMessages.html:19
+#: emailMarketing/templates/emailMarketing/configureVerify.html:19
+msgid "Compose Email Message"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:14
+msgid "On this page you can compose email message to be sent out later."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:29
+msgid "Template Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:36
+msgid "Email Subject"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:43
+msgid "From Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:50
+msgid "From Email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:57
+msgid "Reply Email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:73
+msgid "Save Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:3
+msgid "Configure Email Verification - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:13
+msgid "Configure Email Verification"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:14
+msgid ""
+"On this page you can configure parameters regarding how email verification "
+"is performed for "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:30
+msgid "Configure Delay"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:40
+msgid "Delay After"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:42
+msgid "Start delay after this many verifications are done."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:47
+msgid "Delay Time"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:49
+msgid "Set the number of seconds to wait."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:54
+msgid "IP Rotation"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:65
+msgid "IPv4"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:67
+msgid "Enter IPv4(s) to be used separate with commas."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:72
+msgid "IPv6"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:74
+msgid "Enter IPv6(s) to be used separate with commas."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:3
+msgid "Create Email List - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:13
+#: emailMarketing/templates/emailMarketing/createEmailList.html:19
+msgid "Create Email List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:14
+msgid "Create email list, to send out news letters and marketing emails."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:26
+msgid "List Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:42
+msgid "Create List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:3
+msgid "Email Marketing - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:15
+msgid "Select users to Enable/Disable Email Marketing feature!"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:29
+#: emailPremium/templates/emailPremium/listDomains.html:29
+msgid "Email Policy Server is not enabled "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:32
+#: emailPremium/templates/emailPremium/listDomains.html:33
+msgid "Enable Now."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:54
+msgid "Email Marketing Enabled."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:55
+#: emailPremium/templates/emailPremium/emailLimits.html:53
+#: emailPremium/templates/emailPremium/emailLimits.html:159
+#: emailPremium/templates/emailPremium/emailPage.html:55
+#: emailPremium/templates/emailPremium/emailPage.html:61
+#: emailPremium/templates/emailPremium/listDomains.html:62
+#: tuning/templates/tuning/phpTuning.html:94
+#: tuning/templates/tuning/phpTuning.html:235
+msgid "Disable"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:56
+msgid "Email Marketing Disabled."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:57
+#: emailPremium/templates/emailPremium/emailLimits.html:55
+#: emailPremium/templates/emailPremium/emailLimits.html:161
+#: emailPremium/templates/emailPremium/emailPage.html:57
+#: emailPremium/templates/emailPremium/emailPage.html:63
+#: emailPremium/templates/emailPremium/listDomains.html:64
+#: tuning/templates/tuning/phpTuning.html:93
+#: tuning/templates/tuning/phpTuning.html:234
+msgid "Enable"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:3
+msgid "Manage Email Lists - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:13
+#: emailMarketing/templates/emailMarketing/manageLists.html:19
+msgid "Manage Email Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:14
+msgid ""
+"On this page you can manage your email lists (Delete, Verify, Add More "
+"Emails)."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:29
+#: emailMarketing/templates/emailMarketing/sendEmails.html:71
+msgid "Select List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:53
+msgid "You are doing to delete this list.."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:73
+msgid "Verify"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:77
+msgid "Configure Verification"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:81
+msgid "Verfications Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:91
+msgid "Verification Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:103
+#: emailMarketing/templates/emailMarketing/sendEmails.html:154
+msgid "Total Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:104
+msgid "Verified"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:105
+msgid "Not-Verified"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:186
+msgid "Add More Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:206
+msgid "Load Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:267
+msgid "email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:268
+msgid "Verification Status"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:269
+msgid "Date Created"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3
+msgid "Manage SMTP Hosts - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19
+#: serverLogs/templates/serverLogs/serverMail.html:23
+msgid "Manage SMTP Hosts"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14
+msgid ""
+"On this page you can manage STMP Host. (SMTP hosts are used to send emails)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29
+#: emailMarketing/templates/emailMarketing/sendEmails.html:153
+#: serverLogs/templates/serverLogs/serverMail.html:44
+msgid "SMTP Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59
+msgid "Save Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75
+#: userManagment/templates/userManagment/listUsers.html:38
+msgid "Owner"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91
+msgid "Verify Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:3
+msgid "Send Emails - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:13
+#: emailMarketing/templates/emailMarketing/sendEmails.html:19
+#: emailMarketing/templates/emailMarketing/sendEmails.html:66
+#: emailMarketing/templates/emailMarketing/website.html:1030
+#: emailMarketing/templates/emailMarketing/website.html:1033
+#: emailMarketing/templates/emailMarketing/website.html:1034
+#: websiteFunctions/templates/websiteFunctions/website.html:980
+#: websiteFunctions/templates/websiteFunctions/website.html:984
+#: websiteFunctions/templates/websiteFunctions/website.html:985
+msgid "Send Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:14
+msgid ""
+"On this page you can send emails to the lists you created using SMTP Hosts."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:28
+#: websiteFunctions/templates/websiteFunctions/website.html:699
+msgid "Select Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:41
+msgid "Delete This Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:48
+msgid "You are doing to delete this template.."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:63
+msgid "Preview Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:82
+msgid "Select STMP Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:98
+msgid "Send to un-verified email addresses."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:107
+msgid "Include unsubscribe link."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:116
+msgid "Start Job"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:155
+msgid "Sent"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:156
+msgid "Failed"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:16
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:17
+#: websiteFunctions/templates/websiteFunctions/website.html:16
+msgid "Preview"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:17
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:18
+#: websiteFunctions/templates/websiteFunctions/website.html:17
+msgid "All functions related to a particular site."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:28
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:28
+#: websiteFunctions/templates/websiteFunctions/website.html:28
+msgid "Resource Usage"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:39
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:49
+#: websiteFunctions/templates/websiteFunctions/website.html:48
+msgid "Resource"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:41
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:51
+#: websiteFunctions/templates/websiteFunctions/website.html:50
+msgid "Allowed"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:63
+#: emailMarketing/templates/emailMarketing/website.html:89
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:73
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:107
+#: websiteFunctions/templates/websiteFunctions/website.html:70
+#: websiteFunctions/templates/websiteFunctions/website.html:100
+msgid "Bandwidth Usage"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:124
+#: emailMarketing/templates/emailMarketing/website.html:127
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:138
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:142
+#: websiteFunctions/templates/websiteFunctions/website.html:127
+#: websiteFunctions/templates/websiteFunctions/website.html:131
+msgid "Load Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:128
+#: serverLogs/templates/serverLogs/accessLogs.html:16
+#: serverLogs/templates/serverLogs/index.html:37
+#: serverLogs/templates/serverLogs/index.html:40
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:143
+#: websiteFunctions/templates/websiteFunctions/website.html:132
+msgid "Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:135
+#: emailMarketing/templates/emailMarketing/website.html:138
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:148
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:152
+#: websiteFunctions/templates/websiteFunctions/website.html:136
+#: websiteFunctions/templates/websiteFunctions/website.html:140
+msgid "Load Error Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:150
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:162
+#: websiteFunctions/templates/websiteFunctions/website.html:148
+msgid "Logs Fetched"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:155
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:167
+#: websiteFunctions/templates/websiteFunctions/website.html:151
+msgid ""
+"Could not fetch logs, see the logs file through command line. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:179
+#: emailMarketing/templates/emailMarketing/website.html:221
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:191
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:234
+#: websiteFunctions/templates/websiteFunctions/website.html:169
+#: websiteFunctions/templates/websiteFunctions/website.html:214
+msgid "Next"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:181
+#: emailMarketing/templates/emailMarketing/website.html:223
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:193
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:236
+#: websiteFunctions/templates/websiteFunctions/website.html:171
+#: websiteFunctions/templates/websiteFunctions/website.html:216
+msgid "Previous"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:254
+#: emailPremium/templates/emailPremium/listDomains.html:22
+#: packages/templates/packages/createPackage.html:36
+#: packages/templates/packages/listPackages.html:93
+#: packages/templates/packages/modifyPackage.html:40
+#: websiteFunctions/templates/websiteFunctions/website.html:240
+msgid "Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:262
+#: emailMarketing/templates/emailMarketing/website.html:265
+#: emailMarketing/templates/emailMarketing/website.html:266
+#: emailMarketing/templates/emailMarketing/website.html:267
+#: websiteFunctions/templates/websiteFunctions/website.html:245
+#: websiteFunctions/templates/websiteFunctions/website.html:248
+#: websiteFunctions/templates/websiteFunctions/website.html:249
+#: websiteFunctions/templates/websiteFunctions/website.html:250
+msgid "Add Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:274
+#: emailMarketing/templates/emailMarketing/website.html:275
+#: emailMarketing/templates/emailMarketing/website.html:278
+#: emailMarketing/templates/emailMarketing/website.html:279
+#: emailMarketing/templates/emailMarketing/website.html:280
+#: emailMarketing/templates/emailMarketing/website.html:300
+#: emailMarketing/templates/emailMarketing/website.html:303
+#: emailPremium/templates/emailPremium/listDomains.html:14
+#: websiteFunctions/templates/websiteFunctions/website.html:255
+#: websiteFunctions/templates/websiteFunctions/website.html:256
+#: websiteFunctions/templates/websiteFunctions/website.html:259
+#: websiteFunctions/templates/websiteFunctions/website.html:260
+#: websiteFunctions/templates/websiteFunctions/website.html:261
+msgid "List Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:286
+#: emailMarketing/templates/emailMarketing/website.html:287
+#: emailMarketing/templates/emailMarketing/website.html:290
+#: emailMarketing/templates/emailMarketing/website.html:291
+#: emailMarketing/templates/emailMarketing/website.html:292
+#: websiteFunctions/templates/websiteFunctions/website.html:266
+#: websiteFunctions/templates/websiteFunctions/website.html:267
+#: websiteFunctions/templates/websiteFunctions/website.html:270
+#: websiteFunctions/templates/websiteFunctions/website.html:271
+#: websiteFunctions/templates/websiteFunctions/website.html:272
+msgid "Domain Alias"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:299
+#: emailMarketing/templates/emailMarketing/website.html:304
+#: websiteFunctions/templates/websiteFunctions/website.html:277
+#: websiteFunctions/templates/websiteFunctions/website.html:278
+#: websiteFunctions/templates/websiteFunctions/website.html:281
+#: websiteFunctions/templates/websiteFunctions/website.html:282
+msgid "Add new Cron Job"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:305
+#: websiteFunctions/templates/websiteFunctions/website.html:283
+msgid "Cron Jobs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:310
+msgid "This path is relative to: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:310
+msgid "Leave empty to set default."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:336
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:138
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:146
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:274
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:292
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:454
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:486
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:182
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:143
+#: websiteFunctions/templates/websiteFunctions/website.html:314
+msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:341
+#: emailMarketing/templates/emailMarketing/website.html:794
+#: managePHP/templates/managePHP/editPHPConfig.html:49
+#: managePHP/templates/managePHP/editPHPConfig.html:179
+#: managePHP/templates/managePHP/installExtensions.html:29
+#: tuning/templates/tuning/phpTuning.html:166
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:188
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:506
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:204
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74
+#: websiteFunctions/templates/websiteFunctions/website.html:318
+#: websiteFunctions/templates/websiteFunctions/website.html:761
+msgid "Select PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:388
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:251
+#: websiteFunctions/templates/websiteFunctions/website.html:363
+msgid "Create Domain"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:415
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:232
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:387
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:523
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:278
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:252
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:102
+#: websiteFunctions/templates/websiteFunctions/website.html:389
+msgid "Website succesfully created."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:449
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:136
+#: websiteFunctions/templates/websiteFunctions/website.html:423
+msgid "PHP Version Changed to:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:453
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:140
+#: websiteFunctions/templates/websiteFunctions/website.html:427
+msgid "Deleted:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:457
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:144
+#: websiteFunctions/templates/websiteFunctions/website.html:431
+msgid "SSL Issued:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:461
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:148
+#: websiteFunctions/templates/websiteFunctions/website.html:435
+msgid "Changes applied successfully."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:528
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:199
+#: websiteFunctions/templates/websiteFunctions/website.html:503
+msgid "Issue"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:558
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:266
+#: websiteFunctions/templates/websiteFunctions/website.html:531
+msgid "Configurations"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:568
+#: emailMarketing/templates/emailMarketing/website.html:572
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:274
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:278
+#: websiteFunctions/templates/websiteFunctions/website.html:548
+#: websiteFunctions/templates/websiteFunctions/website.html:552
+msgid "Edit vHost Main Configurations"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:573
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:279
+#: websiteFunctions/templates/websiteFunctions/website.html:553
+msgid "vHost Conf"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:582
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:298
+#: websiteFunctions/templates/websiteFunctions/website.html:559
+msgid "Add Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:586
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:302
+#: websiteFunctions/templates/websiteFunctions/website.html:563
+msgid "Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:587
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:303
+#: websiteFunctions/templates/websiteFunctions/website.html:564
+msgid "Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:595
+#: emailMarketing/templates/emailMarketing/website.html:598
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:310
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:314
+#: websiteFunctions/templates/websiteFunctions/website.html:569
+#: websiteFunctions/templates/websiteFunctions/website.html:572
+msgid "Add Your Own SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:599
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:315
+#: websiteFunctions/templates/websiteFunctions/website.html:573
+msgid "Add SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:607
+#: emailMarketing/templates/emailMarketing/website.html:610
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:322
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:326
+#: websiteFunctions/templates/websiteFunctions/website.html:578
+#: websiteFunctions/templates/websiteFunctions/website.html:581
+msgid "Change PHP Version"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:611
+#: emailMarketing/templates/emailMarketing/website.html:815
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:327
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:527
+#: websiteFunctions/templates/websiteFunctions/website.html:582
+#: websiteFunctions/templates/websiteFunctions/website.html:782
+msgid "Change PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:623
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:339
+#: websiteFunctions/templates/websiteFunctions/website.html:593
+msgid "SSL Saved"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:628
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:344
+#: websiteFunctions/templates/websiteFunctions/website.html:598
+msgid "Could not save SSL. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:678
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:394
+#: websiteFunctions/templates/websiteFunctions/website.html:641
+msgid "Current configuration in the file fetched."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:683
+#: emailMarketing/templates/emailMarketing/website.html:697
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:399
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:413
+#: websiteFunctions/templates/websiteFunctions/website.html:645
+#: websiteFunctions/templates/websiteFunctions/website.html:658
+msgid "Could not fetch current configuration. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:693
+#: emailMarketing/templates/emailMarketing/website.html:753
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:409
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:465
+#: websiteFunctions/templates/websiteFunctions/website.html:654
+#: websiteFunctions/templates/websiteFunctions/website.html:723
+msgid "Configurations saved."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:734
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:450
+msgid "Current rewrite rules in the file fetched."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:743
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:455
+#: websiteFunctions/templates/websiteFunctions/website.html:714
+msgid "Could not fetch current rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:757
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:469
+#: websiteFunctions/templates/websiteFunctions/website.html:727
+msgid "Could not save rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:776
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:488
+#: websiteFunctions/templates/websiteFunctions/website.html:745
+msgid "Save Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:825
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:537
+#: websiteFunctions/templates/websiteFunctions/website.html:792
+msgid "Failed to change PHP version. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:830
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:542
+#: websiteFunctions/templates/websiteFunctions/website.html:797
+msgid "PHP successfully changed for: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:855
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:567
+#: websiteFunctions/templates/websiteFunctions/website.html:819
+msgid "Files"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:863
+#: emailMarketing/templates/emailMarketing/website.html:866
+#: emailMarketing/templates/emailMarketing/website.html:867
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:575
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:578
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:579
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:53
+#: websiteFunctions/templates/websiteFunctions/website.html:824
+#: websiteFunctions/templates/websiteFunctions/website.html:827
+#: websiteFunctions/templates/websiteFunctions/website.html:828
+msgid "File Manager"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:874
+#: emailMarketing/templates/emailMarketing/website.html:877
+#: emailMarketing/templates/emailMarketing/website.html:915
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:586
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:589
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:630
+#: websiteFunctions/templates/websiteFunctions/website.html:833
+#: websiteFunctions/templates/websiteFunctions/website.html:836
+#: websiteFunctions/templates/websiteFunctions/website.html:869
+msgid "open_basedir Protection"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:878
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:590
+#: websiteFunctions/templates/websiteFunctions/website.html:837
+msgid "open_basedir"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:890
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:603
+#: websiteFunctions/templates/websiteFunctions/website.html:849
+msgid "Create FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:902
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:615
+#: websiteFunctions/templates/websiteFunctions/website.html:858
+msgid "Delete FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:939
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:654
+#: websiteFunctions/templates/websiteFunctions/website.html:892
+msgid "Apply Changes"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:951
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:666
+#: websiteFunctions/templates/websiteFunctions/website.html:904
+msgid "Changes successfully saved."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:986
+#: emailMarketing/templates/emailMarketing/website.html:989
+#: emailMarketing/templates/emailMarketing/website.html:990
+#: websiteFunctions/templates/websiteFunctions/website.html:939
+#: websiteFunctions/templates/websiteFunctions/website.html:943
+#: websiteFunctions/templates/websiteFunctions/website.html:944
+msgid "Create Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:997
+#: emailMarketing/templates/emailMarketing/website.html:1000
+#: emailMarketing/templates/emailMarketing/website.html:1001
+#: websiteFunctions/templates/websiteFunctions/website.html:949
+#: websiteFunctions/templates/websiteFunctions/website.html:953
+#: websiteFunctions/templates/websiteFunctions/website.html:954
+msgid "Manage Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1008
+#: emailMarketing/templates/emailMarketing/website.html:1011
+#: emailMarketing/templates/emailMarketing/website.html:1012
+#: websiteFunctions/templates/websiteFunctions/website.html:959
+#: websiteFunctions/templates/websiteFunctions/website.html:963
+#: websiteFunctions/templates/websiteFunctions/website.html:964
+msgid "SMTP Hosts"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1019
+#: emailMarketing/templates/emailMarketing/website.html:1022
+#: websiteFunctions/templates/websiteFunctions/website.html:969
+#: websiteFunctions/templates/websiteFunctions/website.html:974
+msgid "Compose Message"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1023
+#: websiteFunctions/templates/websiteFunctions/website.html:975
+msgid "Compose"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1050
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:692
+#: websiteFunctions/templates/websiteFunctions/website.html:1001
+msgid "Application Installer"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1061
+#: emailMarketing/templates/emailMarketing/website.html:1065
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:703
+#: websiteFunctions/templates/websiteFunctions/website.html:1009
+#: websiteFunctions/templates/websiteFunctions/website.html:1013
+msgid "Install wordpress with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1066
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35
+msgid "Wordpress with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1075
+#: emailMarketing/templates/emailMarketing/website.html:1079
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47
+msgid "Install Joomla with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1080
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48
+msgid "Joomla"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1089
+#: emailMarketing/templates/emailMarketing/website.html:1093
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:722
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:726
+#: websiteFunctions/templates/websiteFunctions/website.html:1032
+#: websiteFunctions/templates/websiteFunctions/website.html:1036
+msgid "Attach Git with this website!"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1094
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:727
+#: websiteFunctions/templates/websiteFunctions/website.html:1037
+msgid "Git"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1103
+#: emailMarketing/templates/emailMarketing/website.html:1107
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:735
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:739
+#: websiteFunctions/templates/websiteFunctions/website.html:1043
+#: websiteFunctions/templates/websiteFunctions/website.html:1047
+msgid "Install Prestashop"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1108
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:740
+#: websiteFunctions/templates/websiteFunctions/website.html:1048
+msgid "Prestashop"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:3
+msgid "Email Debugger - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:16
+msgid "Email debugger to fix server-wide or website level email settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:23
+msgid "DEBUG EMAIL SERVER"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:29
+msgid "Run Server Level Checks"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:186
+msgid "WEBSITE LEVEL EMAIL ISSUES"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:3
+msgid "MailScanner - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:14
+msgid "Install/Access MailScanner"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:29
+msgid "MailScanner is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:32
+#: emailPremium/templates/emailPremium/Rspamd.html:111
+#: emailPremium/templates/emailPremium/SpamAssassin.html:37
+#: firewall/templates/firewall/csf.html:31
+#: firewall/templates/firewall/modSecurity.html:35
+#: firewall/templates/firewall/modSecurity.html:231
+#: firewall/templates/firewall/modSecurityRules.html:73
+#: firewall/templates/firewall/modSecurityRulesPacks.html:31
+#: firewall/templates/firewall/spamassassin.html:31
+msgid "Install Now."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:57
+msgid "MailScanner successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:69
+msgid "Winter is coming, but so is MailScanner."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:86
+msgid "MailScanner is installed. "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:90
+msgid "Access Now."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:3
+msgid "Rspamd - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:13
+msgid "Rspamd Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:15
+msgid "On this page you can configure Rspamd settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:31
+msgid "View Rspamd Logs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:37
+msgid "Un-install Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:43
+msgid "Restart Rspamd and CLAMAV"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:51
+msgid "Uninstalling Rspamd "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:62
+msgid "Failed to start Uninstallation, Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:74
+msgid "RSPAMD successfully Uninstalled, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:86
+#: emailPremium/templates/emailPremium/Rspamd.html:148
+msgid "Winter is coming, but so is RSPAMD."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:108
+msgid "Rspamd is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:136
+msgid "RSPAMD successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:168
+msgid "ClamAV - This is CLAMV Configurations in Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:171
+#: emailPremium/templates/emailPremium/Rspamd.html:271
+#: emailPremium/templates/emailPremium/Rspamd.html:345
+#: emailPremium/templates/emailPremium/Rspamd.html:403
+msgid ""
+"this is advanced settings, do not change if you don't know what you are doing"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:233
+#: emailPremium/templates/emailPremium/Rspamd.html:311
+#: emailPremium/templates/emailPremium/Rspamd.html:370
+#: emailPremium/templates/emailPremium/Rspamd.html:428
+#: emailPremium/templates/emailPremium/SpamAssassin.html:126
+#: firewall/templates/firewall/modSecurity.html:163
+#: firewall/templates/firewall/modSecurity.html:351
+#: firewall/templates/firewall/spamassassin.html:157
+msgid "Save changes."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:244
+msgid "Failed to save RSPAMD configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:249
+msgid "RSPAMD configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:266
+msgid "ClamAV Configuration"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:321
+msgid "Failed to save ClamAV configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:326
+msgid "ClamAV configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:341
+msgid "Postfix Configurations for Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:381
+msgid "Failed to save Postfix configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:386
+msgid "Postfix configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:400
+msgid "Redis"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:439
+msgid "Failed to save Redis configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:444
+msgid "Redis configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:475
+#: emailPremium/templates/emailPremium/Rspamd.html:504
+msgid "Uninstall Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:3
+#: firewall/templates/firewall/spamassassin.html:3
+msgid "SpamAssassin - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:13
+#: firewall/templates/firewall/spamassassin.html:13
+msgid "SpamAssassin Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:17
+msgid "SpamAssassin Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:19
+#: firewall/templates/firewall/spamassassin.html:14
+msgid "On this page you can configure SpamAssassin settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:34
+msgid "SpamAssassin is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:62
+msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:74
+msgid "Winter is coming, but so is SpamAssassin."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:137
+msgid "Failed to save SpamAssassin configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:142
+msgid "SpamAssassin configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:13
+#: emailPremium/templates/emailPremium/listDomains.html:14
+#: emailPremium/templates/emailPremium/policyServer.html:13
+#: mailServer/templates/mailServer/EmailLimits.html:15
+msgid "Email Limits Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:14
+msgid "View and change email limits for a domain name."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:25
+msgid "Domain Resource Usage"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:52
+#: emailPremium/templates/emailPremium/emailLimits.html:158
+#: emailPremium/templates/emailPremium/emailPage.html:54
+#: emailPremium/templates/emailPremium/listDomains.html:61
+msgid "Limits are being Applied!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:54
+#: emailPremium/templates/emailPremium/emailLimits.html:160
+#: emailPremium/templates/emailPremium/emailPage.html:56
+#: emailPremium/templates/emailPremium/listDomains.html:63
+msgid "Limits are not being applied!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:70
+#: emailPremium/templates/emailPremium/emailPage.html:78
+msgid "Monthly Limit"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:83
+#: emailPremium/templates/emailPremium/emailPage.html:101
+msgid "Change Limits"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:93
+#: emailPremium/templates/emailPremium/emailPage.html:111
+msgid "Can not change limits. Error message:"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:97
+msgid "Limits successfully changed, refreshing in 3 seconds."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:126
+#: emailPremium/templates/emailPremium/emailPage.html:25
+msgid "Email Resource Usage"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:133
+msgid "Search Emails.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:13
+msgid "Emai Limits Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:14
+msgid "View and change limits for an Email Address."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:60
+msgid "Logging in ON!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:62
+msgid "Logging is Off"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:88
+msgid "Hourly Limit"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:115
+msgid "Limits successfully changed."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:151
+msgid "Search Emails Logs.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:155
+msgid "Flush Logs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/listDomains.html:3
+msgid "Domains - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/listDomains.html:15
+msgid "On this page you manage emails limits for Domains/Email Addresses"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:3
+msgid "Mail Queue - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:18
+msgid "Queue Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:20
+msgid "On this page you manage your server Email Queue."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:50
+msgid "Flush Queue"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:51
+msgid "Delete All"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:52
+msgid "Delete Deferred"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:3
+msgid "Email Policy Server - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:13
+msgid "Email Policy Server Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:14
+msgid "Turn ON Email Policy Server to use Email Limits Feature. "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:20
+msgid "Email Policy Server"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:40
+#: manageServices/templates/manageServices/managePostfix.html:41
+#: manageServices/templates/manageServices/managePowerDNS.html:112
+#: manageServices/templates/manageServices/managePureFtpd.html:41
+msgid "Save changes"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:52
+#: firewall/templates/firewall/secureSSH.html:83
+#: mailServer/templates/mailServer/dkimManager.html:40
+#: managePHP/templates/managePHP/editPHPConfig.html:150
+#: manageServices/templates/manageServices/managePostfix.html:51
+#: manageServices/templates/manageServices/managePowerDNS.html:122
+#: manageServices/templates/manageServices/managePureFtpd.html:51
+msgid "Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:56
+#: manageServices/templates/manageServices/managePostfix.html:55
+#: manageServices/templates/manageServices/managePowerDNS.html:126
+#: manageServices/templates/manageServices/managePureFtpd.html:55
+msgid "Changes successfully applied."
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:18
+msgid "Example Plugin Page"
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:19
+msgid "Example Plugin Info"
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:24
+msgid "examplePlugin"
+msgstr ""
+
+#: filemanager/templates/filemanager/editFile.html:5
+msgid "Editing File - CyberPanel"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:85
+msgid "Fix Permissions"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:606
+msgid "Changing permissions for"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:615
+msgid "Mode"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:616
+#: serverStatus/templates/serverStatus/topProcesses.html:193
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:111
+msgid "User"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:617
+msgid "Group"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:618
+msgid "World"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:623
+msgid "Read"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:629
+msgid "Write"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:635
+msgid "Execute"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:652
+msgid "Change Recursively"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:668
+msgid "Confirm Restore!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:677
+msgid "This will restore file to its original location."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:727
+msgid "Download"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:735
+msgid "Edit with CodeMirror"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:3
+msgid "CSF (ConfigServer Security and Firewall) - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:13
+msgid "CSF (ConfigServer Security and Firewall)!"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:14
+msgid ""
+"On this page you can configure CSF (ConfigServer Security and Firewall) "
+"settings."
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:28
+msgid "CSF is not installed "
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:55
+msgid "CSF successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:90
+msgid "General"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:100
+msgid "LFD"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:109
+msgid "Remove CSF"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:112
+msgid "Completely Remove CSF"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:126
+msgid "Testing Mode"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:133
+msgid "TCP IN Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:143
+msgid "TCP Out Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:153
+msgid "UDP In Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:163
+msgid "UDP Out Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:181
+msgid "Allow IP"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:191
+msgid "Block IP Address"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:203
+msgid "Coming Soon."
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:3
+msgid "Firewall - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:13
+msgid "Add/Delete Firewall Rules"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:14
+msgid ""
+"On this page you can add/delete firewall rules. (By default all ports are "
+"blocked, except mentioned below)"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:19
+msgid "Add/Delete Rules"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:56
+msgid "Action failed. Error message:"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:61
+#: serverStatus/templates/serverStatus/litespeedStatus.html:82
+#: serverStatus/templates/serverStatus/litespeedStatus.html:319
+msgid "Action successful."
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:121
+msgid "Protocol"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:157
+msgid "Rule successfully added."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:3
+msgid "Imunify - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:13
+#: firewall/templates/firewall/imunify.html:24
+msgid "Imunify"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:17
+#: firewall/templates/firewall/imunifyAV.html:17
+#: firewall/templates/firewall/notAvailable.html:17
+msgid "Imunify Docs"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:18
+msgid "Access Imunify"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:28
+msgid ""
+"Imunify is now integrated via their new API. You can manage Imunify by "
+"clicking below. You can use your server root credentials to access Imunify. "
+"Login details for Imunify360 is your server root and its password."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:41
+msgid "Imunify360 Not working?"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:46
+msgid ""
+"If for some reason Imunify360 is not working, you can re-install it using "
+"the form below."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:92
+#: firewall/templates/firewall/notAvailable.html:66
+msgid "Imunify Key"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:3
+msgid "ImunifyAV - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:18
+msgid "Access ImunifyAV"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:28
+msgid ""
+"ImunifyAV is now integrated via their new API. You can manage Imunify by "
+"clicking below. You can use your server root credentials to access Imunify."
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:42
+msgid "ImunifyAV Not Working?"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:47
+msgid ""
+"If for some reason ImunifyAV is not working, you can re-install it using the "
+"form below."
+msgstr ""
+
+#: firewall/templates/firewall/index.html:3
+msgid "Security - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/index.html:12
+msgid "Security Functions"
+msgstr ""
+
+#: firewall/templates/firewall/index.html:13
+msgid "Manage the security of the server on this page."
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:3
+msgid "LiteSpeed Ent Conf - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:13
+msgid "LiteSpeed Enterprise Global Conf!"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:14
+msgid ""
+"Any rewrite rules or server-level configurations added here will be "
+"applicable to all virtual hosts/websites. This information is valid for "
+"LiteSpeed Enterprise edition exclusively."
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:20
+msgid "Litespeed Enterprise Conf (/usr/local/lsws/conf/pre_main_global.conf)"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:42
+msgid "Save LiteSpeed Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:49
+msgid "Litespeed Conf Saved"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:58
+#: firewall/templates/firewall/modSecurityRules.html:58
+msgid "Could not save rules, Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:3
+msgid "ModSecurity - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:14
+#: firewall/templates/firewall/modSecurity.html:208
+msgid "ModSecurity Configurations!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:18
+#: firewall/templates/firewall/modSecurity.html:212
+#: firewall/templates/firewall/modSecurityRules.html:13
+#: firewall/templates/firewall/modSecurityRulesPacks.html:13
+msgid "ModSec Docs"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:20
+#: firewall/templates/firewall/modSecurity.html:214
+msgid "On this page you can configure ModSecurity settings."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:26
+#: firewall/templates/firewall/modSecurity.html:220
+msgid "ModSecurity"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:32
+#: firewall/templates/firewall/modSecurity.html:229
+#: firewall/templates/firewall/modSecurityRules.html:70
+#: firewall/templates/firewall/modSecurityRulesPacks.html:28
+#: firewall/templates/firewall/spamassassin.html:29
+msgid "ModSecurity is not installed "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:61
+#: firewall/templates/firewall/modSecurity.html:257
+#: firewall/templates/firewall/spamassassin.html:55
+msgid "ModSecurity successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:73
+#: firewall/templates/firewall/modSecurity.html:269
+#: firewall/templates/firewall/spamassassin.html:66
+msgid "Winter is coming, but so is ModSecurity."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:174
+#: firewall/templates/firewall/modSecurity.html:362
+#: firewall/templates/firewall/spamassassin.html:169
+msgid "Failed to save ModSecurity configurations. Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:179
+#: firewall/templates/firewall/modSecurity.html:367
+#: firewall/templates/firewall/spamassassin.html:173
+msgid "ModSecurity configurations successfully saved."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:3
+msgid "ModSecurity Rules - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:13
+msgid "ModSecurity Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:14
+msgid "On this page you can add/delete ModSecurity rules."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:42
+msgid "Save Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:49
+msgid "ModSecurity Rules Saved"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:3
+msgid "ModSecurity Rules Packs - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:13
+#: firewall/templates/firewall/modSecurityRulesPacks.html:20
+msgid "ModSecurity Rules Packages!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:14
+msgid "Install/Un-install ModSecurity rules packages."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:60
+msgid "Configure"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:84
+#: firewall/templates/firewall/modSecurityRulesPacks.html:96
+msgid "Operation successful."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:92
+msgid "Operation failed, Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:110
+msgid "Supplier"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:111
+msgid "Filename"
+msgstr ""
+
+#: firewall/templates/firewall/notAvailable.html:18
+msgid "Either Imunify is not installed or you are not on CloudLinux OS."
+msgstr ""
+
+#: firewall/templates/firewall/notAvailable.html:43
+#: firewall/templates/firewall/notAvailableAV.html:29
+msgid "Imunify is not installed, click to install now."
+msgstr ""
+
+#: firewall/templates/firewall/notAvailableAV.html:17
+msgid "ImunifyAV Docs"
+msgstr ""
+
+#: firewall/templates/firewall/notAvailableAV.html:18
+msgid "ImunifyAV is not installed"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:3
+msgid "Secure SSH - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:16
+msgid "SSH Docs"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:17
+msgid "Secure or harden SSH Configurations."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:31
+#: managePHP/templates/managePHP/editPHPConfig.html:29
+msgid "Basic"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:37
+msgid "SSH Keys"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:59
+msgid "Permit Root Login"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:64
+msgid ""
+"Before disabling root login, make sure you have another account with sudo "
+"priviliges on server."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:87
+msgid "SSH Configurations Saved."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:121
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:65
+msgid "Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:153
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:97
+msgid "Add Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:171
+msgid "SSH Key Deleted"
+msgstr ""
+
+#: ftp/templates/ftp/ResetFTPconf.html:3
+msgid "Reset FTP Configurations - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/ResetFTPconf.html:12
+msgid "Reset your FTP Configurations here."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:3
+msgid "Create FTP Account - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:13
+msgid ""
+"Select the website from list, and its home directory will be set as the path "
+"to ftp account."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:26
+#: ftp/templates/ftp/deleteFTPAccount.html:25
+#: ftp/templates/ftp/listFTPAccounts.html:26
+msgid "PureFTPD is disabled."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:67
+msgid "FTP Password"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:90
+msgid "Path (Relative)"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:92
+msgid "Leave empty to select default home directory."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:105
+msgid "Create FTP"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:3
+msgid "Delete FTP Account - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:13
+msgid "Select domain and delete its related FTP accounts."
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:52
+msgid "Select FTP Account"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:83
+msgid "Cannot delete account. Error message:"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:87
+msgid "FTP Account with username:"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:87
+msgid " is successfully deleted."
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:91
+#: userManagment/templates/userManagment/deleteUser.html:70
+msgid "Could not connect to the server. Please refresh this page."
+msgstr ""
+
+#: ftp/templates/ftp/index.html:3
+msgid "FTP Functions - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/index.html:13
+msgid "Delete and create FTP accounts on this page."
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:3
+msgid "List FTP Accounts - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:14
+msgid "List FTP Accounts or change their passwords."
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:66
+msgid "Password changed for"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:70
+msgid ""
+"Cannot change password for {$ ftpUsername $}. Error message:"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:124
+msgid "Directory"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:3
+msgid "Email Limits - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:12
+#: mailServer/templates/mailServer/EmailLimits.html:22
+msgid "Setup Email Limits"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:16
+msgid "This page help you setup email limits for your emails."
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:30
+#: mailServer/templates/mailServer/changeEmailPassword.html:27
+#: mailServer/templates/mailServer/createEmailAccount.html:29
+#: mailServer/templates/mailServer/deleteEmailAccount.html:27
+#: mailServer/templates/mailServer/emailForwarding.html:26
+#: mailServer/templates/mailServer/listEmails.html:29
+msgid "Postfix is disabled."
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:59
+#: mailServer/templates/mailServer/changeEmailPassword.html:58
+#: mailServer/templates/mailServer/deleteEmailAccount.html:58
+#: mailServer/templates/mailServer/emailForwarding.html:52
+msgid "Select Email"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:111
+msgid "Number of Emails"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:116
+msgid "Duration"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:116
+#: mailServer/templates/mailServer/emailForwarding.html:101
+msgid "or path to the program"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:3
+msgid "Change Email Password - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:12
+#: mailServer/templates/mailServer/changeEmailPassword.html:19
+#: userManagment/templates/userManagment/createACL.html:299
+#: userManagment/templates/userManagment/modifyACL.html:303
+msgid "Change Email Password"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:13
+msgid "Select a website from the list, to change its password."
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:106
+#: mailServer/templates/mailServer/deleteEmailAccount.html:90
+msgid "Cannot delete email account. Error message:"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:111
+msgid "Password successfully changed for :"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:118
+#: mailServer/templates/mailServer/deleteEmailAccount.html:102
+msgid "Currently no email accounts exist for this domain."
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:3
+msgid "Create Email Account - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:13
+msgid "Select a website from the list, to create an email account."
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:108
+msgid "Cannot create email account. Error message:"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:113
+msgid "Mailbox with username:"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:114
+msgid " has been successfully created."
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:3
+msgid "Delete Email Account - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:13
+msgid "Select a website from the list, to delete an email account."
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:95
+msgid "Mailbox with username: {$ deletedID $} has been successfully deleted."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:3
+msgid "DKIM Manager - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:13
+msgid "DKIM Docs"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:14
+msgid "This page can be used to generate and view DKIM keys for Domains"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:27
+msgid "OpenDKIM is not installed. "
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:28
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:68
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:104
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:54
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67
+msgid "Install Now"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:48
+msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:97
+msgid "Keys not available for this domain."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:98
+msgid "Generate Now"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:110
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37
+msgid "Domain"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:111
+msgid "Private Key"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:112
+msgid "Public Key"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:3
+msgid "Setup Email Forwarding - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:12
+#: mailServer/templates/mailServer/emailForwarding.html:19
+msgid "Setup Email Forwarding"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:12
+msgid "Forwarding Docs"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:13
+msgid "This page help you setup email forwarding for your emails."
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:61
+msgid "Forwarding Options"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:97
+#: mailServer/templates/mailServer/emailForwarding.html:118
+msgid "Source"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:106
+msgid "Forward Email"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:3
+msgid "Mail Functions - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:12
+msgid "Mail Functions"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:13
+msgid "Manage email accounts on this page."
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:3
+msgid "List Email Accounts - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:13
+#: mailServer/templates/mailServer/listEmails.html:21
+msgid "List Email Accounts"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:13
+msgid "Debug Email Issues"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:16
+msgid "List Emails Accounts. Change their passwords or delete them."
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:63
+msgid ""
+"SSL for email is not configured properly, you may get Self-Signed error on "
+"mail clients such as Outlook and Thunderbird. More details "
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:72
+msgid "Details To Configure Mail Clients"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:77
+msgid "POP3"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:83
+#: mailServer/templates/mailServer/listEmails.html:110
+#: mailServer/templates/mailServer/listEmails.html:137
+msgid "Server Hostname"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:104
+msgid "IMAP"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:131
+msgid "SMTP"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:3
+msgid "Edit PHP Configurations - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:14
+#: managePHP/templates/managePHP/editPHPConfig.html:21
+msgid "Edit PHP Configurations"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:15
+msgid "Edit PHP Configurations on this page."
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:36
+msgid "Advanced"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:65
+msgid "display_errors"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:72
+msgid "file_uploads"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:80
+msgid "allow_url_fopen"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:88
+msgid "allow_url_include"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:96
+msgid "memory_limit"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:103
+msgid "max_execution_time"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:111
+msgid "upload_max_filesize"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:119
+msgid "post_max_size"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:126
+msgid "max_input_time"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:140
+#: managePHP/templates/managePHP/editPHPConfig.html:209
+msgid "Restart PHP"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:154
+#: managePHP/templates/managePHP/editPHPConfig.html:222
+msgid "PHP Configs Saved."
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:3
+msgid "Manage PHP Installations - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:12
+msgid "Manage PHP Installations"
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:13
+msgid "Edit your PHP Configurations to suit your needs."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:3
+msgid "Install PHP Extensions - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:14
+msgid "Install/uninstall php extensions on this page."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:19
+#: tuning/templates/tuning/phpTuning.html:19
+#: tuning/templates/tuning/phpTuning.html:155
+msgid "Select PHP Version"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:47
+msgid "Search Extensions.."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:62
+msgid "Extension Name"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:63
+#: pluginHolder/templates/pluginHolder/plugins.html:30
+msgid "Description"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:65
+#: managePHP/templates/managePHP/installExtensions.html:81
+#: manageServices/templates/manageServices/applications.html:52
+msgid "Install"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:66
+#: managePHP/templates/managePHP/installExtensions.html:86
+msgid "Uninstall"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:115
+#: tuning/templates/tuning/phpTuning.html:115
+#: tuning/templates/tuning/phpTuning.html:256
+#: userManagment/templates/userManagment/modifyUser.html:143
+msgid "Cannot fetch details. Error message:"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:119
+msgid "Cannot perform operation. Error message:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:3
+msgid "SSL Functions - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:13
+msgid "SSL Functions"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:14
+msgid "Issue Let’s Encrypt SSLs for websites and hostname."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:3
+msgid "Manage SSL - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:16
+#: manageSSL/templates/manageSSL/sslForHostName.html:16
+#: manageSSL/templates/manageSSL/sslForMailServer.html:17
+msgid "SSL Docs"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:17
+msgid ""
+"This page can be used to issue Let’s Encrypt SSL for existing websites on "
+"server."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:46
+#: manageSSL/templates/manageSSL/sslForHostName.html:51
+#: manageSSL/templates/manageSSL/sslForMailServer.html:51
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:46
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:78
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:78
+msgid "Issue SSL"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:56
+#: manageSSL/templates/manageSSL/sslForHostName.html:61
+#: manageSSL/templates/manageSSL/sslForMailServer.html:61
+msgid "Cannot issue SSL. Error message:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:60
+msgid "SSL Issued for"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:3
+msgid "Issue SSL For Hostname - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:13
+#: manageSSL/templates/manageSSL/sslForHostName.html:23
+msgid "Issue SSL For Hostname"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:17
+msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:65
+#: manageSSL/templates/manageSSL/sslForHostName.html:70
+msgid "SSL Issued. You can now access CyberPanel at:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:3
+msgid "Issue SSL For MailServer - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:13
+#: manageSSL/templates/manageSSL/sslForMailServer.html:24
+msgid "Issue SSL For MailServer"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:18
+msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:65
+msgid "SSL Issued, your mail server now uses Lets Encrypt!"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:69
+msgid "Could not connect to server, please refresh this page."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:3
+msgid "SSL v2 - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:17
+msgid ""
+"On this page, you have the option to configure DNS providers that CyberPanel "
+"can utilize for issuing SSL certificates, providing enhanced flexibility and "
+"ease of renewal."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:36
+msgid "Changes saved succesfully."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:109
+msgid "Cloudflare Settings"
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:3
+msgid "Manage Applications - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:14
+msgid "Install/Remove Applications from your server."
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:32
+msgid "Application"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:3
+msgid "Manage Email Server (Postfix) - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:13
+msgid "Manage Email Server (Postfix)!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:13
+#: manageServices/templates/manageServices/managePowerDNS.html:16
+#: manageServices/templates/manageServices/managePureFtpd.html:13
+msgid "Services Docs"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:14
+msgid "Enable or disable Email services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:79
+#: manageServices/templates/manageServices/managePowerDNS.html:149
+#: manageServices/templates/manageServices/managePureFtpd.html:79
+msgid "Only administrator can manage services."
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:3
+msgid "Manage PowerDNS - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:13
+msgid "Manage PowerDNS!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:17
+msgid "Enable or disable DNS services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:42
+msgid "Select Function Mode"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:53
+msgid "Slave Server"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:60
+msgid "Master Server IP"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:67
+msgid "Slave Server 1"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:74
+msgid "Slave Server IP"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:81
+msgid "Slave Server 2 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:88
+msgid "Slave Server IP 2 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:95
+msgid "Slave Server 3 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:102
+msgid "Slave Server IP 3 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:3
+msgid "Manage FTP Server (Pure FTPD) - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:13
+msgid "Manage FTP Server (Pure FTPD)!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:14
+msgid "Enable or disable FTP services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:22
+msgid "Manage PureFTPD"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:3
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:3
+msgid "Create Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:14
+#: packages/templates/packages/deletePackage.html:13
+#: packages/templates/packages/index.html:14
+#: packages/templates/packages/modifyPackage.html:10
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13
+msgid ""
+"Packages define resources for your websites, you need to add package before "
+"creating a website."
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:19
+msgid "Package Details"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:41
+#: packages/templates/packages/listPackages.html:98
+#: packages/templates/packages/modifyPackage.html:44
+msgid "(0 = Unlimited)"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:45
+#: packages/templates/packages/listPackages.html:104
+#: packages/templates/packages/modifyPackage.html:49
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:145
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:262
+msgid "Disk Space"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:49
+#: packages/templates/packages/createPackage.html:57
+#: packages/templates/packages/listPackages.html:109
+#: packages/templates/packages/listPackages.html:119
+#: packages/templates/packages/modifyPackage.html:53
+#: packages/templates/packages/modifyPackage.html:61
+msgid "MB (0 = Unlimited)"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:53
+#: packages/templates/packages/listPackages.html:35
+#: packages/templates/packages/listPackages.html:114
+#: packages/templates/packages/modifyPackage.html:57
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:137
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:253
+msgid "Bandwidth"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:62
+#: packages/templates/packages/listPackages.html:125
+#: packages/templates/packages/modifyPackage.html:66
+msgid "FTP Accounts"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:114
+msgid "Cannot create package. Error message:"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:119
+msgid "Successfully Created"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:3
+msgid "Delete Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:56
+msgid "Cannot delete package. Error message:"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:60
+msgid " Successfully Deleted."
+msgstr ""
+
+#: packages/templates/packages/index.html:3
+msgid "Packages - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:3
+msgid "List Packages - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:14
+msgid "List Packages and delete or edit them."
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:34
+msgid "Diskspace"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:36
+msgid "Email Accounts"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:38
+msgid "FTPs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:39
+msgid "Child Domains"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:40
+msgid "Allow FQDN as Childs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:152
+msgid "Additional"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:3
+msgid "Modify Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:123
+msgid "Cannot fetch package details. Error message:"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:127
+msgid "Package Details Successfully Fetched"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:131
+msgid "Successfully Modified"
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:15
+msgid "List of installed plugins on your CyberPanel."
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:31
+#: serverStatus/templates/serverStatus/packageManager.html:115
+#: serverStatus/templates/serverStatus/packageManager.html:282
+#: serverStatus/templates/serverStatus/packageManager.html:446
+msgid "Version"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:3
+msgid "Access Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:17
+msgid "Access Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:24
+#: serverLogs/templates/serverLogs/emailLogs.html:23
+#: serverLogs/templates/serverLogs/errorLogs.html:21
+#: serverLogs/templates/serverLogs/ftplogs.html:21
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:22
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21
+msgid "Last 50 Lines"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:41
+#: serverLogs/templates/serverLogs/emailLogs.html:42
+#: serverLogs/templates/serverLogs/errorLogs.html:38
+#: serverLogs/templates/serverLogs/ftplogs.html:38
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:39
+msgid "Clear Logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:47
+#: serverLogs/templates/serverLogs/emailLogs.html:49
+#: serverLogs/templates/serverLogs/errorLogs.html:45
+#: serverLogs/templates/serverLogs/ftplogs.html:44
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:45
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44
+msgid "Last 50 Lines Fetched"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:52
+#: serverLogs/templates/serverLogs/emailLogs.html:54
+#: serverLogs/templates/serverLogs/errorLogs.html:50
+#: serverLogs/templates/serverLogs/ftplogs.html:49
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:49
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49
+msgid "Could not fetch logs. Use the command line to view the log file."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/emailLogs.html:3
+msgid "Email Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/emailLogs.html:15
+msgid "Email Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/errorLogs.html:3
+msgid "Error Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/errorLogs.html:14
+msgid "Error Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/ftplogs.html:3
+msgid "FTP Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/ftplogs.html:14
+msgid "FTP Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:3
+msgid "Server Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:13
+msgid "Server Logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:14
+msgid ""
+"These are the logs from main server, to see logs for your website navigate "
+"to: Websites -> List Websites -> Select Website -> View Logs."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:3
+msgid "ModSecurity Audit Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:15
+msgid "ModSecurity Audit logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:3
+msgid "Server Mail - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:13
+msgid "Manage Server Mail"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:17
+msgid "Mail Docs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:18
+msgid ""
+"On this page you can configure how CyberPanel send mails. (Notifications or "
+"Errors from CyberPanel)"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:34
+msgid "Mailer"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:3
+msgid "Switch off security - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:74
+msgid "Switch off security rules"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:76
+msgid ""
+"Here you can switch off security rules. It is handy if you find out that a "
+"security rule is too restrictive for some websites. To deactivate security "
+"rules, specify their IDs (for example, 340003 or 340005-340007), tags (for "
+"example, CVE-2011-4898), or regular expressions used in rule messages (for "
+"example, XSS)."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:83
+msgid "Security Rules"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:92
+msgid "Security Rule IDs"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:143
+msgid "Regular expressions in rule messages "
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:3
+msgid "Change CyberPanel Access Port - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:13
+msgid "CyberPanel Port"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:14
+msgid ""
+"On this page you can change CyberPanel port. Once port is change you will "
+"not be able to access this page, kindly open CyberPanel via new port."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3
+msgid "CyberPanel Main Log File - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14
+msgid ""
+"This log file corresponds to errors generated by CyberPanel for your domain "
+"errors log you can look into /home/domain/logs."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:3
+msgid "Server Status - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:14
+msgid "View LiteSpeed status and log files."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:53
+msgid "CyberPanel Main Log"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:3
+msgid "LiteSpeed Status - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:14
+#: serverStatus/templates/serverStatus/litespeedStatus.html:235
+msgid "LiteSpeed Status:"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:16
+#: serverStatus/templates/serverStatus/litespeedStatus.html:236
+msgid ""
+"On this page you can get information regarding your LiteSpeed processes."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:30
+#: serverStatus/templates/serverStatus/litespeedStatus.html:268
+msgid "LiteSpeed Processes"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:37
+#: serverStatus/templates/serverStatus/litespeedStatus.html:275
+msgid "Process ID"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:49
+#: serverStatus/templates/serverStatus/litespeedStatus.html:287
+msgid "Main Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:52
+#: serverStatus/templates/serverStatus/litespeedStatus.html:290
+msgid "lscgid Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:55
+#: serverStatus/templates/serverStatus/litespeedStatus.html:293
+msgid "Worker Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:67
+#: serverStatus/templates/serverStatus/litespeedStatus.html:305
+msgid "Reboot Litespeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:73
+#: serverStatus/templates/serverStatus/litespeedStatus.html:311
+msgid "Stop LiteSpeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:87
+#: serverStatus/templates/serverStatus/litespeedStatus.html:324
+msgid "Error Occurred. See CyberPanel main log file."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:92
+#: serverStatus/templates/serverStatus/litespeedStatus.html:329
+msgid "Could not connect to server."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:138
+msgid "Switch to LiteSpeed Enterprise Web Server"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:149
+msgid "LiteSpeed Serial No. (License Key)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:160
+msgid "Switch"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:162
+msgid "Get 15 Days Trial"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:186
+msgid ""
+"Note: If you select 15 days trial there is no need to enter the serial key, "
+"CyberPanel will auto fetch 15 days trial key for you. Make sure this server "
+"have not used trial already."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:189
+msgid ""
+"WARNING: You cannot revert back to OpenLiteSpeed if you choose not to "
+"purchase a LiteSpeed Enterprise license after the 15 day trial period. We "
+"recommend you test the Enterprise trial on a separate server."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:207
+msgid "With great wisdom comes great responsibility."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:343
+msgid "License Manager"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:350
+#: serverStatus/templates/serverStatus/litespeedStatus.html:354
+#: serverStatus/templates/serverStatus/litespeedStatus.html:355
+msgid "License Status"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:360
+#: serverStatus/templates/serverStatus/litespeedStatus.html:364
+#: serverStatus/templates/serverStatus/litespeedStatus.html:365
+msgid "Change License"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:371
+#: serverStatus/templates/serverStatus/litespeedStatus.html:375
+#: serverStatus/templates/serverStatus/litespeedStatus.html:376
+msgid "Refresh License"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:403
+msgid "New key"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:413
+msgid "Change Key"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:3
+msgid "Package Manager - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:15
+msgid ""
+"On this page you can manage your system packages. On backend system "
+"available package manager is used (apt/yum)."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:116
+#: serverStatus/templates/serverStatus/packageManager.html:283
+msgid "Upgrade"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:117
+#: serverStatus/templates/serverStatus/packageManager.html:284
+#: serverStatus/templates/serverStatus/packageManager.html:447
+msgid "Lock"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/services.html:3
+msgid "Services - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/services.html:25
+msgid "Show stats for services and actions (Start, Stop, Restart)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:3
+msgid "Top Processes - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:16
+msgid "List of top processes on your server. (Refresh every 3 seconds)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:27
+msgid "Cores"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:28
+msgid "Model Name"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:29
+msgid "CPU Mhz"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:30
+msgid "Cache Size"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:51
+msgid "Processes"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:53
+msgid "Sleeping"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:54
+msgid "Stopped"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:55
+msgid "Zombie"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:80
+msgid "CPU Load"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:81
+msgid "1 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:82
+msgid "5 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:83
+msgid "15 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:104
+msgid "I/O Wait"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:105
+msgid "Idle Time"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:106
+msgid "HW Interrupts"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:107
+msgid "Softirqs"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:132
+#: serverStatus/templates/serverStatus/topProcesses.html:156
+msgid "Free"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:133
+#: serverStatus/templates/serverStatus/topProcesses.html:157
+msgid "Used"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:134
+#: serverStatus/templates/serverStatus/topProcesses.html:158
+msgid "buff/cache"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:155
+msgid "SWAP"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:192
+msgid "PID"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:194
+msgid "VIRT"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:195
+msgid "RES"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:196
+#: userManagment/templates/userManagment/listUsers.html:39
+msgid "State"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:197
+#, python-format
+msgid "%%CPU"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:198
+#, python-format
+msgid "%%MEM"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:200
+#: websiteFunctions/templates/websiteFunctions/listCron.html:43
+#: websiteFunctions/templates/websiteFunctions/listCron.html:117
+msgid "Command"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:3
+msgid "Server Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:12
+msgid "Server Tuning"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:13
+msgid ""
+"On this page you can set runing parameters for your webserver depending on "
+"your hardware."
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:3
+msgid "LiteSpeed Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:13
+msgid ""
+"You can use this page to tweak your server according to your website "
+"requirments."
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:18
+msgid "Tuning Details"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:28
+#: tuning/templates/tuning/phpTuning.html:52
+#: tuning/templates/tuning/phpTuning.html:193
+msgid "Max Connections"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:36
+msgid "Max SSL Connections"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:44
+msgid "Connection Timeout"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:52
+msgid "Keep Alive Timeout"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:60
+msgid "Cache Size in memory"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:67
+msgid "Enable GZIP Compression"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:74
+#: tuning/templates/tuning/phpTuning.html:97
+#: tuning/templates/tuning/phpTuning.html:238
+msgid "Currently:"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:82
+msgid "Tune Web Server"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:92
+msgid ""
+"Cannot fetch Current Value, but you can still submit new changes, error "
+"reported from server:"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:96
+msgid "Cannot save details, Error Message: "
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:101
+msgid "Web Server Successfully tuned."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:3
+msgid "PHP Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:14
+#: tuning/templates/tuning/phpTuning.html:150
+msgid "Set how each version of PHP behaves in your server here."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:45
+#: tuning/templates/tuning/phpTuning.html:186
+msgid "Initial Request Timeout (secs)"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:60
+#: tuning/templates/tuning/phpTuning.html:201
+msgid "Memory Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:67
+#: tuning/templates/tuning/phpTuning.html:208
+msgid "Memory Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:75
+#: tuning/templates/tuning/phpTuning.html:216
+msgid "Process Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:82
+#: tuning/templates/tuning/phpTuning.html:223
+msgid "Process Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:90
+#: tuning/templates/tuning/phpTuning.html:231
+msgid "Persistent Connection"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:106
+#: tuning/templates/tuning/phpTuning.html:247
+msgid "Tune PHP"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:119
+#: tuning/templates/tuning/phpTuning.html:260
+msgid "Cannot tune. Error message:"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:124
+#: tuning/templates/tuning/phpTuning.html:265
+msgid "Details Successfully fetched."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:128
+#: tuning/templates/tuning/phpTuning.html:269
+msgid "PHP for "
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:129
+#: tuning/templates/tuning/phpTuning.html:270
+msgid "Successfully tuned."
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:3
+msgid "API Access for User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:14
+msgid ""
+"Allow/Remove API access for account, this effects Cloud Platform Connection "
+"and Third Party Modules."
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:29
+#: userManagment/templates/userManagment/changeUserACL.html:28
+#: userManagment/templates/userManagment/deleteUser.html:29
+#: userManagment/templates/userManagment/resellerCenter.html:25
+msgid "Select User"
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:40
+msgid "Access"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:3
+msgid "Change User ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:12
+#: userManagment/templates/userManagment/changeUserACL.html:19
+#: userManagment/templates/userManagment/createACL.html:100
+#: userManagment/templates/userManagment/modifyACL.html:104
+msgid "Change User ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:13
+msgid "This page can be used to change ACL for CyberPanel users."
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:39
+#: userManagment/templates/userManagment/createUser.html:56
+#: userManagment/templates/userManagment/deleteACL.html:26
+#: userManagment/templates/userManagment/listUsers.html:144
+#: userManagment/templates/userManagment/modifyACL.html:28
+msgid "Select ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:55
+msgid "Change ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:3
+msgid "Create new ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:13
+msgid ""
+"Create new Access Control defination, that specifies what CyberPanel users "
+"can do."
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:19
+#: userManagment/templates/userManagment/modifyACL.html:19
+msgid "ACL Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:26
+msgid "ACL Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:40
+#: userManagment/templates/userManagment/modifyACL.html:44
+msgid "Make Admin"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:59
+#: userManagment/templates/userManagment/modifyACL.html:63
+msgid "User Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:91
+#: userManagment/templates/userManagment/deleteUser.html:13
+#: userManagment/templates/userManagment/deleteUser.html:20
+#: userManagment/templates/userManagment/deleteUser.html:42
+#: userManagment/templates/userManagment/index.html:78
+#: userManagment/templates/userManagment/index.html:81
+#: userManagment/templates/userManagment/modifyACL.html:95
+msgid "Delete User"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:107
+#: userManagment/templates/userManagment/modifyACL.html:111
+msgid "Website Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:130
+#: userManagment/templates/userManagment/modifyACL.html:134
+msgid "Suspend Website"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:147
+#: userManagment/templates/userManagment/modifyACL.html:151
+msgid "Package Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:186
+#: userManagment/templates/userManagment/modifyACL.html:190
+msgid "Database Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:216
+#: userManagment/templates/userManagment/modifyACL.html:220
+msgid "DNS Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:249
+#: userManagment/templates/userManagment/modifyACL.html:253
+msgid "Add/Delete"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:257
+#: userManagment/templates/userManagment/modifyACL.html:261
+msgid "Email Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:317
+#: userManagment/templates/userManagment/modifyACL.html:321
+msgid "FTP Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:347
+#: userManagment/templates/userManagment/modifyACL.html:351
+msgid "Backup Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:362
+#: userManagment/templates/userManagment/modifyACL.html:366
+msgid "Google Drive Backups"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:410
+#: userManagment/templates/userManagment/modifyACL.html:414
+msgid "SSL Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:443
+msgid "Create ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:3
+msgid "Create New User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:13
+msgid "Create root, reseller or normal users on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:19
+msgid "User Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:25
+#: userManagment/templates/userManagment/modifyUser.html:39
+#: userManagment/templates/userManagment/userProfile.html:24
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:30
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35
+msgid "First Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:31
+msgid "First Name should contain only alphabetic characters."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:35
+#: userManagment/templates/userManagment/modifyUser.html:46
+#: userManagment/templates/userManagment/userProfile.html:29
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:37
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42
+msgid "Last Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:41
+msgid "Last Name should contain only alphabetic characters."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:50
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:191
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:283
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:152
+msgid "Invalid Email"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:68
+#: userManagment/templates/userManagment/listUsers.html:35
+#: userManagment/templates/userManagment/resellerCenter.html:48
+#: userManagment/templates/userManagment/userProfile.html:53
+msgid "Websites Limit"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:107
+#: userManagment/templates/userManagment/modifyUser.html:102
+msgid "Security Level"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:120
+#: userManagment/templates/userManagment/index.html:49
+#: userManagment/templates/userManagment/index.html:52
+#: userManagment/templates/userManagment/listUsers.html:14
+msgid "Create User"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:128
+#: userManagment/templates/userManagment/modifyUser.html:129
+msgid "Account with username:"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:129
+msgid "is successfully created."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:133
+msgid "Cannot create user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:141
+msgid ""
+"Length of first and last name combined should be less than or equal to 20 "
+"characters"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteACL.html:3
+msgid "Delete ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteACL.html:13
+msgid "This page can be used to delete ACL."
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:3
+msgid "Delete User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:14
+msgid "Websites owned by this user will automatically transfer to the root."
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:61
+msgid "Cannot delete user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:65
+msgid "User "
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:65
+msgid " Successfully Deleted"
+msgstr ""
+
+#: userManagment/templates/userManagment/index.html:3
+msgid "User Functions - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/index.html:14
+msgid "Create, edit and delete users on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:3
+msgid "List Users - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:16
+msgid "List Users that you own."
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:37
+msgid "ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:55
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44
+msgid "Suspend"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:59
+msgid "Activate"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:129
+#: userManagment/templates/userManagment/resellerCenter.html:37
+msgid "New Owner"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:3
+msgid "Modify an ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:12
+msgid "Modify an ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:13
+msgid "On this page you can modify an existing ACL."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:3
+msgid "Modify User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:13
+msgid "Modify existing user settings on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:27
+msgid "Select Account"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:130
+msgid " is successfully modified."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:134
+msgid "Cannot modify user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:147
+msgid "Details fetched."
+msgstr ""
+
+#: userManagment/templates/userManagment/resellerCenter.html:3
+msgid "Reseller Center - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/resellerCenter.html:13
+msgid "Change owner of users and change websites limits."
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:3
+msgid "Account Details - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:12
+#: userManagment/templates/userManagment/userProfile.html:18
+msgid "Account Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:13
+msgid "List the account details for the currently logged in user."
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:48
+msgid "Account ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:55
+msgid "( 0 = Unlimited )"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:3
+msgid "Backup Sites Configurations - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:12
+msgid "Backup Sites Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:19
+msgid " Add WordPress Sites for Remote Backup"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:29
+msgid "Selecte WordPress Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:45
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:78
+msgid "Save Backup Schedule"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:51
+msgid "Saved Sites For Remote Backup"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:3
+msgid "Apache Manager - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:13
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:286
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:290
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:291
+#: websiteFunctions/templates/websiteFunctions/website.html:537
+#: websiteFunctions/templates/websiteFunctions/website.html:541
+#: websiteFunctions/templates/websiteFunctions/website.html:542
+msgid "Apache Manager"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:14
+msgid "Switch between Apache (as reverse proxy) and OpenLiteSpeed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:61
+msgid "Save Apache Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:3
+msgid "File Config - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:12
+msgid "Backup File Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:19
+msgid " Schedule Backups"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:25
+msgid "Schedule Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:62
+msgid "Backup Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:84
+msgid "Configure Backup Schedules"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:96
+msgid ""
+"On this page you can create, list, modify and delete Packages from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:103
+msgid "Packages Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:116
+msgid "Enter Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:121
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:235
+msgid "CPU"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:124
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:238
+msgid "Enter CPU e.g. 2,3,4"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:132
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:247
+msgid "Enter Memory in MB e.g. 256, 512, 1024"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:140
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:257
+msgid "Enter Bandwidth"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:148
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:265
+msgid "Enter Disk Space"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:159
+msgid "Create Docker Package"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:276
+msgid "Update Package"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:3
+msgid "Create Docker App - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:95
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:35
+msgid "Create Docker App"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:96
+msgid "On this page you can create docker apps on your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:103
+msgid "Docker App Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:113
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:29
+msgid "Site Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:135
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:143
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:82
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:480
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:162
+msgid "Do not enter WWW, it will be auto created!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:141
+msgid "MySQL CPU"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:148
+msgid "MySQL Ram"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:154
+msgid "CPU Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:161
+msgid "Ram Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:169
+msgid "Select App"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:179
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:51
+msgid "Admin Username"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:186
+msgid "Admin Email"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:195
+msgid "Admin Password"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:207
+msgid "Create Docker Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CyberpanelPricing.html:3
+msgid "Pricing - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:3
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:3
+msgid "Docker Sites - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:311
+msgid "Recreate Container"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:33
+msgid "List Docker Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:38
+msgid ""
+"On this page you can launch, list, modify and delete Dockersite from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:3
+msgid "Remote Backup Configurations - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:12
+msgid "Remote Backup Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:19
+msgid "Configure Remote Backups"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:28
+msgid "Select Remote Backup Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:64
+msgid "path"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:74
+msgid "Choose Provider"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:92
+msgid "Endpoint URL"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:99
+msgid "Access Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:106
+msgid "Secret Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:118
+msgid "Save Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:128
+msgid "Saved Remote Configuration"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:3
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:3
+msgid "Restore Backpus - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:90
+msgid "List Backups "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:93
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:17
+msgid ""
+"On this page you can Restore, list, modify and delete Backups Wordpress "
+"Sites from your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:3
+msgid "plugin - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:12
+msgid "Add New Plugin"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:23
+msgid "Plugin Bucket Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:31
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:28
+msgid "Search Plugin Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:35
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:32
+msgid "Search Plugin...."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:53
+msgid "Add Plugin Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:3
+msgid "Create Plugin Buckets - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:13
+msgid "Create New Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:15
+msgid ""
+"You can configure list of plugins that will automatically get installed "
+"while deploying WordPress."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:20
+msgid "Plugin Buckets"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:3
+msgid "Deploy WordPress - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:94
+msgid "Create Wordpress Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:95
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:96
+#: websiteFunctions/templates/websiteFunctions/index.html:14
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:23
+msgid ""
+"On this page you can launch, list, modify and delete websites from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:102
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:103
+msgid "Website Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:132
+msgid "Title"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:296
+msgid "Select WP Version"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:307
+msgid "Plugin/Theme"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:320
+msgid "Automatic Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:333
+msgid "Plugins Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:345
+msgid "Themes Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:3
+msgid "Edit Plugin Bucket - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:13
+msgid "Edit Plugin Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:15
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:563
+msgid "Restore Backups "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:33
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:59
+msgid "Choose WPsite Restore Destination "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:47
+msgid "Choose Restoring Method "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:86
+msgid "Leave empty for default"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:106
+msgid "Restore Backup Now"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:130
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:616
+msgid "Backup succesfully created."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:3
+msgid "WordPress Manager - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:110
+msgid "WordPress Manager"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:399
+msgid "Test Domain"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:443
+msgid "Enter Subdomain Here"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:562
+msgid "Create Backup "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:572
+msgid "Select Backup type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:643
+msgid "Database for"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:667
+msgid "Table Prefix"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:791
+msgid "Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:3
+msgid "WordPress Sites - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:90
+msgid "List WordPress Websites"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:92
+msgid "Create WordPress Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:96
+msgid "Scan WordPress "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:99
+msgid ""
+"On this page you can launch, list, modify and delete Wordpress Sites from "
+"your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3
+msgid "Application Installer - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15
+msgid "One-click application install."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41
+msgid "Install Joomla with(?) LSCache"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:3
+msgid "Assign Package - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:96
+msgid "On this page you can Assign Packages to user."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:103
+msgid "Assigning Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:3
+msgid "Create Sub/Addon Domain - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:100
+msgid "Learn about Sub/Addon Domains"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:101
+msgid "Create Sub/Addon domains. "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:113
+msgid "You need to create website before creating Sub/Addon domains."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:124
+msgid "Domain Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3
+msgid "Create New Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3
+msgid "Delete Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13
+msgid ""
+"This page can be used to delete website, once deleted it can not be "
+"recovered."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61
+msgid "Cannot delete website, Error message: "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65
+msgid "Successfully Deleted."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3
+msgid "Domain Aliases - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19
+msgid "Domain Aliases"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13
+msgid ""
+"With Domain Aliases you can visit example.com using example.net and view the "
+"same content."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:34
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:76
+msgid "Create Alias"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:3
+msgid "Website Functions - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:33
+#: websiteFunctions/templates/websiteFunctions/index.html:57
+msgid "List Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:79
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20
+msgid "Suspend/Unsuspend Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3
+msgid "Install Joomla - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12
+msgid "Install Joomla"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13
+msgid "One-click Joomla Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:20
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:20
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20
+msgid "Installation Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:36
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35
+msgid "Login User"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:43
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42
+msgid "Login Password"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:50
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63
+msgid "Database Prefix"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:92
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:126
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:78
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:88
+msgid "Installation failed. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:96
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:130
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:82
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:92
+msgid "Installation successful. Visit:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:3
+msgid "Install Magento - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:12
+msgid "Install Magento"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:13
+msgid "One-click Magento Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:93
+msgid ""
+"does not work on OpenLiteSpeed. It is highly recommended to use this "
+"installer with LiteSpeed Enterprise only."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:3
+msgid "Install Mautic - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:12
+#: websiteFunctions/templates/websiteFunctions/website.html:1065
+#: websiteFunctions/templates/websiteFunctions/website.html:1069
+msgid "Install Mautic"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:13
+msgid "One-click Mautic Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:24
+msgid ""
+"Before installing Mautic, we will change the PHP version of the website to "
+"PHP 8.0, which is supported by Mautic."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:30
+msgid "Administrator Username"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3
+msgid "Install PrestaShop - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12
+msgid "Install PrestaShop"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13
+msgid "One-click PrestaShop Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28
+msgid "Shop Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3
+msgid "Install WordPress - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12
+msgid "Install WordPress"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13
+msgid "Install WordPress with LSCache."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28
+msgid "Blog Title"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:58
+msgid ""
+"Leave empty to install in website home directory. (Without preceding slash)"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:32
+#: websiteFunctions/templates/websiteFunctions/website.html:30
+msgid "Manage Git"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:36
+msgid "Copy/Sync to Master"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:39
+#: websiteFunctions/templates/websiteFunctions/website.html:38
+msgid "Stress Test"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:699
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:704
+#: websiteFunctions/templates/websiteFunctions/website.html:1014
+msgid "WP + LSCache"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:3
+msgid "Sub/Addon Domains - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:19
+msgid "List Child Domains"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:21
+msgid ""
+"On this page you can launch, list, modify and delete Sub/Addon domains from "
+"your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:3
+msgid "Cron Management - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:12
+#: websiteFunctions/templates/websiteFunctions/listCron.html:19
+msgid "Cron Management"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:12
+msgid "Cron Docs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:13
+msgid "Create, edit or delete your cron jobs from this page."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:27
+msgid "Add Cron"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:28
+msgid "Fetch Current Cron Jobs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:38
+#: websiteFunctions/templates/websiteFunctions/listCron.html:86
+msgid "Minute"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:39
+#: websiteFunctions/templates/websiteFunctions/listCron.html:92
+msgid "Hour"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:40
+msgid "Day of Month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:41
+#: websiteFunctions/templates/websiteFunctions/listCron.html:104
+msgid "Month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:42
+msgid "Day of Week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:70
+msgid "Pre defined"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:73
+msgid "Every minute"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:74
+msgid "Every 5 minutes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:75
+msgid "Every 30 minutes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:76
+msgid "Every hour"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:77
+msgid "Every day"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:78
+msgid "Every week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:79
+msgid "Every month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:80
+msgid "Every year"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:98
+msgid "Day of month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:110
+msgid "Day of week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:126
+msgid "Save edits"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:133
+msgid "Add cron"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:143
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102
+msgid "Cannot fetch website details. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:147
+msgid "Unable to add/save Cron. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:150
+msgid "Cron job saved"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3
+msgid "Websites Hosted - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:3
+msgid "Manage Git - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:12
+msgid "Manage GIT"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:16
+msgid "Git Docs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:17
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:24
+msgid "Manage and track folders via Git for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:30
+msgid "Select Folder to Track"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:41
+msgid ""
+"This folder does not have Git tracking, click below to initiate a repository "
+"and start tracking files."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:61
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:285
+msgid "Attach Existing Repo"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:67
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:291
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:707
+msgid "Git Host"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:112
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:337
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:768
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:36
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:161
+msgid "Deployment Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:178
+msgid "Repo Settings"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:184
+msgid "Auto Commit"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:197
+msgid "Auto Push"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:226
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:228
+msgid "Webhook URL"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:234
+msgid "Commands"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:394
+msgid "Create New Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:400
+msgid "Branch Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:448
+msgid "Commit Changes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:454
+msgid "Commit Message"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:512
+msgid "Edit .gitignore"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:520
+msgid ""
+"Contents of .gitignore, use the box below to Add/Edit content of .gitingore "
+"file."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:639
+msgid "Remove Git Tracking?"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:646
+msgid ""
+"Removing git tracking is not reversible, it will delete all of your commit "
+"history, however your files stays there."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:690
+msgid "View/Setup Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:701
+msgid "Setup Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:740
+msgid "Current Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:810
+msgid "View Commits"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:842
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:852
+msgid "View Changes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:860
+msgid "Select File"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3
+msgid "Modify Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51
+msgid "Current Package:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62
+msgid "Current Owner:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106
+msgid "Cannot modify website. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110
+msgid "Website Details Successfully fetched"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:3
+msgid "Git Management - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:12
+msgid "Git Management"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:13
+msgid "Attach git to your websites."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:21
+msgid "Attach Git"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:29
+msgid "Providers"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:65
+msgid ""
+"Before attaching repo to your website, make sure to place your Development "
+"key in your GIT repository."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:77
+msgid "Repository Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:86
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:262
+msgid "Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:97
+msgid "Attach Now"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:121
+msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:213
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:273
+msgid "Change Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:222
+msgid "Detach Repo"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:229
+msgid ""
+"Add this URL to Webhooks section of your Git respository, if you've used "
+"hostname SSL then replace IP with your hostname. Otherwise use IP and "
+"disable SSL check while configuring webhook. This will initiate a pull from "
+"your resposity as soon as you commit some changes."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:241
+msgid "Repo successfully detached, refreshing in 3 seconds.."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:287
+msgid "Branch successfully changed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3
+msgid "Set up Staging Enviroment - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12
+msgid "Set up Staging Enviroment"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20
+msgid "Set up staging enviroment for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13
+msgid ""
+". Any domain that you will choose here will be created as child-domain for "
+"this master site."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31
+msgid "Domain that you will enter below will be created as child-domain to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33
+msgid "."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47
+msgid "Start Cloning"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3
+msgid "SSH and CageFS - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12
+msgid "SSH Access"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13
+msgid "Set up SSH access and enable/disable CageFS for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13
+msgid " CageFS require CloudLinux OS."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20
+msgid "Set up SSH access for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:31
+msgid "SSH user for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33
+msgid " is "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3
+msgid "Suspend/Unsuspend Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14
+msgid "This page can be used to suspend/unsuspend website."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45
+msgid "Un-Suspend"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65
+msgid "Cannot suspend website, Error message: "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69
+msgid "Cannot unsuspend website. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73
+msgid "Website "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73
+msgid "Successfully "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3
+msgid "Sync to Master - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12
+msgid "Sync your site to Master"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13
+msgid "Right now you can only sync your child domains to master domains."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13
+msgid " will be synced to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20
+msgid "Sync "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20
+msgid "to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30
+msgid "What to Sync"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63
+msgid "Start Syncing"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:34
+msgid "Clone/Staging"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:36
+msgid "Set up SSH/SFTP Access"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:687
+msgid "It is not required to modify rules if you are using OpenLiteSpeed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:1070
+msgid "Mautic"
+msgstr ""
diff --git a/locale/el/LC_MESSAGES/django.mo b/locale/el/LC_MESSAGES/django.mo
new file mode 100644
index 000000000..71cbdf3e9
Binary files /dev/null and b/locale/el/LC_MESSAGES/django.mo differ
diff --git a/locale/el/LC_MESSAGES/django.po b/locale/el/LC_MESSAGES/django.po
new file mode 100644
index 000000000..dfeb54afc
--- /dev/null
+++ b/locale/el/LC_MESSAGES/django.po
@@ -0,0 +1,8948 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#: IncBackups/templates/IncBackups/backupSchedule.html:273
+#: baseTemplate/templates/baseTemplate/design.html:14
+#: emailMarketing/templates/emailMarketing/sendEmails.html:93
+#: userManagment/templates/userManagment/modifyACL.html:361
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:87
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:92
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:211
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:243
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:316
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2024-05-28 18:59+0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: CLManager/templates/CLManager/cloudLinux.html:3
+msgid "CloudLinux - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:13
+#: CLManager/templates/CLManager/cloudLinux.html:20
+#: baseTemplate/templates/baseTemplate/index.html:842
+#: baseTemplate/templates/baseTemplate/index.html:844
+msgid "CloudLinux"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:14
+msgid "Access LVEManager"
+msgstr ""
+
+#: CLManager/templates/CLManager/cloudLinux.html:24
+msgid ""
+"CloudLinux is now integrated via their new API. You can manage CageFS and "
+"Package limits directly from LVEManager by clicking below. You can use your "
+"server root credentials to access LVEManager."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:3
+msgid "Create Cloud Linux Package - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:9
+msgid "Create CloudLinux Package."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:10
+msgid ""
+"Each CloudLinux package have one associated (owner) CyberPanel package. "
+"During website creation associated CloudLinux package will be assigned to "
+"website user."
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:15
+#: CLManager/templates/CLManager/createPackage.html:130
+#: baseTemplate/templates/baseTemplate/index.html:457
+#: baseTemplate/templates/baseTemplate/index.html:851
+#: packages/templates/packages/createPackage.html:13
+#: packages/templates/packages/createPackage.html:106
+#: packages/templates/packages/index.html:25
+#: packages/templates/packages/index.html:28
+#: userManagment/templates/userManagment/createACL.html:152
+#: userManagment/templates/userManagment/modifyACL.html:156
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:95
+msgid "Create Package"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:24
+#: packages/templates/packages/deletePackage.html:26
+#: packages/templates/packages/modifyPackage.html:24
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:111
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:121
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:112
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:182
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45
+msgid "Select Package"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:40
+#: packages/templates/packages/createPackage.html:27
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:113
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:227
+msgid "Package Name"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:47
+#: CLManager/templates/CLManager/listPackages.html:87
+msgid "SPEED"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:56
+#: CLManager/templates/CLManager/listPackages.html:98
+msgid "VMEM"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:64
+#: CLManager/templates/CLManager/listPackages.html:109
+msgid "PMEM"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:73
+#: CLManager/templates/CLManager/listPackages.html:120
+msgid "IO"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:81
+#: CLManager/templates/CLManager/listPackages.html:131
+#: containerization/templates/containerization/websiteContainerLimit.html:52
+#: containerization/templates/containerization/websiteContainerLimit.html:99
+msgid "IOPS"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:89
+#: CLManager/templates/CLManager/listPackages.html:142
+msgid "EP"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:97
+#: CLManager/templates/CLManager/listPackages.html:153
+msgid "NPROC"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:105
+#: CLManager/templates/CLManager/listPackages.html:164
+msgid "INODES soft"
+msgstr ""
+
+#: CLManager/templates/CLManager/createPackage.html:113
+#: CLManager/templates/CLManager/listPackages.html:175
+msgid "INODES hard"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:3
+msgid "Manage CloudLinux Packages - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:14
+msgid "Manage CloudLinux Packages"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:15
+msgid "Manage/Delete CloudLinux Packages."
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:76
+#: backup/templates/backup/OneClickBackupSchedule.html:36
+#: backup/templates/backup/OneClickBackupSchedule.html:44
+#: backup/templates/backup/backupDestinations.html:51
+#: backup/templates/backup/backupDestinations.html:115
+#: backup/templates/backup/backupDestinations.html:148
+#: backup/templates/backup/backupDestinations.html:182
+#: backup/templates/backup/backupSchedule.html:46
+#: baseTemplate/templates/baseTemplate/FileManager.html:198
+#: dns/templates/dns/addDeleteDNSRecords.html:86
+#: dns/templates/dns/addDeleteDNSRecords.html:112
+#: dns/templates/dns/addDeleteDNSRecords.html:139
+#: dns/templates/dns/addDeleteDNSRecords.html:165
+#: dns/templates/dns/addDeleteDNSRecords.html:197
+#: dns/templates/dns/addDeleteDNSRecords.html:224
+#: dns/templates/dns/addDeleteDNSRecords.html:251
+#: dns/templates/dns/addDeleteDNSRecords.html:278
+#: dns/templates/dns/addDeleteDNSRecords.html:305
+#: dns/templates/dns/addDeleteDNSRecords.html:336
+#: dns/templates/dns/addDeleteDNSRecords.html:368
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:168
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:199
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:231
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:261
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:298
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:329
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:360
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:391
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:422
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:458
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:494
+#: dockerManager/templates/dockerManager/runContainer.html:29
+#: filemanager/templates/filemanager/index.html:200
+#: firewall/templates/firewall/firewall.html:120
+#: packages/templates/packages/listPackages.html:84
+#: pluginHolder/templates/pluginHolder/plugins.html:28
+#: serverStatus/templates/serverStatus/litespeedStatus.html:38
+#: serverStatus/templates/serverStatus/litespeedStatus.html:276
+#: userManagment/templates/userManagment/listUsers.html:120
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:85
+msgid "Name"
+msgstr ""
+
+#: CLManager/templates/CLManager/listPackages.html:205
+#: CLManager/templates/CLManager/listWebsites.html:86
+#: CLManager/templates/CLManager/monitorUsage.html:57
+#: containerization/templates/containerization/listWebsites.html:57
+#: emailPremium/templates/emailPremium/emailLimits.html:172
+#: emailPremium/templates/emailPremium/emailPage.html:179
+#: emailPremium/templates/emailPremium/listDomains.html:75
+#: pluginHolder/templates/pluginHolder/plugins.html:51
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:153
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:264
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:107
+msgid "Cannot list websites. Error message:"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:3
+msgid "CageFS - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:14
+#: CLManager/templates/CLManager/monitorUsage.html:14
+#: baseTemplate/templates/baseTemplate/index.html:420
+#: containerization/templates/containerization/listWebsites.html:14
+#: websiteFunctions/templates/websiteFunctions/index.html:31
+#: websiteFunctions/templates/websiteFunctions/index.html:55
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19
+msgid "List Websites"
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:15
+msgid "Enable/Disable and view CageFS status for websites."
+msgstr ""
+
+#: CLManager/templates/CLManager/listWebsites.html:28
+msgid "Default: "
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:3
+msgid "Monitor Usage - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:15
+msgid "Monitor usage of your websites."
+msgstr ""
+
+#: CLManager/templates/CLManager/monitorUsage.html:21
+#: baseTemplate/templates/baseTemplate/homePage.html:42
+#: baseTemplate/templates/baseTemplate/index.html:406
+#: baseTemplate/templates/baseTemplate/index.html:407
+#: baseTemplate/templates/baseTemplate/index.html:408
+#: containerization/templates/containerization/listWebsites.html:21
+msgid "Websites"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:3
+#: containerization/templates/containerization/notAvailable.html:3
+#: firewall/templates/firewall/notAvailable.html:3
+#: firewall/templates/firewall/notAvailableAV.html:3
+msgid "Not available - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:13
+#: containerization/templates/containerization/notAvailable.html:13
+#: firewall/templates/firewall/notAvailable.html:13
+#: firewall/templates/firewall/notAvailableAV.html:13
+msgid "Not available"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:14
+msgid "Either CageFS is not installed or you are not on CloudLinux OS."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:22
+#: firewall/templates/firewall/notAvailable.html:26
+msgid "CloudLinux is not installed on your server."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:24
+#: containerization/templates/containerization/notAvailable.html:24
+#: firewall/templates/firewall/notAvailable.html:28
+msgid " for conversion details."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:34
+#: firewall/templates/firewall/notAvailable.html:38
+#: firewall/templates/firewall/notAvailableAV.html:24
+msgid "Activate Now"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:39
+msgid "CloudLinux is installed, but not activated."
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:3
+msgid " usage - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:14
+#: emailMarketing/templates/emailMarketing/website.html:40
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:50
+#: websiteFunctions/templates/websiteFunctions/website.html:49
+msgid "Usage"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:15
+msgid "View CPU, Memory and Disk usage for "
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:21
+#: containerization/templates/containerization/websiteContainerLimit.html:155
+msgid "CPU Usage of"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:30
+#: containerization/templates/containerization/websiteContainerLimit.html:164
+msgid "Memory Usage of"
+msgstr ""
+
+#: CLManager/templates/CLManager/websiteContainerLimit.html:39
+#: containerization/templates/containerization/websiteContainerLimit.html:173
+msgid "Disk Usage of"
+msgstr ""
+
+#: CyberCP/settings.py:175
+msgid "English"
+msgstr ""
+
+#: CyberCP/settings.py:176
+msgid "Chinese"
+msgstr ""
+
+#: CyberCP/settings.py:177
+msgid "Bulgarian"
+msgstr ""
+
+#: CyberCP/settings.py:178
+msgid "Portuguese"
+msgstr ""
+
+#: CyberCP/settings.py:179
+msgid "Japanese"
+msgstr ""
+
+#: CyberCP/settings.py:180
+msgid "Bosnian"
+msgstr ""
+
+#: CyberCP/settings.py:181
+msgid "Greek"
+msgstr ""
+
+#: CyberCP/settings.py:182
+msgid "Russian"
+msgstr ""
+
+#: CyberCP/settings.py:183
+msgid "Turkish"
+msgstr ""
+
+#: CyberCP/settings.py:184
+msgid "Spanish"
+msgstr ""
+
+#: CyberCP/settings.py:185
+msgid "French"
+msgstr ""
+
+#: CyberCP/settings.py:186
+msgid "Polish"
+msgstr ""
+
+#: CyberCP/settings.py:187
+msgid "Vietnamese"
+msgstr ""
+
+#: CyberCP/settings.py:188
+msgid "Italian"
+msgstr ""
+
+#: CyberCP/settings.py:189
+msgid "Deutsch"
+msgstr ""
+
+#: CyberCP/settings.py:190
+msgid "Indonesian"
+msgstr ""
+
+#: CyberCP/settings.py:191
+msgid "Bangla"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:3
+msgid "Configure V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:17
+msgid "Configure v2 Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:26
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:41
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:38
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:36
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:36
+#: IncBackups/templates/IncBackups/createBackup.html:33
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35
+#: backup/templates/backup/backup.html:35
+#: databases/templates/databases/createDatabase.html:26
+#: databases/templates/databases/deleteDatabase.html:26
+#: ftp/templates/ftp/createFTPAccount.html:42
+#: mailServer/templates/mailServer/EmailLimits.html:45
+#: mailServer/templates/mailServer/changeEmailPassword.html:44
+#: mailServer/templates/mailServer/createEmailAccount.html:46
+#: mailServer/templates/mailServer/deleteEmailAccount.html:44
+#: mailServer/templates/mailServer/dkimManager.html:83
+#: mailServer/templates/mailServer/emailForwarding.html:38
+#: manageSSL/templates/manageSSL/manageSSL.html:32
+#: manageSSL/templates/manageSSL/sslForHostName.html:37
+#: manageSSL/templates/manageSSL/sslForMailServer.html:37
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:139
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29
+msgid "Select Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:39
+msgid "Select Backup Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:58
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:116
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:171
+#: backup/templates/backup/googleDrive.html:39
+msgid "Set up account"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:65
+#: backup/templates/backup/googleDrive.html:46
+msgid "Account Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:74
+msgid "client_id"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:82
+msgid "client_secret"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:123
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:84
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:308
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:724
+msgid "Repo Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:131
+msgid "Host Name"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:139
+#: backup/templates/backup/backupDestinations.html:65
+#: backup/templates/backup/backupDestinations.html:117
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:44
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78
+#: serverLogs/templates/serverLogs/serverMail.html:58
+#: userManagment/templates/userManagment/createUser.html:76
+#: userManagment/templates/userManagment/listUsers.html:34
+#: userManagment/templates/userManagment/userProfile.html:36
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:322
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:48
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:268
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:76
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:300
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:716
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:69
+msgid "Username"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:147
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:54
+#: backup/templates/backup/backupDestinations.html:72
+#: backup/templates/backup/remoteBackups.html:37
+#: databases/templates/databases/createDatabase.html:55
+#: databases/templates/databases/listDataBases.html:110
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50
+#: ftp/templates/ftp/listFTPAccounts.html:126
+#: mailServer/templates/mailServer/changeEmailPassword.html:68
+#: mailServer/templates/mailServer/createEmailAccount.html:70
+#: mailServer/templates/mailServer/listEmails.html:217
+#: serverLogs/templates/serverLogs/serverMail.html:65
+#: userManagment/templates/userManagment/createUser.html:83
+#: userManagment/templates/userManagment/modifyUser.html:62
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:341
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:56
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:286
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:58
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:44
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:37
+msgid "Password"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ConfigureV2Backup.html:155
+#: firewall/templates/firewall/secureSSH.html:50
+msgid "SSH Port"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:3
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:26
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:27
+msgid "Create v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:16
+#: baseTemplate/templates/baseTemplate/index.html:669
+msgid "Create V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:19
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:20
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:20
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:20
+#: IncBackups/templates/IncBackups/createBackup.html:15
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17
+#: backup/templates/backup/backup.html:16
+#: backup/templates/backup/restore.html:14
+#: backup/templates/backup/restoreOCBackups.html:16
+msgid "Backup Docs"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:20
+msgid "This page can be used to create your backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:52
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:49
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:47
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:62
+msgid "Select Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:60
+msgid "Backup Contents"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:99
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:58
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:120
+msgid " "
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:125
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:84
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:130
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:212
+#: backup/templates/backup/restore.html:86
+#: backup/templates/backup/restoreOCBackups.html:78
+#: databases/templates/databases/deleteDatabase.html:60
+#: databases/templates/databases/listDataBases.html:56
+#: dockerManager/templates/dockerManager/listContainers.html:57
+#: dockerManager/templates/dockerManager/runContainer.html:176
+#: emailMarketing/templates/emailMarketing/website.html:411
+#: emailMarketing/templates/emailMarketing/website.html:947
+#: firewall/templates/firewall/firewall.html:152
+#: managePHP/templates/managePHP/editPHPConfig.html:218
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:228
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:72
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:383
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:126
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:519
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:612
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:274
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:248
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:98
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:662
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:117
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:237
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:283
+#: websiteFunctions/templates/websiteFunctions/website.html:385
+#: websiteFunctions/templates/websiteFunctions/website.html:900
+msgid "Error message:"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:129
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:88
+msgid "Backup succesfully."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:134
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:93
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:139
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:221
+#: backup/templates/backup/restore.html:95
+#: backup/templates/backup/restoreOCBackups.html:87
+#: databases/templates/databases/deleteDatabase.html:69
+#: dns/templates/dns/addDeleteDNSRecords.html:440
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:562
+#: dns/templates/dns/createDNSZone.html:70
+#: dns/templates/dns/createNameServer.html:102
+#: dns/templates/dns/deleteDNSZone.html:77
+#: dockerManager/templates/dockerManager/runContainer.html:185
+#: emailMarketing/templates/emailMarketing/website.html:161
+#: emailMarketing/templates/emailMarketing/website.html:420
+#: emailMarketing/templates/emailMarketing/website.html:471
+#: emailMarketing/templates/emailMarketing/website.html:633
+#: emailMarketing/templates/emailMarketing/website.html:689
+#: emailMarketing/templates/emailMarketing/website.html:749
+#: emailMarketing/templates/emailMarketing/website.html:835
+#: emailMarketing/templates/emailMarketing/website.html:955
+#: emailPremium/templates/emailPremium/emailLimits.html:101
+#: emailPremium/templates/emailPremium/emailPage.html:119
+#: mailServer/templates/mailServer/EmailLimits.html:91
+#: mailServer/templates/mailServer/changeEmailPassword.html:114
+#: mailServer/templates/mailServer/createEmailAccount.html:117
+#: mailServer/templates/mailServer/deleteEmailAccount.html:98
+#: mailServer/templates/mailServer/dkimManager.html:156
+#: mailServer/templates/mailServer/emailForwarding.html:83
+#: manageSSL/templates/manageSSL/manageSSL.html:64
+#: userManagment/templates/userManagment/createUser.html:137
+#: userManagment/templates/userManagment/modifyUser.html:138
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:237
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:392
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:135
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:528
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:621
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:283
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:257
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:107
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:158
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:102
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:135
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:88
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:96
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:173
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:349
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:405
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:461
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:547
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:670
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:127
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:247
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:293
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77
+#: websiteFunctions/templates/websiteFunctions/website.html:155
+#: websiteFunctions/templates/websiteFunctions/website.html:394
+#: websiteFunctions/templates/websiteFunctions/website.html:445
+#: websiteFunctions/templates/websiteFunctions/website.html:603
+#: websiteFunctions/templates/websiteFunctions/website.html:650
+#: websiteFunctions/templates/websiteFunctions/website.html:719
+#: websiteFunctions/templates/websiteFunctions/website.html:802
+#: websiteFunctions/templates/websiteFunctions/website.html:908
+msgid "Could not connect to server. Please refresh this page."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/CreateV2Backup.html:145
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:104
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:150
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:232
+#: backup/templates/backup/restoreOCBackups.html:98
+#: dockerManager/templates/dockerManager/runContainer.html:196
+#: emailMarketing/templates/emailMarketing/createEmailList.html:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:224
+#: emailMarketing/templates/emailMarketing/sendEmails.html:135
+#: emailMarketing/templates/emailMarketing/website.html:431
+#: managePHP/templates/managePHP/installExtensions.html:103
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:248
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:403
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:145
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:539
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:631
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:294
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:268
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:112
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:146
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:98
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:106
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:241
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:137
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90
+#: websiteFunctions/templates/websiteFunctions/website.html:405
+msgid "Go Back"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:3
+msgid "Delete v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:17
+msgid "Delete V2 Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/DeleteV2repo.html:21
+msgid "This page can be used to delete your backup repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:3
+#: IncBackups/templates/IncBackups/createBackup.html:13
+#: IncBackups/templates/IncBackups/createBackup.html:23
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25
+#: backup/templates/backup/backup.html:3 backup/templates/backup/backup.html:13
+#: backup/templates/backup/backup.html:23
+msgid "Backup Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:17
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:27
+msgid "Restore V2 Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:21
+msgid "This page can be used to restore your backup sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:69
+#: IncBackups/templates/IncBackups/createBackup.html:162
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97
+msgid "Snapshot ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:70
+#: serverStatus/templates/serverStatus/topProcesses.html:199
+msgid "Time"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:71
+#: IncBackups/templates/IncBackups/createBackup.html:165
+#: websiteFunctions/templates/websiteFunctions/listCron.html:44
+msgid "Action"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:89
+#: IncBackups/templates/IncBackups/createBackup.html:129
+#: backup/templates/backup/index.html:46
+#: backup/templates/backup/restore.html:45
+#: baseTemplate/templates/baseTemplate/FileManager.html:649
+#: filemanager/templates/filemanager/index.html:683
+#: filemanager/templates/filemanager/index.html:736
+msgid "Restore"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:98
+msgid "Are you ready to restore the backup? This may overwrite existing files."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:134
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:216
+msgid "Restored succesfully."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:173
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:145
+#: IncBackups/templates/IncBackups/backupSchedule.html:185
+#: IncBackups/templates/IncBackups/backupSchedule.html:198
+#: IncBackups/templates/IncBackups/backupSchedule.html:315
+#: IncBackups/templates/IncBackups/createBackup.html:130
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:91
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:152
+#: backup/templates/backup/OneClickBackupSchedule.html:117
+#: backup/templates/backup/OneClickBackupSchedule.html:272
+#: backup/templates/backup/backup.html:116
+#: backup/templates/backup/backupDestinations.html:120
+#: backup/templates/backup/backupDestinations.html:184
+#: backup/templates/backup/backupSchedule.html:120
+#: backup/templates/backup/backupSchedule.html:275
+#: backup/templates/backup/googleDrive.html:86
+#: backup/templates/backup/googleDrive.html:228
+#: baseTemplate/templates/baseTemplate/FileManager.html:64
+#: baseTemplate/templates/baseTemplate/FileManager.html:642
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:500
+#: emailMarketing/templates/emailMarketing/manageLists.html:43
+#: emailMarketing/templates/emailMarketing/manageLists.html:282
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92
+#: emailMarketing/templates/emailMarketing/sendEmails.html:170
+#: emailMarketing/templates/emailMarketing/website.html:533
+#: filemanager/templates/filemanager/index.html:64
+#: filemanager/templates/filemanager/index.html:731
+#: firewall/templates/firewall/firewall.html:124
+#: firewall/templates/firewall/secureSSH.html:122
+#: mailServer/templates/mailServer/listEmails.html:182
+#: packages/templates/packages/listPackages.html:63
+#: userManagment/templates/userManagment/listUsers.html:67
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:204
+#: websiteFunctions/templates/websiteFunctions/listCron.html:57
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:66
+#: websiteFunctions/templates/websiteFunctions/website.html:508
+msgid "Delete"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/RestoreV2Backup.html:180
+msgid "Are you ready to delete this snapshot? This process can not be undone."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:3
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:27
+msgid "Schedule v2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:17
+#: baseTemplate/templates/baseTemplate/index.html:675
+msgid "Schedule V2 Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:21
+msgid "This page can be used to schedule your backups."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:47
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:35
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:149
+msgid "Backup Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:70
+msgid "Backup Retention"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:81
+#: IncBackups/templates/IncBackups/backupSchedule.html:66
+#: IncBackups/templates/IncBackups/createBackup.html:56
+msgid "Backup Content"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:138
+msgid "Repo"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:139
+#: IncBackups/templates/IncBackups/backupSchedule.html:183
+msgid "Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:140
+msgid "Retention"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:141
+msgid "Backup Websites?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:142
+msgid "Backup Databases?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:143
+msgid "Backup Emails?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:144
+msgid "Last Run"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/ScheduleV2Backup.html:179
+#: dns/templates/dns/deleteDNSZone.html:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:58
+#: emailMarketing/templates/emailMarketing/sendEmails.html:51
+#: ftp/templates/ftp/deleteFTPAccount.html:73
+#: mailServer/templates/mailServer/deleteEmailAccount.html:82
+#: packages/templates/packages/deletePackage.html:47
+#: serverStatus/templates/serverStatus/litespeedStatus.html:177
+#: userManagment/templates/userManagment/deleteACL.html:49
+#: userManagment/templates/userManagment/deleteUser.html:51
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51
+msgid "Are you sure?"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:3
+#: backup/templates/backup/OneClickBackupSchedule.html:3
+#: backup/templates/backup/backupSchedule.html:3
+msgid "Schedule Backup - CyberPanel"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:13
+#: IncBackups/templates/IncBackups/backupSchedule.html:23
+#: backup/templates/backup/OneClickBackupSchedule.html:14
+#: backup/templates/backup/backupSchedule.html:14
+#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77
+#: baseTemplate/templates/baseTemplate/index.html:716
+#: userManagment/templates/userManagment/createACL.html:392
+#: userManagment/templates/userManagment/modifyACL.html:396
+msgid "Schedule Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:16
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:18
+#: backup/templates/backup/OneClickBackupSchedule.html:18
+#: backup/templates/backup/backupDestinations.html:18
+#: backup/templates/backup/backupSchedule.html:18
+#: backup/templates/backup/googleDrive.html:18
+#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92
+#: backup/templates/backup/remoteBackups.html:14
+#: backup/templates/backup/remoteBackups.html:21
+#: baseTemplate/templates/baseTemplate/index.html:726
+#: userManagment/templates/userManagment/createACL.html:402
+#: userManagment/templates/userManagment/modifyACL.html:406
+msgid "Remote Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:17
+msgid ""
+"On this page you can schedule Backups to localhost or remote server (If you "
+"have added one)."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:33
+#: backup/templates/backup/OneClickBackupSchedule.html:101
+#: backup/templates/backup/backupSchedule.html:35
+#: backup/templates/backup/backupSchedule.html:102
+msgid "Select Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:44
+msgid "Select Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:54
+#: backup/templates/backup/OneClickBackupSchedule.html:63
+#: backup/templates/backup/backupSchedule.html:65
+msgid "Select Backup Retention. Leave 0 for no limit"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:110
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:72
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:132
+#: backup/templates/backup/backupDestinations.html:98
+#: backup/templates/backup/backupDestinations.html:165
+#: baseTemplate/templates/baseTemplate/index.html:711
+msgid "Add Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:124
+#: backup/templates/backup/remoteBackups.html:96
+msgid "Search Accounts.."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:136
+msgid "Select sites to be included in this job"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:181
+#: IncBackups/templates/IncBackups/backupSchedule.html:302
+#: IncBackups/templates/IncBackups/createBackup.html:127
+#: backup/templates/backup/backup.html:111
+#: databases/templates/databases/listDataBases.html:107
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:43
+#: emailMarketing/templates/emailMarketing/manageLists.html:266
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74
+#: firewall/templates/firewall/firewall.html:119
+#: firewall/templates/firewall/modSecurityRulesPacks.html:109
+#: ftp/templates/ftp/listFTPAccounts.html:122
+#: mailServer/templates/mailServer/emailForwarding.html:117
+#: managePHP/templates/managePHP/installExtensions.html:60
+msgid "ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:182
+#: IncBackups/templates/IncBackups/createBackup.html:44
+#: IncBackups/templates/IncBackups/createBackup.html:164
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46
+#: backup/templates/backup/backup.html:46
+#: mailServer/templates/mailServer/emailForwarding.html:101
+#: mailServer/templates/mailServer/emailForwarding.html:119
+msgid "Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:184
+#: IncBackups/templates/IncBackups/backupSchedule.html:284
+msgid "Sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:203
+#: baseTemplate/templates/baseTemplate/FileManager.html:76
+#: baseTemplate/templates/baseTemplate/FileManager.html:645
+#: emailPremium/templates/emailPremium/emailLimits.html:58
+#: emailPremium/templates/emailPremium/emailPage.html:66
+#: filemanager/templates/filemanager/index.html:76
+#: filemanager/templates/filemanager/index.html:734
+#: packages/templates/packages/listPackages.html:60
+#: userManagment/templates/userManagment/listUsers.html:63
+#: websiteFunctions/templates/websiteFunctions/listCron.html:58
+msgid "Edit"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:227
+#: IncBackups/templates/IncBackups/createBackup.html:161
+#: emailMarketing/templates/emailMarketing/sendEmails.html:151
+msgid "Job ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:237
+msgid "Data"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:249
+#: baseTemplate/templates/baseTemplate/homePage.html:66
+#: baseTemplate/templates/baseTemplate/index.html:480
+#: baseTemplate/templates/baseTemplate/index.html:481
+#: baseTemplate/templates/baseTemplate/index.html:482
+#: emailMarketing/templates/emailMarketing/website.html:51
+#: packages/templates/packages/createPackage.html:69
+#: packages/templates/packages/listPackages.html:37
+#: packages/templates/packages/listPackages.html:134
+#: packages/templates/packages/modifyPackage.html:73
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:61
+#: websiteFunctions/templates/websiteFunctions/website.html:60
+msgid "Databases"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:261
+#: baseTemplate/templates/baseTemplate/homePage.html:111
+#: baseTemplate/templates/baseTemplate/homePage.html:114
+#: mailServer/templates/mailServer/listEmails.html:165
+#: packages/templates/packages/createPackage.html:77
+#: packages/templates/packages/listPackages.html:143
+#: packages/templates/packages/modifyPackage.html:80
+msgid "Emails"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:275
+#: baseTemplate/templates/baseTemplate/FileManager.html:300
+#: baseTemplate/templates/baseTemplate/design.html:59
+#: databases/templates/databases/listDataBases.html:163
+#: filemanager/templates/filemanager/editFile.html:152
+#: filemanager/templates/filemanager/index.html:302
+#: firewall/templates/firewall/secureSSH.html:73
+#: mailServer/templates/mailServer/EmailLimits.html:123
+#: managePHP/templates/managePHP/editPHPConfig.html:138
+#: managePHP/templates/managePHP/editPHPConfig.html:207
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:157
+#: userManagment/templates/userManagment/apiAccess.html:53
+#: userManagment/templates/userManagment/modifyACL.html:447
+#: userManagment/templates/userManagment/resellerCenter.html:58
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:47
+msgid "Save Changes"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:291
+msgid "Add Sites"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:303
+#: backup/templates/backup/remoteBackups.html:107
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65
+msgid "Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:304
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101
+#: backup/templates/backup/oneClickBackups.html:67
+#: backup/templates/backup/oneClickBackups.html:129
+#: baseTemplate/templates/baseTemplate/FileManager.html:202
+#: dns/templates/dns/addDeleteDNSRecords.html:372
+#: dockerManager/templates/dockerManager/viewContainer.html:108
+#: emailMarketing/templates/emailMarketing/manageLists.html:270
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79
+#: emailMarketing/templates/emailMarketing/sendEmails.html:157
+#: filemanager/templates/filemanager/index.html:204
+#: mailServer/templates/mailServer/emailForwarding.html:120
+#: mailServer/templates/mailServer/listEmails.html:167
+#: manageServices/templates/manageServices/applications.html:34
+#: packages/templates/packages/listPackages.html:41
+#: serverStatus/templates/serverStatus/packageManager.html:118
+#: serverStatus/templates/serverStatus/packageManager.html:285
+#: serverStatus/templates/serverStatus/packageManager.html:448
+#: serverStatus/templates/serverStatus/topProcesses.html:201
+#: userManagment/templates/userManagment/listUsers.html:40
+msgid "Actions"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:332
+msgid "Select Site"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:351
+#: dns/templates/dns/addDeleteDNSRecords.html:103
+#: dns/templates/dns/addDeleteDNSRecords.html:129
+#: dns/templates/dns/addDeleteDNSRecords.html:156
+#: dns/templates/dns/addDeleteDNSRecords.html:187
+#: dns/templates/dns/addDeleteDNSRecords.html:215
+#: dns/templates/dns/addDeleteDNSRecords.html:242
+#: dns/templates/dns/addDeleteDNSRecords.html:269
+#: dns/templates/dns/addDeleteDNSRecords.html:296
+#: dns/templates/dns/addDeleteDNSRecords.html:328
+#: dns/templates/dns/addDeleteDNSRecords.html:349
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:190
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:221
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:252
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:288
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:320
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:351
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:382
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:413
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:450
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:476
+#: firewall/templates/firewall/firewall.html:104
+msgid "Add"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:3
+msgid "Create Incremental Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:17
+msgid "This page can be used to create incremental backups for your websites."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:113
+#: backup/templates/backup/backup.html:89
+#: baseTemplate/templates/baseTemplate/index.html:701
+#: baseTemplate/templates/baseTemplate/index.html:744
+#: userManagment/templates/userManagment/createACL.html:352
+#: userManagment/templates/userManagment/modifyACL.html:356
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:586
+msgid "Create Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:128
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98
+#: backup/templates/backup/backup.html:113
+#: emailMarketing/templates/emailMarketing/sendEmails.html:152
+msgid "Date"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:163
+#: dns/templates/dns/addDeleteDNSRecords.html:367
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:495
+#: pluginHolder/templates/pluginHolder/plugins.html:29
+msgid "Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:14
+msgid "Set up Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:14
+msgid "Set up Incremental Backup Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:20
+msgid "On this page you can set up your Backup destinations. (SFTP and AWS)"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:26
+#: backup/templates/backup/backupDestinations.html:26
+#: backup/templates/backup/oneClickBackups.html:26
+msgid "Set up Backup Destinations."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:35
+#: backup/templates/backup/backupDestinations.html:39
+msgid "Select Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:47
+#: backup/templates/backup/backupDestinations.html:58
+#: backup/templates/backup/remoteBackups.html:29
+#: dns/templates/dns/addDeleteDNSRecords.html:96
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:180
+#: dns/templates/dns/createNameServer.html:55
+#: dns/templates/dns/createNameServer.html:71
+#: firewall/templates/firewall/firewall.html:122
+msgid "IP Address"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:61
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:90
+#: backup/templates/backup/backupDestinations.html:79
+#: backup/templates/backup/backupDestinations.html:119
+#: dockerManager/templates/dockerManager/runContainer.html:74
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77
+#: firewall/templates/firewall/firewall.html:123
+#: mailServer/templates/mailServer/listEmails.html:87
+#: mailServer/templates/mailServer/listEmails.html:91
+#: mailServer/templates/mailServer/listEmails.html:114
+#: mailServer/templates/mailServer/listEmails.html:118
+#: mailServer/templates/mailServer/listEmails.html:141
+#: mailServer/templates/mailServer/listEmails.html:145
+#: mailServer/templates/mailServer/listEmails.html:149
+#: serverLogs/templates/serverLogs/serverMail.html:51
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:34
+msgid "Port"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:63
+#: backup/templates/backup/backupDestinations.html:81
+msgid "Backup server SSH Port, leave empty for 22."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:89
+#: backup/templates/backup/backupDestinations.html:116
+msgid "IP"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:115
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:151
+msgid "AWS_ACCESS_KEY_ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:122
+msgid "AWS_SECRET_ACCESS_KEY"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13
+msgid "Restore Remote Incremental Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19
+msgid ""
+"This page can be used to restore remote incremental backups for your "
+"websites."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58
+msgid "Encrypted Backup Password"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69
+msgid "Fetch Restore Points"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76
+msgid "Host"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100
+#: backup/templates/backup/backupDestinations.html:87
+#: backup/templates/backup/backupDestinations.html:118
+#: backup/templates/backup/backupDestinations.html:183
+#: emailMarketing/templates/emailMarketing/createEmailList.html:33
+#: emailMarketing/templates/emailMarketing/manageLists.html:195
+#: emailMarketing/templates/emailMarketing/website.html:330
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:176
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:57
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:67
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56
+#: websiteFunctions/templates/websiteFunctions/website.html:308
+msgid "Path"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:3
+msgid "Terminal - CyberPanel"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:13
+msgid "Terminal"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:16
+msgid "Web Terminal Docs"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:17
+msgid "Execute your terminal commands."
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:24
+msgid "Web Terminal"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:26
+msgid "Reboot SSH Server"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:20
+#: backup/templates/backup/backupSchedule.html:20
+msgid ""
+"On this page you can schedule Backups to localhost or remote server (If you "
+"have added one)"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:26
+#: backup/templates/backup/backupSchedule.html:26
+msgid "Create New Backup Schedule"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:52
+#: backup/templates/backup/backupSchedule.html:54
+#: backup/templates/backup/googleDrive.html:90
+msgid "Select Backup Frequency"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:76
+#: backup/templates/backup/backupSchedule.html:78
+msgid "Add Schedule"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:91
+#: backup/templates/backup/backupSchedule.html:93
+msgid "Manage Existing Backup Schedules"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:110
+#: backup/templates/backup/backupSchedule.html:113
+msgid "Select Job"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:121
+#: backup/templates/backup/backupSchedule.html:124
+#: backup/templates/backup/googleDrive.html:102
+msgid "Add Sites for Backup"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:130
+#: backup/templates/backup/backupSchedule.html:133
+#: backup/templates/backup/googleDrive.html:111
+msgid "Add Site"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:132
+#: backup/templates/backup/backupSchedule.html:135
+msgid "Add All"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:172
+#: backup/templates/backup/backupSchedule.html:175
+#: backup/templates/backup/googleDrive.html:132
+msgid "View Logs"
+msgstr ""
+
+#: backup/templates/backup/OneClickBackupSchedule.html:180
+#: backup/templates/backup/backupSchedule.html:183
+msgid "Backup logs"
+msgstr ""
+
+#: backup/templates/backup/backup.html:17
+msgid "This page can be used to Backup your websites"
+msgstr ""
+
+#: backup/templates/backup/backup.html:50
+#: baseTemplate/templates/baseTemplate/FileManager.html:130
+#: baseTemplate/templates/baseTemplate/error.html:12
+#: baseTemplate/templates/baseTemplate/homePage.html:12
+#: filemanager/templates/filemanager/index.html:132
+msgid "Home"
+msgstr ""
+
+#: backup/templates/backup/backup.html:66
+#: backup/templates/backup/restore.html:62
+#: baseTemplate/templates/baseTemplate/FileManager.html:153
+#: filemanager/templates/filemanager/index.html:155
+msgid "File Name"
+msgstr ""
+
+#: backup/templates/backup/backup.html:67
+#: backup/templates/backup/backup.html:115
+#: backup/templates/backup/restore.html:63
+#: baseTemplate/templates/baseTemplate/FileManager.html:201
+#: baseTemplate/templates/baseTemplate/homePage.html:140
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:45
+#: emailMarketing/templates/emailMarketing/manageLists.html:138
+#: filemanager/templates/filemanager/index.html:203
+#: firewall/templates/firewall/firewall.html:35
+#: firewall/templates/firewall/modSecurityRulesPacks.html:112
+#: managePHP/templates/managePHP/installExtensions.html:64
+#: manageServices/templates/manageServices/applications.html:33
+msgid "Status"
+msgstr ""
+
+#: backup/templates/backup/backup.html:73
+#: serverStatus/templates/serverStatus/topProcesses.html:52
+msgid "Running"
+msgstr ""
+
+#: backup/templates/backup/backup.html:97
+msgid "Cancel Backup"
+msgstr ""
+
+#: backup/templates/backup/backup.html:112
+msgid "File"
+msgstr ""
+
+#: backup/templates/backup/backup.html:114
+#: baseTemplate/templates/baseTemplate/FileManager.html:199
+#: filemanager/templates/filemanager/index.html:156
+#: filemanager/templates/filemanager/index.html:201
+#: ftp/templates/ftp/listFTPAccounts.html:125
+msgid "Size"
+msgstr ""
+
+#: backup/templates/backup/backup.html:143
+msgid "Cannot delete website, Error message: "
+msgstr ""
+
+#: backup/templates/backup/backup.html:147
+msgid "Successfully Deleted"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:20
+msgid "On this page you can set up your Backup destinations. (SFTP)"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:155
+msgid "Local Path"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:3
+msgid "Backup Logs - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:14
+#: backup/templates/backup/backupLogs.html:21
+msgid "Backup Logs"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:15
+msgid ""
+"On this page you can view detailed logs of your local and remote scheduled "
+"backups."
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:29
+msgid "Select Log File"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:47
+msgid "Successful Sites"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:48
+msgid "Failed Sites"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:49
+msgid "Location"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:86
+msgid "LEVEL"
+msgstr ""
+
+#: backup/templates/backup/backupLogs.html:87
+#: emailMarketing/templates/emailMarketing/manageLists.html:139
+#: emailPremium/templates/emailPremium/mailQueue.html:89
+msgid "Message"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:3
+msgid "Google Drive Backups - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:14
+msgid "Set up Google Drive Backups"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:20
+#: backup/templates/backup/googleDrive.html:26
+msgid "On this page you can set up and manage Google Drive Backups."
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:31
+msgid "Setup new Account"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:77
+msgid "Select Drive Account"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:116
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:50
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:166
+msgid "Backup File Retention"
+msgstr ""
+
+#: backup/templates/backup/googleDrive.html:140
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:564
+msgid "Git Logs"
+msgstr ""
+
+#: backup/templates/backup/index.html:3
+msgid "Backup Home - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30
+#: baseTemplate/templates/baseTemplate/homePage.html:99
+#: baseTemplate/templates/baseTemplate/homePage.html:102
+#: baseTemplate/templates/baseTemplate/index.html:687
+#: baseTemplate/templates/baseTemplate/index.html:689
+msgid "Backup"
+msgstr ""
+
+#: backup/templates/backup/index.html:14
+msgid "Backup and restore sites."
+msgstr ""
+
+#: backup/templates/backup/index.html:19
+#: baseTemplate/templates/baseTemplate/homePage.html:21
+#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19
+#: dockerManager/templates/dockerManager/index.html:21
+#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19
+#: mailServer/templates/mailServer/index.html:19
+#: managePHP/templates/managePHP/index.html:18
+#: manageSSL/templates/manageSSL/index.html:20
+#: packages/templates/packages/index.html:19
+#: serverLogs/templates/serverLogs/index.html:19
+#: serverStatus/templates/serverStatus/index.html:19
+#: tuning/templates/tuning/index.html:18
+#: userManagment/templates/userManagment/index.html:19
+#: websiteFunctions/templates/websiteFunctions/index.html:21
+msgid "Available Functions"
+msgstr ""
+
+#: backup/templates/backup/index.html:28
+msgid "Backup Site"
+msgstr ""
+
+#: backup/templates/backup/index.html:44
+#: backup/templates/backup/restoreOCBackups.html:57
+#: baseTemplate/templates/baseTemplate/index.html:706
+#: baseTemplate/templates/baseTemplate/index.html:749
+#: userManagment/templates/userManagment/createACL.html:372
+#: userManagment/templates/userManagment/modifyACL.html:376
+msgid "Restore Backup"
+msgstr ""
+
+#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62
+msgid "Add/Delete Destinations"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:3
+#: backup/templates/backup/oneClickBackups.html:14
+msgid "One-click Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:18
+msgid "One-Click Backup Docs"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:20
+msgid "On this page you purchase and manage one-click backups."
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:62
+msgid "Account"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:63
+#: backup/templates/backup/oneClickBackups.html:126
+msgid "Plan Name"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:64
+msgid "Subscription"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:65
+msgid "Billing Cycle"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:66
+msgid "Purchase Date"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:87
+#: baseTemplate/templates/baseTemplate/index.html:754
+msgid "Schedule Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:91
+#: baseTemplate/templates/baseTemplate/index.html:364
+msgid "Restore Backups"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:96
+msgid "Deploy Account"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:115
+msgid "Subscribe to one-click backup plans."
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:127
+msgid "Monthly Price"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:128
+msgid "Yearly Price"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:141
+msgid "Buy Monthly"
+msgstr ""
+
+#: backup/templates/backup/oneClickBackups.html:144
+msgid "Buy Yearly"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:3
+msgid "Transfer Websites from Remote Server - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:14
+msgid "Remote Transfer"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:15
+msgid "This feature can import website(s) from remote server"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:46
+msgid "Fetch Accounts"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:55
+msgid "Start Transfer"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:59
+#: baseTemplate/templates/baseTemplate/FileManager.html:225
+#: emailMarketing/templates/emailMarketing/website.html:324
+#: emailMarketing/templates/emailMarketing/website.html:804
+#: emailMarketing/templates/emailMarketing/website.html:928
+#: emailPremium/templates/emailPremium/emailLimits.html:75
+#: emailPremium/templates/emailPremium/emailPage.html:83
+#: emailPremium/templates/emailPremium/emailPage.html:93
+#: filemanager/templates/filemanager/index.html:227
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:52
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:516
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:643
+#: websiteFunctions/templates/websiteFunctions/website.html:301
+#: websiteFunctions/templates/websiteFunctions/website.html:771
+#: websiteFunctions/templates/websiteFunctions/website.html:882
+msgid "Cancel"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:72
+msgid "Could not connect, please refresh this page."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:76
+msgid "Accounts Successfully Fetched from remote server."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:80
+msgid "Backup Process successfully started."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:84
+msgid "Backup successfully cancelled."
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:108
+#: baseTemplate/templates/baseTemplate/homePage.html:152
+#: baseTemplate/templates/baseTemplate/index.html:965
+#: baseTemplate/templates/baseTemplate/index.html:967
+#: managePHP/templates/managePHP/installExtensions.html:61
+msgid "PHP"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:109
+#: packages/templates/packages/createPackage.html:118
+#: packages/templates/packages/deletePackage.html:60
+#: packages/templates/packages/listPackages.html:33
+#: packages/templates/packages/modifyPackage.html:131
+#: serverStatus/templates/serverStatus/packageManager.html:114
+#: serverStatus/templates/serverStatus/packageManager.html:281
+#: serverStatus/templates/serverStatus/packageManager.html:445
+msgid "Package"
+msgstr ""
+
+#: backup/templates/backup/remoteBackups.html:110
+#: baseTemplate/templates/baseTemplate/index.html:568
+#: baseTemplate/templates/baseTemplate/index.html:570
+#: mailServer/templates/mailServer/listEmails.html:205
+#: userManagment/templates/userManagment/createUser.html:45
+#: userManagment/templates/userManagment/modifyUser.html:54
+#: userManagment/templates/userManagment/userProfile.html:41
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:332
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:278
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:147
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:44
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:37
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:195
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67
+msgid "Email"
+msgstr ""
+
+#: backup/templates/backup/restore.html:3
+#: backup/templates/backup/restoreOCBackups.html:3
+msgid "Restore Website - CyberPanel"
+msgstr ""
+
+#: backup/templates/backup/restore.html:14
+#: backup/templates/backup/restore.html:21
+#: backup/templates/backup/restoreOCBackups.html:14
+#: backup/templates/backup/restoreOCBackups.html:24
+msgid "Restore Website"
+msgstr ""
+
+#: backup/templates/backup/restore.html:15
+#: backup/templates/backup/restoreOCBackups.html:18
+msgid ""
+"This page can be used to restore your websites, Backup should be generated "
+"from CyberPanel Backup generation tool, it will detect all Backups under "
+"/home/backup."
+msgstr ""
+
+#: backup/templates/backup/restore.html:30
+#: backup/templates/backup/restoreOCBackups.html:44
+msgid "Select Backup"
+msgstr ""
+
+#: backup/templates/backup/restore.html:61
+msgid "Condition"
+msgstr ""
+
+#: backup/templates/backup/restore.html:90
+msgid "Site related to this Backup already exists."
+msgstr ""
+
+#: backup/templates/backup/restoreOCBackups.html:33
+msgid "Select Folder"
+msgstr ""
+
+#: backup/templates/backup/restoreOCBackups.html:82
+msgid "Backup restored successfully."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:5
+#: filemanager/templates/filemanager/index.html:5
+msgid "File Manager - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:51
+#: filemanager/templates/filemanager/editFile.html:67
+#: filemanager/templates/filemanager/index.html:51
+msgid " File Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:55
+#: baseTemplate/templates/baseTemplate/FileManager.html:192
+#: baseTemplate/templates/baseTemplate/FileManager.html:222
+#: filemanager/templates/filemanager/index.html:55
+#: filemanager/templates/filemanager/index.html:194
+#: filemanager/templates/filemanager/index.html:224
+msgid "Upload"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:58
+#: filemanager/templates/filemanager/index.html:58
+msgid "New File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:61
+#: filemanager/templates/filemanager/index.html:61
+msgid "New Folder"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:67
+#: baseTemplate/templates/baseTemplate/FileManager.html:559
+#: baseTemplate/templates/baseTemplate/FileManager.html:639
+#: filemanager/templates/filemanager/index.html:67
+#: filemanager/templates/filemanager/index.html:561
+#: filemanager/templates/filemanager/index.html:728
+msgid "Copy"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:70
+#: baseTemplate/templates/baseTemplate/FileManager.html:524
+#: baseTemplate/templates/baseTemplate/FileManager.html:635
+#: filemanager/templates/filemanager/index.html:70
+#: filemanager/templates/filemanager/index.html:526
+#: filemanager/templates/filemanager/index.html:726
+msgid "Move"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:73
+#: baseTemplate/templates/baseTemplate/FileManager.html:589
+#: baseTemplate/templates/baseTemplate/FileManager.html:640
+#: filemanager/templates/filemanager/index.html:73
+#: filemanager/templates/filemanager/index.html:591
+#: filemanager/templates/filemanager/index.html:729
+msgid "Rename"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:79
+#: baseTemplate/templates/baseTemplate/FileManager.html:434
+#: baseTemplate/templates/baseTemplate/FileManager.html:461
+#: baseTemplate/templates/baseTemplate/FileManager.html:643
+#: filemanager/templates/filemanager/index.html:79
+#: filemanager/templates/filemanager/index.html:436
+#: filemanager/templates/filemanager/index.html:463
+#: filemanager/templates/filemanager/index.html:732
+msgid "Compress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:82
+#: baseTemplate/templates/baseTemplate/FileManager.html:489
+#: baseTemplate/templates/baseTemplate/FileManager.html:644
+#: filemanager/templates/filemanager/index.html:82
+#: filemanager/templates/filemanager/index.html:491
+#: filemanager/templates/filemanager/index.html:733
+msgid "Extract"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:108
+#: filemanager/templates/filemanager/index.html:110
+msgid "Current Path"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:133
+#: filemanager/templates/filemanager/index.html:135
+msgid "Back"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:137
+#: emailPremium/templates/emailPremium/mailQueue.html:49
+#: filemanager/templates/filemanager/index.html:139
+#: serverLogs/templates/serverLogs/accessLogs.html:38
+#: serverLogs/templates/serverLogs/emailLogs.html:39
+#: serverLogs/templates/serverLogs/errorLogs.html:35
+#: serverLogs/templates/serverLogs/ftplogs.html:35
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:36
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37
+msgid "Refresh"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:141
+#: filemanager/templates/filemanager/index.html:143
+msgid "Select All"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:145
+#: filemanager/templates/filemanager/index.html:147
+msgid "UnSelect All"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:154
+msgid "Size (KB)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:155
+#: filemanager/templates/filemanager/index.html:157
+msgid "Last Modified"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:156
+#: filemanager/templates/filemanager/index.html:158
+msgid "Permissions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:176
+#: filemanager/templates/filemanager/index.html:178
+msgid "Upload File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:176
+#: filemanager/templates/filemanager/index.html:178
+msgid "Upload Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:182
+#: filemanager/templates/filemanager/index.html:184
+msgid "Upload queue"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:183
+#: filemanager/templates/filemanager/index.html:185
+msgid "Queue length:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:187
+#: filemanager/templates/filemanager/index.html:189
+msgid "Drop"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:188
+#: filemanager/templates/filemanager/index.html:190
+msgid "Drop Files here to upload them."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:200
+#: filemanager/templates/filemanager/index.html:202
+msgid "Progress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:228
+#: filemanager/templates/filemanager/index.html:230
+#: manageServices/templates/manageServices/applications.html:47
+msgid "Remove"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:238
+#: filemanager/templates/filemanager/index.html:240
+msgid "Queue progress:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:247
+#: filemanager/templates/filemanager/index.html:249
+msgid "can not be uploaded, Error message:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:251
+#: filemanager/templates/filemanager/index.html:253
+msgid "Upload all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:254
+#: filemanager/templates/filemanager/index.html:256
+msgid "Cancel all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:257
+#: filemanager/templates/filemanager/index.html:259
+msgid "Remove all"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:293
+#: filemanager/templates/filemanager/index.html:295
+msgid "File Successfully saved."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:317
+#: filemanager/templates/filemanager/index.html:319
+msgid "Create new folder!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:325
+#: filemanager/templates/filemanager/index.html:327
+msgid "New Folder Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:327
+#: filemanager/templates/filemanager/index.html:329
+msgid "Folder will be created in your current directory"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:329
+#: filemanager/templates/filemanager/index.html:331
+msgid "Create Folder"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:342
+#: filemanager/templates/filemanager/index.html:344
+msgid "Folder Successfully created."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:361
+#: filemanager/templates/filemanager/index.html:363
+msgid "Create new file!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:369
+#: filemanager/templates/filemanager/index.html:371
+msgid "New File Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:371
+#: filemanager/templates/filemanager/index.html:373
+msgid ""
+"File will be created in your current directory, if it already exists it will "
+"not overwirte."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:373
+#: filemanager/templates/filemanager/index.html:375
+msgid "Create File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:386
+#: filemanager/templates/filemanager/index.html:388
+msgid "File Successfully created."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:402
+#: filemanager/templates/filemanager/index.html:404
+msgid "Confirm Deletion!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:412
+#: filemanager/templates/filemanager/index.html:414
+msgid "Skip trash and permanently delete this file."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:418
+#: emailMarketing/templates/emailMarketing/manageLists.html:64
+#: emailMarketing/templates/emailMarketing/sendEmails.html:55
+#: filemanager/templates/filemanager/index.html:420
+msgid "Confirm"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:419
+#: baseTemplate/templates/baseTemplate/FileManager.html:462
+#: baseTemplate/templates/baseTemplate/FileManager.html:525
+#: baseTemplate/templates/baseTemplate/FileManager.html:560
+#: baseTemplate/templates/baseTemplate/FileManager.html:590
+#: emailMarketing/templates/emailMarketing/manageLists.html:62
+#: emailMarketing/templates/emailMarketing/manageLists.html:177
+#: emailMarketing/templates/emailMarketing/sendEmails.html:54
+#: emailMarketing/templates/emailMarketing/website.html:484
+#: filemanager/templates/filemanager/editFile.html:156
+#: filemanager/templates/filemanager/index.html:421
+#: filemanager/templates/filemanager/index.html:464
+#: filemanager/templates/filemanager/index.html:527
+#: filemanager/templates/filemanager/index.html:562
+#: filemanager/templates/filemanager/index.html:592
+#: filemanager/templates/filemanager/index.html:653
+#: filemanager/templates/filemanager/index.html:684
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:171
+#: websiteFunctions/templates/websiteFunctions/website.html:458
+msgid "Close"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:442
+#: filemanager/templates/filemanager/index.html:444
+msgid "List of files/folder!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:446
+#: filemanager/templates/filemanager/index.html:448
+msgid "Compressed File Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:448
+#: filemanager/templates/filemanager/index.html:450
+msgid "Enter without extension name!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:452
+#: filemanager/templates/filemanager/index.html:454
+msgid "Compression Type"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:477
+#: filemanager/templates/filemanager/index.html:479
+msgid "Extracting"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:485
+#: filemanager/templates/filemanager/index.html:487
+msgid "Extract in"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:487
+#: filemanager/templates/filemanager/index.html:489
+msgid "You can enter . to extract in current directory!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:505
+#: filemanager/templates/filemanager/index.html:507
+msgid "Move Files"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:513
+#: baseTemplate/templates/baseTemplate/FileManager.html:548
+#: filemanager/templates/filemanager/index.html:515
+#: filemanager/templates/filemanager/index.html:550
+msgid "List of files/folders!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:517
+#: filemanager/templates/filemanager/index.html:519
+msgid "Move to"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:519
+#: filemanager/templates/filemanager/index.html:521
+msgid "Enter a path to move your files!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:540
+#: filemanager/templates/filemanager/index.html:542
+msgid "Copy Files"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:552
+#: filemanager/templates/filemanager/index.html:554
+msgid "Copy to"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:554
+#: filemanager/templates/filemanager/index.html:556
+msgid "Enter a path to copy your files to!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:574
+#: filemanager/templates/filemanager/index.html:576
+msgid "Renaming"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:582
+#: filemanager/templates/filemanager/index.html:584
+msgid "New Name"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:584
+#: filemanager/templates/filemanager/index.html:586
+msgid "Enter new name of file!"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/FileManager.html:641
+#: filemanager/templates/filemanager/index.html:651
+#: filemanager/templates/filemanager/index.html:730
+msgid "Change Permissions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:3
+msgid "Design - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:13
+#: baseTemplate/templates/baseTemplate/index.html:268
+#: baseTemplate/templates/baseTemplate/index.html:270
+#: baseTemplate/templates/baseTemplate/index.html:272
+msgid "Design"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:19
+msgid "Custom CSS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/design.html:33
+msgid "Changes saved."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:3
+#: baseTemplate/templates/baseTemplate/homePage.html:3
+msgid "Home - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:13
+#: baseTemplate/templates/baseTemplate/homePage.html:13
+msgid "Use the tabs to navigate through the control panel."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/error.html:22
+msgid "Something went wrong..."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:27
+#: userManagment/templates/userManagment/index.html:13
+msgid "User Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:30
+#: baseTemplate/templates/baseTemplate/index.html:294
+#: baseTemplate/templates/baseTemplate/index.html:295
+#: baseTemplate/templates/baseTemplate/index.html:296
+msgid "Users"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:39
+#: websiteFunctions/templates/websiteFunctions/index.html:13
+msgid "Website Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:51
+msgid "Add/Modify Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:54
+#: baseTemplate/templates/baseTemplate/index.html:448
+#: baseTemplate/templates/baseTemplate/index.html:450
+#: packages/templates/packages/index.html:13
+msgid "Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:63
+#: databases/templates/databases/index.html:12
+msgid "Database Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:75
+msgid "Control DNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:78
+#: baseTemplate/templates/baseTemplate/index.html:515
+#: baseTemplate/templates/baseTemplate/index.html:517
+msgid "DNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:87
+#: ftp/templates/ftp/index.html:12
+msgid "FTP Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:90
+#: baseTemplate/templates/baseTemplate/index.html:626
+#: baseTemplate/templates/baseTemplate/index.html:628
+#: emailMarketing/templates/emailMarketing/website.html:46
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:56
+#: websiteFunctions/templates/websiteFunctions/website.html:55
+msgid "FTP"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:123
+#: baseTemplate/templates/baseTemplate/homePage.html:126
+#: baseTemplate/templates/baseTemplate/index.html:786
+#: baseTemplate/templates/baseTemplate/index.html:787
+#: baseTemplate/templates/baseTemplate/index.html:788
+#: mailServer/templates/mailServer/listEmails.html:95
+#: mailServer/templates/mailServer/listEmails.html:122
+#: mailServer/templates/mailServer/listEmails.html:153
+msgid "SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:137
+#: baseTemplate/templates/baseTemplate/index.html:937
+#: baseTemplate/templates/baseTemplate/index.html:939
+#: baseTemplate/templates/baseTemplate/index.html:984
+#: emailPremium/templates/emailPremium/policyServer.html:30
+#: serverStatus/templates/serverStatus/index.html:13
+msgid "Server Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:149
+msgid "PHP Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:161
+#: baseTemplate/templates/baseTemplate/homePage.html:164
+#: baseTemplate/templates/baseTemplate/index.html:986
+#: dockerManager/templates/dockerManager/viewContainer.html:174
+#: emailMarketing/templates/emailMarketing/website.html:117
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:372
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:133
+#: websiteFunctions/templates/websiteFunctions/website.html:121
+msgid "Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:173
+#: baseTemplate/templates/baseTemplate/homePage.html:176
+#: baseTemplate/templates/baseTemplate/index.html:1018
+#: baseTemplate/templates/baseTemplate/index.html:1020
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:866
+msgid "Security"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:199
+msgid "Resources"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:208
+#: baseTemplate/templates/baseTemplate/index.html:138
+#: dockerManager/templates/dockerManager/viewContainer.html:48
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:247
+msgid "CPU Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:229
+msgid "Ram Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:250
+msgid "Disk Usage '/'"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:149
+msgid "RAM Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:157
+#: emailMarketing/templates/emailMarketing/website.html:58
+#: emailMarketing/templates/emailMarketing/website.html:78
+#: mailServer/templates/mailServer/listEmails.html:166
+#: userManagment/templates/userManagment/listUsers.html:36
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:68
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:96
+#: websiteFunctions/templates/websiteFunctions/website.html:65
+#: websiteFunctions/templates/websiteFunctions/website.html:91
+msgid "Disk Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:189
+#: baseTemplate/templates/baseTemplate/index.html:192
+#: baseTemplate/templates/baseTemplate/index.html:196
+msgid "CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:194
+#: baseTemplate/templates/baseTemplate/index.html:198
+msgid "Web Hosting Control Panel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:200
+msgid "Close sidebar"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:223
+msgid "Youtube Channel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:227
+#: baseTemplate/templates/baseTemplate/index.html:283
+#: baseTemplate/templates/baseTemplate/index.html:285
+msgid "Community"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:231
+msgid "Support"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:234
+msgid "Logout"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:246
+msgid "Overview"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:249
+#: baseTemplate/templates/baseTemplate/index.html:250
+msgid "Server IP Address"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:255
+#: baseTemplate/templates/baseTemplate/index.html:257
+msgid "Dashboard"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:261
+#: baseTemplate/templates/baseTemplate/index.html:263
+#: baseTemplate/templates/baseTemplate/index.html:265
+#: baseTemplate/templates/baseTemplate/versionManagment.html:36
+#: userManagment/templates/userManagment/createACL.html:47
+#: userManagment/templates/userManagment/createACL.html:52
+#: userManagment/templates/userManagment/modifyACL.html:51
+#: userManagment/templates/userManagment/modifyACL.html:56
+msgid "Version Management"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:275
+#: baseTemplate/templates/baseTemplate/index.html:276
+#: baseTemplate/templates/baseTemplate/index.html:278
+#: baseTemplate/templates/baseTemplate/index.html:282
+msgid "Connect"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:291
+msgid "Main"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:302
+#: userManagment/templates/userManagment/index.html:24
+#: userManagment/templates/userManagment/index.html:27
+msgid "View Profile"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:307
+#: userManagment/templates/userManagment/createACL.html:64
+#: userManagment/templates/userManagment/createUser.html:12
+#: userManagment/templates/userManagment/modifyACL.html:68
+msgid "Create New User"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:313
+#: userManagment/templates/userManagment/createACL.html:73
+#: userManagment/templates/userManagment/index.html:36
+#: userManagment/templates/userManagment/index.html:39
+#: userManagment/templates/userManagment/listUsers.html:13
+#: userManagment/templates/userManagment/listUsers.html:21
+#: userManagment/templates/userManagment/modifyACL.html:77
+msgid "List Users"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:317
+#: userManagment/templates/userManagment/index.html:61
+#: userManagment/templates/userManagment/index.html:64
+#: userManagment/templates/userManagment/modifyUser.html:12
+#: userManagment/templates/userManagment/modifyUser.html:119
+msgid "Modify User"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:321
+#: userManagment/templates/userManagment/createACL.html:82
+#: userManagment/templates/userManagment/modifyACL.html:86
+#: userManagment/templates/userManagment/resellerCenter.html:12
+#: userManagment/templates/userManagment/resellerCenter.html:19
+msgid "Reseller Center"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:326
+#: userManagment/templates/userManagment/createACL.html:12
+msgid "Create New ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:329
+#: userManagment/templates/userManagment/deleteACL.html:12
+#: userManagment/templates/userManagment/deleteACL.html:40
+msgid "Delete ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:332
+msgid "Modify ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:335
+#: userManagment/templates/userManagment/apiAccess.html:13
+#: userManagment/templates/userManagment/apiAccess.html:20
+msgid "API Access"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:345
+#: baseTemplate/templates/baseTemplate/index.html:346
+#: baseTemplate/templates/baseTemplate/index.html:347
+msgid "WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:354
+msgid "Deploy WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:358
+msgid "List WordPress"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:361
+msgid "ConfigurePlugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:361
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:12
+msgid "Configure Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:364
+msgid "RestoreBackups"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:367
+msgid "Remote Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:377
+msgid "Dockersite"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:378
+#: baseTemplate/templates/baseTemplate/index.html:379
+msgid "Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:380
+msgid "Beta"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:386
+msgid "Create Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:389
+msgid "List Docker Apps"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:393
+msgid "Docker Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:397
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:95
+msgid "Assign Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:415
+#: userManagment/templates/userManagment/createACL.html:112
+#: userManagment/templates/userManagment/modifyACL.html:116
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:362
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:95
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:227
+#: websiteFunctions/templates/websiteFunctions/index.html:43
+#: websiteFunctions/templates/websiteFunctions/index.html:45
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:20
+msgid "Create Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:423
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:96
+msgid "Create Sub/Addon Domain"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:426
+msgid "List Sub-Domains"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:426
+msgid "List Sub/Addon Domains"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:430
+#: userManagment/templates/userManagment/createACL.html:121
+#: userManagment/templates/userManagment/modifyACL.html:125
+#: websiteFunctions/templates/websiteFunctions/index.html:67
+#: websiteFunctions/templates/websiteFunctions/index.html:69
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93
+msgid "Modify Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:435
+#: websiteFunctions/templates/websiteFunctions/index.html:81
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41
+msgid "Suspend/Unsuspend"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:440
+#: userManagment/templates/userManagment/createACL.html:139
+#: userManagment/templates/userManagment/deleteACL.html:19
+#: userManagment/templates/userManagment/modifyACL.html:143
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42
+#: websiteFunctions/templates/websiteFunctions/index.html:90
+#: websiteFunctions/templates/websiteFunctions/index.html:92
+msgid "Delete Website"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:462
+#: baseTemplate/templates/baseTemplate/index.html:856
+#: packages/templates/packages/index.html:37
+#: packages/templates/packages/index.html:40
+#: packages/templates/packages/listPackages.html:13
+#: packages/templates/packages/listPackages.html:19
+#: userManagment/templates/userManagment/createACL.html:161
+#: userManagment/templates/userManagment/modifyACL.html:165
+msgid "List Packages"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:467
+#: packages/templates/packages/deletePackage.html:12
+#: packages/templates/packages/deletePackage.html:18
+#: packages/templates/packages/deletePackage.html:39
+#: packages/templates/packages/index.html:50
+#: packages/templates/packages/index.html:53
+#: userManagment/templates/userManagment/createACL.html:170
+#: userManagment/templates/userManagment/modifyACL.html:174
+msgid "Delete Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:472
+#: packages/templates/packages/index.html:63
+#: packages/templates/packages/index.html:66
+#: packages/templates/packages/modifyPackage.html:9
+#: packages/templates/packages/modifyPackage.html:15
+#: packages/templates/packages/modifyPackage.html:114
+#: userManagment/templates/userManagment/createACL.html:179
+#: userManagment/templates/userManagment/modifyACL.html:183
+msgid "Modify Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:489
+#: databases/templates/databases/createDatabase.html:12
+#: databases/templates/databases/createDatabase.html:19
+#: databases/templates/databases/createDatabase.html:78
+#: databases/templates/databases/index.html:25
+#: databases/templates/databases/index.html:27
+#: databases/templates/databases/listDataBases.html:14
+#: userManagment/templates/userManagment/createACL.html:191
+#: userManagment/templates/userManagment/modifyACL.html:195
+msgid "Create Database"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:494
+#: databases/templates/databases/deleteDatabase.html:12
+#: databases/templates/databases/deleteDatabase.html:19
+#: databases/templates/databases/deleteDatabase.html:51
+#: databases/templates/databases/index.html:37
+#: databases/templates/databases/index.html:39
+#: userManagment/templates/userManagment/createACL.html:200
+#: userManagment/templates/userManagment/modifyACL.html:204
+msgid "Delete Database"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:499
+#: databases/templates/databases/index.html:48
+#: databases/templates/databases/index.html:50
+#: databases/templates/databases/listDataBases.html:13
+#: databases/templates/databases/listDataBases.html:21
+#: userManagment/templates/userManagment/createACL.html:209
+#: userManagment/templates/userManagment/modifyACL.html:213
+msgid "List Databases"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:504
+#: databases/templates/databases/index.html:59
+#: databases/templates/databases/index.html:61
+#: databases/templates/databases/phpMyAdmin.html:13
+#: databases/templates/databases/phpMyAdmin.html:20
+msgid "PHPMYAdmin"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:524
+#: dns/templates/dns/createNameServer.html:12
+#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72
+#: dns/templates/dns/index.html:74
+#: userManagment/templates/userManagment/createACL.html:221
+#: userManagment/templates/userManagment/modifyACL.html:225
+msgid "Create Nameserver"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:529
+msgid "Configure Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:529
+msgid "Config Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:534
+#: dns/templates/dns/createDNSZone.html:12
+#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29
+#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84
+#: dns/templates/dns/index.html:86
+#: userManagment/templates/userManagment/createACL.html:230
+#: userManagment/templates/userManagment/modifyACL.html:234
+msgid "Create DNS Zone"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:539
+#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41
+#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96
+#: dns/templates/dns/index.html:98
+#: userManagment/templates/userManagment/createACL.html:239
+#: userManagment/templates/userManagment/modifyACL.html:243
+msgid "Delete Zone"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:544
+msgid "Add/Delete Records"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:550
+msgid "CloudFlare"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:555
+#: dns/templates/dns/resetdnsconf.html:11
+msgid "Reset DNS Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:577
+#: mailServer/templates/mailServer/createEmailAccount.html:12
+#: mailServer/templates/mailServer/createEmailAccount.html:19
+msgid "Create Email Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:577
+#: mailServer/templates/mailServer/createEmailAccount.html:100
+#: mailServer/templates/mailServer/index.html:25
+#: mailServer/templates/mailServer/index.html:28
+#: mailServer/templates/mailServer/listEmails.html:14
+#: userManagment/templates/userManagment/createACL.html:262
+#: userManagment/templates/userManagment/modifyACL.html:266
+msgid "Create Email"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:582
+#: mailServer/templates/mailServer/index.html:37
+#: mailServer/templates/mailServer/index.html:40
+#: userManagment/templates/userManagment/createACL.html:271
+#: userManagment/templates/userManagment/modifyACL.html:275
+msgid "List Emails"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:587
+#: mailServer/templates/mailServer/deleteEmailAccount.html:12
+#: mailServer/templates/mailServer/deleteEmailAccount.html:19
+msgid "Delete Email Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:587
+#: mailServer/templates/mailServer/deleteEmailAccount.html:73
+#: mailServer/templates/mailServer/index.html:50
+#: mailServer/templates/mailServer/index.html:53
+#: userManagment/templates/userManagment/createACL.html:280
+#: userManagment/templates/userManagment/modifyACL.html:284
+msgid "Delete Email"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:592
+msgid "Email Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:597
+#: mailServer/templates/mailServer/index.html:62
+#: mailServer/templates/mailServer/index.html:65
+#: userManagment/templates/userManagment/createACL.html:289
+#: userManagment/templates/userManagment/modifyACL.html:293
+msgid "Email Forwarding"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:602
+#: databases/templates/databases/listDataBases.html:93
+#: ftp/templates/ftp/listFTPAccounts.html:108
+#: mailServer/templates/mailServer/changeEmailPassword.html:97
+#: mailServer/templates/mailServer/index.html:75
+#: mailServer/templates/mailServer/index.html:78
+#: mailServer/templates/mailServer/listEmails.html:179
+msgid "Change Password"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:607
+#: mailServer/templates/mailServer/dkimManager.html:13
+#: mailServer/templates/mailServer/dkimManager.html:22
+#: mailServer/templates/mailServer/dkimManager.html:75
+#: mailServer/templates/mailServer/index.html:87
+#: mailServer/templates/mailServer/index.html:90
+#: userManagment/templates/userManagment/createACL.html:309
+#: userManagment/templates/userManagment/modifyACL.html:313
+msgid "DKIM Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:612
+#: baseTemplate/templates/baseTemplate/index.html:613
+#: mailServer/templates/mailServer/index.html:99
+#: mailServer/templates/mailServer/index.html:102
+msgid "Access Webmail"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:635
+#: emailMarketing/templates/emailMarketing/website.html:886
+#: emailMarketing/templates/emailMarketing/website.html:889
+#: ftp/templates/ftp/createFTPAccount.html:12
+#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24
+#: ftp/templates/ftp/index.html:26
+#: userManagment/templates/userManagment/createACL.html:322
+#: userManagment/templates/userManagment/modifyACL.html:326
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:599
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:602
+#: websiteFunctions/templates/websiteFunctions/website.html:845
+#: websiteFunctions/templates/websiteFunctions/website.html:848
+msgid "Create FTP Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:640
+#: emailMarketing/templates/emailMarketing/website.html:898
+#: emailMarketing/templates/emailMarketing/website.html:901
+#: ftp/templates/ftp/deleteFTPAccount.html:12
+#: ftp/templates/ftp/deleteFTPAccount.html:18
+#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35
+#: ftp/templates/ftp/index.html:37
+#: userManagment/templates/userManagment/createACL.html:331
+#: userManagment/templates/userManagment/modifyACL.html:335
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:611
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:614
+#: websiteFunctions/templates/websiteFunctions/website.html:854
+#: websiteFunctions/templates/websiteFunctions/website.html:857
+msgid "Delete FTP Account"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:645
+#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48
+#: ftp/templates/ftp/listFTPAccounts.html:13
+#: ftp/templates/ftp/listFTPAccounts.html:19
+#: userManagment/templates/userManagment/createACL.html:340
+#: userManagment/templates/userManagment/modifyACL.html:344
+msgid "List FTP Accounts"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:650
+#: ftp/templates/ftp/ResetFTPconf.html:11
+msgid "Reset FTP Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:661
+msgid "BackupV2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:663
+msgid "Backup V2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:669
+msgid "Create/Restore V2 Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:672
+msgid "Configure Backends"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:678
+msgid "Delete V2 Backup Repo"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:696
+msgid "One-Click Backups"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:711
+#: userManagment/templates/userManagment/createACL.html:381
+#: userManagment/templates/userManagment/modifyACL.html:385
+msgid "Add/Delete Destination"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:721
+msgid "Setup Google Drive"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:735
+msgid "Incremental Backup - Beta"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:737
+msgid "Incremental Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:744
+msgid "Create/Restore Backup"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:749
+msgid "Add/Remove Destinations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:759
+msgid "Restore from Remote Server"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:759
+msgid "Restore from Remote"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:768
+#: baseTemplate/templates/baseTemplate/index.html:769
+#: baseTemplate/templates/baseTemplate/index.html:770
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:13
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:28
+msgid "SSL v2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:777
+msgid "Manage SSL v2"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:795
+#: manageSSL/templates/manageSSL/index.html:29
+#: manageSSL/templates/manageSSL/index.html:31
+#: manageSSL/templates/manageSSL/manageSSL.html:13
+#: manageSSL/templates/manageSSL/manageSSL.html:23
+#: userManagment/templates/userManagment/createACL.html:415
+#: userManagment/templates/userManagment/modifyACL.html:419
+msgid "Manage SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:800
+#: manageSSL/templates/manageSSL/index.html:45
+#: manageSSL/templates/manageSSL/index.html:47
+#: userManagment/templates/userManagment/createACL.html:424
+#: userManagment/templates/userManagment/modifyACL.html:428
+msgid "Hostname SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:805
+#: manageSSL/templates/manageSSL/index.html:60
+#: manageSSL/templates/manageSSL/index.html:62
+#: userManagment/templates/userManagment/createACL.html:433
+#: userManagment/templates/userManagment/modifyACL.html:437
+msgid "MailServer SSL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:815
+msgid "Server"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:819
+#: baseTemplate/templates/baseTemplate/index.html:830
+#: baseTemplate/templates/baseTemplate/index.html:832
+#: baseTemplate/templates/baseTemplate/index.html:834
+msgid "Root File Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:821
+#: baseTemplate/templates/baseTemplate/index.html:823
+#: databases/templates/databases/mysqlmanager.html:12
+msgid "MySQL Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:824
+#: baseTemplate/templates/baseTemplate/index.html:845
+#: baseTemplate/templates/baseTemplate/index.html:1058
+msgid "NEW"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:851
+msgid "Create Cloud Linux Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:856
+msgid "List Cloud Linux Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:861
+msgid "Monitor Usage of your Websites"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:861
+msgid "Monitor Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:866
+#: firewall/templates/firewall/index.html:91
+msgid "CageFS Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:866
+#: firewall/templates/firewall/index.html:93
+msgid "CageFS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:891
+msgid "Docker"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:893
+msgid "Docker Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:899
+msgid "Manage Docker Images"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:899
+#: dockerManager/templates/dockerManager/index.html:49
+#: dockerManager/templates/dockerManager/index.html:51
+#: dockerManager/templates/dockerManager/manageImages.html:14
+msgid "Manage Images"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:902
+msgid "Manage Docker Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:902
+#: dockerManager/templates/dockerManager/index.html:29
+#: dockerManager/templates/dockerManager/index.html:31
+msgid "Manage Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:905
+msgid "Create New Docker Container"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:905
+msgid "Create New Container"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:913
+#: baseTemplate/templates/baseTemplate/index.html:915
+msgid "Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:921
+#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26
+#: tuning/templates/tuning/liteSpeedTuning.html:12
+msgid "LiteSpeed Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:925
+msgid "LiteSpeed Ent Global Conf"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:929
+#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38
+#: tuning/templates/tuning/phpTuning.html:13
+#: tuning/templates/tuning/phpTuning.html:149
+msgid "PHP Tuning"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:945
+#: serverStatus/templates/serverStatus/index.html:25
+#: serverStatus/templates/serverStatus/index.html:28
+#: serverStatus/templates/serverStatus/topProcesses.html:14
+#: serverStatus/templates/serverStatus/topProcesses.html:179
+msgid "Top Processes"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:948
+#: serverStatus/templates/serverStatus/index.html:37
+#: serverStatus/templates/serverStatus/index.html:40
+msgid "LiteSpeed Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:951
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:23
+msgid "Change CyberPanel Port"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:951
+msgid "Change Port"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:954
+#: serverStatus/templates/serverStatus/packageManager.html:14
+msgid "Package Manager"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:973
+#: managePHP/templates/managePHP/installExtensions.html:13
+msgid "Install PHP Extensions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:973
+#: managePHP/templates/managePHP/index.html:24
+#: managePHP/templates/managePHP/index.html:26
+msgid "Install Extensions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:976
+#: managePHP/templates/managePHP/index.html:35
+#: managePHP/templates/managePHP/index.html:37
+msgid "Edit PHP Configs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:992
+#: serverLogs/templates/serverLogs/index.html:25
+#: serverLogs/templates/serverLogs/index.html:28
+msgid "Server Mail"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:995
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13
+#: serverStatus/templates/serverStatus/index.html:50
+msgid "CyberPanel Main Log File"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:998
+msgid "Access Log"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1001
+#: emailMarketing/templates/emailMarketing/website.html:139
+#: serverLogs/templates/serverLogs/errorLogs.html:13
+#: serverLogs/templates/serverLogs/index.html:49
+#: serverLogs/templates/serverLogs/index.html:52
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:153
+#: websiteFunctions/templates/websiteFunctions/website.html:141
+msgid "Error Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1004
+#: emailPremium/templates/emailPremium/emailPage.html:144
+#: serverLogs/templates/serverLogs/emailLogs.html:14
+#: serverLogs/templates/serverLogs/index.html:61
+#: serverLogs/templates/serverLogs/index.html:64
+msgid "Email Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1004
+msgid "Email Log"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1007
+#: serverLogs/templates/serverLogs/ftplogs.html:13
+#: serverLogs/templates/serverLogs/index.html:73
+#: serverLogs/templates/serverLogs/index.html:76
+msgid "FTP Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1010
+#: serverLogs/templates/serverLogs/index.html:85
+#: serverLogs/templates/serverLogs/index.html:88
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:14
+msgid "ModSecurity Audit Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1010
+msgid "ModSec Audit Logs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1026
+msgid "Firewall Home"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1026
+#: firewall/templates/firewall/csf.html:119
+#: firewall/templates/firewall/index.html:25
+#: firewall/templates/firewall/index.html:27
+msgid "Firewall"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1029
+#: firewall/templates/firewall/index.html:36
+#: firewall/templates/firewall/index.html:38
+#: firewall/templates/firewall/secureSSH.html:13
+#: firewall/templates/firewall/secureSSH.html:23
+msgid "Secure SSH"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1032
+#: firewall/templates/firewall/index.html:58
+msgid "ModSecurity Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1032
+#: firewall/templates/firewall/index.html:60
+msgid "ModSecurity Conf"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1035
+#: firewall/templates/firewall/index.html:69
+#: firewall/templates/firewall/index.html:71
+#: firewall/templates/firewall/modSecurityRules.html:20
+msgid "ModSecurity Rules"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1038
+#: firewall/templates/firewall/index.html:80
+#: firewall/templates/firewall/index.html:82
+msgid "ModSecurity Rules Packs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1041
+#: firewall/templates/firewall/index.html:47
+msgid "ConfigServer Security & Firewall (CSF)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1041
+#: firewall/templates/firewall/csf.html:21
+#: firewall/templates/firewall/csf.html:86
+#: firewall/templates/firewall/csf.html:95
+#: firewall/templates/firewall/index.html:49
+msgid "CSF"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1044
+#: firewall/templates/firewall/index.html:102
+#: firewall/templates/firewall/index.html:104
+msgid "Imunify 360"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1047
+#: firewall/templates/firewall/imunifyAV.html:13
+#: firewall/templates/firewall/imunifyAV.html:24
+msgid "ImunifyAV"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1055
+#: baseTemplate/templates/baseTemplate/index.html:1057
+msgid "Mail Settings"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1064
+#: emailPremium/templates/emailPremium/EmailDebugger.html:14
+msgid "Email Debugger"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1067
+#: emailPremium/templates/emailPremium/mailQueue.html:14
+#: emailPremium/templates/emailPremium/mailQueue.html:27
+msgid "Mail Queue"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1076
+msgid "SpamAssassin Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1076
+#: emailPremium/templates/emailPremium/SpamAssassin.html:25
+#: firewall/templates/firewall/spamassassin.html:20
+msgid "SpamAssassin"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1079
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:14
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:22
+#: emailMarketing/templates/emailMarketing/website.html:978
+#: websiteFunctions/templates/websiteFunctions/website.html:933
+msgid "Email Marketing"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1082
+#: emailPremium/templates/emailPremium/MailScanner.html:13
+#: emailPremium/templates/emailPremium/MailScanner.html:20
+msgid "MailScanner"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1085
+#: emailPremium/templates/emailPremium/Rspamd.html:22
+msgid "Rspamd"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1085
+msgid "RSPAMD"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1093
+#: baseTemplate/templates/baseTemplate/index.html:1095
+msgid "Manage Services"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1101
+#: manageServices/templates/manageServices/applications.html:13
+msgid "Manage Applications"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1101
+#: manageServices/templates/manageServices/applications.html:19
+msgid "Applications"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1104
+#: serverStatus/templates/serverStatus/index.html:62
+#: serverStatus/templates/serverStatus/index.html:65
+msgid "Services Status"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1107
+#: manageServices/templates/manageServices/managePowerDNS.html:25
+msgid "Manage PowerDNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1110
+#: manageServices/templates/manageServices/managePostfix.html:22
+msgid "Manage Postfix"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1113
+msgid "Manage FTP"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1122
+#: baseTemplate/templates/baseTemplate/index.html:1124
+#: pluginHolder/templates/pluginHolder/plugins.html:14
+#: pluginHolder/templates/pluginHolder/plugins.html:21
+msgid "Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1130
+msgid "Installed Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:1130
+msgid "Installed"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:3
+msgid "Configure Hostname and other default Settings - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:13
+#: baseTemplate/templates/baseTemplate/onboarding.html:23
+msgid "Initial Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:16
+msgid "Learn More"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:17
+msgid "Configure Hostname and other default Settings for CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:45
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:40
+msgid "Hostname"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:53
+#: emailMarketing/templates/emailMarketing/website.html:354
+#: packages/templates/packages/createPackage.html:84
+#: packages/templates/packages/modifyPackage.html:87
+#: userManagment/templates/userManagment/modifyUser.html:84
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:150
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:200
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:167
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:60
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:75
+#: websiteFunctions/templates/websiteFunctions/website.html:330
+msgid "Additional Features"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:68
+msgid "Start Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/onboarding.html:78
+msgid "Restart CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:3
+msgid "Version Management - CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:37
+msgid "Here you can manage versions and check for updates to CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:41
+msgid "Note: Latest commit does not match, please upgrade CyberPanel."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:52
+msgid "Select Branch:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:57
+msgid "Upgrade CyberPanel to selected branch (Beta)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:59
+msgid "Refresh page"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:66
+msgid "Current Version:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:72
+msgid "Build:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:76
+msgid "Current Commit:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:82
+msgid "Latest Version:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:88
+msgid "Latest Build:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:92
+msgid "Latest Commit:"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:100
+msgid "Upgrade Progress Log:"
+msgstr ""
+
+#: containerization/templates/containerization/listWebsites.html:3
+msgid "Limits - CyberPanel"
+msgstr ""
+
+#: containerization/templates/containerization/listWebsites.html:15
+msgid "Launch and set limits for the websites."
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:14
+msgid "CyberPanel Ent is required for Containerization."
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:22
+msgid "Containerization is only available on CyberPanel Ent. "
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:34
+msgid "Install Packages"
+msgstr ""
+
+#: containerization/templates/containerization/notAvailable.html:39
+msgid ""
+"Required packages are not installed on this server. Please proceed to "
+"installation."
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:3
+msgid " limits - CyberPanel"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:14
+msgid "Limits/Usage"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:16
+msgid "Set limits and view usage for "
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:25
+msgid ""
+"Limits are not being inforced, click Edit Limits to inforace the limits."
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:33
+msgid "Limit"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:34
+#: dns/templates/dns/addDeleteDNSRecords.html:370
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:497
+msgid "Value"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:40
+#: containerization/templates/containerization/websiteContainerLimit.html:77
+msgid "CPU Percentage"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:44
+#: serverStatus/templates/serverStatus/topProcesses.html:131
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:129
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:243
+msgid "Memory"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:48
+#: containerization/templates/containerization/websiteContainerLimit.html:91
+msgid "I/O"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:56
+#: containerization/templates/containerization/websiteContainerLimit.html:107
+msgid "Network Speed"
+msgstr ""
+
+#: containerization/templates/containerization/websiteContainerLimit.html:84
+msgid "Memory Limit"
+msgstr ""
+
+#: databases/templates/databases/OptimizeMySQL.html:3
+#: databases/templates/databases/mysqlmanager.html:3
+msgid "Mysql Manager - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/OptimizeMySQL.html:12
+msgid "Optimize MySQL"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:3
+#: databases/templates/databases/listDataBases.html:3
+msgid "List Databases - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:13
+msgid "Upgrade Mysql"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:16
+msgid "On this page you can update mysql."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:21
+#: databases/templates/databases/Updatemysql.html:43
+msgid "Update Mysql"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:30
+msgid "Mysql version"
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:54
+#: dns/templates/dns/resetdnsconf.html:30
+#: emailPremium/templates/emailPremium/MailScanner.html:44
+#: emailPremium/templates/emailPremium/Rspamd.html:123
+#: emailPremium/templates/emailPremium/SpamAssassin.html:49
+#: firewall/templates/firewall/csf.html:43
+#: firewall/templates/firewall/modSecurity.html:47
+#: firewall/templates/firewall/modSecurity.html:244
+#: firewall/templates/firewall/spamassassin.html:43
+#: ftp/templates/ftp/ResetFTPconf.html:30
+msgid "Failed to start installation, Error message: "
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:59
+#: dns/templates/dns/resetdnsconf.html:35
+#: emailPremium/templates/emailPremium/MailScanner.html:49
+#: emailPremium/templates/emailPremium/Rspamd.html:66
+#: emailPremium/templates/emailPremium/Rspamd.html:128
+#: emailPremium/templates/emailPremium/Rspamd.html:253
+#: emailPremium/templates/emailPremium/Rspamd.html:330
+#: emailPremium/templates/emailPremium/Rspamd.html:390
+#: emailPremium/templates/emailPremium/Rspamd.html:448
+#: emailPremium/templates/emailPremium/SpamAssassin.html:54
+#: emailPremium/templates/emailPremium/SpamAssassin.html:146
+#: emailPremium/templates/emailPremium/policyServer.html:60
+#: firewall/templates/firewall/csf.html:47
+#: firewall/templates/firewall/litespeed_ent_conf.html:53
+#: firewall/templates/firewall/modSecurity.html:53
+#: firewall/templates/firewall/modSecurity.html:183
+#: firewall/templates/firewall/modSecurity.html:249
+#: firewall/templates/firewall/modSecurity.html:371
+#: firewall/templates/firewall/modSecurityRules.html:53
+#: firewall/templates/firewall/modSecurityRulesPacks.html:88
+#: firewall/templates/firewall/secureSSH.html:92
+#: firewall/templates/firewall/secureSSH.html:176
+#: firewall/templates/firewall/spamassassin.html:47
+#: firewall/templates/firewall/spamassassin.html:177
+#: ftp/templates/ftp/ResetFTPconf.html:35
+#: mailServer/templates/mailServer/dkimManager.html:44
+#: managePHP/templates/managePHP/editPHPConfig.html:159
+#: managePHP/templates/managePHP/editPHPConfig.html:227
+#: managePHP/templates/managePHP/installExtensions.html:124
+#: manageServices/templates/manageServices/managePostfix.html:59
+#: manageServices/templates/manageServices/managePowerDNS.html:130
+#: manageServices/templates/manageServices/managePureFtpd.html:59
+msgid "Could not connect. Please refresh this page."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:63
+#: dns/templates/dns/resetdnsconf.html:39
+#: emailPremium/templates/emailPremium/MailScanner.html:53
+#: emailPremium/templates/emailPremium/Rspamd.html:70
+#: emailPremium/templates/emailPremium/Rspamd.html:132
+#: emailPremium/templates/emailPremium/SpamAssassin.html:58
+#: firewall/templates/firewall/csf.html:51
+#: firewall/templates/firewall/modSecurity.html:57
+#: firewall/templates/firewall/modSecurity.html:253
+#: firewall/templates/firewall/spamassassin.html:51
+#: ftp/templates/ftp/ResetFTPconf.html:39
+msgid "Installation failed."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:67
+msgid "Upgrading Done successfully."
+msgstr ""
+
+#: databases/templates/databases/Updatemysql.html:79
+#: firewall/templates/firewall/csf.html:66
+msgid "In winter we must protect each other.."
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:3
+msgid "Create New Database - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:13
+msgid "Create a new database on this page."
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:39
+#: databases/templates/databases/listDataBases.html:108
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:649
+msgid "Database Name"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:47
+#: firewall/templates/firewall/secureSSH.html:120
+#: ftp/templates/ftp/createFTPAccount.html:57
+#: ftp/templates/ftp/listFTPAccounts.html:123
+#: mailServer/templates/mailServer/createEmailAccount.html:61
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:64
+msgid "User Name"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:60
+#: databases/templates/databases/listDataBases.html:76
+#: ftp/templates/ftp/createFTPAccount.html:73
+#: ftp/templates/ftp/listFTPAccounts.html:92
+#: mailServer/templates/mailServer/changeEmailPassword.html:74
+#: mailServer/templates/mailServer/createEmailAccount.html:76
+#: userManagment/templates/userManagment/createUser.html:90
+#: userManagment/templates/userManagment/modifyUser.html:68
+msgid "Generate"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:65
+#: databases/templates/databases/listDataBases.html:80
+#: ftp/templates/ftp/createFTPAccount.html:78
+#: ftp/templates/ftp/listFTPAccounts.html:96
+#: mailServer/templates/mailServer/changeEmailPassword.html:79
+#: mailServer/templates/mailServer/createEmailAccount.html:81
+#: userManagment/templates/userManagment/createUser.html:95
+#: userManagment/templates/userManagment/modifyUser.html:73
+msgid "Generated Password"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:70
+#: databases/templates/databases/listDataBases.html:87
+#: ftp/templates/ftp/createFTPAccount.html:85
+#: ftp/templates/ftp/listFTPAccounts.html:103
+#: mailServer/templates/mailServer/changeEmailPassword.html:86
+#: mailServer/templates/mailServer/createEmailAccount.html:88
+#: userManagment/templates/userManagment/createUser.html:101
+#: userManagment/templates/userManagment/modifyUser.html:79
+msgid "Use"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:3
+msgid "Delete Database - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:13
+msgid "Delete an existing database on this page."
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:38
+msgid "Select Database"
+msgstr ""
+
+#: databases/templates/databases/deleteDatabase.html:64
+msgid "Database deleted successfully."
+msgstr ""
+
+#: databases/templates/databases/index.html:3
+msgid "Database Functions - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/index.html:13
+msgid "Create, edit and delete databases on this page."
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:16
+msgid "List Databases or change their passwords."
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:28
+#: dns/templates/dns/addDeleteDNSRecords.html:47
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:110
+#: ftp/templates/ftp/deleteFTPAccount.html:39
+#: ftp/templates/ftp/listFTPAccounts.html:42
+#: mailServer/templates/mailServer/listEmails.html:45
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:66
+#: tuning/templates/tuning/phpTuning.html:30
+msgid "Select Domain"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:46
+#: dns/templates/dns/addDeleteDNSRecords.html:422
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:541
+#: ftp/templates/ftp/listFTPAccounts.html:61
+msgid "Records successfully fetched for"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:51
+msgid "Password changed for: "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:55
+msgid "Cannot change password for "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:61
+#: firewall/templates/firewall/firewall.html:161
+#: ftp/templates/ftp/listFTPAccounts.html:76
+msgid "Could Not Connect to server. Please refresh this page"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:109
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:659
+msgid "Database User"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:111
+#: databases/templates/databases/listDataBases.html:135
+msgid "Remote Access"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:121
+#: ftp/templates/ftp/listFTPAccounts.html:139
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:45
+msgid "Change"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:126
+#: emailPremium/templates/emailPremium/emailLimits.html:164
+#: emailPremium/templates/emailPremium/listDomains.html:67
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:71
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:58
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:207
+msgid "Manage"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:146
+msgid "Allow Remote Access on following IP"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:3
+msgid "PHPMYAdmin - CyberPanel"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:14
+msgid "Access your databases via PHPMYAdmin"
+msgstr ""
+
+#: databases/templates/databases/phpMyAdmin.html:24
+msgid ""
+"Auto-login for PHPMYAdmin is now supported. Click the button below to "
+"generate auto-access for PHPMYAdmin"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:3
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:3
+msgid "Add/Modify DNS Records - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:13
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:13
+msgid "Add/Modify DNS Zone"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:16
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:16
+#: dns/templates/dns/configureDefaultNameServers.html:12
+#: dns/templates/dns/createDNSZone.html:12
+#: dns/templates/dns/createNameServer.html:12
+#: dns/templates/dns/deleteDNSZone.html:12
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:16
+msgid "DNS Docs"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:17
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:17
+msgid ""
+"On this page you can add/modify dns records for domains whose dns zone is "
+"already created."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:22
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:22
+msgid "Add Records"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:30
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:30
+#: dns/templates/dns/configureDefaultNameServers.html:24
+#: dns/templates/dns/createDNSZone.html:24
+#: dns/templates/dns/createNameServer.html:24
+#: dns/templates/dns/deleteDNSZone.html:25
+msgid "PowerDNS is disabled."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:33
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:33
+#: dns/templates/dns/configureDefaultNameServers.html:26
+#: dns/templates/dns/createDNSZone.html:26
+#: dns/templates/dns/createNameServer.html:26
+#: dns/templates/dns/deleteDNSZone.html:27
+#: ftp/templates/ftp/createFTPAccount.html:29
+#: ftp/templates/ftp/deleteFTPAccount.html:27
+#: ftp/templates/ftp/listFTPAccounts.html:29
+#: mailServer/templates/mailServer/EmailLimits.html:33
+#: mailServer/templates/mailServer/changeEmailPassword.html:30
+#: mailServer/templates/mailServer/createEmailAccount.html:32
+#: mailServer/templates/mailServer/deleteEmailAccount.html:30
+#: mailServer/templates/mailServer/emailForwarding.html:28
+#: mailServer/templates/mailServer/listEmails.html:32
+msgid "Enable Now"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:91
+#: dns/templates/dns/addDeleteDNSRecords.html:117
+#: dns/templates/dns/addDeleteDNSRecords.html:144
+#: dns/templates/dns/addDeleteDNSRecords.html:170
+#: dns/templates/dns/addDeleteDNSRecords.html:202
+#: dns/templates/dns/addDeleteDNSRecords.html:229
+#: dns/templates/dns/addDeleteDNSRecords.html:256
+#: dns/templates/dns/addDeleteDNSRecords.html:283
+#: dns/templates/dns/addDeleteDNSRecords.html:310
+#: dns/templates/dns/addDeleteDNSRecords.html:340
+#: dns/templates/dns/addDeleteDNSRecords.html:369
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:174
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:205
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:237
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:267
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:304
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:335
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:366
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:397
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:428
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:463
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:496
+msgid "TTL"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:122
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:211
+msgid "IPV6 Address"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:149
+#: dns/templates/dns/addDeleteDNSRecords.html:180
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:243
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:279
+#: dns/templates/dns/createDNSZone.html:38
+#: dns/templates/dns/createNameServer.html:36
+#: emailMarketing/templates/emailMarketing/website.html:318
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:132
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:140
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:72
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:432
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:469
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:169
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:137
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:46
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:158
+#: websiteFunctions/templates/websiteFunctions/website.html:295
+msgid "Domain Name"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:175
+#: dns/templates/dns/addDeleteDNSRecords.html:371
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:273
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:498
+msgid "Priority"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:208
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:311
+msgid "Policy"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:235
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:342
+msgid "Text"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:262
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:373
+msgid "SOA Value"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:289
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:404
+msgid "Name server"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:315
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:434
+msgid "Prioirty"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:321
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:441
+msgid "Content"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:414
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:531
+msgid "Cannot fetch records. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:418
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:536
+msgid "Cannot add record. Error message: "
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:427
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:547
+msgid "Record Successfully Deleted"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:431
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:552
+msgid "Cannot delete record. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:435
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:557
+msgid "Record Successfully Added."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:47
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:581
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:112
+msgid "CloudFlare Email"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:55
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:591
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:120
+msgid "API Token"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:63
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:601
+msgid "Sync local Records to CloudFlare"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:77
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:615
+#: dns/templates/dns/configureDefaultNameServers.html:68
+#: emailMarketing/templates/emailMarketing/configureVerify.html:84
+#: emailMarketing/templates/emailMarketing/website.html:656
+#: emailMarketing/templates/emailMarketing/website.html:716
+#: firewall/templates/firewall/secureSSH.html:162
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:132
+#: serverLogs/templates/serverLogs/serverMail.html:75
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:137
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:372
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:432
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:106
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55
+#: websiteFunctions/templates/websiteFunctions/website.html:626
+#: websiteFunctions/templates/websiteFunctions/website.html:676
+msgid "Save"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:90
+msgid "Manage DNS"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:97
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:53
+msgid "API Settings"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:122
+msgid "Sync Local Records to CloudFlare"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecordsCloudFlare.html:499
+msgid "Proxy"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:3
+msgid "Configure Default Nameserver - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:12
+msgid "Configure Default Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:13
+#: dns/templates/dns/createNameServer.html:13
+msgid ""
+"You can use this page to setup nameservers using which people on the "
+"internet can resolve websites hosted on this server."
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:18
+#: dns/templates/dns/createDNSZone.html:18
+#: dns/templates/dns/createNameServer.html:18
+#: mailServer/templates/mailServer/listEmails.html:78
+#: mailServer/templates/mailServer/listEmails.html:105
+#: mailServer/templates/mailServer/listEmails.html:132
+#: userManagment/templates/userManagment/modifyUser.html:19
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:107
+msgid "Details"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:36
+#: dns/templates/dns/createNameServer.html:46
+msgid "First Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:45
+msgid "Second Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:52
+msgid "Third Nameserver"
+msgstr ""
+
+#: dns/templates/dns/configureDefaultNameServers.html:59
+msgid "Forth Nameserver"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:3
+msgid "Create DNS Zone - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:13
+msgid ""
+"This page is used to create DNS zone, to edit dns zone you can visit Modify "
+"DNS Zone Page."
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:61
+msgid "Cannot create DNS Zone. Error message:"
+msgstr ""
+
+#: dns/templates/dns/createDNSZone.html:65
+msgid "DNS Zone for domain:"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:3
+msgid "Create Nameserver - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:62
+msgid "Second Nameserver (Backup)"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:89
+msgid "Nameserver cannot be created. Error message:"
+msgstr ""
+
+#: dns/templates/dns/createNameServer.html:93
+msgid "The following nameservers were successfully created:"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:3
+msgid "Delete DNS Zone - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:12
+#: dns/templates/dns/deleteDNSZone.html:18
+msgid "Delete DNS Zone"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:13
+msgid ""
+"This page can be used to delete DNS Zone. Deleting the DNS zone will remove "
+"all its related records as well."
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:37
+msgid "Select Zone"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:69
+msgid "Cannot delete zone. Error message: "
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:73
+msgid "Zone for domain:"
+msgstr ""
+
+#: dns/templates/dns/deleteDNSZone.html:73
+msgid "is successfully erased."
+msgstr ""
+
+#: dns/templates/dns/index.html:3
+msgid "DNS Functions - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/index.html:12
+msgid "DNS Functions"
+msgstr ""
+
+#: dns/templates/dns/index.html:13
+msgid "Create, edit and delete DNS zones on this page."
+msgstr ""
+
+#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108
+msgid "Add Delete Records"
+msgstr ""
+
+#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110
+msgid "Add Delete/Records"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:3
+msgid "Reset DNS Configurations - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:12
+msgid "Reset your DNS Configurations here."
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:20
+#: ftp/templates/ftp/ResetFTPconf.html:20
+msgid "Reset Configuration"
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:43
+#: ftp/templates/ftp/ResetFTPconf.html:43
+msgid "successfully Completed Reset Process."
+msgstr ""
+
+#: dns/templates/dns/resetdnsconf.html:54
+#: ftp/templates/ftp/ResetFTPconf.html:54
+msgid "Reseting...."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:3
+#: dockerManager/templates/dockerManager/manageImages.html:3
+msgid "Docker Manage Images - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:14
+#: dockerManager/templates/dockerManager/index.html:39
+msgid "Create new container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:15
+msgid "Search new images and manage existing ones"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:22
+msgid "Locally Available Images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/images.html:48
+msgid "Create"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:3
+msgid "Docker Container Management - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:13
+msgid "Docker Container Management"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/index.html:41
+msgid "New Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:3
+msgid "Install Docker - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:12
+#: dockerManager/templates/dockerManager/install.html:18
+msgid "Install Docker"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:26
+msgid ""
+"Unable to connect to docker daemon, please try restarting docker from "
+"service page"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:28
+msgid "You do not have sufficient permissions to access this page"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:32
+msgid ""
+"Docker is currently not installed on this server. To manage containers, you "
+"must first install it."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/install.html:53
+msgid ""
+"You do not have permissions to install Docker. Please contact your system "
+"administrator"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:3
+msgid "Containers List - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:14
+msgid "List Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:17
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:24
+msgid "Manage containers on server"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:23
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:20
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:30
+msgid "Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:101
+msgid "Unlisted Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:102
+msgid ""
+"Containers listed below were either not created through panel or were not "
+"saved to database properly"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:148
+#: dockerManager/templates/dockerManager/runContainer.html:52
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:120
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:173
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:122
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:125
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:168
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56
+msgid "Select Owner"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:17
+msgid "On this page you can manage docker images."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:65
+#: dockerManager/templates/dockerManager/manageImages.html:66
+msgid "Images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:67
+msgid "Delete unused images"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:95
+msgid "Official image"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/manageImages.html:104
+msgid "Pull"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:3
+msgid "Run new container - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:12
+msgid "Run Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:13
+msgid "Modify parameters for your new container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:20
+msgid "Container Details"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:36
+#: dockerManager/templates/dockerManager/viewContainer.html:70
+msgid "Image"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:44
+msgid "Tag"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:64
+#: dockerManager/templates/dockerManager/viewContainer.html:206
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:406
+msgid "Memory limit"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:104
+#: dockerManager/templates/dockerManager/viewContainer.html:250
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:451
+msgid "ENV"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:125
+#: dockerManager/templates/dockerManager/viewContainer.html:283
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:486
+msgid "Map Volumes"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:153
+#: dockerManager/templates/dockerManager/viewContainer.html:310
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:517
+msgid "Add field"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:161
+msgid "Create Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:180
+msgid "Container succesfully created."
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:3
+msgid "Container Home - CyberPanel"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:14
+msgid "Manage Container"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:15
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:203
+msgid "Currently managing: "
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:24
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:221
+msgid "Container Information"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:37
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:234
+msgid "Memory Usage"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:68
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:210
+msgid "Container ID"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:77
+msgid "Ports"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:79
+msgid "to"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:227
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:428
+msgid "Confirmation"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:3
+msgid "Compose Email Message - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:13
+#: emailMarketing/templates/emailMarketing/composeMessages.html:19
+#: emailMarketing/templates/emailMarketing/configureVerify.html:19
+msgid "Compose Email Message"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:14
+msgid "On this page you can compose email message to be sent out later."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:29
+msgid "Template Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:36
+msgid "Email Subject"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:43
+msgid "From Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:50
+msgid "From Email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:57
+msgid "Reply Email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/composeMessages.html:73
+msgid "Save Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:3
+msgid "Configure Email Verification - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:13
+msgid "Configure Email Verification"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:14
+msgid ""
+"On this page you can configure parameters regarding how email verification "
+"is performed for "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:30
+msgid "Configure Delay"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:40
+msgid "Delay After"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:42
+msgid "Start delay after this many verifications are done."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:47
+msgid "Delay Time"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:49
+msgid "Set the number of seconds to wait."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:54
+msgid "IP Rotation"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:65
+msgid "IPv4"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:67
+msgid "Enter IPv4(s) to be used separate with commas."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:72
+msgid "IPv6"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/configureVerify.html:74
+msgid "Enter IPv6(s) to be used separate with commas."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:3
+msgid "Create Email List - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:13
+#: emailMarketing/templates/emailMarketing/createEmailList.html:19
+msgid "Create Email List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:14
+msgid "Create email list, to send out news letters and marketing emails."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:26
+msgid "List Name"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/createEmailList.html:42
+msgid "Create List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:3
+msgid "Email Marketing - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:15
+msgid "Select users to Enable/Disable Email Marketing feature!"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:29
+#: emailPremium/templates/emailPremium/listDomains.html:29
+msgid "Email Policy Server is not enabled "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:32
+#: emailPremium/templates/emailPremium/listDomains.html:33
+msgid "Enable Now."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:54
+msgid "Email Marketing Enabled."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:55
+#: emailPremium/templates/emailPremium/emailLimits.html:53
+#: emailPremium/templates/emailPremium/emailLimits.html:159
+#: emailPremium/templates/emailPremium/emailPage.html:55
+#: emailPremium/templates/emailPremium/emailPage.html:61
+#: emailPremium/templates/emailPremium/listDomains.html:62
+#: tuning/templates/tuning/phpTuning.html:94
+#: tuning/templates/tuning/phpTuning.html:235
+msgid "Disable"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:56
+msgid "Email Marketing Disabled."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:57
+#: emailPremium/templates/emailPremium/emailLimits.html:55
+#: emailPremium/templates/emailPremium/emailLimits.html:161
+#: emailPremium/templates/emailPremium/emailPage.html:57
+#: emailPremium/templates/emailPremium/emailPage.html:63
+#: emailPremium/templates/emailPremium/listDomains.html:64
+#: tuning/templates/tuning/phpTuning.html:93
+#: tuning/templates/tuning/phpTuning.html:234
+msgid "Enable"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:3
+msgid "Manage Email Lists - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:13
+#: emailMarketing/templates/emailMarketing/manageLists.html:19
+msgid "Manage Email Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:14
+msgid ""
+"On this page you can manage your email lists (Delete, Verify, Add More "
+"Emails)."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:29
+#: emailMarketing/templates/emailMarketing/sendEmails.html:71
+msgid "Select List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:53
+msgid "You are doing to delete this list.."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:73
+msgid "Verify"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:77
+msgid "Configure Verification"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:81
+msgid "Verfications Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:91
+msgid "Verification Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:103
+#: emailMarketing/templates/emailMarketing/sendEmails.html:154
+msgid "Total Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:104
+msgid "Verified"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:105
+msgid "Not-Verified"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:186
+msgid "Add More Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:206
+msgid "Load Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:267
+msgid "email"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:268
+msgid "Verification Status"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:269
+msgid "Date Created"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3
+msgid "Manage SMTP Hosts - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19
+#: serverLogs/templates/serverLogs/serverMail.html:23
+msgid "Manage SMTP Hosts"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14
+msgid ""
+"On this page you can manage STMP Host. (SMTP hosts are used to send emails)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29
+#: emailMarketing/templates/emailMarketing/sendEmails.html:153
+#: serverLogs/templates/serverLogs/serverMail.html:44
+msgid "SMTP Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59
+msgid "Save Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75
+#: userManagment/templates/userManagment/listUsers.html:38
+msgid "Owner"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91
+msgid "Verify Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:3
+msgid "Send Emails - CyberPanel"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:13
+#: emailMarketing/templates/emailMarketing/sendEmails.html:19
+#: emailMarketing/templates/emailMarketing/sendEmails.html:66
+#: emailMarketing/templates/emailMarketing/website.html:1030
+#: emailMarketing/templates/emailMarketing/website.html:1033
+#: emailMarketing/templates/emailMarketing/website.html:1034
+#: websiteFunctions/templates/websiteFunctions/website.html:980
+#: websiteFunctions/templates/websiteFunctions/website.html:984
+#: websiteFunctions/templates/websiteFunctions/website.html:985
+msgid "Send Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:14
+msgid ""
+"On this page you can send emails to the lists you created using SMTP Hosts."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:28
+#: websiteFunctions/templates/websiteFunctions/website.html:699
+msgid "Select Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:41
+msgid "Delete This Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:48
+msgid "You are doing to delete this template.."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:63
+msgid "Preview Template"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:82
+msgid "Select STMP Host"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:98
+msgid "Send to un-verified email addresses."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:107
+msgid "Include unsubscribe link."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:116
+msgid "Start Job"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:155
+msgid "Sent"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/sendEmails.html:156
+msgid "Failed"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:16
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:17
+#: websiteFunctions/templates/websiteFunctions/website.html:16
+msgid "Preview"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:17
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:18
+#: websiteFunctions/templates/websiteFunctions/website.html:17
+msgid "All functions related to a particular site."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:28
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:28
+#: websiteFunctions/templates/websiteFunctions/website.html:28
+msgid "Resource Usage"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:39
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:49
+#: websiteFunctions/templates/websiteFunctions/website.html:48
+msgid "Resource"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:41
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:51
+#: websiteFunctions/templates/websiteFunctions/website.html:50
+msgid "Allowed"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:63
+#: emailMarketing/templates/emailMarketing/website.html:89
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:73
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:107
+#: websiteFunctions/templates/websiteFunctions/website.html:70
+#: websiteFunctions/templates/websiteFunctions/website.html:100
+msgid "Bandwidth Usage"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:124
+#: emailMarketing/templates/emailMarketing/website.html:127
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:138
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:142
+#: websiteFunctions/templates/websiteFunctions/website.html:127
+#: websiteFunctions/templates/websiteFunctions/website.html:131
+msgid "Load Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:128
+#: serverLogs/templates/serverLogs/accessLogs.html:16
+#: serverLogs/templates/serverLogs/index.html:37
+#: serverLogs/templates/serverLogs/index.html:40
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:143
+#: websiteFunctions/templates/websiteFunctions/website.html:132
+msgid "Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:135
+#: emailMarketing/templates/emailMarketing/website.html:138
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:148
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:152
+#: websiteFunctions/templates/websiteFunctions/website.html:136
+#: websiteFunctions/templates/websiteFunctions/website.html:140
+msgid "Load Error Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:150
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:162
+#: websiteFunctions/templates/websiteFunctions/website.html:148
+msgid "Logs Fetched"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:155
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:167
+#: websiteFunctions/templates/websiteFunctions/website.html:151
+msgid ""
+"Could not fetch logs, see the logs file through command line. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:179
+#: emailMarketing/templates/emailMarketing/website.html:221
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:191
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:234
+#: websiteFunctions/templates/websiteFunctions/website.html:169
+#: websiteFunctions/templates/websiteFunctions/website.html:214
+msgid "Next"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:181
+#: emailMarketing/templates/emailMarketing/website.html:223
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:193
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:236
+#: websiteFunctions/templates/websiteFunctions/website.html:171
+#: websiteFunctions/templates/websiteFunctions/website.html:216
+msgid "Previous"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:254
+#: emailPremium/templates/emailPremium/listDomains.html:22
+#: packages/templates/packages/createPackage.html:36
+#: packages/templates/packages/listPackages.html:93
+#: packages/templates/packages/modifyPackage.html:40
+#: websiteFunctions/templates/websiteFunctions/website.html:240
+msgid "Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:262
+#: emailMarketing/templates/emailMarketing/website.html:265
+#: emailMarketing/templates/emailMarketing/website.html:266
+#: emailMarketing/templates/emailMarketing/website.html:267
+#: websiteFunctions/templates/websiteFunctions/website.html:245
+#: websiteFunctions/templates/websiteFunctions/website.html:248
+#: websiteFunctions/templates/websiteFunctions/website.html:249
+#: websiteFunctions/templates/websiteFunctions/website.html:250
+msgid "Add Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:274
+#: emailMarketing/templates/emailMarketing/website.html:275
+#: emailMarketing/templates/emailMarketing/website.html:278
+#: emailMarketing/templates/emailMarketing/website.html:279
+#: emailMarketing/templates/emailMarketing/website.html:280
+#: emailMarketing/templates/emailMarketing/website.html:300
+#: emailMarketing/templates/emailMarketing/website.html:303
+#: emailPremium/templates/emailPremium/listDomains.html:14
+#: websiteFunctions/templates/websiteFunctions/website.html:255
+#: websiteFunctions/templates/websiteFunctions/website.html:256
+#: websiteFunctions/templates/websiteFunctions/website.html:259
+#: websiteFunctions/templates/websiteFunctions/website.html:260
+#: websiteFunctions/templates/websiteFunctions/website.html:261
+msgid "List Domains"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:286
+#: emailMarketing/templates/emailMarketing/website.html:287
+#: emailMarketing/templates/emailMarketing/website.html:290
+#: emailMarketing/templates/emailMarketing/website.html:291
+#: emailMarketing/templates/emailMarketing/website.html:292
+#: websiteFunctions/templates/websiteFunctions/website.html:266
+#: websiteFunctions/templates/websiteFunctions/website.html:267
+#: websiteFunctions/templates/websiteFunctions/website.html:270
+#: websiteFunctions/templates/websiteFunctions/website.html:271
+#: websiteFunctions/templates/websiteFunctions/website.html:272
+msgid "Domain Alias"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:299
+#: emailMarketing/templates/emailMarketing/website.html:304
+#: websiteFunctions/templates/websiteFunctions/website.html:277
+#: websiteFunctions/templates/websiteFunctions/website.html:278
+#: websiteFunctions/templates/websiteFunctions/website.html:281
+#: websiteFunctions/templates/websiteFunctions/website.html:282
+msgid "Add new Cron Job"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:305
+#: websiteFunctions/templates/websiteFunctions/website.html:283
+msgid "Cron Jobs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:310
+msgid "This path is relative to: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:310
+msgid "Leave empty to set default."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:336
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:138
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:146
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:274
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:292
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:454
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:486
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:182
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:143
+#: websiteFunctions/templates/websiteFunctions/website.html:314
+msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:341
+#: emailMarketing/templates/emailMarketing/website.html:794
+#: managePHP/templates/managePHP/editPHPConfig.html:49
+#: managePHP/templates/managePHP/editPHPConfig.html:179
+#: managePHP/templates/managePHP/installExtensions.html:29
+#: tuning/templates/tuning/phpTuning.html:166
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:188
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:506
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:204
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74
+#: websiteFunctions/templates/websiteFunctions/website.html:318
+#: websiteFunctions/templates/websiteFunctions/website.html:761
+msgid "Select PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:388
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:251
+#: websiteFunctions/templates/websiteFunctions/website.html:363
+msgid "Create Domain"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:415
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:232
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:387
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:523
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:278
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:252
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:102
+#: websiteFunctions/templates/websiteFunctions/website.html:389
+msgid "Website succesfully created."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:449
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:136
+#: websiteFunctions/templates/websiteFunctions/website.html:423
+msgid "PHP Version Changed to:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:453
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:140
+#: websiteFunctions/templates/websiteFunctions/website.html:427
+msgid "Deleted:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:457
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:144
+#: websiteFunctions/templates/websiteFunctions/website.html:431
+msgid "SSL Issued:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:461
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:148
+#: websiteFunctions/templates/websiteFunctions/website.html:435
+msgid "Changes applied successfully."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:528
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:199
+#: websiteFunctions/templates/websiteFunctions/website.html:503
+msgid "Issue"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:558
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:266
+#: websiteFunctions/templates/websiteFunctions/website.html:531
+msgid "Configurations"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:568
+#: emailMarketing/templates/emailMarketing/website.html:572
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:274
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:278
+#: websiteFunctions/templates/websiteFunctions/website.html:548
+#: websiteFunctions/templates/websiteFunctions/website.html:552
+msgid "Edit vHost Main Configurations"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:573
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:279
+#: websiteFunctions/templates/websiteFunctions/website.html:553
+msgid "vHost Conf"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:582
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:298
+#: websiteFunctions/templates/websiteFunctions/website.html:559
+msgid "Add Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:586
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:302
+#: websiteFunctions/templates/websiteFunctions/website.html:563
+msgid "Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:587
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:303
+#: websiteFunctions/templates/websiteFunctions/website.html:564
+msgid "Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:595
+#: emailMarketing/templates/emailMarketing/website.html:598
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:310
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:314
+#: websiteFunctions/templates/websiteFunctions/website.html:569
+#: websiteFunctions/templates/websiteFunctions/website.html:572
+msgid "Add Your Own SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:599
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:315
+#: websiteFunctions/templates/websiteFunctions/website.html:573
+msgid "Add SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:607
+#: emailMarketing/templates/emailMarketing/website.html:610
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:322
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:326
+#: websiteFunctions/templates/websiteFunctions/website.html:578
+#: websiteFunctions/templates/websiteFunctions/website.html:581
+msgid "Change PHP Version"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:611
+#: emailMarketing/templates/emailMarketing/website.html:815
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:327
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:527
+#: websiteFunctions/templates/websiteFunctions/website.html:582
+#: websiteFunctions/templates/websiteFunctions/website.html:782
+msgid "Change PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:623
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:339
+#: websiteFunctions/templates/websiteFunctions/website.html:593
+msgid "SSL Saved"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:628
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:344
+#: websiteFunctions/templates/websiteFunctions/website.html:598
+msgid "Could not save SSL. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:678
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:394
+#: websiteFunctions/templates/websiteFunctions/website.html:641
+msgid "Current configuration in the file fetched."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:683
+#: emailMarketing/templates/emailMarketing/website.html:697
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:399
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:413
+#: websiteFunctions/templates/websiteFunctions/website.html:645
+#: websiteFunctions/templates/websiteFunctions/website.html:658
+msgid "Could not fetch current configuration. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:693
+#: emailMarketing/templates/emailMarketing/website.html:753
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:409
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:465
+#: websiteFunctions/templates/websiteFunctions/website.html:654
+#: websiteFunctions/templates/websiteFunctions/website.html:723
+msgid "Configurations saved."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:734
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:450
+msgid "Current rewrite rules in the file fetched."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:743
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:455
+#: websiteFunctions/templates/websiteFunctions/website.html:714
+msgid "Could not fetch current rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:757
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:469
+#: websiteFunctions/templates/websiteFunctions/website.html:727
+msgid "Could not save rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:776
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:488
+#: websiteFunctions/templates/websiteFunctions/website.html:745
+msgid "Save Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:825
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:537
+#: websiteFunctions/templates/websiteFunctions/website.html:792
+msgid "Failed to change PHP version. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:830
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:542
+#: websiteFunctions/templates/websiteFunctions/website.html:797
+msgid "PHP successfully changed for: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:855
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:567
+#: websiteFunctions/templates/websiteFunctions/website.html:819
+msgid "Files"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:863
+#: emailMarketing/templates/emailMarketing/website.html:866
+#: emailMarketing/templates/emailMarketing/website.html:867
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:575
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:578
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:579
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:53
+#: websiteFunctions/templates/websiteFunctions/website.html:824
+#: websiteFunctions/templates/websiteFunctions/website.html:827
+#: websiteFunctions/templates/websiteFunctions/website.html:828
+msgid "File Manager"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:874
+#: emailMarketing/templates/emailMarketing/website.html:877
+#: emailMarketing/templates/emailMarketing/website.html:915
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:586
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:589
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:630
+#: websiteFunctions/templates/websiteFunctions/website.html:833
+#: websiteFunctions/templates/websiteFunctions/website.html:836
+#: websiteFunctions/templates/websiteFunctions/website.html:869
+msgid "open_basedir Protection"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:878
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:590
+#: websiteFunctions/templates/websiteFunctions/website.html:837
+msgid "open_basedir"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:890
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:603
+#: websiteFunctions/templates/websiteFunctions/website.html:849
+msgid "Create FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:902
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:615
+#: websiteFunctions/templates/websiteFunctions/website.html:858
+msgid "Delete FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:939
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:654
+#: websiteFunctions/templates/websiteFunctions/website.html:892
+msgid "Apply Changes"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:951
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:666
+#: websiteFunctions/templates/websiteFunctions/website.html:904
+msgid "Changes successfully saved."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:986
+#: emailMarketing/templates/emailMarketing/website.html:989
+#: emailMarketing/templates/emailMarketing/website.html:990
+#: websiteFunctions/templates/websiteFunctions/website.html:939
+#: websiteFunctions/templates/websiteFunctions/website.html:943
+#: websiteFunctions/templates/websiteFunctions/website.html:944
+msgid "Create Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:997
+#: emailMarketing/templates/emailMarketing/website.html:1000
+#: emailMarketing/templates/emailMarketing/website.html:1001
+#: websiteFunctions/templates/websiteFunctions/website.html:949
+#: websiteFunctions/templates/websiteFunctions/website.html:953
+#: websiteFunctions/templates/websiteFunctions/website.html:954
+msgid "Manage Lists"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1008
+#: emailMarketing/templates/emailMarketing/website.html:1011
+#: emailMarketing/templates/emailMarketing/website.html:1012
+#: websiteFunctions/templates/websiteFunctions/website.html:959
+#: websiteFunctions/templates/websiteFunctions/website.html:963
+#: websiteFunctions/templates/websiteFunctions/website.html:964
+msgid "SMTP Hosts"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1019
+#: emailMarketing/templates/emailMarketing/website.html:1022
+#: websiteFunctions/templates/websiteFunctions/website.html:969
+#: websiteFunctions/templates/websiteFunctions/website.html:974
+msgid "Compose Message"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1023
+#: websiteFunctions/templates/websiteFunctions/website.html:975
+msgid "Compose"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1050
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:692
+#: websiteFunctions/templates/websiteFunctions/website.html:1001
+msgid "Application Installer"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1061
+#: emailMarketing/templates/emailMarketing/website.html:1065
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:703
+#: websiteFunctions/templates/websiteFunctions/website.html:1009
+#: websiteFunctions/templates/websiteFunctions/website.html:1013
+msgid "Install wordpress with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1066
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35
+msgid "Wordpress with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1075
+#: emailMarketing/templates/emailMarketing/website.html:1079
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47
+msgid "Install Joomla with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1080
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48
+msgid "Joomla"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1089
+#: emailMarketing/templates/emailMarketing/website.html:1093
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:722
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:726
+#: websiteFunctions/templates/websiteFunctions/website.html:1032
+#: websiteFunctions/templates/websiteFunctions/website.html:1036
+msgid "Attach Git with this website!"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1094
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:727
+#: websiteFunctions/templates/websiteFunctions/website.html:1037
+msgid "Git"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1103
+#: emailMarketing/templates/emailMarketing/website.html:1107
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:735
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:739
+#: websiteFunctions/templates/websiteFunctions/website.html:1043
+#: websiteFunctions/templates/websiteFunctions/website.html:1047
+msgid "Install Prestashop"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1108
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:740
+#: websiteFunctions/templates/websiteFunctions/website.html:1048
+msgid "Prestashop"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:3
+msgid "Email Debugger - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:16
+msgid "Email debugger to fix server-wide or website level email settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:23
+msgid "DEBUG EMAIL SERVER"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:29
+msgid "Run Server Level Checks"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/EmailDebugger.html:186
+msgid "WEBSITE LEVEL EMAIL ISSUES"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:3
+msgid "MailScanner - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:14
+msgid "Install/Access MailScanner"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:29
+msgid "MailScanner is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:32
+#: emailPremium/templates/emailPremium/Rspamd.html:111
+#: emailPremium/templates/emailPremium/SpamAssassin.html:37
+#: firewall/templates/firewall/csf.html:31
+#: firewall/templates/firewall/modSecurity.html:35
+#: firewall/templates/firewall/modSecurity.html:231
+#: firewall/templates/firewall/modSecurityRules.html:73
+#: firewall/templates/firewall/modSecurityRulesPacks.html:31
+#: firewall/templates/firewall/spamassassin.html:31
+msgid "Install Now."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:57
+msgid "MailScanner successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:69
+msgid "Winter is coming, but so is MailScanner."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:86
+msgid "MailScanner is installed. "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/MailScanner.html:90
+msgid "Access Now."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:3
+msgid "Rspamd - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:13
+msgid "Rspamd Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:15
+msgid "On this page you can configure Rspamd settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:31
+msgid "View Rspamd Logs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:37
+msgid "Un-install Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:43
+msgid "Restart Rspamd and CLAMAV"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:51
+msgid "Uninstalling Rspamd "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:62
+msgid "Failed to start Uninstallation, Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:74
+msgid "RSPAMD successfully Uninstalled, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:86
+#: emailPremium/templates/emailPremium/Rspamd.html:148
+msgid "Winter is coming, but so is RSPAMD."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:108
+msgid "Rspamd is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:136
+msgid "RSPAMD successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:168
+msgid "ClamAV - This is CLAMV Configurations in Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:171
+#: emailPremium/templates/emailPremium/Rspamd.html:271
+#: emailPremium/templates/emailPremium/Rspamd.html:345
+#: emailPremium/templates/emailPremium/Rspamd.html:403
+msgid ""
+"this is advanced settings, do not change if you don't know what you are doing"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:233
+#: emailPremium/templates/emailPremium/Rspamd.html:311
+#: emailPremium/templates/emailPremium/Rspamd.html:370
+#: emailPremium/templates/emailPremium/Rspamd.html:428
+#: emailPremium/templates/emailPremium/SpamAssassin.html:126
+#: firewall/templates/firewall/modSecurity.html:163
+#: firewall/templates/firewall/modSecurity.html:351
+#: firewall/templates/firewall/spamassassin.html:157
+msgid "Save changes."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:244
+msgid "Failed to save RSPAMD configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:249
+msgid "RSPAMD configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:266
+msgid "ClamAV Configuration"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:321
+msgid "Failed to save ClamAV configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:326
+msgid "ClamAV configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:341
+msgid "Postfix Configurations for Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:381
+msgid "Failed to save Postfix configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:386
+msgid "Postfix configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:400
+msgid "Redis"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:439
+msgid "Failed to save Redis configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:444
+msgid "Redis configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/Rspamd.html:475
+#: emailPremium/templates/emailPremium/Rspamd.html:504
+msgid "Uninstall Rspamd"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:3
+#: firewall/templates/firewall/spamassassin.html:3
+msgid "SpamAssassin - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:13
+#: firewall/templates/firewall/spamassassin.html:13
+msgid "SpamAssassin Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:17
+msgid "SpamAssassin Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:19
+#: firewall/templates/firewall/spamassassin.html:14
+msgid "On this page you can configure SpamAssassin settings."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:34
+msgid "SpamAssassin is not installed "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:62
+msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:74
+msgid "Winter is coming, but so is SpamAssassin."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:137
+msgid "Failed to save SpamAssassin configurations. Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/SpamAssassin.html:142
+msgid "SpamAssassin configurations successfully saved."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:13
+#: emailPremium/templates/emailPremium/listDomains.html:14
+#: emailPremium/templates/emailPremium/policyServer.html:13
+#: mailServer/templates/mailServer/EmailLimits.html:15
+msgid "Email Limits Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:14
+msgid "View and change email limits for a domain name."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:25
+msgid "Domain Resource Usage"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:52
+#: emailPremium/templates/emailPremium/emailLimits.html:158
+#: emailPremium/templates/emailPremium/emailPage.html:54
+#: emailPremium/templates/emailPremium/listDomains.html:61
+msgid "Limits are being Applied!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:54
+#: emailPremium/templates/emailPremium/emailLimits.html:160
+#: emailPremium/templates/emailPremium/emailPage.html:56
+#: emailPremium/templates/emailPremium/listDomains.html:63
+msgid "Limits are not being applied!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:70
+#: emailPremium/templates/emailPremium/emailPage.html:78
+msgid "Monthly Limit"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:83
+#: emailPremium/templates/emailPremium/emailPage.html:101
+msgid "Change Limits"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:93
+#: emailPremium/templates/emailPremium/emailPage.html:111
+msgid "Can not change limits. Error message:"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:97
+msgid "Limits successfully changed, refreshing in 3 seconds."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:126
+#: emailPremium/templates/emailPremium/emailPage.html:25
+msgid "Email Resource Usage"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailLimits.html:133
+msgid "Search Emails.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:13
+msgid "Emai Limits Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:14
+msgid "View and change limits for an Email Address."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:60
+msgid "Logging in ON!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:62
+msgid "Logging is Off"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:88
+msgid "Hourly Limit"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:115
+msgid "Limits successfully changed."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:151
+msgid "Search Emails Logs.."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/emailPage.html:155
+msgid "Flush Logs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/listDomains.html:3
+msgid "Domains - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/listDomains.html:15
+msgid "On this page you manage emails limits for Domains/Email Addresses"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:3
+msgid "Mail Queue - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:18
+msgid "Queue Docs"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:20
+msgid "On this page you manage your server Email Queue."
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:50
+msgid "Flush Queue"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:51
+msgid "Delete All"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/mailQueue.html:52
+msgid "Delete Deferred"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:3
+msgid "Email Policy Server - CyberPanel"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:13
+msgid "Email Policy Server Configurations!"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:14
+msgid "Turn ON Email Policy Server to use Email Limits Feature. "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:20
+msgid "Email Policy Server"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:40
+#: manageServices/templates/manageServices/managePostfix.html:41
+#: manageServices/templates/manageServices/managePowerDNS.html:112
+#: manageServices/templates/manageServices/managePureFtpd.html:41
+msgid "Save changes"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:52
+#: firewall/templates/firewall/secureSSH.html:83
+#: mailServer/templates/mailServer/dkimManager.html:40
+#: managePHP/templates/managePHP/editPHPConfig.html:150
+#: manageServices/templates/manageServices/managePostfix.html:51
+#: manageServices/templates/manageServices/managePowerDNS.html:122
+#: manageServices/templates/manageServices/managePureFtpd.html:51
+msgid "Error message: "
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:56
+#: manageServices/templates/manageServices/managePostfix.html:55
+#: manageServices/templates/manageServices/managePowerDNS.html:126
+#: manageServices/templates/manageServices/managePureFtpd.html:55
+msgid "Changes successfully applied."
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:18
+msgid "Example Plugin Page"
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:19
+msgid "Example Plugin Info"
+msgstr ""
+
+#: examplePlugin/templates/examplePlugin/examplePlugin.html:24
+msgid "examplePlugin"
+msgstr ""
+
+#: filemanager/templates/filemanager/editFile.html:5
+msgid "Editing File - CyberPanel"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:85
+msgid "Fix Permissions"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:606
+msgid "Changing permissions for"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:615
+msgid "Mode"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:616
+#: serverStatus/templates/serverStatus/topProcesses.html:193
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:111
+msgid "User"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:617
+msgid "Group"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:618
+msgid "World"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:623
+msgid "Read"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:629
+msgid "Write"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:635
+msgid "Execute"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:652
+msgid "Change Recursively"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:668
+msgid "Confirm Restore!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:677
+msgid "This will restore file to its original location."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:727
+msgid "Download"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:735
+msgid "Edit with CodeMirror"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:3
+msgid "CSF (ConfigServer Security and Firewall) - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:13
+msgid "CSF (ConfigServer Security and Firewall)!"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:14
+msgid ""
+"On this page you can configure CSF (ConfigServer Security and Firewall) "
+"settings."
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:28
+msgid "CSF is not installed "
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:55
+msgid "CSF successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:90
+msgid "General"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:100
+msgid "LFD"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:109
+msgid "Remove CSF"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:112
+msgid "Completely Remove CSF"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:126
+msgid "Testing Mode"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:133
+msgid "TCP IN Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:143
+msgid "TCP Out Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:153
+msgid "UDP In Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:163
+msgid "UDP Out Ports"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:181
+msgid "Allow IP"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:191
+msgid "Block IP Address"
+msgstr ""
+
+#: firewall/templates/firewall/csf.html:203
+msgid "Coming Soon."
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:3
+msgid "Firewall - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:13
+msgid "Add/Delete Firewall Rules"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:14
+msgid ""
+"On this page you can add/delete firewall rules. (By default all ports are "
+"blocked, except mentioned below)"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:19
+msgid "Add/Delete Rules"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:56
+msgid "Action failed. Error message:"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:61
+#: serverStatus/templates/serverStatus/litespeedStatus.html:82
+#: serverStatus/templates/serverStatus/litespeedStatus.html:319
+msgid "Action successful."
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:121
+msgid "Protocol"
+msgstr ""
+
+#: firewall/templates/firewall/firewall.html:157
+msgid "Rule successfully added."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:3
+msgid "Imunify - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:13
+#: firewall/templates/firewall/imunify.html:24
+msgid "Imunify"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:17
+#: firewall/templates/firewall/imunifyAV.html:17
+#: firewall/templates/firewall/notAvailable.html:17
+msgid "Imunify Docs"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:18
+msgid "Access Imunify"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:28
+msgid ""
+"Imunify is now integrated via their new API. You can manage Imunify by "
+"clicking below. You can use your server root credentials to access Imunify. "
+"Login details for Imunify360 is your server root and its password."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:41
+msgid "Imunify360 Not working?"
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:46
+msgid ""
+"If for some reason Imunify360 is not working, you can re-install it using "
+"the form below."
+msgstr ""
+
+#: firewall/templates/firewall/imunify.html:92
+#: firewall/templates/firewall/notAvailable.html:66
+msgid "Imunify Key"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:3
+msgid "ImunifyAV - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:18
+msgid "Access ImunifyAV"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:28
+msgid ""
+"ImunifyAV is now integrated via their new API. You can manage Imunify by "
+"clicking below. You can use your server root credentials to access Imunify."
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:42
+msgid "ImunifyAV Not Working?"
+msgstr ""
+
+#: firewall/templates/firewall/imunifyAV.html:47
+msgid ""
+"If for some reason ImunifyAV is not working, you can re-install it using the "
+"form below."
+msgstr ""
+
+#: firewall/templates/firewall/index.html:3
+msgid "Security - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/index.html:12
+msgid "Security Functions"
+msgstr ""
+
+#: firewall/templates/firewall/index.html:13
+msgid "Manage the security of the server on this page."
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:3
+msgid "LiteSpeed Ent Conf - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:13
+msgid "LiteSpeed Enterprise Global Conf!"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:14
+msgid ""
+"Any rewrite rules or server-level configurations added here will be "
+"applicable to all virtual hosts/websites. This information is valid for "
+"LiteSpeed Enterprise edition exclusively."
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:20
+msgid "Litespeed Enterprise Conf (/usr/local/lsws/conf/pre_main_global.conf)"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:42
+msgid "Save LiteSpeed Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:49
+msgid "Litespeed Conf Saved"
+msgstr ""
+
+#: firewall/templates/firewall/litespeed_ent_conf.html:58
+#: firewall/templates/firewall/modSecurityRules.html:58
+msgid "Could not save rules, Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:3
+msgid "ModSecurity - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:14
+#: firewall/templates/firewall/modSecurity.html:208
+msgid "ModSecurity Configurations!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:18
+#: firewall/templates/firewall/modSecurity.html:212
+#: firewall/templates/firewall/modSecurityRules.html:13
+#: firewall/templates/firewall/modSecurityRulesPacks.html:13
+msgid "ModSec Docs"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:20
+#: firewall/templates/firewall/modSecurity.html:214
+msgid "On this page you can configure ModSecurity settings."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:26
+#: firewall/templates/firewall/modSecurity.html:220
+msgid "ModSecurity"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:32
+#: firewall/templates/firewall/modSecurity.html:229
+#: firewall/templates/firewall/modSecurityRules.html:70
+#: firewall/templates/firewall/modSecurityRulesPacks.html:28
+#: firewall/templates/firewall/spamassassin.html:29
+msgid "ModSecurity is not installed "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:61
+#: firewall/templates/firewall/modSecurity.html:257
+#: firewall/templates/firewall/spamassassin.html:55
+msgid "ModSecurity successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:73
+#: firewall/templates/firewall/modSecurity.html:269
+#: firewall/templates/firewall/spamassassin.html:66
+msgid "Winter is coming, but so is ModSecurity."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:174
+#: firewall/templates/firewall/modSecurity.html:362
+#: firewall/templates/firewall/spamassassin.html:169
+msgid "Failed to save ModSecurity configurations. Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurity.html:179
+#: firewall/templates/firewall/modSecurity.html:367
+#: firewall/templates/firewall/spamassassin.html:173
+msgid "ModSecurity configurations successfully saved."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:3
+msgid "ModSecurity Rules - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:13
+msgid "ModSecurity Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:14
+msgid "On this page you can add/delete ModSecurity rules."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:42
+msgid "Save Rules!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRules.html:49
+msgid "ModSecurity Rules Saved"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:3
+msgid "ModSecurity Rules Packs - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:13
+#: firewall/templates/firewall/modSecurityRulesPacks.html:20
+msgid "ModSecurity Rules Packages!"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:14
+msgid "Install/Un-install ModSecurity rules packages."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:60
+msgid "Configure"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:84
+#: firewall/templates/firewall/modSecurityRulesPacks.html:96
+msgid "Operation successful."
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:92
+msgid "Operation failed, Error message: "
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:110
+msgid "Supplier"
+msgstr ""
+
+#: firewall/templates/firewall/modSecurityRulesPacks.html:111
+msgid "Filename"
+msgstr ""
+
+#: firewall/templates/firewall/notAvailable.html:18
+msgid "Either Imunify is not installed or you are not on CloudLinux OS."
+msgstr ""
+
+#: firewall/templates/firewall/notAvailable.html:43
+#: firewall/templates/firewall/notAvailableAV.html:29
+msgid "Imunify is not installed, click to install now."
+msgstr ""
+
+#: firewall/templates/firewall/notAvailableAV.html:17
+msgid "ImunifyAV Docs"
+msgstr ""
+
+#: firewall/templates/firewall/notAvailableAV.html:18
+msgid "ImunifyAV is not installed"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:3
+msgid "Secure SSH - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:16
+msgid "SSH Docs"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:17
+msgid "Secure or harden SSH Configurations."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:31
+#: managePHP/templates/managePHP/editPHPConfig.html:29
+msgid "Basic"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:37
+msgid "SSH Keys"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:59
+msgid "Permit Root Login"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:64
+msgid ""
+"Before disabling root login, make sure you have another account with sudo "
+"priviliges on server."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:87
+msgid "SSH Configurations Saved."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:121
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:65
+msgid "Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:153
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:97
+msgid "Add Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:171
+msgid "SSH Key Deleted"
+msgstr ""
+
+#: ftp/templates/ftp/ResetFTPconf.html:3
+msgid "Reset FTP Configurations - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/ResetFTPconf.html:12
+msgid "Reset your FTP Configurations here."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:3
+msgid "Create FTP Account - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:13
+msgid ""
+"Select the website from list, and its home directory will be set as the path "
+"to ftp account."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:26
+#: ftp/templates/ftp/deleteFTPAccount.html:25
+#: ftp/templates/ftp/listFTPAccounts.html:26
+msgid "PureFTPD is disabled."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:67
+msgid "FTP Password"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:90
+msgid "Path (Relative)"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:92
+msgid "Leave empty to select default home directory."
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:105
+msgid "Create FTP"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:3
+msgid "Delete FTP Account - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:13
+msgid "Select domain and delete its related FTP accounts."
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:52
+msgid "Select FTP Account"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:83
+msgid "Cannot delete account. Error message:"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:87
+msgid "FTP Account with username:"
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:87
+msgid " is successfully deleted."
+msgstr ""
+
+#: ftp/templates/ftp/deleteFTPAccount.html:91
+#: userManagment/templates/userManagment/deleteUser.html:70
+msgid "Could not connect to the server. Please refresh this page."
+msgstr ""
+
+#: ftp/templates/ftp/index.html:3
+msgid "FTP Functions - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/index.html:13
+msgid "Delete and create FTP accounts on this page."
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:3
+msgid "List FTP Accounts - CyberPanel"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:14
+msgid "List FTP Accounts or change their passwords."
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:66
+msgid "Password changed for"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:70
+msgid ""
+"Cannot change password for {$ ftpUsername $}. Error message:"
+msgstr ""
+
+#: ftp/templates/ftp/listFTPAccounts.html:124
+msgid "Directory"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:3
+msgid "Email Limits - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:12
+#: mailServer/templates/mailServer/EmailLimits.html:22
+msgid "Setup Email Limits"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:16
+msgid "This page help you setup email limits for your emails."
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:30
+#: mailServer/templates/mailServer/changeEmailPassword.html:27
+#: mailServer/templates/mailServer/createEmailAccount.html:29
+#: mailServer/templates/mailServer/deleteEmailAccount.html:27
+#: mailServer/templates/mailServer/emailForwarding.html:26
+#: mailServer/templates/mailServer/listEmails.html:29
+msgid "Postfix is disabled."
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:59
+#: mailServer/templates/mailServer/changeEmailPassword.html:58
+#: mailServer/templates/mailServer/deleteEmailAccount.html:58
+#: mailServer/templates/mailServer/emailForwarding.html:52
+msgid "Select Email"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:111
+msgid "Number of Emails"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:116
+msgid "Duration"
+msgstr ""
+
+#: mailServer/templates/mailServer/EmailLimits.html:116
+#: mailServer/templates/mailServer/emailForwarding.html:101
+msgid "or path to the program"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:3
+msgid "Change Email Password - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:12
+#: mailServer/templates/mailServer/changeEmailPassword.html:19
+#: userManagment/templates/userManagment/createACL.html:299
+#: userManagment/templates/userManagment/modifyACL.html:303
+msgid "Change Email Password"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:13
+msgid "Select a website from the list, to change its password."
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:106
+#: mailServer/templates/mailServer/deleteEmailAccount.html:90
+msgid "Cannot delete email account. Error message:"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:111
+msgid "Password successfully changed for :"
+msgstr ""
+
+#: mailServer/templates/mailServer/changeEmailPassword.html:118
+#: mailServer/templates/mailServer/deleteEmailAccount.html:102
+msgid "Currently no email accounts exist for this domain."
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:3
+msgid "Create Email Account - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:13
+msgid "Select a website from the list, to create an email account."
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:108
+msgid "Cannot create email account. Error message:"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:113
+msgid "Mailbox with username:"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:114
+msgid " has been successfully created."
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:3
+msgid "Delete Email Account - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:13
+msgid "Select a website from the list, to delete an email account."
+msgstr ""
+
+#: mailServer/templates/mailServer/deleteEmailAccount.html:95
+msgid "Mailbox with username: {$ deletedID $} has been successfully deleted."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:3
+msgid "DKIM Manager - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:13
+msgid "DKIM Docs"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:14
+msgid "This page can be used to generate and view DKIM keys for Domains"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:27
+msgid "OpenDKIM is not installed. "
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:28
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:68
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:104
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:54
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67
+msgid "Install Now"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:48
+msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:97
+msgid "Keys not available for this domain."
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:98
+msgid "Generate Now"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:110
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37
+msgid "Domain"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:111
+msgid "Private Key"
+msgstr ""
+
+#: mailServer/templates/mailServer/dkimManager.html:112
+msgid "Public Key"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:3
+msgid "Setup Email Forwarding - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:12
+#: mailServer/templates/mailServer/emailForwarding.html:19
+msgid "Setup Email Forwarding"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:12
+msgid "Forwarding Docs"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:13
+msgid "This page help you setup email forwarding for your emails."
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:61
+msgid "Forwarding Options"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:97
+#: mailServer/templates/mailServer/emailForwarding.html:118
+msgid "Source"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:106
+msgid "Forward Email"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:3
+msgid "Mail Functions - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:12
+msgid "Mail Functions"
+msgstr ""
+
+#: mailServer/templates/mailServer/index.html:13
+msgid "Manage email accounts on this page."
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:3
+msgid "List Email Accounts - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:13
+#: mailServer/templates/mailServer/listEmails.html:21
+msgid "List Email Accounts"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:13
+msgid "Debug Email Issues"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:16
+msgid "List Emails Accounts. Change their passwords or delete them."
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:63
+msgid ""
+"SSL for email is not configured properly, you may get Self-Signed error on "
+"mail clients such as Outlook and Thunderbird. More details "
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:72
+msgid "Details To Configure Mail Clients"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:77
+msgid "POP3"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:83
+#: mailServer/templates/mailServer/listEmails.html:110
+#: mailServer/templates/mailServer/listEmails.html:137
+msgid "Server Hostname"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:104
+msgid "IMAP"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:131
+msgid "SMTP"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:3
+msgid "Edit PHP Configurations - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:14
+#: managePHP/templates/managePHP/editPHPConfig.html:21
+msgid "Edit PHP Configurations"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:15
+msgid "Edit PHP Configurations on this page."
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:36
+msgid "Advanced"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:65
+msgid "display_errors"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:72
+msgid "file_uploads"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:80
+msgid "allow_url_fopen"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:88
+msgid "allow_url_include"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:96
+msgid "memory_limit"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:103
+msgid "max_execution_time"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:111
+msgid "upload_max_filesize"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:119
+msgid "post_max_size"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:126
+msgid "max_input_time"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:140
+#: managePHP/templates/managePHP/editPHPConfig.html:209
+msgid "Restart PHP"
+msgstr ""
+
+#: managePHP/templates/managePHP/editPHPConfig.html:154
+#: managePHP/templates/managePHP/editPHPConfig.html:222
+msgid "PHP Configs Saved."
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:3
+msgid "Manage PHP Installations - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:12
+msgid "Manage PHP Installations"
+msgstr ""
+
+#: managePHP/templates/managePHP/index.html:13
+msgid "Edit your PHP Configurations to suit your needs."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:3
+msgid "Install PHP Extensions - CyberPanel"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:14
+msgid "Install/uninstall php extensions on this page."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:19
+#: tuning/templates/tuning/phpTuning.html:19
+#: tuning/templates/tuning/phpTuning.html:155
+msgid "Select PHP Version"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:47
+msgid "Search Extensions.."
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:62
+msgid "Extension Name"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:63
+#: pluginHolder/templates/pluginHolder/plugins.html:30
+msgid "Description"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:65
+#: managePHP/templates/managePHP/installExtensions.html:81
+#: manageServices/templates/manageServices/applications.html:52
+msgid "Install"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:66
+#: managePHP/templates/managePHP/installExtensions.html:86
+msgid "Uninstall"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:115
+#: tuning/templates/tuning/phpTuning.html:115
+#: tuning/templates/tuning/phpTuning.html:256
+#: userManagment/templates/userManagment/modifyUser.html:143
+msgid "Cannot fetch details. Error message:"
+msgstr ""
+
+#: managePHP/templates/managePHP/installExtensions.html:119
+msgid "Cannot perform operation. Error message:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:3
+msgid "SSL Functions - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:13
+msgid "SSL Functions"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/index.html:14
+msgid "Issue Let’s Encrypt SSLs for websites and hostname."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:3
+msgid "Manage SSL - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:16
+#: manageSSL/templates/manageSSL/sslForHostName.html:16
+#: manageSSL/templates/manageSSL/sslForMailServer.html:17
+msgid "SSL Docs"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:17
+msgid ""
+"This page can be used to issue Let’s Encrypt SSL for existing websites on "
+"server."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:46
+#: manageSSL/templates/manageSSL/sslForHostName.html:51
+#: manageSSL/templates/manageSSL/sslForMailServer.html:51
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:46
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:78
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:78
+msgid "Issue SSL"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:56
+#: manageSSL/templates/manageSSL/sslForHostName.html:61
+#: manageSSL/templates/manageSSL/sslForMailServer.html:61
+msgid "Cannot issue SSL. Error message:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:60
+msgid "SSL Issued for"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:3
+msgid "Issue SSL For Hostname - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:13
+#: manageSSL/templates/manageSSL/sslForHostName.html:23
+msgid "Issue SSL For Hostname"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:17
+msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:65
+#: manageSSL/templates/manageSSL/sslForHostName.html:70
+msgid "SSL Issued. You can now access CyberPanel at:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:3
+msgid "Issue SSL For MailServer - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:13
+#: manageSSL/templates/manageSSL/sslForMailServer.html:24
+msgid "Issue SSL For MailServer"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:18
+msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:65
+msgid "SSL Issued, your mail server now uses Lets Encrypt!"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:69
+msgid "Could not connect to server, please refresh this page."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:3
+msgid "SSL v2 - CyberPanel"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:17
+msgid ""
+"On this page, you have the option to configure DNS providers that CyberPanel "
+"can utilize for issuing SSL certificates, providing enhanced flexibility and "
+"ease of renewal."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:36
+msgid "Changes saved succesfully."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/v2ManageSSL.html:109
+msgid "Cloudflare Settings"
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:3
+msgid "Manage Applications - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:14
+msgid "Install/Remove Applications from your server."
+msgstr ""
+
+#: manageServices/templates/manageServices/applications.html:32
+msgid "Application"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:3
+msgid "Manage Email Server (Postfix) - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:13
+msgid "Manage Email Server (Postfix)!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:13
+#: manageServices/templates/manageServices/managePowerDNS.html:16
+#: manageServices/templates/manageServices/managePureFtpd.html:13
+msgid "Services Docs"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:14
+msgid "Enable or disable Email services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePostfix.html:79
+#: manageServices/templates/manageServices/managePowerDNS.html:149
+#: manageServices/templates/manageServices/managePureFtpd.html:79
+msgid "Only administrator can manage services."
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:3
+msgid "Manage PowerDNS - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:13
+msgid "Manage PowerDNS!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:17
+msgid "Enable or disable DNS services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:42
+msgid "Select Function Mode"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:53
+msgid "Slave Server"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:60
+msgid "Master Server IP"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:67
+msgid "Slave Server 1"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:74
+msgid "Slave Server IP"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:81
+msgid "Slave Server 2 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:88
+msgid "Slave Server IP 2 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:95
+msgid "Slave Server 3 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:102
+msgid "Slave Server IP 3 (Optional)"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:3
+msgid "Manage FTP Server (Pure FTPD) - CyberPanel"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:13
+msgid "Manage FTP Server (Pure FTPD)!"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:14
+msgid "Enable or disable FTP services. "
+msgstr ""
+
+#: manageServices/templates/manageServices/managePureFtpd.html:22
+msgid "Manage PureFTPD"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:3
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:3
+msgid "Create Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:14
+#: packages/templates/packages/deletePackage.html:13
+#: packages/templates/packages/index.html:14
+#: packages/templates/packages/modifyPackage.html:10
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13
+msgid ""
+"Packages define resources for your websites, you need to add package before "
+"creating a website."
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:19
+msgid "Package Details"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:41
+#: packages/templates/packages/listPackages.html:98
+#: packages/templates/packages/modifyPackage.html:44
+msgid "(0 = Unlimited)"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:45
+#: packages/templates/packages/listPackages.html:104
+#: packages/templates/packages/modifyPackage.html:49
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:145
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:262
+msgid "Disk Space"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:49
+#: packages/templates/packages/createPackage.html:57
+#: packages/templates/packages/listPackages.html:109
+#: packages/templates/packages/listPackages.html:119
+#: packages/templates/packages/modifyPackage.html:53
+#: packages/templates/packages/modifyPackage.html:61
+msgid "MB (0 = Unlimited)"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:53
+#: packages/templates/packages/listPackages.html:35
+#: packages/templates/packages/listPackages.html:114
+#: packages/templates/packages/modifyPackage.html:57
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:137
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:253
+msgid "Bandwidth"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:62
+#: packages/templates/packages/listPackages.html:125
+#: packages/templates/packages/modifyPackage.html:66
+msgid "FTP Accounts"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:114
+msgid "Cannot create package. Error message:"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:119
+msgid "Successfully Created"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:3
+msgid "Delete Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:56
+msgid "Cannot delete package. Error message:"
+msgstr ""
+
+#: packages/templates/packages/deletePackage.html:60
+msgid " Successfully Deleted."
+msgstr ""
+
+#: packages/templates/packages/index.html:3
+msgid "Packages - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:3
+msgid "List Packages - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:14
+msgid "List Packages and delete or edit them."
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:34
+msgid "Diskspace"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:36
+msgid "Email Accounts"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:38
+msgid "FTPs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:39
+msgid "Child Domains"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:40
+msgid "Allow FQDN as Childs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:152
+msgid "Additional"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:3
+msgid "Modify Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:123
+msgid "Cannot fetch package details. Error message:"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:127
+msgid "Package Details Successfully Fetched"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:131
+msgid "Successfully Modified"
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:15
+msgid "List of installed plugins on your CyberPanel."
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:31
+#: serverStatus/templates/serverStatus/packageManager.html:115
+#: serverStatus/templates/serverStatus/packageManager.html:282
+#: serverStatus/templates/serverStatus/packageManager.html:446
+msgid "Version"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:3
+msgid "Access Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:17
+msgid "Access Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:24
+#: serverLogs/templates/serverLogs/emailLogs.html:23
+#: serverLogs/templates/serverLogs/errorLogs.html:21
+#: serverLogs/templates/serverLogs/ftplogs.html:21
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:22
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21
+msgid "Last 50 Lines"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:41
+#: serverLogs/templates/serverLogs/emailLogs.html:42
+#: serverLogs/templates/serverLogs/errorLogs.html:38
+#: serverLogs/templates/serverLogs/ftplogs.html:38
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:39
+msgid "Clear Logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:47
+#: serverLogs/templates/serverLogs/emailLogs.html:49
+#: serverLogs/templates/serverLogs/errorLogs.html:45
+#: serverLogs/templates/serverLogs/ftplogs.html:44
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:45
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44
+msgid "Last 50 Lines Fetched"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/accessLogs.html:52
+#: serverLogs/templates/serverLogs/emailLogs.html:54
+#: serverLogs/templates/serverLogs/errorLogs.html:50
+#: serverLogs/templates/serverLogs/ftplogs.html:49
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:49
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49
+msgid "Could not fetch logs. Use the command line to view the log file."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/emailLogs.html:3
+msgid "Email Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/emailLogs.html:15
+msgid "Email Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/errorLogs.html:3
+msgid "Error Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/errorLogs.html:14
+msgid "Error Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/ftplogs.html:3
+msgid "FTP Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/ftplogs.html:14
+msgid "FTP Logs for main web server."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:3
+msgid "Server Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:13
+msgid "Server Logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/index.html:14
+msgid ""
+"These are the logs from main server, to see logs for your website navigate "
+"to: Websites -> List Websites -> Select Website -> View Logs."
+msgstr ""
+
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:3
+msgid "ModSecurity Audit Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:15
+msgid "ModSecurity Audit logs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:3
+msgid "Server Mail - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:13
+msgid "Manage Server Mail"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:17
+msgid "Mail Docs"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:18
+msgid ""
+"On this page you can configure how CyberPanel send mails. (Notifications or "
+"Errors from CyberPanel)"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/serverMail.html:34
+msgid "Mailer"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:3
+msgid "Switch off security - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:74
+msgid "Switch off security rules"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:76
+msgid ""
+"Here you can switch off security rules. It is handy if you find out that a "
+"security rule is too restrictive for some websites. To deactivate security "
+"rules, specify their IDs (for example, 340003 or 340005-340007), tags (for "
+"example, CVE-2011-4898), or regular expressions used in rule messages (for "
+"example, XSS)."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:83
+msgid "Security Rules"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:92
+msgid "Security Rule IDs"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/Switchoffsecurity.html:143
+msgid "Regular expressions in rule messages "
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:3
+msgid "Change CyberPanel Access Port - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:13
+msgid "CyberPanel Port"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/changeCyberPanelPort.html:14
+msgid ""
+"On this page you can change CyberPanel port. Once port is change you will "
+"not be able to access this page, kindly open CyberPanel via new port."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3
+msgid "CyberPanel Main Log File - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14
+msgid ""
+"This log file corresponds to errors generated by CyberPanel for your domain "
+"errors log you can look into /home/domain/logs."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:3
+msgid "Server Status - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:14
+msgid "View LiteSpeed status and log files."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/index.html:53
+msgid "CyberPanel Main Log"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:3
+msgid "LiteSpeed Status - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:14
+#: serverStatus/templates/serverStatus/litespeedStatus.html:235
+msgid "LiteSpeed Status:"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:16
+#: serverStatus/templates/serverStatus/litespeedStatus.html:236
+msgid ""
+"On this page you can get information regarding your LiteSpeed processes."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:30
+#: serverStatus/templates/serverStatus/litespeedStatus.html:268
+msgid "LiteSpeed Processes"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:37
+#: serverStatus/templates/serverStatus/litespeedStatus.html:275
+msgid "Process ID"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:49
+#: serverStatus/templates/serverStatus/litespeedStatus.html:287
+msgid "Main Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:52
+#: serverStatus/templates/serverStatus/litespeedStatus.html:290
+msgid "lscgid Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:55
+#: serverStatus/templates/serverStatus/litespeedStatus.html:293
+msgid "Worker Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:67
+#: serverStatus/templates/serverStatus/litespeedStatus.html:305
+msgid "Reboot Litespeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:73
+#: serverStatus/templates/serverStatus/litespeedStatus.html:311
+msgid "Stop LiteSpeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:87
+#: serverStatus/templates/serverStatus/litespeedStatus.html:324
+msgid "Error Occurred. See CyberPanel main log file."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:92
+#: serverStatus/templates/serverStatus/litespeedStatus.html:329
+msgid "Could not connect to server."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:138
+msgid "Switch to LiteSpeed Enterprise Web Server"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:149
+msgid "LiteSpeed Serial No. (License Key)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:160
+msgid "Switch"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:162
+msgid "Get 15 Days Trial"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:186
+msgid ""
+"Note: If you select 15 days trial there is no need to enter the serial key, "
+"CyberPanel will auto fetch 15 days trial key for you. Make sure this server "
+"have not used trial already."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:189
+msgid ""
+"WARNING: You cannot revert back to OpenLiteSpeed if you choose not to "
+"purchase a LiteSpeed Enterprise license after the 15 day trial period. We "
+"recommend you test the Enterprise trial on a separate server."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:207
+msgid "With great wisdom comes great responsibility."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:343
+msgid "License Manager"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:350
+#: serverStatus/templates/serverStatus/litespeedStatus.html:354
+#: serverStatus/templates/serverStatus/litespeedStatus.html:355
+msgid "License Status"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:360
+#: serverStatus/templates/serverStatus/litespeedStatus.html:364
+#: serverStatus/templates/serverStatus/litespeedStatus.html:365
+msgid "Change License"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:371
+#: serverStatus/templates/serverStatus/litespeedStatus.html:375
+#: serverStatus/templates/serverStatus/litespeedStatus.html:376
+msgid "Refresh License"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:403
+msgid "New key"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:413
+msgid "Change Key"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:3
+msgid "Package Manager - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:15
+msgid ""
+"On this page you can manage your system packages. On backend system "
+"available package manager is used (apt/yum)."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:116
+#: serverStatus/templates/serverStatus/packageManager.html:283
+msgid "Upgrade"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/packageManager.html:117
+#: serverStatus/templates/serverStatus/packageManager.html:284
+#: serverStatus/templates/serverStatus/packageManager.html:447
+msgid "Lock"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/services.html:3
+msgid "Services - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/services.html:25
+msgid "Show stats for services and actions (Start, Stop, Restart)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:3
+msgid "Top Processes - CyberPanel"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:16
+msgid "List of top processes on your server. (Refresh every 3 seconds)"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:27
+msgid "Cores"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:28
+msgid "Model Name"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:29
+msgid "CPU Mhz"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:30
+msgid "Cache Size"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:51
+msgid "Processes"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:53
+msgid "Sleeping"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:54
+msgid "Stopped"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:55
+msgid "Zombie"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:80
+msgid "CPU Load"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:81
+msgid "1 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:82
+msgid "5 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:83
+msgid "15 Min"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:104
+msgid "I/O Wait"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:105
+msgid "Idle Time"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:106
+msgid "HW Interrupts"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:107
+msgid "Softirqs"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:132
+#: serverStatus/templates/serverStatus/topProcesses.html:156
+msgid "Free"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:133
+#: serverStatus/templates/serverStatus/topProcesses.html:157
+msgid "Used"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:134
+#: serverStatus/templates/serverStatus/topProcesses.html:158
+msgid "buff/cache"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:155
+msgid "SWAP"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:192
+msgid "PID"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:194
+msgid "VIRT"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:195
+msgid "RES"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:196
+#: userManagment/templates/userManagment/listUsers.html:39
+msgid "State"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:197
+#, python-format
+msgid "%%CPU"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:198
+#, python-format
+msgid "%%MEM"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/topProcesses.html:200
+#: websiteFunctions/templates/websiteFunctions/listCron.html:43
+#: websiteFunctions/templates/websiteFunctions/listCron.html:117
+msgid "Command"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:3
+msgid "Server Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:12
+msgid "Server Tuning"
+msgstr ""
+
+#: tuning/templates/tuning/index.html:13
+msgid ""
+"On this page you can set runing parameters for your webserver depending on "
+"your hardware."
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:3
+msgid "LiteSpeed Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:13
+msgid ""
+"You can use this page to tweak your server according to your website "
+"requirments."
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:18
+msgid "Tuning Details"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:28
+#: tuning/templates/tuning/phpTuning.html:52
+#: tuning/templates/tuning/phpTuning.html:193
+msgid "Max Connections"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:36
+msgid "Max SSL Connections"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:44
+msgid "Connection Timeout"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:52
+msgid "Keep Alive Timeout"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:60
+msgid "Cache Size in memory"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:67
+msgid "Enable GZIP Compression"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:74
+#: tuning/templates/tuning/phpTuning.html:97
+#: tuning/templates/tuning/phpTuning.html:238
+msgid "Currently:"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:82
+msgid "Tune Web Server"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:92
+msgid ""
+"Cannot fetch Current Value, but you can still submit new changes, error "
+"reported from server:"
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:96
+msgid "Cannot save details, Error Message: "
+msgstr ""
+
+#: tuning/templates/tuning/liteSpeedTuning.html:101
+msgid "Web Server Successfully tuned."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:3
+msgid "PHP Tuning - CyberPanel"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:14
+#: tuning/templates/tuning/phpTuning.html:150
+msgid "Set how each version of PHP behaves in your server here."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:45
+#: tuning/templates/tuning/phpTuning.html:186
+msgid "Initial Request Timeout (secs)"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:60
+#: tuning/templates/tuning/phpTuning.html:201
+msgid "Memory Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:67
+#: tuning/templates/tuning/phpTuning.html:208
+msgid "Memory Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:75
+#: tuning/templates/tuning/phpTuning.html:216
+msgid "Process Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:82
+#: tuning/templates/tuning/phpTuning.html:223
+msgid "Process Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:90
+#: tuning/templates/tuning/phpTuning.html:231
+msgid "Persistent Connection"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:106
+#: tuning/templates/tuning/phpTuning.html:247
+msgid "Tune PHP"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:119
+#: tuning/templates/tuning/phpTuning.html:260
+msgid "Cannot tune. Error message:"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:124
+#: tuning/templates/tuning/phpTuning.html:265
+msgid "Details Successfully fetched."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:128
+#: tuning/templates/tuning/phpTuning.html:269
+msgid "PHP for "
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:129
+#: tuning/templates/tuning/phpTuning.html:270
+msgid "Successfully tuned."
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:3
+msgid "API Access for User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:14
+msgid ""
+"Allow/Remove API access for account, this effects Cloud Platform Connection "
+"and Third Party Modules."
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:29
+#: userManagment/templates/userManagment/changeUserACL.html:28
+#: userManagment/templates/userManagment/deleteUser.html:29
+#: userManagment/templates/userManagment/resellerCenter.html:25
+msgid "Select User"
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:40
+msgid "Access"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:3
+msgid "Change User ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:12
+#: userManagment/templates/userManagment/changeUserACL.html:19
+#: userManagment/templates/userManagment/createACL.html:100
+#: userManagment/templates/userManagment/modifyACL.html:104
+msgid "Change User ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:13
+msgid "This page can be used to change ACL for CyberPanel users."
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:39
+#: userManagment/templates/userManagment/createUser.html:56
+#: userManagment/templates/userManagment/deleteACL.html:26
+#: userManagment/templates/userManagment/listUsers.html:144
+#: userManagment/templates/userManagment/modifyACL.html:28
+msgid "Select ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/changeUserACL.html:55
+msgid "Change ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:3
+msgid "Create new ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:13
+msgid ""
+"Create new Access Control defination, that specifies what CyberPanel users "
+"can do."
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:19
+#: userManagment/templates/userManagment/modifyACL.html:19
+msgid "ACL Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:26
+msgid "ACL Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:40
+#: userManagment/templates/userManagment/modifyACL.html:44
+msgid "Make Admin"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:59
+#: userManagment/templates/userManagment/modifyACL.html:63
+msgid "User Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:91
+#: userManagment/templates/userManagment/deleteUser.html:13
+#: userManagment/templates/userManagment/deleteUser.html:20
+#: userManagment/templates/userManagment/deleteUser.html:42
+#: userManagment/templates/userManagment/index.html:78
+#: userManagment/templates/userManagment/index.html:81
+#: userManagment/templates/userManagment/modifyACL.html:95
+msgid "Delete User"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:107
+#: userManagment/templates/userManagment/modifyACL.html:111
+msgid "Website Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:130
+#: userManagment/templates/userManagment/modifyACL.html:134
+msgid "Suspend Website"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:147
+#: userManagment/templates/userManagment/modifyACL.html:151
+msgid "Package Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:186
+#: userManagment/templates/userManagment/modifyACL.html:190
+msgid "Database Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:216
+#: userManagment/templates/userManagment/modifyACL.html:220
+msgid "DNS Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:249
+#: userManagment/templates/userManagment/modifyACL.html:253
+msgid "Add/Delete"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:257
+#: userManagment/templates/userManagment/modifyACL.html:261
+msgid "Email Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:317
+#: userManagment/templates/userManagment/modifyACL.html:321
+msgid "FTP Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:347
+#: userManagment/templates/userManagment/modifyACL.html:351
+msgid "Backup Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:362
+#: userManagment/templates/userManagment/modifyACL.html:366
+msgid "Google Drive Backups"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:410
+#: userManagment/templates/userManagment/modifyACL.html:414
+msgid "SSL Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:443
+msgid "Create ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:3
+msgid "Create New User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:13
+msgid "Create root, reseller or normal users on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:19
+msgid "User Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:25
+#: userManagment/templates/userManagment/modifyUser.html:39
+#: userManagment/templates/userManagment/userProfile.html:24
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:30
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35
+msgid "First Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:31
+msgid "First Name should contain only alphabetic characters."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:35
+#: userManagment/templates/userManagment/modifyUser.html:46
+#: userManagment/templates/userManagment/userProfile.html:29
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:37
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42
+msgid "Last Name"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:41
+msgid "Last Name should contain only alphabetic characters."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:50
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:191
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:283
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:152
+msgid "Invalid Email"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:68
+#: userManagment/templates/userManagment/listUsers.html:35
+#: userManagment/templates/userManagment/resellerCenter.html:48
+#: userManagment/templates/userManagment/userProfile.html:53
+msgid "Websites Limit"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:107
+#: userManagment/templates/userManagment/modifyUser.html:102
+msgid "Security Level"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:120
+#: userManagment/templates/userManagment/index.html:49
+#: userManagment/templates/userManagment/index.html:52
+#: userManagment/templates/userManagment/listUsers.html:14
+msgid "Create User"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:128
+#: userManagment/templates/userManagment/modifyUser.html:129
+msgid "Account with username:"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:129
+msgid "is successfully created."
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:133
+msgid "Cannot create user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:141
+msgid ""
+"Length of first and last name combined should be less than or equal to 20 "
+"characters"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteACL.html:3
+msgid "Delete ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteACL.html:13
+msgid "This page can be used to delete ACL."
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:3
+msgid "Delete User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:14
+msgid "Websites owned by this user will automatically transfer to the root."
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:61
+msgid "Cannot delete user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:65
+msgid "User "
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteUser.html:65
+msgid " Successfully Deleted"
+msgstr ""
+
+#: userManagment/templates/userManagment/index.html:3
+msgid "User Functions - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/index.html:14
+msgid "Create, edit and delete users on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:3
+msgid "List Users - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:16
+msgid "List Users that you own."
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:37
+msgid "ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:55
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44
+msgid "Suspend"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:59
+msgid "Activate"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:129
+#: userManagment/templates/userManagment/resellerCenter.html:37
+msgid "New Owner"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:3
+msgid "Modify an ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:12
+msgid "Modify an ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:13
+msgid "On this page you can modify an existing ACL."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:3
+msgid "Modify User - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:13
+msgid "Modify existing user settings on this page."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:27
+msgid "Select Account"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:130
+msgid " is successfully modified."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:134
+msgid "Cannot modify user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:147
+msgid "Details fetched."
+msgstr ""
+
+#: userManagment/templates/userManagment/resellerCenter.html:3
+msgid "Reseller Center - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/resellerCenter.html:13
+msgid "Change owner of users and change websites limits."
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:3
+msgid "Account Details - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:12
+#: userManagment/templates/userManagment/userProfile.html:18
+msgid "Account Details"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:13
+msgid "List the account details for the currently logged in user."
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:48
+msgid "Account ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/userProfile.html:55
+msgid "( 0 = Unlimited )"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:3
+msgid "Backup Sites Configurations - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:12
+msgid "Backup Sites Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:19
+msgid " Add WordPress Sites for Remote Backup"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:29
+msgid "Selecte WordPress Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:45
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:78
+msgid "Save Backup Schedule"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/AddRemoteBackupSite.html:51
+msgid "Saved Sites For Remote Backup"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:3
+msgid "Apache Manager - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:13
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:286
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:290
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:291
+#: websiteFunctions/templates/websiteFunctions/website.html:537
+#: websiteFunctions/templates/websiteFunctions/website.html:541
+#: websiteFunctions/templates/websiteFunctions/website.html:542
+msgid "Apache Manager"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:14
+msgid "Switch between Apache (as reverse proxy) and OpenLiteSpeed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ApacheManager.html:61
+msgid "Save Apache Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:3
+msgid "File Config - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:12
+msgid "Backup File Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:19
+msgid " Schedule Backups"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:25
+msgid "Schedule Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:62
+msgid "Backup Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/BackupfileConfig.html:84
+msgid "Configure Backup Schedules"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:96
+msgid ""
+"On this page you can create, list, modify and delete Packages from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:103
+msgid "Packages Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:116
+msgid "Enter Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:121
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:235
+msgid "CPU"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:124
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:238
+msgid "Enter CPU e.g. 2,3,4"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:132
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:247
+msgid "Enter Memory in MB e.g. 256, 512, 1024"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:140
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:257
+msgid "Enter Bandwidth"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:148
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:265
+msgid "Enter Disk Space"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:159
+msgid "Create Docker Package"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerPackage.html:276
+msgid "Update Package"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:3
+msgid "Create Docker App - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:95
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:35
+msgid "Create Docker App"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:96
+msgid "On this page you can create docker apps on your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:103
+msgid "Docker App Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:113
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:29
+msgid "Site Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:135
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:143
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:82
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:480
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:162
+msgid "Do not enter WWW, it will be auto created!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:141
+msgid "MySQL CPU"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:148
+msgid "MySQL Ram"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:154
+msgid "CPU Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:161
+msgid "Ram Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:169
+msgid "Select App"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:179
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:51
+msgid "Admin Username"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:186
+msgid "Admin Email"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:195
+msgid "Admin Password"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CreateDockerSite.html:207
+msgid "Create Docker Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/CyberpanelPricing.html:3
+msgid "Pricing - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:3
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:3
+msgid "Docker Sites - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/DockerSiteHome.html:311
+msgid "Recreate Container"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:33
+msgid "List Docker Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/ListDockersite.html:38
+msgid ""
+"On this page you can launch, list, modify and delete Dockersite from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:3
+msgid "Remote Backup Configurations - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:12
+msgid "Remote Backup Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:19
+msgid "Configure Remote Backups"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:28
+msgid "Select Remote Backup Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:64
+msgid "path"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:74
+msgid "Choose Provider"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:92
+msgid "Endpoint URL"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:99
+msgid "Access Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:106
+msgid "Secret Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:118
+msgid "Save Configurations"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RemoteBackupConfig.html:128
+msgid "Saved Remote Configuration"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:3
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:3
+msgid "Restore Backpus - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:90
+msgid "List Backups "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/RestoreBackups.html:93
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:17
+msgid ""
+"On this page you can Restore, list, modify and delete Backups Wordpress "
+"Sites from your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:3
+msgid "plugin - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:12
+msgid "Add New Plugin"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:23
+msgid "Plugin Bucket Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:31
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:28
+msgid "Search Plugin Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:35
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:32
+msgid "Search Plugin...."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPAddNewPlugin.html:53
+msgid "Add Plugin Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:3
+msgid "Create Plugin Buckets - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:13
+msgid "Create New Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:15
+msgid ""
+"You can configure list of plugins that will automatically get installed "
+"while deploying WordPress."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPConfigurePlugins.html:20
+msgid "Plugin Buckets"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:3
+msgid "Deploy WordPress - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:94
+msgid "Create Wordpress Site"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:95
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:96
+#: websiteFunctions/templates/websiteFunctions/index.html:14
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:23
+msgid ""
+"On this page you can launch, list, modify and delete websites from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:102
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:103
+msgid "Website Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:132
+msgid "Title"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:296
+msgid "Select WP Version"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:307
+msgid "Plugin/Theme"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:320
+msgid "Automatic Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:333
+msgid "Plugins Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPCreate.html:345
+msgid "Themes Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:3
+msgid "Edit Plugin Bucket - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPEidtPlugin.html:13
+msgid "Edit Plugin Bucket"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:15
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:563
+msgid "Restore Backups "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:33
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:59
+msgid "Choose WPsite Restore Destination "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:47
+msgid "Choose Restoring Method "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:86
+msgid "Leave empty for default"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:106
+msgid "Restore Backup Now"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPRestoreHome.html:130
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:616
+msgid "Backup succesfully created."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:3
+msgid "WordPress Manager - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:110
+msgid "WordPress Manager"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:399
+msgid "Test Domain"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:443
+msgid "Enter Subdomain Here"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:562
+msgid "Create Backup "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:572
+msgid "Select Backup type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:643
+msgid "Database for"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:667
+msgid "Table Prefix"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsiteHome.html:791
+msgid "Updates"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:3
+msgid "WordPress Sites - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:90
+msgid "List WordPress Websites"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:92
+msgid "Create WordPress Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:96
+msgid "Scan WordPress "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/WPsitesList.html:99
+msgid ""
+"On this page you can launch, list, modify and delete Wordpress Sites from "
+"your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3
+msgid "Application Installer - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15
+msgid "One-click application install."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41
+msgid "Install Joomla with(?) LSCache"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:3
+msgid "Assign Package - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:96
+msgid "On this page you can Assign Packages to user."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/assignPackage.html:103
+msgid "Assigning Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:3
+msgid "Create Sub/Addon Domain - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:100
+msgid "Learn about Sub/Addon Domains"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:101
+msgid "Create Sub/Addon domains. "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:113
+msgid "You need to create website before creating Sub/Addon domains."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createDomain.html:124
+msgid "Domain Type"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3
+msgid "Create New Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3
+msgid "Delete Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13
+msgid ""
+"This page can be used to delete website, once deleted it can not be "
+"recovered."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61
+msgid "Cannot delete website, Error message: "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65
+msgid "Successfully Deleted."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3
+msgid "Domain Aliases - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19
+msgid "Domain Aliases"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13
+msgid ""
+"With Domain Aliases you can visit example.com using example.net and view the "
+"same content."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:34
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:76
+msgid "Create Alias"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:3
+msgid "Website Functions - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:33
+#: websiteFunctions/templates/websiteFunctions/index.html:57
+msgid "List Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/index.html:79
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20
+msgid "Suspend/Unsuspend Website"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3
+msgid "Install Joomla - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12
+msgid "Install Joomla"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13
+msgid "One-click Joomla Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:20
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:20
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20
+msgid "Installation Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:36
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35
+msgid "Login User"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:43
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42
+msgid "Login Password"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:50
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63
+msgid "Database Prefix"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:92
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:126
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:78
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:88
+msgid "Installation failed. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:96
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:130
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:82
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:92
+msgid "Installation successful. Visit:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:3
+msgid "Install Magento - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:12
+msgid "Install Magento"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:13
+msgid "One-click Magento Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:93
+msgid ""
+"does not work on OpenLiteSpeed. It is highly recommended to use this "
+"installer with LiteSpeed Enterprise only."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:3
+msgid "Install Mautic - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:12
+#: websiteFunctions/templates/websiteFunctions/website.html:1065
+#: websiteFunctions/templates/websiteFunctions/website.html:1069
+msgid "Install Mautic"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:13
+msgid "One-click Mautic Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:24
+msgid ""
+"Before installing Mautic, we will change the PHP version of the website to "
+"PHP 8.0, which is supported by Mautic."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMautic.html:30
+msgid "Administrator Username"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3
+msgid "Install PrestaShop - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12
+msgid "Install PrestaShop"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13
+msgid "One-click PrestaShop Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28
+msgid "Shop Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3
+msgid "Install WordPress - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12
+msgid "Install WordPress"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13
+msgid "Install WordPress with LSCache."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28
+msgid "Blog Title"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:58
+msgid ""
+"Leave empty to install in website home directory. (Without preceding slash)"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:32
+#: websiteFunctions/templates/websiteFunctions/website.html:30
+msgid "Manage Git"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:36
+msgid "Copy/Sync to Master"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:39
+#: websiteFunctions/templates/websiteFunctions/website.html:38
+msgid "Stress Test"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:699
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:704
+#: websiteFunctions/templates/websiteFunctions/website.html:1014
+msgid "WP + LSCache"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:3
+msgid "Sub/Addon Domains - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:19
+msgid "List Child Domains"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listChildDomains.html:21
+msgid ""
+"On this page you can launch, list, modify and delete Sub/Addon domains from "
+"your server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:3
+msgid "Cron Management - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:12
+#: websiteFunctions/templates/websiteFunctions/listCron.html:19
+msgid "Cron Management"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:12
+msgid "Cron Docs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:13
+msgid "Create, edit or delete your cron jobs from this page."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:27
+msgid "Add Cron"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:28
+msgid "Fetch Current Cron Jobs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:38
+#: websiteFunctions/templates/websiteFunctions/listCron.html:86
+msgid "Minute"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:39
+#: websiteFunctions/templates/websiteFunctions/listCron.html:92
+msgid "Hour"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:40
+msgid "Day of Month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:41
+#: websiteFunctions/templates/websiteFunctions/listCron.html:104
+msgid "Month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:42
+msgid "Day of Week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:70
+msgid "Pre defined"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:73
+msgid "Every minute"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:74
+msgid "Every 5 minutes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:75
+msgid "Every 30 minutes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:76
+msgid "Every hour"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:77
+msgid "Every day"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:78
+msgid "Every week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:79
+msgid "Every month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:80
+msgid "Every year"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:98
+msgid "Day of month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:110
+msgid "Day of week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:126
+msgid "Save edits"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:133
+msgid "Add cron"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:143
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102
+msgid "Cannot fetch website details. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:147
+msgid "Unable to add/save Cron. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:150
+msgid "Cron job saved"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3
+msgid "Websites Hosted - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:3
+msgid "Manage Git - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:12
+msgid "Manage GIT"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:16
+msgid "Git Docs"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:17
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:24
+msgid "Manage and track folders via Git for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:30
+msgid "Select Folder to Track"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:41
+msgid ""
+"This folder does not have Git tracking, click below to initiate a repository "
+"and start tracking files."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:61
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:285
+msgid "Attach Existing Repo"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:67
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:291
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:707
+msgid "Git Host"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:112
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:337
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:768
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:36
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:161
+msgid "Deployment Key"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:178
+msgid "Repo Settings"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:184
+msgid "Auto Commit"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:197
+msgid "Auto Push"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:226
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:228
+msgid "Webhook URL"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:234
+msgid "Commands"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:394
+msgid "Create New Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:400
+msgid "Branch Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:448
+msgid "Commit Changes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:454
+msgid "Commit Message"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:512
+msgid "Edit .gitignore"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:520
+msgid ""
+"Contents of .gitignore, use the box below to Add/Edit content of .gitingore "
+"file."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:639
+msgid "Remove Git Tracking?"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:646
+msgid ""
+"Removing git tracking is not reversible, it will delete all of your commit "
+"history, however your files stays there."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:690
+msgid "View/Setup Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:701
+msgid "Setup Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:740
+msgid "Current Remote"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:810
+msgid "View Commits"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:842
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:852
+msgid "View Changes"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/manageGIT.html:860
+msgid "Select File"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3
+msgid "Modify Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51
+msgid "Current Package:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62
+msgid "Current Owner:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106
+msgid "Cannot modify website. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110
+msgid "Website Details Successfully fetched"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:3
+msgid "Git Management - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:12
+msgid "Git Management"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:13
+msgid "Attach git to your websites."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:21
+msgid "Attach Git"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:29
+msgid "Providers"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:65
+msgid ""
+"Before attaching repo to your website, make sure to place your Development "
+"key in your GIT repository."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:77
+msgid "Repository Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:86
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:262
+msgid "Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:97
+msgid "Attach Now"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:121
+msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:213
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:273
+msgid "Change Branch"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:222
+msgid "Detach Repo"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:229
+msgid ""
+"Add this URL to Webhooks section of your Git respository, if you've used "
+"hostname SSL then replace IP with your hostname. Otherwise use IP and "
+"disable SSL check while configuring webhook. This will initiate a pull from "
+"your resposity as soon as you commit some changes."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:241
+msgid "Repo successfully detached, refreshing in 3 seconds.."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:287
+msgid "Branch successfully changed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3
+msgid "Set up Staging Enviroment - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12
+msgid "Set up Staging Enviroment"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20
+msgid "Set up staging enviroment for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13
+msgid ""
+". Any domain that you will choose here will be created as child-domain for "
+"this master site."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31
+msgid "Domain that you will enter below will be created as child-domain to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33
+msgid "."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47
+msgid "Start Cloning"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3
+msgid "SSH and CageFS - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12
+msgid "SSH Access"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13
+msgid "Set up SSH access and enable/disable CageFS for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13
+msgid " CageFS require CloudLinux OS."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20
+msgid "Set up SSH access for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:31
+msgid "SSH user for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33
+msgid " is "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3
+msgid "Suspend/Unsuspend Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14
+msgid "This page can be used to suspend/unsuspend website."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45
+msgid "Un-Suspend"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65
+msgid "Cannot suspend website, Error message: "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69
+msgid "Cannot unsuspend website. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73
+msgid "Website "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73
+msgid "Successfully "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3
+msgid "Sync to Master - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12
+msgid "Sync your site to Master"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13
+msgid "Right now you can only sync your child domains to master domains."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13
+msgid " will be synced to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20
+msgid "Sync "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20
+msgid "to "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30
+msgid "What to Sync"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63
+msgid "Start Syncing"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:34
+msgid "Clone/Staging"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:36
+msgid "Set up SSH/SFTP Access"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:687
+msgid "It is not required to modify rules if you are using OpenLiteSpeed."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/website.html:1070
+msgid "Mautic"
+msgstr ""
diff --git a/plogical/IncScheduler.py b/plogical/IncScheduler.py
index 21d25655f..af94f3844 100644
--- a/plogical/IncScheduler.py
+++ b/plogical/IncScheduler.py
@@ -657,11 +657,14 @@ Automatic backup failed for %s on %s.
continue
try:
-
- command = f'find cpbackups -type f -mtime +{destinationConfig["retention"]} -exec rm -f {{}} \\;'
- ssh.exec_command(command)
+ command = f'find cpbackups -type f -mtime +{jobConfig["retention"]} -exec rm -f {{}} \\;'
logging.writeToFile(command)
- except:
+ ssh.exec_command(command)
+ command = 'find cpbackups -type d -empty -delete'
+ ssh.exec_command(command)
+
+ except BaseException as msg:
+ logging.writeToFile(f'Failed to delete old backups, Error {str(msg)}')
pass
# Execute the command to create the remote directory
@@ -805,6 +808,79 @@ Automatic backup failed for %s on %s.
backupjob.config = json.dumps(jobConfig)
backupjob.save()
+
+ ### check if todays backups are fine
+
+ from IncBackups.models import OneClickBackups
+
+ try:
+
+ ocb = OneClickBackups.objects.get(sftpUser=destinationConfig['username'])
+ from plogical.acl import ACLManager
+
+ for site in websites:
+
+ from datetime import datetime, timedelta
+
+ Yesterday = (datetime.now() - timedelta(days=1)).strftime("%m.%d.%Y")
+ print(f'date of yesterday {Yesterday}')
+
+ # Command to list directories under the specified path
+ command = f"ls -d {finalPath}/*"
+
+ # Execute the command
+ stdin, stdout, stderr = ssh.exec_command(command)
+
+ # Read the results
+ directories = stdout.read().decode().splitlines()
+ print(f'directories of {str(directories)}')
+
+ try:
+
+ startCheck = 0
+ for directory in directories:
+ if directory.find(site.domain):
+ print(f'site in backup, no need to notify {site.domain}')
+ startCheck = 1
+ break
+
+ if startCheck:
+ 'send notification that backup failed'
+ import requests
+
+ # Define the URL of the endpoint
+ url = 'http://platform.cyberpersons.com/Billing/BackupFailedNotify' # Replace with your actual endpoint URL
+
+ # Define the payload to send in the POST request
+ payload = {
+ 'sub': ocb.subscription,
+ 'subject': f'Failed to backup {site.domain} on {ACLManager.fetchIP()}.',
+ 'message':f'Hi, \n\n Failed to create backup for {site.domain} on on {ACLManager.fetchIP()}. \n\n Please contact our support team at: http://platform.cyberpersons.com\n\nThank you.',
+ # Replace with the actual SSH public key
+ 'sftpUser': ocb.sftpUser,
+ 'serverIP': ACLManager.fetchIP(), # Replace with the actual server IP
+ }
+
+ # Convert the payload to JSON format
+ headers = {'Content-Type': 'application/json'}
+ dataRet = json.dumps(payload)
+
+ # Make the POST request
+ response = requests.post(url, headers=headers, data=dataRet)
+
+ # # Handle the response
+ # # Handle the response
+ # if response.status_code == 200:
+ # response_data = response.json()
+ # if response_data.get('status') == 1:
+ except:
+ pass
+
+ except:
+ pass
+
+
+
@staticmethod
def fetchAWSKeys():
path = '/home/cyberpanel/.aws'
diff --git a/plogical/applicationInstaller.py b/plogical/applicationInstaller.py
index ce02cbb7d..cea5e8620 100755
--- a/plogical/applicationInstaller.py
+++ b/plogical/applicationInstaller.py
@@ -829,6 +829,29 @@ class ApplicationInstaller(multi.Thread):
if result.find('Success:') == -1:
raise BaseException(result)
+
+ ### install CyberSMTP
+
+ command = f"{FinalPHPPath} -d error_reporting=0 /usr/bin/wp plugin install https://github.com/usmannasir/CyberSMTPs/archive/refs/heads/main.zip --allow-root --path=" + finalPath
+ result = ProcessUtilities.outputExecutioner(command, externalApp)
+
+ if os.path.exists(ProcessUtilities.debugPath):
+ logging.writeToFile(str(result))
+
+ if result.find('Success:') == -1:
+ raise BaseException(result)
+
+ command = f"{FinalPHPPath} -d error_reporting=0 /usr/bin/wp plugin activate CyberSMTPs --allow-root --path=" + finalPath
+ result = ProcessUtilities.outputExecutioner(command, externalApp)
+
+ if os.path.exists(ProcessUtilities.debugPath):
+ logging.writeToFile(str(result))
+
+ if result.find('Success:') == -1:
+ raise BaseException(result)
+
+
+
try:
if self.extraArgs['updates']:
if self.extraArgs['updates'] == 'Disabled':
@@ -6364,6 +6387,15 @@ class ApplicationInstaller(multi.Thread):
logging.statusWriter(self.tempStatusPath, str(msg))
return 0, str(msg)
+ def UpdateDownloadStatus(self, transferred, total):
+ percentage = (transferred / total) * 100
+
+ statusFile = open(self.tempStatusPath, 'w')
+ statusFile.writelines(f'{int(percentage)}% of file is downloaded from remote server..,50')
+ statusFile.close()
+
+
+
def StartOCRestore(self):
try:
@@ -6400,12 +6432,13 @@ class ApplicationInstaller(multi.Thread):
ssh.connect(ip, username=ocb.sftpUser, pkey=key)
sftp = ssh.open_sftp()
- sftp.get(f'cpbackups/{folder}/{backupfile}', f'/home/cyberpanel/{backupfile}')
+ sftp.get(f'cpbackups/{folder}/{backupfile}', f'/home/cyberpanel/{backupfile}', callback=self.UpdateDownloadStatus)
if not os.path.exists('/home/backup'):
command = 'mkdir /home/backup'
ProcessUtilities.executioner(command)
+
command = f'mv /home/cyberpanel/{backupfile} /home/backup/{backupfile}'
ProcessUtilities.executioner(command)
@@ -6413,6 +6446,12 @@ class ApplicationInstaller(multi.Thread):
wm = BackupManager()
resp = wm.submitRestore({'backupFile': backupfile}, userID)
+ statusFile = open(tempStatusPath, 'w')
+ statusFile.writelines("Download finished..,60")
+ statusFile.close()
+
+ time.sleep(6)
+
if json.loads(resp.content)['restoreStatus'] == 0:
statusFile = open(tempStatusPath, 'w')
statusFile.writelines(f"Failed to restore backup. Error {json.loads(resp.content)['error_message']}. [404]")
@@ -6423,13 +6462,21 @@ class ApplicationInstaller(multi.Thread):
return 0
+ if os.path.exists(ProcessUtilities.debugPath):
+ logging.writeToFile(f'Name of of the backup file downloaded: {backupfile}')
+
while True:
resp = wm.restoreStatus({'backupFile': backupfile})
+
resp = json.loads(resp.content)
+ if os.path.exists(ProcessUtilities.debugPath):
+ logging.writeToFile(f'Responce from status function: {str(resp)}')
+
+
if resp['abort'] == 1 and resp['running'] == 'Completed':
statusFile = open(tempStatusPath, 'w')
- statusFile.writelines("Successfully Installed. [200]")
+ statusFile.writelines("Successfully Restored. [200]")
statusFile.close()
command = f'rm -f /home/backup/{backupfile}'
ProcessUtilities.executioner(command)
@@ -6437,7 +6484,7 @@ class ApplicationInstaller(multi.Thread):
elif resp['abort'] == 1 and resp['running'] == 'Error':
statusFile = open(tempStatusPath, 'w')
statusFile.writelines(
- f"Failed to restore backup. Error {resp['status']}. [404]")
+ f"Failed to restore backup. Error {str(resp['status'])}. [404]")
statusFile.close()
command = f'rm -f /home/backup/{backupfile}'
ProcessUtilities.executioner(command)
@@ -6446,8 +6493,6 @@ class ApplicationInstaller(multi.Thread):
statusFile = open(tempStatusPath, 'w')
statusFile.writelines(f"{resp['status']},60")
statusFile.close()
- command = f'rm -f /home/backup/{backupfile}'
- ProcessUtilities.executioner(command)
time.sleep(3)
except BaseException as msg:
diff --git a/plogical/upgrade.py b/plogical/upgrade.py
index db6ea97a7..6c8581925 100755
--- a/plogical/upgrade.py
+++ b/plogical/upgrade.py
@@ -1162,6 +1162,18 @@ CREATE TABLE `websiteFunctions_backupsv2` (`id` integer AUTO_INCREMENT NOT NULL
except:
pass
+ query = "CREATE TABLE `IncBackups_oneclickbackups` (`id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY, `planName` varchar(100) NOT NULL, `months` varchar(100) NOT NULL, `price` varchar(100) NOT NULL, `customer` varchar(300) NOT NULL, `subscription` varchar(300) NOT NULL UNIQUE, `sftpUser` varchar(100) NOT NULL, `config` longtext NOT NULL, `date` datetime(6) NOT NULL, `state` integer NOT NULL, `owner_id` integer NOT NULL);"
+ try:
+ cursor.execute(query)
+ except:
+ pass
+
+ query = 'ALTER TABLE `IncBackups_oneclickbackups` ADD CONSTRAINT `IncBackups_oneclickb_owner_id_7b4250a4_fk_loginSyst` FOREIGN KEY (`owner_id`) REFERENCES `loginSystem_administrator` (`id`);'
+ try:
+ cursor.execute(query)
+ except:
+ pass
+
if Upgrade.FindOperatingSytem() == Ubuntu22:
### If ftp not installed then upgrade will fail so this command should not do exit
diff --git a/requirments.txt b/requirments.txt
index 38b39b7ad..6e490f337 100755
--- a/requirments.txt
+++ b/requirments.txt
@@ -57,7 +57,6 @@ py3dns==3.2.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.20
-pygpgme==0.3
PyNaCl==1.4.0
pyOpenSSL==19.1.0
pyotp==2.4.1