-
+
-
+
-
+
@@ -105,6 +106,7 @@
{% trans "Database Name" %} |
{% trans "Database User" %} |
{% trans "Password" %} |
+
{% trans "Remote Access" %} |
@@ -116,6 +118,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Username |
+ Host |
+
+
+
+
+ | {$ dbUsername $} |
+ {$ dbHost $} |
+
+
+
+
+
+
+
+
+ |
diff --git a/databases/urls.py b/databases/urls.py
index 64633b886..3867f1ef2 100755
--- a/databases/urls.py
+++ b/databases/urls.py
@@ -13,7 +13,9 @@ urlpatterns = [
url(r'^listDBs', views.listDBs, name='listDBs'),
- url(r'^changePassword', views.changePassword, name='changePassword'),
+ url(r'^changePassword$', views.changePassword, name='changePassword'),
+ url(r'^remoteAccess$', views.remoteAccess, name='remoteAccess'),
+ url(r'^allowRemoteIP$', views.allowRemoteIP, name='allowRemoteIP'),
url(r'^phpMyAdmin$', views.phpMyAdmin, name='phpMyAdmin'),
url(r'^setupPHPMYAdminSession$', views.setupPHPMYAdminSession, name='setupPHPMYAdminSession'),
]
\ No newline at end of file
diff --git a/databases/views.py b/databases/views.py
index 3b8eeb493..138630c79 100755
--- a/databases/views.py
+++ b/databases/views.py
@@ -120,6 +120,28 @@ def changePassword(request):
except KeyError:
return redirect(loadLoginPage)
+def remoteAccess(request):
+ try:
+ userID = request.session['userID']
+
+ dm = DatabaseManager()
+ coreResult = dm.remoteAccess(userID, json.loads(request.body))
+
+ return coreResult
+ except KeyError:
+ return redirect(loadLoginPage)
+
+def allowRemoteIP(request):
+ try:
+ userID = request.session['userID']
+
+ dm = DatabaseManager()
+ coreResult = dm.allowRemoteIP(userID, json.loads(request.body))
+
+ return coreResult
+ except KeyError:
+ return redirect(loadLoginPage)
+
def phpMyAdmin(request):
try:
userID = request.session['userID']
diff --git a/emailMarketing/emailMarketing.py b/emailMarketing/emailMarketing.py
index 57a036d9b..0cac55f82 100755
--- a/emailMarketing/emailMarketing.py
+++ b/emailMarketing/emailMarketing.py
@@ -5,7 +5,7 @@ import time
import csv
import re
import plogical.CyberCPLogFileWriter as logging
-from .models import EmailMarketing, EmailLists, EmailsInList, EmailTemplate, EmailJobs, SMTPHosts, ValidationLog
+from .models import EmailLists, EmailsInList, EmailTemplate, EmailJobs, SMTPHosts, ValidationLog
from plogical.backupSchedule import backupSchedule
from websiteFunctions.models import Websites
import threading as multi
@@ -164,7 +164,7 @@ class emailMarketing(multi.Thread):
email = items.email
self.currentEmail = email
domainName = email.split('@')[1]
- records = DNS.dnslookup(domainName, 'MX')
+ records = DNS.dnslookup(domainName, 'MX', 15)
counterGlobal = counterGlobal + 1
@@ -191,9 +191,9 @@ class emailMarketing(multi.Thread):
message='IP being used for validation until next sleep: %s.' % (str(self.currentIP))).save()
if self.currentIP == None:
- server = smtplib.SMTP()
+ server = smtplib.SMTP(timeout=10)
else:
- server = smtplib.SMTP(self.currentIP)
+ server = smtplib.SMTP(self.currentIP, timeout=10)
else:
if self.currentIP == '':
@@ -203,9 +203,9 @@ class emailMarketing(multi.Thread):
str(self.currentIP))).save()
if self.currentIP == None:
- server = smtplib.SMTP()
+ server = smtplib.SMTP(timeout=10)
else:
- server = smtplib.SMTP(self.currentIP)
+ server = smtplib.SMTP(self.currentIP, timeout=10)
else:
logging.CyberCPLogFileWriter.writeToFile(
'Delay not configured..')
@@ -213,15 +213,15 @@ class emailMarketing(multi.Thread):
ValidationLog(owner=verificationList, status=backupSchedule.INFO,
message='Delay not configured..').save()
- server = smtplib.SMTP()
+ server = smtplib.SMTP(timeout=10)
except BaseException as msg:
ValidationLog(owner=verificationList, status=backupSchedule.ERROR,
message='Delay not configured. Error message: %s' % (str(msg))).save()
- server = smtplib.SMTP()
+ server = smtplib.SMTP(timeout=10)
else:
- server = smtplib.SMTP()
+ server = smtplib.SMTP(timeout=10)
###
@@ -271,27 +271,35 @@ class emailMarketing(multi.Thread):
logging.CyberCPLogFileWriter.writeToFile(str(msg))
return 0
+ def setupSMTPConnection(self):
+ try:
+ if self.extraArgs['host'] == 'localhost':
+ self.smtpServer = smtplib.SMTP('127.0.0.1')
+ return 1
+ else:
+ self.verifyHost = SMTPHosts.objects.get(host=self.extraArgs['host'])
+ self.smtpServer = smtplib.SMTP(str(self.verifyHost.host), int(self.verifyHost.port))
+ self.smtpServer.login(str(self.verifyHost.userName), str(self.verifyHost.password))
+ return 1
+ except smtplib.SMTPHeloError:
+ logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
+ 'The server didnt reply properly to the HELO greeting.')
+ return 0
+ except smtplib.SMTPAuthenticationError:
+ logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
+ 'Username and password combination not accepted.')
+ return 0
+ except smtplib.SMTPException:
+ logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
+ 'No suitable authentication method was found.')
+ return 0
+
def startEmailJob(self):
try:
- try:
- if self.extraArgs['host'] == 'localhost':
- smtpServer = smtplib.SMTP('127.0.0.1')
- else:
- verifyHost = SMTPHosts.objects.get(host=self.extraArgs['host'])
- smtpServer = smtplib.SMTP(str(verifyHost.host), int(verifyHost.port))
- smtpServer.login(str(verifyHost.userName), str(verifyHost.password))
- except smtplib.SMTPHeloError:
- logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
- 'The server didnt reply properly to the HELO greeting.')
- return
- except smtplib.SMTPAuthenticationError:
- logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
- 'Username and password combination not accepted.')
- return
- except smtplib.SMTPException:
- logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
- 'No suitable authentication method was found.')
- return
+
+ if self.setupSMTPConnection() == 0:
+ logging.CyberCPLogFileWriter.writeToFile('SMTP Connection failed. [301]')
+ return 0
emailList = EmailLists.objects.get(listName=self.extraArgs['listName'])
allEmails = emailList.emailsinlist_set.all()
@@ -364,7 +372,16 @@ class emailMarketing(multi.Thread):
html = MIMEText(finalMessage, 'plain')
message.attach(html)
- smtpServer.sendmail(message['From'], items.email, message.as_string())
+ try:
+ status = self.smtpServer.noop()[0]
+ self.smtpServer.sendmail(message['From'], items.email, message.as_string())
+ except: # smtplib.SMTPServerDisconnected
+ if self.setupSMTPConnection() == 0:
+ logging.CyberCPLogFileWriter.writeToFile('SMTP Connection failed. [301]')
+ return 0
+ self.smtpServer.sendmail(message['From'], items.email, message.as_string())
+
+
sent = sent + 1
emailJob.sent = sent
emailJob.save()
@@ -379,7 +396,10 @@ class emailMarketing(multi.Thread):
logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
'Successfully sent: ' + str(
sent) + ', Failed: ' + str(failed))
- logging.CyberCPLogFileWriter.writeToFile(str(msg))
+ if self.setupSMTPConnection() == 0:
+ logging.CyberCPLogFileWriter.writeToFile(
+ 'SMTP Connection failed. Error: %s. [392]' % (str(msg)))
+ return 0
except BaseException as msg:
failed = failed + 1
emailJob.failed = failed
@@ -387,13 +407,13 @@ class emailMarketing(multi.Thread):
logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
'Successfully sent: ' + str(
sent) + ', Failed: ' + str(failed))
- logging.CyberCPLogFileWriter.writeToFile(str(msg))
+ if self.setupSMTPConnection() == 0:
+ logging.CyberCPLogFileWriter.writeToFile('SMTP Connection failed. Error: %s. [399]' % (str(msg)))
+ return 0
- emailJob = EmailJobs(owner=emailMessage, date=time.strftime("%I-%M-%S-%a-%b-%Y"),
- host=self.extraArgs['host'], totalEmails=totalEmails,
- sent=sent, failed=failed
- )
+ emailJob.sent = sent
+ emailJob.failed = failed
emailJob.save()
logging.CyberCPLogFileWriter.statusWriter(self.extraArgs['tempStatusPath'],
diff --git a/install/install.py b/install/install.py
index 6dff30fd7..3d9debdc4 100755
--- a/install/install.py
+++ b/install/install.py
@@ -15,7 +15,7 @@ from stat import *
import stat
VERSION = '2.0'
-BUILD = 1
+BUILD = 2
char_set = {'small': 'abcdefghijklmnopqrstuvwxyz',
'nums': '0123456789',
@@ -92,16 +92,23 @@ def get_Ubuntu_release():
class preFlightsChecks:
+ debug = 1
cyberPanelMirror = "mirror.cyberpanel.net/pip"
cdn = 'cyberpanel.sh'
- def __init__(self, rootPath, ip, path, cwd, cyberPanelPath, distro):
+ def __init__(self, rootPath, ip, path, cwd, cyberPanelPath, distro, remotemysql = None , mysqlhost = None, mysqldb = None, mysqluser = None, mysqlpassword = None, mysqlport = None):
self.ipAddr = ip
self.path = path
self.cwd = cwd
self.server_root_path = rootPath
self.cyberPanelPath = cyberPanelPath
self.distro = distro
+ self.remotemysql = remotemysql
+ self.mysqlhost = mysqlhost
+ self.mysqluser = mysqluser
+ self.mysqlpassword = mysqlpassword
+ self.mysqlport = mysqlport
+ self.mysqldb = mysqldb
@staticmethod
def stdOut(message, log=0, do_exit=0, code=os.EX_OK):
@@ -373,11 +380,14 @@ class preFlightsChecks:
### update password:
- passFile = "/etc/cyberpanel/mysqlPassword"
+ if self.remotemysql == 'OFF':
+ passFile = "/etc/cyberpanel/mysqlPassword"
- f = open(passFile)
- data = f.read()
- password = data.split('\n', 1)[0]
+ f = open(passFile)
+ data = f.read()
+ password = data.split('\n', 1)[0]
+ else:
+ password = self.mysqlpassword
### Put correct mysql passwords in settings file!
@@ -396,6 +406,7 @@ class preFlightsChecks:
SK = "SECRET_KEY = '%s'\n" % (generate_pass(50))
writeDataToFile.writelines(SK)
continue
+
if mysql == 'Two':
if items.find("'PASSWORD':") > -1:
if counter == 0:
@@ -411,7 +422,6 @@ class preFlightsChecks:
if counter == 0:
writeDataToFile.writelines(" 'PASSWORD': '" + mysqlPassword + "'," + "\n")
counter = counter + 1
-
else:
writeDataToFile.writelines(" 'PASSWORD': '" + password + "'," + "\n")
elif items.find('127.0.0.1') > -1:
@@ -426,6 +436,19 @@ class preFlightsChecks:
writeDataToFile.close()
+ if self.remotemysql == 'ON':
+ command = "sed -i 's|localhost|%s|g' %s" % (self.mysqlhost, path)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ # command = "sed -i 's|'mysql'|'%s'|g' %s" % (self.mysqldb, path)
+ # preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|'USER': 'root',|'USER': '%s',|g' %s" % (self.mysqluser, path)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|'PORT':''|'PORT':'%s'|g' %s" % (self.mysqlport, path)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
logging.InstallLog.writeToFile("settings.py updated!")
#self.setupVirtualEnv(self.distro)
@@ -596,6 +619,13 @@ class preFlightsChecks:
command = "find /usr/local/CyberCP/ -name '*.pyc' -delete"
preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)
+ if self.distro == cent8:
+ command = 'chown root:pdns /etc/pdns/pdns.conf'
+ preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)
+
+ command = 'chmod 640 /etc/pdns/pdns.conf'
+ preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)
+
def install_unzip(self):
self.stdOut("Install unzip")
try:
@@ -668,6 +698,10 @@ class preFlightsChecks:
preFlightsChecks.call(command, self.distro, '[chown -R lscpd:lscpd /usr/local/CyberCP/public/phpmyadmin]',
'chown -R lscpd:lscpd /usr/local/CyberCP/public/phpmyadmin', 1, 0, os.EX_OSERR)
+ if self.remotemysql == 'ON':
+ command = "sed -i 's|'localhost'|'%s'|g' %s" % (self.mysqlhost, '/usr/local/CyberCP/public/phpmyadmin/config.inc.php')
+ preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)
+
except BaseException as msg:
logging.InstallLog.writeToFile('[ERROR] ' + str(msg) + " [download_install_phpmyadmin]")
return 0
@@ -887,6 +921,32 @@ class preFlightsChecks:
writeDataToFile.close()
+
+
+ if self.remotemysql == 'ON':
+ command = "sed -i 's|host=localhost|host=%s|g' %s" % (self.mysqlhost, davecotmysql)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|port=3306|port=%s|g' %s" % (self.mysqlport, davecotmysql)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ ##
+
+ command = "sed -i 's|localhost|%s:%s|g' %s" % (self.mysqlhost, self.mysqlport, mysql_virtual_domains)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|localhost|%s:%s|g' %s" % (
+ self.mysqlhost, self.mysqlport, mysql_virtual_forwardings)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|localhost|%s:%s|g' %s" % (
+ self.mysqlhost, self.mysqlport, mysql_virtual_mailboxes)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|localhost|%s:%s|g' %s" % (
+ self.mysqlhost, self.mysqlport, mysql_virtual_email2email)
+ preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
logging.InstallLog.writeToFile("Authentication for Postfix and Dovecot set.")
except BaseException as msg:
@@ -1338,13 +1398,13 @@ imap_folder_list_limit = 0
lscpdPath = '/usr/local/lscp/bin/lscpd'
- command = 'cp -f /usr/local/CyberCP/lscpd-0.2.5 /usr/local/lscp/bin/lscpd-0.2.5'
+ command = 'cp -f /usr/local/CyberCP/lscpd-0.2.7 /usr/local/lscp/bin/lscpd-0.2.7'
preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
command = 'rm -f /usr/local/lscp/bin/lscpd'
preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
- command = 'mv /usr/local/lscp/bin/lscpd-0.2.5 /usr/local/lscp/bin/lscpd'
+ command = 'mv /usr/local/lscp/bin/lscpd-0.2.7 /usr/local/lscp/bin/lscpd'
preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
command = 'chmod 755 %s' % (lscpdPath)
@@ -2093,6 +2153,12 @@ def main():
parser.add_argument('--serial', help='Install LS Ent or OpenLiteSpeed')
parser.add_argument('--port', help='LSCPD Port')
parser.add_argument('--redis', help='vHosts on Redis - Requires LiteSpeed Enterprise')
+ parser.add_argument('--remotemysql', help='Opt to choose local or remote MySQL')
+ parser.add_argument('--mysqlhost', help='MySQL host if remote is chosen.')
+ parser.add_argument('--mysqldb', help='MySQL DB if remote is chosen.')
+ parser.add_argument('--mysqluser', help='MySQL user if remote is chosen.')
+ parser.add_argument('--mysqlpassword', help='MySQL password if remote is chosen.')
+ parser.add_argument('--mysqlport', help='MySQL port if remote is chosen.')
args = parser.parse_args()
logging.InstallLog.writeToFile("Starting CyberPanel installation..")
@@ -2128,12 +2194,29 @@ def main():
cwd = os.getcwd()
- distro = get_distro()
- checks = preFlightsChecks("/usr/local/lsws/", args.publicip, "/usr/local", cwd, "/usr/local/CyberCP", distro)
- checks.mountTemp()
+ if args.remotemysql == 'ON':
+ remotemysql = args.remotemysql
+ mysqlhost = args.mysqlhost
+ mysqluser = args.mysqluser
+ mysqlpassword = args.mysqlpassword
+ mysqlport = args.mysqlport
+ mysqldb = args.mysqldb
-# if distro == ubuntu:
-# os.chdir("/etc/cyberpanel")
+ if preFlightsChecks.debug:
+ print('mysqlhost: %s, mysqldb: %s, mysqluser: %s, mysqlpassword: %s, mysqlport: %s' % (mysqlhost, mysqldb, mysqluser, mysqlpassword, mysqlport))
+ time.sleep(10)
+
+ else:
+ remotemysql = args.remotemysql
+ mysqlhost = ''
+ mysqluser = ''
+ mysqlpassword = ''
+ mysqlport = ''
+ mysqldb = ''
+
+ distro = get_distro()
+ checks = preFlightsChecks("/usr/local/lsws/", args.publicip, "/usr/local", cwd, "/usr/local/CyberCP", distro, remotemysql, mysqlhost, mysqldb, mysqluser, mysqlpassword, mysqlport)
+ checks.mountTemp()
if args.port == None:
port = "8090"
@@ -2153,10 +2236,11 @@ def main():
import installCyberPanel
+
if ent == 0:
- installCyberPanel.Main(cwd, mysql, distro, ent, None, port, args.ftp, args.powerdns, args.publicip)
+ installCyberPanel.Main(cwd, mysql, distro, ent, None, port, args.ftp, args.powerdns, args.publicip, remotemysql, mysqlhost, mysqldb, mysqluser, mysqlpassword, mysqlport)
else:
- installCyberPanel.Main(cwd, mysql, distro, ent, serial, port, args.ftp, args.powerdns, args.publicip)
+ installCyberPanel.Main(cwd, mysql, distro, ent, serial, port, args.ftp, args.powerdns, args.publicip, remotemysql, mysqlhost, mysqldb, mysqluser, mysqlpassword, mysqlport)
checks.setupPHPAndComposer()
checks.fix_selinux_issue()
diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py
index aa9546c5f..940adc418 100755
--- a/install/installCyberPanel.py
+++ b/install/installCyberPanel.py
@@ -8,6 +8,7 @@ import errno
import MySQLdb as mariadb
import install
from os.path import exists
+import time
#distros
centos=0
@@ -38,7 +39,7 @@ class InstallCyberPanel:
mysql_Root_password = ""
mysqlPassword = ""
- def __init__(self, rootPath, cwd, distro, ent, serial = None, port = None, ftp = None, dns = None, publicip = None):
+ def __init__(self, rootPath, cwd, distro, ent, serial = None, port = None, ftp = None, dns = None, publicip = None, remotemysql = None , mysqlhost = None, mysqldb = None, mysqluser = None, mysqlpassword = None, mysqlport = None):
self.server_root_path = rootPath
self.cwd = cwd
self.distro = distro
@@ -48,6 +49,12 @@ class InstallCyberPanel:
self.ftp = None
self.dns = dns
self.publicip = publicip
+ self.remotemysql = remotemysql
+ self.mysqlhost = mysqlhost
+ self.mysqluser = mysqluser
+ self.mysqlpassword = mysqlpassword
+ self.mysqlport = mysqlport
+ self.mysqldb = mysqldb
@staticmethod
def stdOut(message, log=0, exit=0, code=os.EX_OK):
@@ -242,85 +249,45 @@ class InstallCyberPanel:
install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
- ## Fix configurations if two MYSQL are used
-
- if mysql == 'Two':
- logging.InstallLog.writeToFile("Setting up MariaDB configurations!")
- InstallCyberPanel.stdOut("Setting up MariaDB configurations!")
-
- pathConf = "/etc/my.cnf"
- pathServiceFile = "/etc/systemd/system/mysqld@.service"
-
- if os.path.exists(pathConf):
- os.remove(pathConf)
-
- if os.path.exists(pathServiceFile):
- os.remove(pathServiceFile)
-
- os.chdir(self.cwd)
-
- shutil.copy("mysql/my.cnf", pathConf)
- shutil.copy("mysql/mysqld@.service", pathServiceFile)
-
- logging.InstallLog.writeToFile("MariaDB configurations set!")
- InstallCyberPanel.stdOut("MariaDB configurations set!")
-
- ##
-
- command = "mysql_install_db --user=mysql --datadir=/var/lib/mysql1"
- install.preFlightsChecks.call(command, self.distro, '[installMySQL]',
- 'Install MySQL',
- 1, 1, os.EX_OSERR)
-
-
- ##
-
- command = "systemctl start mysqld@1"
- install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
-
- ##
-
- command = "systemctl enable mysqld@1"
- install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
-
-
-
############## Start mariadb ######################
self.startMariaDB()
+
def changeMYSQLRootPassword(self):
- if self.distro == ubuntu:
- passwordCMD = "use mysql;update user set password=PASSWORD('" + InstallCyberPanel.mysql_Root_password + "') where User='root';UPDATE user SET plugin='' WHERE User='root';flush privileges;"
- else:
- passwordCMD = "use mysql;update user set password=PASSWORD('" + InstallCyberPanel.mysql_Root_password + "') where User='root';flush privileges;"
+ if self.remotemysql == 'OFF':
+ if self.distro == ubuntu:
+ passwordCMD = "use mysql;update user set password=PASSWORD('" + InstallCyberPanel.mysql_Root_password + "') where User='root';UPDATE user SET plugin='' WHERE User='root';flush privileges;"
+ else:
+ passwordCMD = "use mysql;update user set password=PASSWORD('" + InstallCyberPanel.mysql_Root_password + "') where User='root';flush privileges;"
- command = 'mysql -u root -e "' + passwordCMD + '"'
+ command = 'mysql -u root -e "' + passwordCMD + '"'
- install.preFlightsChecks.call(command, self.distro, command, command, 0, 0, os.EX_OSERR)
+ install.preFlightsChecks.call(command, self.distro, command, command, 0, 0, os.EX_OSERR)
def startMariaDB(self):
- ############## Start mariadb ######################
- if self.distro == cent8 or self.distro == ubuntu:
- command = 'systemctl start mariadb'
- else:
- command = "systemctl start mysql"
- install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+ if self.remotemysql == 'OFF':
+ ############## Start mariadb ######################
+ if self.distro == cent8 or self.distro == ubuntu:
+ command = 'systemctl start mariadb'
+ else:
+ command = "systemctl start mysql"
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
- ############## Enable mariadb at system startup ######################
+ ############## Enable mariadb at system startup ######################
- if os.path.exists('/etc/systemd/system/mysqld.service'):
- os.remove('/etc/systemd/system/mysqld.service')
- if os.path.exists('/etc/systemd/system/mariadb.service'):
- os.remove('/etc/systemd/system/mariadb.service')
+ if os.path.exists('/etc/systemd/system/mysqld.service'):
+ os.remove('/etc/systemd/system/mysqld.service')
+ if os.path.exists('/etc/systemd/system/mariadb.service'):
+ os.remove('/etc/systemd/system/mariadb.service')
- if self.distro == ubuntu:
- command = "systemctl enable mariadb"
- else:
- command = "systemctl enable mariadb"
+ if self.distro == ubuntu:
+ command = "systemctl enable mariadb"
+ else:
+ command = "systemctl enable mariadb"
- install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
def fixMariaDB(self):
self.stdOut("Setup MariaDB so it can support Cyberpanel's needs")
@@ -453,6 +420,18 @@ class InstallCyberPanel:
writeDataToFile.close()
+ ftpConfPath = '/etc/pure-ftpd/pureftpd-mysql.conf'
+
+ if self.remotemysql == 'ON':
+ command = "sed -i 's|localhost|%s|g' %s" % (self.mysqlhost, ftpConfPath)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|3306|%s|g' %s" % (self.mysqlport, ftpConfPath)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|MYSQLSocket /var/lib/mysql/mysql.sock||g' %s" % (ftpConfPath)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
if self.distro == ubuntu:
if os.path.exists('/etc/pure-ftpd/db/mysql.conf'):
@@ -584,6 +563,14 @@ class InstallCyberPanel:
writeDataToFile.close()
+
+ if self.remotemysql == 'ON':
+ command = "sed -i 's|gmysql-host=localhost|gmysql-host=%s|g' %s" % (self.mysqlhost, dnsPath)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
+ command = "sed -i 's|gmysql-port=3306|gmysql-port=%s|g' %s" % (self.mysqlport, dnsPath)
+ install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)
+
InstallCyberPanel.stdOut("PowerDNS configured!", 1)
except IOError as msg:
@@ -602,41 +589,53 @@ class InstallCyberPanel:
install.preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)
-def Main(cwd, mysql, distro, ent, serial = None, port = "8090", ftp = None, dns = None, publicip = None):
+def Main(cwd, mysql, distro, ent, serial = None, port = "8090", ftp = None, dns = None, publicip = None, remotemysql = None , mysqlhost = None, mysqldb = None, mysqluser = None, mysqlpassword = None, mysqlport = None):
InstallCyberPanel.mysqlPassword = randomPassword.generate_pass()
InstallCyberPanel.mysql_Root_password = randomPassword.generate_pass()
file_name = '/etc/cyberpanel/mysqlPassword'
- if os.access(file_name, os.F_OK):
- password = open(file_name, 'r')
- InstallCyberPanel.mysql_Root_password = password.readline()
- password.close()
+
+ if remotemysql == 'OFF':
+ if os.access(file_name, os.F_OK):
+ password = open(file_name, 'r')
+ InstallCyberPanel.mysql_Root_password = password.readline()
+ password.close()
+ else:
+ password = open(file_name, "w")
+ password.writelines(InstallCyberPanel.mysql_Root_password)
+ password.close()
else:
- password = open(file_name, "w")
- password.writelines(InstallCyberPanel.mysql_Root_password)
+ mysqlData = {'remotemysql': remotemysql, 'mysqlhost': mysqlhost, 'mysqldb':mysqldb, 'mysqluser': mysqluser, 'mysqlpassword': mysqlpassword, 'mysqlport': mysqlport}
+ from json import dumps
+ writeToFile = open(file_name, 'w')
+ writeToFile.write(dumps(mysqlData))
+ writeToFile.close()
+
+ if install.preFlightsChecks.debug:
+ print(open(file_name, 'r').read())
+ time.sleep(10)
+
+
+
+ try:
command = 'chmod 640 %s' % (file_name)
- password.close()
- try:
- install.preFlightsChecks.call(command, distro, '[chmod]',
- '',
- 1, 0, os.EX_OSERR)
- command = 'chown root:cyberpanel %s' % (file_name)
- install.preFlightsChecks.call(command, distro, '[chmod]',
- '',
- 1, 0, os.EX_OSERR)
- except:
- pass
-
-
-
+ install.preFlightsChecks.call(command, distro, '[chmod]',
+ '',
+ 1, 0, os.EX_OSERR)
+ command = 'chown root:cyberpanel %s' % (file_name)
+ install.preFlightsChecks.call(command, distro, '[chmod]',
+ '',
+ 1, 0, os.EX_OSERR)
+ except:
+ pass
if distro == centos:
InstallCyberPanel.mysqlPassword = randomPassword.generate_pass()
else:
InstallCyberPanel.mysqlPassword = InstallCyberPanel.mysql_Root_password
- installer = InstallCyberPanel("/usr/local/lsws/",cwd, distro, ent, serial, port, ftp, dns, publicip)
+ installer = InstallCyberPanel("/usr/local/lsws/",cwd, distro, ent, serial, port, ftp, dns, publicip, remotemysql, mysqlhost, mysqldb, mysqluser, mysqlpassword, mysqlport)
installer.installLiteSpeed()
if ent == 0:
@@ -647,12 +646,14 @@ def Main(cwd, mysql, distro, ent, serial = None, port = "8090", ftp = None, dns
installer.installMySQL(mysql)
installer.changeMYSQLRootPassword()
- #installer.changeMYSQLRootPasswordCyberPanel(mysql)
- installer.startMariaDB()
- if distro == ubuntu:
- installer.fixMariaDB()
- mysqlUtilities.createDatabase("cyberpanel","cyberpanel",InstallCyberPanel.mysqlPassword)
+ installer.startMariaDB()
+
+ if remotemysql == 'OFF':
+ if distro == ubuntu:
+ installer.fixMariaDB()
+
+ mysqlUtilities.createDatabase("cyberpanel","cyberpanel", InstallCyberPanel.mysqlPassword, publicip)
if ftp == None:
installer.installPureFTPD()
diff --git a/install/mysqlUtilities.py b/install/mysqlUtilities.py
index 9ed065680..a1e3f95c3 100755
--- a/install/mysqlUtilities.py
+++ b/install/mysqlUtilities.py
@@ -1,30 +1,54 @@
import subprocess, shlex
+import install
+import time
class mysqlUtilities:
@staticmethod
- def createDatabase(dbname, dbuser, dbpassword):
+ def createDatabase(dbname, dbuser, dbpassword, publicip):
try:
-
- passFile = "/etc/cyberpanel/mysqlPassword"
-
- f = open(passFile)
- data = f.read()
- password = data.split('\n', 1)[0]
-
createDB = "CREATE DATABASE " + dbname
- command = 'mysql -u root -p' + password + ' -e "' + createDB + '"'
+ try:
+ from json import loads
+ mysqlData = loads(open("/etc/cyberpanel/mysqlPassword", 'r').read())
+
+
+ initCommand = 'mysql -h %s --port %s -u %s -p%s -e "' % (mysqlData['mysqlhost'], mysqlData['mysqlport'], mysqlData['mysqluser'], mysqlData['mysqlpassword'])
+ remote = 1
+ except:
+ passFile = "/etc/cyberpanel/mysqlPassword"
+
+ f = open(passFile)
+ data = f.read()
+ password = data.split('\n', 1)[0]
+
+ initCommand = 'mysql -u root -p' + password + ' -e "'
+ remote = 0
+
+ command = initCommand + createDB + '"'
+
+ if install.preFlightsChecks.debug:
+ print(command)
+ time.sleep(10)
+
cmd = shlex.split(command)
res = subprocess.call(cmd)
if res == 1:
return 0
- createUser = "CREATE USER '" + dbuser + "'@'localhost' IDENTIFIED BY '" + dbpassword + "'"
+ if remote:
+ createUser = "CREATE USER '" + dbuser + "'@'%s' IDENTIFIED BY '" % (publicip) + dbpassword + "'"
+ else:
+ createUser = "CREATE USER '" + dbuser + "'@'localhost' IDENTIFIED BY '" + dbpassword + "'"
- command = 'mysql -u root -p' + password + ' -e "' + createUser + '"'
+ command = initCommand + createUser + '"'
+
+ if install.preFlightsChecks.debug:
+ print(command)
+ time.sleep(10)
cmd = shlex.split(command)
res = subprocess.call(cmd)
@@ -32,8 +56,17 @@ class mysqlUtilities:
if res == 1:
return 0
else:
- dropDB = "GRANT ALL PRIVILEGES ON " + dbname + ".* TO '" + dbuser + "'@'localhost'"
- command = 'mysql -u root -p' + password + ' -e "' + dropDB + '"'
+ if remote:
+ dropDB = "GRANT ALL PRIVILEGES ON " + dbname + ".* TO '" + dbuser + "'@'%s'" % (publicip)
+ else:
+ dropDB = "GRANT ALL PRIVILEGES ON " + dbname + ".* TO '" + dbuser + "'@'localhost'"
+
+ command = initCommand + dropDB + '"'
+
+ if install.preFlightsChecks.debug:
+ print(command)
+ time.sleep(10)
+
cmd = shlex.split(command)
res = subprocess.call(cmd)
diff --git a/locale/bn/LC_MESSAGES/django.mo b/locale/bn/LC_MESSAGES/django.mo
new file mode 100644
index 000000000..a114c6aa9
Binary files /dev/null and b/locale/bn/LC_MESSAGES/django.mo differ
diff --git a/locale/bn/LC_MESSAGES/django.po b/locale/bn/LC_MESSAGES/django.po
new file mode 100644
index 000000000..f4db07624
--- /dev/null
+++ b/locale/bn/LC_MESSAGES/django.po
@@ -0,0 +1,6677 @@
+# Bangla translation for CyberPanel.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Istiak Ferdous
, 2020.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: Istiak Ferdous \n"
+"POT-Creation-Date: 2020-06-20 19:54+0600\n"
+"PO-Revision-Date: 2020-06-22 20:32+0600\n"
+"Last-Translator: Istiak Ferdous\n"
+"Language-Team: Bangla \n"
+"Language: bn\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 2.3.1\n"
+
+#: 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:435
+#: baseTemplate/templates/baseTemplate/index.html:666
+#: packages/templates/packages/createPackage.html:13
+#: packages/templates/packages/createPackage.html:100
+#: packages/templates/packages/index.html:25
+#: packages/templates/packages/index.html:28
+#: userManagment/templates/userManagment/createACL.html:152
+#: userManagment/templates/userManagment/modifyACL.html:156
+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/createWebsite.html:29
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45
+msgid "Select Package"
+msgstr "প্যাকেজ সিলেক্ট করুন"
+
+#: CLManager/templates/CLManager/createPackage.html:40
+#: packages/templates/packages/createPackage.html:27
+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
+#: dns/templates/dns/addDeleteDNSRecords.html:74
+#: dns/templates/dns/addDeleteDNSRecords.html:97
+#: dns/templates/dns/addDeleteDNSRecords.html:121
+#: dns/templates/dns/addDeleteDNSRecords.html:144
+#: dns/templates/dns/addDeleteDNSRecords.html:172
+#: dns/templates/dns/addDeleteDNSRecords.html:196
+#: dns/templates/dns/addDeleteDNSRecords.html:220
+#: dns/templates/dns/addDeleteDNSRecords.html:244
+#: dns/templates/dns/addDeleteDNSRecords.html:268
+#: dns/templates/dns/addDeleteDNSRecords.html:295
+#: dns/templates/dns/addDeleteDNSRecords.html:328
+#: dockerManager/templates/dockerManager/runContainer.html:29
+#: filemanager/templates/filemanager/index.html:203
+#: 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:262
+#: userManagment/templates/userManagment/listUsers.html:75
+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/listWebsites.html:133
+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:411
+#: 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:276
+#: baseTemplate/templates/baseTemplate/index.html:400
+#: baseTemplate/templates/baseTemplate/index.html:401
+#: baseTemplate/templates/baseTemplate/index.html:402
+#: containerization/templates/containerization/listWebsites.html:21
+msgid "Websites"
+msgstr "ওয়েবসাইট"
+
+#: CLManager/templates/CLManager/notAvailable.html:3
+#: containerization/templates/containerization/notAvailable.html:3
+msgid "Not available - CyberPanel"
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:13
+#: containerization/templates/containerization/notAvailable.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
+msgid "CageFS is only available with CloudLinux OS. "
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:24
+#: containerization/templates/containerization/notAvailable.html:24
+msgid " for conversion details."
+msgstr ""
+
+#: CLManager/templates/CLManager/notAvailable.html:34
+#: containerization/templates/containerization/notAvailable.html:34
+msgid "Install Packages"
+msgstr "প্যাকেজ ইন্সটল করুন"
+
+#: CLManager/templates/CLManager/notAvailable.html:39
+msgid "CageFS is not installed on this server. Please proceed to installation."
+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:43
+#: websiteFunctions/templates/websiteFunctions/website.html:43
+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 "ডাচ"
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:3
+#: backup/templates/backup/backupSchedule.html:3
+msgid "Schedule Back up - CyberPanel"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:13
+#: IncBackups/templates/IncBackups/backupSchedule.html:23
+#: backup/templates/backup/backupSchedule.html:13
+#: backup/templates/backup/backupSchedule.html:23
+#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77
+#: baseTemplate/templates/baseTemplate/index.html:578
+#: userManagment/templates/userManagment/createACL.html:381
+#: userManagment/templates/userManagment/modifyACL.html:385
+msgid "Schedule Back up"
+msgstr "ব্যাকআপ সিডিউল করুন"
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:16
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:18
+#: backup/templates/backup/backupDestinations.html:14
+#: backup/templates/backup/backupSchedule.html:16
+#: backup/templates/backup/remoteBackups.html:14
+#: backup/templates/backup/remoteBackups.html:21
+msgid "Remote Backups"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:17
+#: backup/templates/backup/backupSchedule.html:17
+msgid ""
+"On this page you can schedule Back ups to localhost or remote server (If you "
+"have added one)."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:33
+#: backup/templates/backup/backupSchedule.html:33
+msgid "Select Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:44
+#: backup/templates/backup/backupSchedule.html:44
+msgid "Select Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:54
+#: IncBackups/templates/IncBackups/createBackup.html:56
+msgid "Backup Content"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:98
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:72
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:134
+#: backup/templates/backup/backupDestinations.html:55
+#: backup/templates/backup/backupSchedule.html:67
+#: baseTemplate/templates/baseTemplate/index.html:575
+msgid "Add Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:112
+#: backup/templates/backup/remoteBackups.html:96
+msgid "Search Accounts.."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:124
+msgid "Select sites to be included in this job"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:150
+#: IncBackups/templates/IncBackups/createBackup.html:127
+#: backup/templates/backup/backup.html:102
+#: backup/templates/backup/backupDestinations.html:96
+#: backup/templates/backup/backupSchedule.html:102
+#: databases/templates/databases/listDataBases.html:104
+#: dns/templates/dns/addDeleteDNSRecords.html:326
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:43
+#: emailMarketing/templates/emailMarketing/manageLists.html:141
+#: 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:151
+#: IncBackups/templates/IncBackups/createBackup.html:44
+#: IncBackups/templates/IncBackups/createBackup.html:164
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46
+#: backup/templates/backup/backup.html:41
+#: backup/templates/backup/backupSchedule.html:103
+#: mailServer/templates/mailServer/emailForwarding.html:101
+#: mailServer/templates/mailServer/emailForwarding.html:119
+msgid "Destination"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:152
+#: backup/templates/backup/backupSchedule.html:104
+msgid "Frequency"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/backupSchedule.html:153
+#: IncBackups/templates/IncBackups/createBackup.html:130
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:93
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:154
+#: backup/templates/backup/backup.html:107
+#: backup/templates/backup/backupDestinations.html:99
+#: backup/templates/backup/backupSchedule.html:105
+#: dns/templates/dns/addDeleteDNSRecords.html:332
+#: emailMarketing/templates/emailMarketing/manageLists.html:156
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92
+#: emailMarketing/templates/emailMarketing/sendEmails.html:170
+#: emailMarketing/templates/emailMarketing/website.html:533
+#: filemanager/templates/filemanager/index.html:67
+#: filemanager/templates/filemanager/index.html:696
+#: firewall/templates/firewall/firewall.html:124
+#: firewall/templates/firewall/secureSSH.html:122
+#: mailServer/templates/mailServer/listEmails.html:78
+#: packages/templates/packages/listPackages.html:63
+#: userManagment/templates/userManagment/listUsers.html:54
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55
+#: websiteFunctions/templates/websiteFunctions/listCron.html:65
+#: websiteFunctions/templates/websiteFunctions/website.html:497
+msgid "Delete"
+msgstr "ডিলিট"
+
+#: IncBackups/templates/IncBackups/createBackup.html:3
+msgid "Create Incremental Backup"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:13
+#: IncBackups/templates/IncBackups/createBackup.html:23
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25
+#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14
+#: backup/templates/backup/backup.html:21
+msgid "Back up Website"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:15
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17
+#: backup/templates/backup/backup.html:14
+#: backup/templates/backup/restore.html:14
+msgid "Backup Docs"
+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:33
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35
+#: backup/templates/backup/backup.html:30
+#: databases/templates/databases/createDatabase.html:26
+#: databases/templates/databases/deleteDatabase.html:26
+#: databases/templates/databases/phpMyAdmin.html:26
+#: ftp/templates/ftp/createFTPAccount.html:42
+#: mailServer/templates/mailServer/changeEmailPassword.html:44
+#: mailServer/templates/mailServer/createEmailAccount.html:44
+#: mailServer/templates/mailServer/deleteEmailAccount.html:44
+#: mailServer/templates/mailServer/dkimManager.html:83
+#: mailServer/templates/mailServer/emailForwarding.html:38
+#: manageSSL/templates/manageSSL/manageSSL.html:29
+#: manageSSL/templates/manageSSL/sslForHostName.html:29
+#: manageSSL/templates/manageSSL/sslForMailServer.html:27
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/listCron.html:28
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29
+msgid "Select Website"
+msgstr "ওয়েবসাইট সিলেক্ট করুন"
+
+#: IncBackups/templates/IncBackups/createBackup.html:113
+#: backup/templates/backup/backup.html:81
+#: baseTemplate/templates/baseTemplate/index.html:569
+#: baseTemplate/templates/baseTemplate/index.html:598
+#: userManagment/templates/userManagment/createACL.html:352
+#: userManagment/templates/userManagment/modifyACL.html:356
+msgid "Create Back up"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:128
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98
+#: backup/templates/backup/backup.html:104
+#: emailMarketing/templates/emailMarketing/sendEmails.html:152
+msgid "Date"
+msgstr "তারিখ"
+
+#: IncBackups/templates/IncBackups/createBackup.html:129
+#: backup/templates/backup/index.html:46
+#: backup/templates/backup/restore.html:45
+msgid "Restore"
+msgstr "রিস্টোর"
+
+#: IncBackups/templates/IncBackups/createBackup.html:161
+#: emailMarketing/templates/emailMarketing/sendEmails.html:151
+msgid "Job ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:162
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97
+msgid "Snapshot ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/createBackup.html:163
+#: dns/templates/dns/addDeleteDNSRecords.html:327
+#: pluginHolder/templates/pluginHolder/plugins.html:29
+msgid "Type"
+msgstr "ধরণ"
+
+#: IncBackups/templates/IncBackups/createBackup.html:165
+#: websiteFunctions/templates/websiteFunctions/listCron.html:52
+msgid "Action"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:3
+#: backup/templates/backup/backupDestinations.html:14
+msgid "Set up Back up Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:14
+msgid "Set up Incremental Back up Destinations"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:20
+msgid "On this page you can set up your Back up destinations. (SFTP and AWS)"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:26
+msgid "Set up Back up Destinations."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:35
+msgid "Select Type"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:47
+#: backup/templates/backup/backupDestinations.html:30
+#: backup/templates/backup/remoteBackups.html:29
+#: dns/templates/dns/addDeleteDNSRecords.html:82
+#: 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:54
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58
+#: backup/templates/backup/backupDestinations.html:38
+#: backup/templates/backup/remoteBackups.html:37
+#: databases/templates/databases/createDatabase.html:56
+#: databases/templates/databases/listDataBases.html:107
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50
+#: ftp/templates/ftp/listFTPAccounts.html:126
+#: mailServer/templates/mailServer/changeEmailPassword.html:68
+#: mailServer/templates/mailServer/createEmailAccount.html:68
+#: mailServer/templates/mailServer/listEmails.html:113
+#: userManagment/templates/userManagment/createUser.html:83
+#: userManagment/templates/userManagment/modifyUser.html:62
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:58
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33
+msgid "Password"
+msgstr "পাসওয়ার্ড"
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:61
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:92
+#: backup/templates/backup/backupDestinations.html:45
+#: dockerManager/templates/dockerManager/runContainer.html:74
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77
+#: firewall/templates/firewall/firewall.html:123
+msgid "Port"
+msgstr "পোর্ট"
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:63
+#: backup/templates/backup/backupDestinations.html:47
+msgid "Backup server SSH Port, leave empty for 22."
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:91
+#: backup/templates/backup/backupDestinations.html:97
+msgid "IP"
+msgstr "আইপি"
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:117
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:153
+msgid "AWS_ACCESS_KEY_ID"
+msgstr ""
+
+#: IncBackups/templates/IncBackups/incrementalDestinations.html:124
+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: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
+#: emailMarketing/templates/emailMarketing/createEmailList.html:33
+#: emailMarketing/templates/emailMarketing/manageLists.html:74
+#: emailMarketing/templates/emailMarketing/website.html:330
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:67
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56
+#: websiteFunctions/templates/websiteFunctions/website.html:293
+msgid "Path"
+msgstr "পাথ"
+
+#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101
+#: dockerManager/templates/dockerManager/viewContainer.html:108
+#: emailMarketing/templates/emailMarketing/manageLists.html:145
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79
+#: emailMarketing/templates/emailMarketing/sendEmails.html:157
+#: filemanager/templates/filemanager/index.html:207
+#: mailServer/templates/mailServer/emailForwarding.html:120
+#: mailServer/templates/mailServer/listEmails.html:65
+#: packages/templates/packages/listPackages.html:41
+#: serverStatus/templates/serverStatus/topProcesses.html:201
+#: userManagment/templates/userManagment/listUsers.html:37
+msgid "Actions"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:3
+msgid "Terminal - CyberPanel"
+msgstr "টার্মিনাল - সাইবার প্যানেল"
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:16
+#: baseTemplate/templates/baseTemplate/index.html:641
+#: baseTemplate/templates/baseTemplate/index.html:650
+msgid "Terminal"
+msgstr "টার্মিনাল"
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:18
+msgid "Web Terminal Docs"
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:19
+msgid "Execute your terminal commands."
+msgstr ""
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:26
+#: baseTemplate/templates/baseTemplate/index.html:643
+msgid "Web Terminal"
+msgstr "ওয়েব টার্মিনাল"
+
+#: WebTerminal/templates/WebTerminal/WebTerminal.html:28
+msgid "Reboot SSH Server"
+msgstr "রিবুট এসএসএইচ সার্ভার"
+
+#: backup/templates/backup/backup.html:15
+msgid "This page can be used to Back up your websites"
+msgstr ""
+
+#: backup/templates/backup/backup.html:44
+#: baseTemplate/templates/baseTemplate/homePage.html:12
+#: filemanager/templates/filemanager/index.html:135
+msgid "Home"
+msgstr "হোম"
+
+#: backup/templates/backup/backup.html:60
+#: backup/templates/backup/restore.html:62
+#: filemanager/templates/filemanager/index.html:158
+msgid "File Name"
+msgstr "ফাইলের নাম"
+
+#: backup/templates/backup/backup.html:61
+#: backup/templates/backup/backup.html:106
+#: backup/templates/backup/restore.html:63
+#: baseTemplate/templates/baseTemplate/homePage.html:132
+#: baseTemplate/templates/baseTemplate/index.html:311
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:45
+#: filemanager/templates/filemanager/index.html:206
+#: firewall/templates/firewall/firewall.html:35
+#: firewall/templates/firewall/modSecurityRulesPacks.html:112
+#: managePHP/templates/managePHP/installExtensions.html:64
+msgid "Status"
+msgstr "স্ট্যাটাস"
+
+#: backup/templates/backup/backup.html:66
+#: serverStatus/templates/serverStatus/topProcesses.html:52
+msgid "Running"
+msgstr ""
+
+#: backup/templates/backup/backup.html:88
+msgid "Cancel Backup"
+msgstr "ব্যাকআপ বাতিল করুন"
+
+#: backup/templates/backup/backup.html:103
+msgid "File"
+msgstr "ফাইল"
+
+#: backup/templates/backup/backup.html:105
+#: filemanager/templates/filemanager/index.html:204
+#: ftp/templates/ftp/listFTPAccounts.html:125
+msgid "Size"
+msgstr "সাইজ"
+
+#: backup/templates/backup/backup.html:131
+msgid "Cannot delete website, Error message: "
+msgstr ""
+
+#: backup/templates/backup/backup.html:135
+msgid "Successfully Deleted"
+msgstr "সফলভাবে ডিলিট করা হয়েছে"
+
+#: backup/templates/backup/backupDestinations.html:15
+msgid "On this page you can set up your Back up destinations. (SFTP)"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:21
+msgid "Set up Back up Destinations (SSH port should be 22 on backup server)"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:68
+#: backup/templates/backup/backupDestinations.html:72
+msgid "Connection to"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:68
+msgid "failed. Please delete and re-add. "
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:72
+msgid "successful."
+msgstr "সফল।"
+
+#: backup/templates/backup/backupDestinations.html:76
+msgid "Cannot add destination. Error message:"
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:80
+msgid "Destination Added."
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:84
+#: backup/templates/backup/backupSchedule.html:90
+#: backup/templates/backup/restore.html:95
+#: databases/templates/databases/createDatabase.html:98
+#: databases/templates/databases/deleteDatabase.html:69
+#: databases/templates/databases/phpMyAdmin.html:50
+#: dns/templates/dns/addDeleteDNSRecords.html:384
+#: 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/changeEmailPassword.html:114
+#: mailServer/templates/mailServer/createEmailAccount.html:115
+#: mailServer/templates/mailServer/deleteEmailAccount.html:98
+#: mailServer/templates/mailServer/dkimManager.html:156
+#: mailServer/templates/mailServer/emailForwarding.html:83
+#: manageSSL/templates/manageSSL/manageSSL.html:60
+#: userManagment/templates/userManagment/createUser.html:137
+#: userManagment/templates/userManagment/modifyUser.html:121
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:135
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:158
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:323
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:379
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:435
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:521
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:644
+#: 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:140
+#: websiteFunctions/templates/websiteFunctions/website.html:383
+#: websiteFunctions/templates/websiteFunctions/website.html:434
+#: websiteFunctions/templates/websiteFunctions/website.html:581
+#: websiteFunctions/templates/websiteFunctions/website.html:628
+#: websiteFunctions/templates/websiteFunctions/website.html:695
+#: websiteFunctions/templates/websiteFunctions/website.html:778
+#: websiteFunctions/templates/websiteFunctions/website.html:884
+msgid "Could not connect to server. Please refresh this page."
+msgstr ""
+
+#: backup/templates/backup/backupDestinations.html:98
+#: backup/templates/backup/backupDestinations.html:106
+msgid "Check Connection"
+msgstr ""
+
+#: backup/templates/backup/backupSchedule.html:54
+msgid "Local Path"
+msgstr ""
+
+#: backup/templates/backup/backupSchedule.html:57
+msgid "Local directory where backups will be moved after creation."
+msgstr ""
+
+#: backup/templates/backup/backupSchedule.html:82
+msgid "Cannot add schedule. Error message:"
+msgstr ""
+
+#: backup/templates/backup/backupSchedule.html:86
+msgid "Schedule Added"
+msgstr ""
+
+#: backup/templates/backup/index.html:3
+msgid "Back up Home - CyberPanel"
+msgstr "ব্যাকআপ হোম - সাইবার প্যানেল"
+
+#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30
+#: baseTemplate/templates/baseTemplate/homePage.html:95
+#: baseTemplate/templates/baseTemplate/homePage.html:97
+#: baseTemplate/templates/baseTemplate/index.html:561
+#: baseTemplate/templates/baseTemplate/index.html:563
+#: baseTemplate/templates/baseTemplate/index.html:616
+msgid "Back up"
+msgstr "ব্যাকআপ"
+
+#: backup/templates/backup/index.html:14
+msgid "Back up and restore sites."
+msgstr ""
+
+#: backup/templates/backup/index.html:19
+#: baseTemplate/templates/baseTemplate/homePage.html:23
+#: 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 "Back up Site"
+msgstr ""
+
+#: backup/templates/backup/index.html:44
+#: baseTemplate/templates/baseTemplate/index.html:572
+#: baseTemplate/templates/baseTemplate/index.html:601
+#: userManagment/templates/userManagment/createACL.html:361
+#: userManagment/templates/userManagment/modifyACL.html:365
+msgid "Restore Back up"
+msgstr ""
+
+#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62
+msgid "Add/Delete Destinations"
+msgstr ""
+
+#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92
+#: baseTemplate/templates/baseTemplate/index.html:581
+#: userManagment/templates/userManagment/createACL.html:391
+#: userManagment/templates/userManagment/modifyACL.html:395
+msgid "Remote Back ups"
+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
+#: 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:230
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:490
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:617
+#: websiteFunctions/templates/websiteFunctions/website.html:286
+#: websiteFunctions/templates/websiteFunctions/website.html:747
+#: websiteFunctions/templates/websiteFunctions/website.html:858
+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:107
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65
+msgid "Website"
+msgstr "ওয়েবসাইট"
+
+#: backup/templates/backup/remoteBackups.html:108
+#: baseTemplate/templates/baseTemplate/homePage.html:143
+#: baseTemplate/templates/baseTemplate/index.html:768
+#: baseTemplate/templates/baseTemplate/index.html:770
+#: managePHP/templates/managePHP/installExtensions.html:61
+msgid "PHP"
+msgstr "পিএইচপি"
+
+#: backup/templates/backup/remoteBackups.html:109
+#: packages/templates/packages/createPackage.html:112
+#: packages/templates/packages/deletePackage.html:60
+#: packages/templates/packages/listPackages.html:33
+#: packages/templates/packages/modifyPackage.html:125
+msgid "Package"
+msgstr "প্যাকেজ"
+
+#: backup/templates/backup/remoteBackups.html:110
+#: baseTemplate/templates/baseTemplate/index.html:505
+#: baseTemplate/templates/baseTemplate/index.html:507
+#: mailServer/templates/mailServer/listEmails.html:101
+#: userManagment/templates/userManagment/createUser.html:45
+#: userManagment/templates/userManagment/modifyUser.html:54
+#: userManagment/templates/userManagment/userProfile.html:41
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:44
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67
+msgid "Email"
+msgstr "ইমেইল"
+
+#: backup/templates/backup/restore.html:3
+msgid "Restore Website - CyberPanel"
+msgstr "রিস্টোর ওয়েবসাইট - সাইবার প্যানেল"
+
+#: backup/templates/backup/restore.html:14
+#: backup/templates/backup/restore.html:21
+msgid "Restore Website"
+msgstr "রিস্টোর ওয়েবসাইট"
+
+#: backup/templates/backup/restore.html:15
+msgid ""
+"This page can be used to restore your websites, Back up should be generated "
+"from CyberPanel Back up generation tool, it will detect all Back ups under "
+"/home/backup."
+msgstr ""
+
+#: backup/templates/backup/restore.html:30
+msgid "Select Back up"
+msgstr ""
+
+#: backup/templates/backup/restore.html:61
+msgid "Condition"
+msgstr "শর্ত"
+
+#: backup/templates/backup/restore.html:86
+#: databases/templates/databases/deleteDatabase.html:60
+#: databases/templates/databases/listDataBases.html:54
+#: 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:214
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:636
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:117
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:237
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:283
+#: websiteFunctions/templates/websiteFunctions/website.html:374
+#: websiteFunctions/templates/websiteFunctions/website.html:876
+msgid "Error message:"
+msgstr "এরর ম্যাসেজ:"
+
+#: backup/templates/backup/restore.html:90
+msgid "Site related to this Back up already exists."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:3
+msgid "Home - CyberPanel"
+msgstr "হোম - সাইবার প্যানেল"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:13
+msgid "Use the tabs to navigate through the control panel."
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:29
+#: userManagment/templates/userManagment/index.html:13
+msgid "User Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:31
+#: baseTemplate/templates/baseTemplate/index.html:361
+#: baseTemplate/templates/baseTemplate/index.html:362
+#: baseTemplate/templates/baseTemplate/index.html:363
+msgid "Users"
+msgstr "ব্যবহারকারী"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:40
+#: 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:53
+#: baseTemplate/templates/baseTemplate/index.html:283
+#: baseTemplate/templates/baseTemplate/index.html:427
+#: baseTemplate/templates/baseTemplate/index.html:429
+#: packages/templates/packages/index.html:13
+msgid "Packages"
+msgstr "প্যাকেজ"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:62
+#: databases/templates/databases/index.html:12
+msgid "Database Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:64
+#: baseTemplate/templates/baseTemplate/index.html:452
+#: baseTemplate/templates/baseTemplate/index.html:453
+#: baseTemplate/templates/baseTemplate/index.html:454
+#: 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:54
+#: websiteFunctions/templates/websiteFunctions/website.html:54
+msgid "Databases"
+msgstr "ডাটাবেস"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:73
+msgid "Control DNS"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:75
+#: baseTemplate/templates/baseTemplate/index.html:290
+#: baseTemplate/templates/baseTemplate/index.html:477
+#: baseTemplate/templates/baseTemplate/index.html:479
+msgid "DNS"
+msgstr "ডিএনএস"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:84
+#: ftp/templates/ftp/index.html:12
+msgid "FTP Functions"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/homePage.html:86
+#: baseTemplate/templates/baseTemplate/index.html:297
+#: baseTemplate/templates/baseTemplate/index.html:539
+#: baseTemplate/templates/baseTemplate/index.html:541
+#: emailMarketing/templates/emailMarketing/website.html:46
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:49
+#: websiteFunctions/templates/websiteFunctions/website.html:49
+msgid "FTP"
+msgstr "এফটিপি"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:106
+#: baseTemplate/templates/baseTemplate/homePage.html:108
+#: mailServer/templates/mailServer/listEmails.html:64
+#: packages/templates/packages/createPackage.html:77
+#: packages/templates/packages/listPackages.html:143
+#: packages/templates/packages/modifyPackage.html:80
+msgid "Emails"
+msgstr "ইমেইল"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:117
+#: baseTemplate/templates/baseTemplate/homePage.html:119
+#: baseTemplate/templates/baseTemplate/index.html:617
+#: baseTemplate/templates/baseTemplate/index.html:618
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39
+msgid "SSL"
+msgstr "এসএসএল"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:130
+#: baseTemplate/templates/baseTemplate/index.html:743
+#: baseTemplate/templates/baseTemplate/index.html:745
+#: baseTemplate/templates/baseTemplate/index.html:787
+#: emailPremium/templates/emailPremium/policyServer.html:30
+#: serverStatus/templates/serverStatus/index.html:13
+msgid "Server Status"
+msgstr "সার্ভার স্ট্যাটাস"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:141
+msgid "PHP Configurations"
+msgstr "পিএইচপি কনফিগারেশান"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:152
+#: baseTemplate/templates/baseTemplate/homePage.html:154
+#: baseTemplate/templates/baseTemplate/index.html:789
+#: dockerManager/templates/dockerManager/viewContainer.html:174
+#: emailMarketing/templates/emailMarketing/website.html:117
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:118
+#: websiteFunctions/templates/websiteFunctions/website.html:106
+msgid "Logs"
+msgstr "লগ"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:163
+#: baseTemplate/templates/baseTemplate/homePage.html:165
+#: baseTemplate/templates/baseTemplate/index.html:811
+#: baseTemplate/templates/baseTemplate/index.html:813
+msgid "Security"
+msgstr "সিকিউরিটি"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:188
+msgid "Resources"
+msgstr "রিসোর্স"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:197
+#: baseTemplate/templates/baseTemplate/index.html:139
+#: dockerManager/templates/dockerManager/viewContainer.html:48
+msgid "CPU Usage"
+msgstr "সিপিউ ব্যবহার"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:218
+#: baseTemplate/templates/baseTemplate/index.html:150
+msgid "Ram Usage"
+msgstr "র্যাম ব্যবহার"
+
+#: baseTemplate/templates/baseTemplate/homePage.html:239
+msgid "Disk Usage '/'"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:159
+#: emailMarketing/templates/emailMarketing/website.html:58
+#: emailMarketing/templates/emailMarketing/website.html:78
+#: userManagment/templates/userManagment/listUsers.html:34
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:61
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:81
+#: websiteFunctions/templates/websiteFunctions/website.html:59
+#: websiteFunctions/templates/websiteFunctions/website.html:77
+msgid "Disk Usage"
+msgstr "ডিস্ক ব্যবহার"
+
+#: baseTemplate/templates/baseTemplate/index.html:192
+#: baseTemplate/templates/baseTemplate/index.html:195
+#: baseTemplate/templates/baseTemplate/index.html:199
+msgid "CyberPanel"
+msgstr "সাইবার প্যানেল"
+
+#: baseTemplate/templates/baseTemplate/index.html:197
+#: baseTemplate/templates/baseTemplate/index.html:201
+msgid "Web Hosting Control Panel"
+msgstr "ওয়েব হোস্টিং কন্ট্রোল প্যানেল"
+
+#: baseTemplate/templates/baseTemplate/index.html:203
+msgid "Close sidebar"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:209
+msgid "My Account"
+msgstr "আমার একাউন্ট"
+
+#: baseTemplate/templates/baseTemplate/index.html:228
+msgid "Edit profile"
+msgstr "এডিট প্রোফাইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:230
+#: baseTemplate/templates/baseTemplate/index.html:369
+#: userManagment/templates/userManagment/index.html:24
+#: userManagment/templates/userManagment/index.html:27
+msgid "View Profile"
+msgstr "ভিউ প্রোফাইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:237
+#: baseTemplate/templates/baseTemplate/index.html:319
+msgid "Logout"
+msgstr "লগআউট"
+
+#: baseTemplate/templates/baseTemplate/index.html:249
+#: baseTemplate/templates/baseTemplate/index.html:254
+#: baseTemplate/templates/baseTemplate/index.html:259
+msgid "CPU Load Average"
+msgstr "সিপিইউ লোড এভারেজ"
+
+#: baseTemplate/templates/baseTemplate/index.html:265
+msgid "Dashboard Quick Menu"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:304
+#: baseTemplate/templates/baseTemplate/index.html:725
+#: baseTemplate/templates/baseTemplate/index.html:727
+msgid "Tuning"
+msgstr "টিউনিং"
+
+#: baseTemplate/templates/baseTemplate/index.html:332
+msgid "Overview"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:334
+#: baseTemplate/templates/baseTemplate/index.html:335
+msgid "Server IP Address"
+msgstr "সার্ভার আইপি এড্রেস"
+
+#: baseTemplate/templates/baseTemplate/index.html:339
+#: baseTemplate/templates/baseTemplate/index.html:341
+msgid "Dashboard"
+msgstr "ড্যাসবোর্ড"
+
+#: baseTemplate/templates/baseTemplate/index.html:344
+#: baseTemplate/templates/baseTemplate/index.html:346
+#: baseTemplate/templates/baseTemplate/index.html:348
+#: baseTemplate/templates/baseTemplate/versionManagment.html:10
+#: 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:351
+#: baseTemplate/templates/baseTemplate/index.html:352
+#: baseTemplate/templates/baseTemplate/index.html:354
+msgid "Connect"
+msgstr "কানেক্ট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:358
+msgid "Main"
+msgstr "মেইন"
+
+#: baseTemplate/templates/baseTemplate/index.html:372
+#: 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:375
+#: 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:19
+#: userManagment/templates/userManagment/modifyACL.html:77
+msgid "List Users"
+msgstr "ব্যবহারকারী তালিকা"
+
+#: baseTemplate/templates/baseTemplate/index.html:378
+#: userManagment/templates/userManagment/index.html:61
+#: userManagment/templates/userManagment/index.html:64
+#: userManagment/templates/userManagment/modifyUser.html:12
+#: userManagment/templates/userManagment/modifyUser.html:102
+msgid "Modify User"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:380
+#: 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:383
+#: userManagment/templates/userManagment/createACL.html:12
+msgid "Create New ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:386
+#: userManagment/templates/userManagment/deleteACL.html:12
+#: userManagment/templates/userManagment/deleteACL.html:40
+msgid "Delete ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:389
+msgid "Modify ACL"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:392
+#: userManagment/templates/userManagment/apiAccess.html:13
+#: userManagment/templates/userManagment/apiAccess.html:20
+msgid "API Access"
+msgstr "এপিআই এক্সেস"
+
+#: baseTemplate/templates/baseTemplate/index.html:408
+#: userManagment/templates/userManagment/createACL.html:112
+#: userManagment/templates/userManagment/modifyACL.html:116
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115
+#: websiteFunctions/templates/websiteFunctions/index.html:43
+#: websiteFunctions/templates/websiteFunctions/index.html:45
+msgid "Create Website"
+msgstr "ক্রিয়েট ওয়েবসাইট"
+
+#: baseTemplate/templates/baseTemplate/index.html:414
+#: 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:417
+#: websiteFunctions/templates/websiteFunctions/index.html:81
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41
+msgid "Suspend/Unsuspend"
+msgstr "সাসপেন্ড/আনসাসপেন্ড"
+
+#: baseTemplate/templates/baseTemplate/index.html:420
+#: 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:438
+#: baseTemplate/templates/baseTemplate/index.html:671
+#: 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:441
+#: packages/templates/packages/deletePackage.html:12
+#: packages/templates/packages/deletePackage.html:18
+#: packages/templates/packages/deletePackage.html:39
+#: packages/templates/packages/index.html:38
+#: packages/templates/packages/index.html:41
+#: userManagment/templates/userManagment/createACL.html:170
+#: userManagment/templates/userManagment/modifyACL.html:174
+msgid "Delete Package"
+msgstr "ডিলিট প্যাকেজ"
+
+#: baseTemplate/templates/baseTemplate/index.html:444
+#: packages/templates/packages/index.html:51
+#: packages/templates/packages/index.html:54
+#: packages/templates/packages/modifyPackage.html:9
+#: packages/templates/packages/modifyPackage.html:15
+#: packages/templates/packages/modifyPackage.html:108
+#: userManagment/templates/userManagment/createACL.html:179
+#: userManagment/templates/userManagment/modifyACL.html:183
+msgid "Modify Package"
+msgstr "মডিফাই প্যাকেজ"
+
+#: baseTemplate/templates/baseTemplate/index.html:460
+#: databases/templates/databases/createDatabase.html:12
+#: databases/templates/databases/createDatabase.html:19
+#: databases/templates/databases/createDatabase.html:79
+#: databases/templates/databases/index.html:25
+#: databases/templates/databases/index.html:27
+#: databases/templates/databases/phpMyAdmin.html:12
+#: databases/templates/databases/phpMyAdmin.html:19
+#: userManagment/templates/userManagment/createACL.html:191
+#: userManagment/templates/userManagment/modifyACL.html:195
+msgid "Create Database"
+msgstr "ক্রিয়েট ডাটাবেস"
+
+#: baseTemplate/templates/baseTemplate/index.html:463
+#: 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:466
+#: databases/templates/databases/index.html:48
+#: databases/templates/databases/index.html:50
+#: databases/templates/databases/listDataBases.html:13
+#: databases/templates/databases/listDataBases.html:19
+#: userManagment/templates/userManagment/createACL.html:209
+#: userManagment/templates/userManagment/modifyACL.html:213
+msgid "List Databases"
+msgstr "ডাটাবেস তালিকা"
+
+#: baseTemplate/templates/baseTemplate/index.html:468
+#: baseTemplate/templates/baseTemplate/index.html:469
+#: databases/templates/databases/index.html:59
+#: databases/templates/databases/index.html:61
+msgid "PHPMYAdmin"
+msgstr "পিএইচপিমাইএডমিন"
+
+#: baseTemplate/templates/baseTemplate/index.html:485
+#: 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:488
+msgid "Configure Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:488
+msgid "Config Default Nameservers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:491
+#: 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
+msgid "Create DNS Zone"
+msgstr "ক্রিয়েট ডিএনএস জোন"
+
+#: baseTemplate/templates/baseTemplate/index.html:494
+#: 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:497
+msgid "Add/Delete Records"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:513
+#: mailServer/templates/mailServer/createEmailAccount.html:12
+#: mailServer/templates/mailServer/createEmailAccount.html:19
+msgid "Create Email Account"
+msgstr "ক্রিয়েট ইমেইল একাউন্ট"
+
+#: baseTemplate/templates/baseTemplate/index.html:513
+#: mailServer/templates/mailServer/createEmailAccount.html:98
+#: mailServer/templates/mailServer/index.html:25
+#: mailServer/templates/mailServer/index.html:28
+#: userManagment/templates/userManagment/createACL.html:262
+#: userManagment/templates/userManagment/modifyACL.html:266
+msgid "Create Email"
+msgstr "ক্রিয়েট ইমেইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:516
+#: userManagment/templates/userManagment/createACL.html:271
+#: userManagment/templates/userManagment/modifyACL.html:275
+msgid "List Emails"
+msgstr "ইমেইল তালিকা"
+
+#: baseTemplate/templates/baseTemplate/index.html:519
+#: mailServer/templates/mailServer/deleteEmailAccount.html:12
+#: mailServer/templates/mailServer/deleteEmailAccount.html:19
+msgid "Delete Email Account"
+msgstr "ডিলিট ইমেইল একাউন্ট"
+
+#: baseTemplate/templates/baseTemplate/index.html:519
+#: mailServer/templates/mailServer/deleteEmailAccount.html:73
+#: mailServer/templates/mailServer/index.html:38
+#: mailServer/templates/mailServer/index.html:41
+#: userManagment/templates/userManagment/createACL.html:280
+#: userManagment/templates/userManagment/modifyACL.html:284
+msgid "Delete Email"
+msgstr "ডিলিট ইমেইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:522
+#: userManagment/templates/userManagment/createACL.html:289
+#: userManagment/templates/userManagment/modifyACL.html:293
+msgid "Email Forwarding"
+msgstr "ইমেইল ফরওয়ার্ডিং"
+
+#: baseTemplate/templates/baseTemplate/index.html:525
+#: databases/templates/databases/listDataBases.html:90
+#: ftp/templates/ftp/listFTPAccounts.html:108
+#: mailServer/templates/mailServer/changeEmailPassword.html:97
+#: mailServer/templates/mailServer/index.html:51
+#: mailServer/templates/mailServer/index.html:54
+#: mailServer/templates/mailServer/listEmails.html:76
+msgid "Change Password"
+msgstr "পাসওয়ার্ড পরিবর্তন"
+
+#: baseTemplate/templates/baseTemplate/index.html:528
+#: mailServer/templates/mailServer/dkimManager.html:13
+#: mailServer/templates/mailServer/dkimManager.html:22
+#: mailServer/templates/mailServer/dkimManager.html:75
+#: userManagment/templates/userManagment/createACL.html:309
+#: userManagment/templates/userManagment/modifyACL.html:313
+msgid "DKIM Manager"
+msgstr "ডিকেআইএম ম্যানেজার"
+
+#: baseTemplate/templates/baseTemplate/index.html:530
+#: baseTemplate/templates/baseTemplate/index.html:531
+msgid "Access Webmail"
+msgstr "ওয়েবমেইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:547
+#: 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:573
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:576
+#: websiteFunctions/templates/websiteFunctions/website.html:821
+#: websiteFunctions/templates/websiteFunctions/website.html:824
+msgid "Create FTP Account"
+msgstr "এফটিপি একাউন্ট ক্রিয়েট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:550
+#: 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:585
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:588
+#: websiteFunctions/templates/websiteFunctions/website.html:830
+#: websiteFunctions/templates/websiteFunctions/website.html:833
+msgid "Delete FTP Account"
+msgstr "এফটিপি একাউন্ট ডিলিট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:553
+#: 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:575
+#: userManagment/templates/userManagment/createACL.html:370
+#: userManagment/templates/userManagment/modifyACL.html:374
+msgid "Add/Delete Destination"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:590
+msgid "Incremental Back up - Beta"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:592
+msgid "Incremental Back up"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:598
+msgid "Create/Restore Back up"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:601
+msgid "Add/Remove Destinations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:604
+msgid "Schedule Back ups"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:607
+msgid "Restore from Remote Server"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:607
+msgid "Restore from Remote"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:624
+#: manageSSL/templates/manageSSL/index.html:29
+#: manageSSL/templates/manageSSL/index.html:31
+#: manageSSL/templates/manageSSL/manageSSL.html:13
+#: manageSSL/templates/manageSSL/manageSSL.html:20
+#: userManagment/templates/userManagment/createACL.html:404
+#: userManagment/templates/userManagment/modifyACL.html:408
+msgid "Manage SSL"
+msgstr "ম্যানেজ এসএসএল"
+
+#: baseTemplate/templates/baseTemplate/index.html:627
+#: manageSSL/templates/manageSSL/index.html:45
+#: manageSSL/templates/manageSSL/index.html:47
+#: userManagment/templates/userManagment/createACL.html:413
+#: userManagment/templates/userManagment/modifyACL.html:417
+msgid "Hostname SSL"
+msgstr "হোস্টনেম এসএসএল"
+
+#: baseTemplate/templates/baseTemplate/index.html:630
+#: manageSSL/templates/manageSSL/index.html:60
+#: manageSSL/templates/manageSSL/index.html:62
+#: userManagment/templates/userManagment/createACL.html:422
+#: userManagment/templates/userManagment/modifyACL.html:426
+msgid "MailServer SSL"
+msgstr "মেইলসার্ভার এসএসএল"
+
+#: baseTemplate/templates/baseTemplate/index.html:637
+msgid "Server"
+msgstr "সার্ভার"
+
+#: baseTemplate/templates/baseTemplate/index.html:644
+#: baseTemplate/templates/baseTemplate/index.html:660
+#: baseTemplate/templates/baseTemplate/index.html:688
+#: baseTemplate/templates/baseTemplate/index.html:705
+#: baseTemplate/templates/baseTemplate/index.html:846
+msgid "NEW"
+msgstr "নতুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:650
+msgid "Web Based Terminal"
+msgstr "ওয়েব বেসড টার্মিনাল"
+
+#: baseTemplate/templates/baseTemplate/index.html:657
+#: baseTemplate/templates/baseTemplate/index.html:659
+msgid "CloudLinux"
+msgstr "ক্লাউডলিনাক্স"
+
+#: baseTemplate/templates/baseTemplate/index.html:666
+msgid "Create Cloud Linux Package"
+msgstr "ক্লাউডলিনাক্স প্যাকেজ ক্রিয়েট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:671
+msgid "List Cloud Linux Package"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:676
+msgid "Monitor Usage of your Websites"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:676
+msgid "Monitor Usage"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:685
+#: baseTemplate/templates/baseTemplate/index.html:687
+msgid "Containerization"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:694
+msgid "Create Website Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:694
+msgid "Create Limits"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:702
+msgid "Docker"
+msgstr "ডকার"
+
+#: baseTemplate/templates/baseTemplate/index.html:704
+msgid "Docker Manager"
+msgstr "ডকার ম্যানেজার"
+
+#: baseTemplate/templates/baseTemplate/index.html:711
+msgid "Manage Docker Images"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:711
+#: 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:714
+msgid "Manage Docker Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:714
+#: dockerManager/templates/dockerManager/index.html:29
+#: dockerManager/templates/dockerManager/index.html:31
+msgid "Manage Containers"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:717
+msgid "Create New Docker Container"
+msgstr "নতুন ডকার কনটেইনার ক্রিয়েট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:717
+msgid "Create New Container"
+msgstr "নতুন কনটেইনার ক্রিয়েট করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:733
+#: 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:736
+#: 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:751
+#: serverStatus/templates/serverStatus/topProcesses.html:14
+#: serverStatus/templates/serverStatus/topProcesses.html:179
+msgid "Top Processes"
+msgstr "টপ প্রসেস"
+
+#: baseTemplate/templates/baseTemplate/index.html:754
+#: serverStatus/templates/serverStatus/index.html:25
+#: serverStatus/templates/serverStatus/index.html:28
+msgid "LiteSpeed Status"
+msgstr "লাইটস্পিড স্ট্যাটাস"
+
+#: baseTemplate/templates/baseTemplate/index.html:757
+#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13
+#: serverStatus/templates/serverStatus/index.html:38
+msgid "CyberPanel Main Log File"
+msgstr "সাইবার প্যানেল মেইন লগ ফাইল"
+
+#: baseTemplate/templates/baseTemplate/index.html:760
+msgid "Services Status"
+msgstr "সার্ভিস স্ট্যাটাস"
+
+#: baseTemplate/templates/baseTemplate/index.html:776
+#: managePHP/templates/managePHP/installExtensions.html:13
+msgid "Install PHP Extensions"
+msgstr "পিএইচপি এক্সটেনশান ইন্সটল করুন"
+
+#: baseTemplate/templates/baseTemplate/index.html:776
+#: managePHP/templates/managePHP/index.html:24
+#: managePHP/templates/managePHP/index.html:26
+msgid "Install Extensions"
+msgstr "ইন্সটল এক্সটেনশান"
+
+#: baseTemplate/templates/baseTemplate/index.html:779
+#: managePHP/templates/managePHP/index.html:35
+#: managePHP/templates/managePHP/index.html:37
+msgid "Edit PHP Configs"
+msgstr "এডিট পিএইচপি কনফিগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:795
+msgid "Access Log"
+msgstr "একসেস লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:797
+#: emailMarketing/templates/emailMarketing/website.html:139
+#: serverLogs/templates/serverLogs/errorLogs.html:13
+#: serverLogs/templates/serverLogs/index.html:37
+#: serverLogs/templates/serverLogs/index.html:40
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:138
+#: websiteFunctions/templates/websiteFunctions/website.html:126
+msgid "Error Logs"
+msgstr "এরর লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:799
+#: emailPremium/templates/emailPremium/emailPage.html:144
+#: serverLogs/templates/serverLogs/emailLogs.html:14
+#: serverLogs/templates/serverLogs/index.html:49
+#: serverLogs/templates/serverLogs/index.html:52
+msgid "Email Logs"
+msgstr "ইমেইল লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:799
+msgid "Email Log"
+msgstr "ইমেইল লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:801
+#: serverLogs/templates/serverLogs/ftplogs.html:13
+#: serverLogs/templates/serverLogs/index.html:61
+#: serverLogs/templates/serverLogs/index.html:64
+msgid "FTP Logs"
+msgstr "এফটিপি লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:803
+#: serverLogs/templates/serverLogs/modSecAuditLog.html:14
+msgid "ModSecurity Audit Logs"
+msgstr "মড সিকিউরিটি অডিট লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:803
+msgid "ModSec Audit Logs"
+msgstr "মডসেক অডিট লগ"
+
+#: baseTemplate/templates/baseTemplate/index.html:819
+msgid "Firewall Home"
+msgstr "ফায়ারওয়াল হোম"
+
+#: baseTemplate/templates/baseTemplate/index.html:819
+#: 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:821
+#: firewall/templates/firewall/index.html:36
+#: firewall/templates/firewall/index.html:38
+#: firewall/templates/firewall/secureSSH.html:13
+#: firewall/templates/firewall/secureSSH.html:20
+msgid "Secure SSH"
+msgstr "সিকিউর এসএসএইচ"
+
+#: baseTemplate/templates/baseTemplate/index.html:823
+#: firewall/templates/firewall/index.html:58
+msgid "ModSecurity Configurations"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:823
+#: firewall/templates/firewall/index.html:60
+msgid "ModSecurity Conf"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:826
+#: 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:829
+#: firewall/templates/firewall/index.html:80
+#: firewall/templates/firewall/index.html:82
+msgid "ModSecurity Rules Packs"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:832
+#: firewall/templates/firewall/index.html:47
+msgid "ConfigServer Security & Firewall (CSF)"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:832
+#: 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:835
+msgid "CageFS Configurations"
+msgstr "কেজএফএস কনফিগারেশান"
+
+#: baseTemplate/templates/baseTemplate/index.html:835
+msgid "CageFS"
+msgstr "কেজএফএস"
+
+#: baseTemplate/templates/baseTemplate/index.html:843
+#: baseTemplate/templates/baseTemplate/index.html:845
+msgid "Mail Settings"
+msgstr "মেইল সেটিংস"
+
+#: baseTemplate/templates/baseTemplate/index.html:852
+#: emailPremium/templates/emailPremium/policyServer.html:20
+msgid "Email Policy Server"
+msgstr "ইমেইল পলিসি সার্ভার"
+
+#: baseTemplate/templates/baseTemplate/index.html:855
+msgid "Email Limits"
+msgstr "ইমেইল লিমিট"
+
+#: baseTemplate/templates/baseTemplate/index.html:858
+msgid "SpamAssassin Configurations"
+msgstr "স্প্যামএসাসিন কনফিগারেশান"
+
+#: baseTemplate/templates/baseTemplate/index.html:858
+#: emailPremium/templates/emailPremium/SpamAssassin.html:25
+#: firewall/templates/firewall/spamassassin.html:20
+msgid "SpamAssassin"
+msgstr "স্প্যামএসাসিন"
+
+#: baseTemplate/templates/baseTemplate/index.html:861
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:14
+#: emailMarketing/templates/emailMarketing/emailMarketing.html:22
+#: emailMarketing/templates/emailMarketing/website.html:978
+#: websiteFunctions/templates/websiteFunctions/website.html:909
+msgid "Email Marketing"
+msgstr "ইমেইল মার্কেটিং"
+
+#: baseTemplate/templates/baseTemplate/index.html:869
+#: baseTemplate/templates/baseTemplate/index.html:871
+msgid "Manage Services"
+msgstr "ম্যানেজ সার্ভিসেস"
+
+#: baseTemplate/templates/baseTemplate/index.html:877
+#: manageServices/templates/manageServices/managePowerDNS.html:25
+msgid "Manage PowerDNS"
+msgstr "ম্যানেজ পাওয়ার ডিএনএস"
+
+#: baseTemplate/templates/baseTemplate/index.html:880
+#: manageServices/templates/manageServices/managePostfix.html:22
+msgid "Manage Postfix"
+msgstr "ম্যানেজ পোস্টফিক্স"
+
+#: baseTemplate/templates/baseTemplate/index.html:883
+msgid "Manage FTP"
+msgstr "ম্যানেজ এফটিপি"
+
+#: baseTemplate/templates/baseTemplate/index.html:890
+#: baseTemplate/templates/baseTemplate/index.html:892
+#: pluginHolder/templates/pluginHolder/plugins.html:14
+#: pluginHolder/templates/pluginHolder/plugins.html:21
+msgid "Plugins"
+msgstr "প্লাগিন"
+
+#: baseTemplate/templates/baseTemplate/index.html:898
+msgid "Installed Plugins"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/index.html:898
+msgid "Installed"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:3
+msgid "Version Management - CyberPanel"
+msgstr "ভার্সন ম্যানেজমেন্ট - সাইবার প্যানেল"
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:11
+msgid ""
+"On this page you can manage versions and or upgrade to latest version of "
+"CyberPanel"
+msgstr ""
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:25
+msgid "Current Version"
+msgstr "বর্তমান ভার্সন"
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:33
+msgid "Build"
+msgstr "বিল্ড"
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:42
+msgid "Latest Version"
+msgstr "সর্বশেষ ভার্সন"
+
+#: baseTemplate/templates/baseTemplate/versionManagment.html:50
+msgid "Latest Build"
+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: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:330
+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
+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/createDatabase.html:3
+msgid "Create New Database - CyberPanel"
+msgstr "নতুন ডাটাবেস ক্রিয়েট করুন - সাইবার প্যানেল"
+
+#: databases/templates/databases/createDatabase.html:13
+#: databases/templates/databases/phpMyAdmin.html:13
+msgid "Create a new database on this page."
+msgstr "এই পাতায় নতুন একটি ডাটাবেস ক্রিয়েট করুন।"
+
+#: databases/templates/databases/createDatabase.html:40
+#: databases/templates/databases/listDataBases.html:105
+msgid "Database Name"
+msgstr "ডাটাবেসের নাম"
+
+#: databases/templates/databases/createDatabase.html:48
+#: firewall/templates/firewall/secureSSH.html:120
+#: ftp/templates/ftp/createFTPAccount.html:57
+#: ftp/templates/ftp/listFTPAccounts.html:123
+#: mailServer/templates/mailServer/createEmailAccount.html:59
+msgid "User Name"
+msgstr "ব্যবহারকারীর নাম"
+
+#: databases/templates/databases/createDatabase.html:61
+#: databases/templates/databases/listDataBases.html:74
+#: ftp/templates/ftp/createFTPAccount.html:73
+#: ftp/templates/ftp/listFTPAccounts.html:92
+#: mailServer/templates/mailServer/changeEmailPassword.html:74
+#: mailServer/templates/mailServer/createEmailAccount.html:74
+#: userManagment/templates/userManagment/createUser.html:90
+#: userManagment/templates/userManagment/modifyUser.html:68
+msgid "Generate"
+msgstr "জেনারেট"
+
+#: databases/templates/databases/createDatabase.html:66
+#: databases/templates/databases/listDataBases.html:77
+#: ftp/templates/ftp/createFTPAccount.html:78
+#: ftp/templates/ftp/listFTPAccounts.html:96
+#: mailServer/templates/mailServer/changeEmailPassword.html:79
+#: mailServer/templates/mailServer/createEmailAccount.html:79
+#: userManagment/templates/userManagment/createUser.html:95
+#: userManagment/templates/userManagment/modifyUser.html:73
+msgid "Generated Password"
+msgstr "জেনারেট পাসওয়ার্ড"
+
+#: databases/templates/databases/createDatabase.html:71
+#: databases/templates/databases/listDataBases.html:84
+#: ftp/templates/ftp/createFTPAccount.html:85
+#: ftp/templates/ftp/listFTPAccounts.html:103
+#: mailServer/templates/mailServer/changeEmailPassword.html:86
+#: mailServer/templates/mailServer/createEmailAccount.html:86
+#: userManagment/templates/userManagment/createUser.html:101
+#: userManagment/templates/userManagment/modifyUser.html:79
+msgid "Use"
+msgstr "ব্যবহার"
+
+#: databases/templates/databases/createDatabase.html:89
+#: databases/templates/databases/phpMyAdmin.html:41
+msgid "Cannot create database. Error message:"
+msgstr ""
+
+#: databases/templates/databases/createDatabase.html:93
+#: databases/templates/databases/phpMyAdmin.html:45
+msgid "Database created successfully."
+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:3
+msgid "List Databases - CyberPanel"
+msgstr "ডাটাবেস তালিকা - সাইবার প্যানেল"
+
+#: databases/templates/databases/listDataBases.html:14
+msgid "List Databases or change their passwords."
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:26
+#: dns/templates/dns/addDeleteDNSRecords.html:42
+#: ftp/templates/ftp/deleteFTPAccount.html:39
+#: ftp/templates/ftp/listFTPAccounts.html:42
+#: mailServer/templates/mailServer/listEmails.html:43
+#: tuning/templates/tuning/phpTuning.html:30
+msgid "Select Domain"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:44
+#: dns/templates/dns/addDeleteDNSRecords.html:367
+#: ftp/templates/ftp/listFTPAccounts.html:61
+msgid "Records successfully fetched for"
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:49
+msgid "Password changed for: "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:53
+msgid "Cannot change password for "
+msgstr ""
+
+#: databases/templates/databases/listDataBases.html:59
+#: 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:106
+msgid "Database User"
+msgstr "ডাটাবেস ব্যবহারকারী"
+
+#: databases/templates/databases/listDataBases.html:117
+#: ftp/templates/ftp/listFTPAccounts.html:139
+msgid "Change"
+msgstr "পরিবর্তন"
+
+#: databases/templates/databases/phpMyAdmin.html:3
+msgid "phpMyAdmin - CyberPanel"
+msgstr "পিএইচপিমাইএডমিন - সাইবার প্যানেল"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:3
+msgid "Add/Modify DNS Records - CyberPanel"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:13
+msgid "Add/Modify DNS Zone"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:13
+#: dns/templates/dns/configureDefaultNameServers.html:12
+#: dns/templates/dns/createDNSZone.html:12
+#: dns/templates/dns/createNameServer.html:12
+#: dns/templates/dns/deleteDNSZone.html:12
+msgid "DNS Docs"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:14
+msgid ""
+"On this page you can add/modify dns records for domains whose dns zone is "
+"already created."
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:19
+msgid "Add Records"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:27
+#: 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:29
+#: 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/changeEmailPassword.html:30
+#: mailServer/templates/mailServer/createEmailAccount.html:30
+#: mailServer/templates/mailServer/deleteEmailAccount.html:30
+#: mailServer/templates/mailServer/emailForwarding.html:28
+#: mailServer/templates/mailServer/listEmails.html:30
+msgid "Enable Now"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:78
+#: dns/templates/dns/addDeleteDNSRecords.html:101
+#: dns/templates/dns/addDeleteDNSRecords.html:125
+#: dns/templates/dns/addDeleteDNSRecords.html:148
+#: dns/templates/dns/addDeleteDNSRecords.html:176
+#: dns/templates/dns/addDeleteDNSRecords.html:200
+#: dns/templates/dns/addDeleteDNSRecords.html:224
+#: dns/templates/dns/addDeleteDNSRecords.html:248
+#: dns/templates/dns/addDeleteDNSRecords.html:272
+#: dns/templates/dns/addDeleteDNSRecords.html:298
+#: dns/templates/dns/addDeleteDNSRecords.html:329
+msgid "TTL"
+msgstr "টাইম টু লিভ"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:88
+#: dns/templates/dns/addDeleteDNSRecords.html:111
+#: dns/templates/dns/addDeleteDNSRecords.html:135
+#: dns/templates/dns/addDeleteDNSRecords.html:162
+#: dns/templates/dns/addDeleteDNSRecords.html:187
+#: dns/templates/dns/addDeleteDNSRecords.html:211
+#: dns/templates/dns/addDeleteDNSRecords.html:235
+#: dns/templates/dns/addDeleteDNSRecords.html:259
+#: dns/templates/dns/addDeleteDNSRecords.html:287
+#: dns/templates/dns/addDeleteDNSRecords.html:304
+#: firewall/templates/firewall/firewall.html:104
+msgid "Add"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:105
+msgid "IPV6 Address"
+msgstr "IPV6 এড্রেস"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:129
+#: dns/templates/dns/addDeleteDNSRecords.html:156
+#: dns/templates/dns/createDNSZone.html:38
+#: dns/templates/dns/createNameServer.html:36
+#: emailMarketing/templates/emailMarketing/website.html:318
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51
+#: websiteFunctions/templates/websiteFunctions/website.html:280
+msgid "Domain Name"
+msgstr "ডোমেইনের নাম"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:152
+#: dns/templates/dns/addDeleteDNSRecords.html:331
+msgid "Priority"
+msgstr "প্রায়োরিটি"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:181
+msgid "Policy"
+msgstr "পলিসি"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:205
+msgid "Text"
+msgstr "টেক্সট"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:229
+msgid "SOA Value"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:253
+msgid "Name server"
+msgstr "নেম সার্ভার"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:276
+msgid "Prioirty"
+msgstr "প্রায়োরিটি"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:281
+msgid "Content"
+msgstr "কন্টেন্ট"
+
+#: dns/templates/dns/addDeleteDNSRecords.html:359
+msgid "Cannot fetch records. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:363
+msgid "Cannot add record. Error message: "
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:371
+msgid "Record Successfully Deleted"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:375
+msgid "Cannot delete record. Error message:"
+msgstr ""
+
+#: dns/templates/dns/addDeleteDNSRecords.html:379
+msgid "Record Successfully Added."
+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
+#: userManagment/templates/userManagment/modifyUser.html:19
+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/configureDefaultNameServers.html:68
+#: emailMarketing/templates/emailMarketing/website.html:656
+#: emailMarketing/templates/emailMarketing/website.html:716
+#: firewall/templates/firewall/secureSSH.html:158
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:346
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:406
+#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55
+#: websiteFunctions/templates/websiteFunctions/website.html:604
+#: websiteFunctions/templates/websiteFunctions/website.html:654
+msgid "Save"
+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 (Back up)"
+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
+#: userManagment/templates/userManagment/createACL.html:230
+#: userManagment/templates/userManagment/modifyACL.html:234
+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:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:51
+#: emailMarketing/templates/emailMarketing/sendEmails.html:51
+#: ftp/templates/ftp/deleteFTPAccount.html:73
+#: mailServer/templates/mailServer/deleteEmailAccount.html:82
+#: packages/templates/packages/deletePackage.html:47
+#: userManagment/templates/userManagment/deleteACL.html:49
+#: userManagment/templates/userManagment/deleteUser.html:51
+#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51
+msgid "Are you sure?"
+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 ""
+
+#: 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
+msgid "Manage containers on server"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:23
+msgid "Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+msgid "Unlisted Containers"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/listContainers.html:85
+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/createWebsite.html:40
+#: 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
+msgid "Memory limit"
+msgstr "মেমোরি লিমিট"
+
+#: dockerManager/templates/dockerManager/runContainer.html:104
+#: dockerManager/templates/dockerManager/viewContainer.html:250
+msgid "ENV"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:125
+#: dockerManager/templates/dockerManager/viewContainer.html:283
+msgid "Map Volumes"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/runContainer.html:153
+#: dockerManager/templates/dockerManager/viewContainer.html:310
+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/runContainer.html:196
+#: emailMarketing/templates/emailMarketing/createEmailList.html:59
+#: emailMarketing/templates/emailMarketing/manageLists.html:100
+#: emailMarketing/templates/emailMarketing/sendEmails.html:135
+#: emailMarketing/templates/emailMarketing/website.html:431
+#: managePHP/templates/managePHP/installExtensions.html:103
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:146
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:137
+#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74
+#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90
+#: websiteFunctions/templates/websiteFunctions/website.html:394
+msgid "Go Back"
+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
+msgid "Currently managing: "
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:24
+msgid "Container Information"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:37
+msgid "Memory Usage"
+msgstr ""
+
+#: dockerManager/templates/dockerManager/viewContainer.html:68
+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
+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
+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/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:44
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43
+#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78
+#: userManagment/templates/userManagment/createUser.html:76
+#: userManagment/templates/userManagment/listUsers.html:32
+#: userManagment/templates/userManagment/userProfile.html:36
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:69
+msgid "Username"
+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:234
+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:233
+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:28
+#: emailMarketing/templates/emailMarketing/sendEmails.html:71
+msgid "Select List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:41
+msgid "Delete This List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:48
+msgid "You are doing to delete this list.."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:54
+#: emailMarketing/templates/emailMarketing/sendEmails.html:54
+#: emailMarketing/templates/emailMarketing/website.html:484
+#: filemanager/templates/filemanager/index.html:417
+#: filemanager/templates/filemanager/index.html:460
+#: filemanager/templates/filemanager/index.html:523
+#: filemanager/templates/filemanager/index.html:558
+#: filemanager/templates/filemanager/index.html:588
+#: filemanager/templates/filemanager/index.html:649
+#: websiteFunctions/templates/websiteFunctions/website.html:447
+msgid "Close"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:55
+#: emailMarketing/templates/emailMarketing/sendEmails.html:55
+#: filemanager/templates/filemanager/index.html:416
+msgid "Confirm"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:63
+msgid "Verify This List"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:66
+msgid "Add More Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:83
+msgid "Load Emails"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:142
+msgid "email"
+msgstr "ইমেইল"
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:143
+msgid "Verification Status"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/manageLists.html:144
+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
+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
+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:36
+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:956
+#: websiteFunctions/templates/websiteFunctions/website.html:960
+#: websiteFunctions/templates/websiteFunctions/website.html:961
+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:677
+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:154
+msgid "Total Emails"
+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:42
+#: websiteFunctions/templates/websiteFunctions/website.html:42
+msgid "Resource"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:41
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:44
+#: websiteFunctions/templates/websiteFunctions/website.html:44
+msgid "Allowed"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:63
+#: emailMarketing/templates/emailMarketing/website.html:89
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:66
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:92
+#: websiteFunctions/templates/websiteFunctions/website.html:64
+#: websiteFunctions/templates/websiteFunctions/website.html:86
+msgid "Bandwidth Usage"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:124
+#: emailMarketing/templates/emailMarketing/website.html:127
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:123
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:127
+#: websiteFunctions/templates/websiteFunctions/website.html:112
+#: websiteFunctions/templates/websiteFunctions/website.html:116
+msgid "Load Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:128
+#: serverLogs/templates/serverLogs/accessLogs.html:16
+#: serverLogs/templates/serverLogs/index.html:25
+#: serverLogs/templates/serverLogs/index.html:28
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:128
+#: websiteFunctions/templates/websiteFunctions/website.html:117
+msgid "Access Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:135
+#: emailMarketing/templates/emailMarketing/website.html:138
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:133
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:137
+#: websiteFunctions/templates/websiteFunctions/website.html:121
+#: websiteFunctions/templates/websiteFunctions/website.html:125
+msgid "Load Error Logs"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:150
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:147
+#: websiteFunctions/templates/websiteFunctions/website.html:133
+msgid "Logs Fetched"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:155
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:152
+#: websiteFunctions/templates/websiteFunctions/website.html:136
+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:176
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:219
+#: websiteFunctions/templates/websiteFunctions/website.html:154
+#: websiteFunctions/templates/websiteFunctions/website.html:199
+msgid "Next"
+msgstr "পরবর্তী"
+
+#: emailMarketing/templates/emailMarketing/website.html:181
+#: emailMarketing/templates/emailMarketing/website.html:223
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:178
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:221
+#: websiteFunctions/templates/websiteFunctions/website.html:156
+#: websiteFunctions/templates/websiteFunctions/website.html:201
+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:225
+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:230
+#: websiteFunctions/templates/websiteFunctions/website.html:233
+#: websiteFunctions/templates/websiteFunctions/website.html:234
+#: websiteFunctions/templates/websiteFunctions/website.html:235
+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:240
+#: websiteFunctions/templates/websiteFunctions/website.html:241
+#: websiteFunctions/templates/websiteFunctions/website.html:244
+#: websiteFunctions/templates/websiteFunctions/website.html:245
+#: websiteFunctions/templates/websiteFunctions/website.html:246
+#: websiteFunctions/templates/websiteFunctions/website.html:263
+#: websiteFunctions/templates/websiteFunctions/website.html:266
+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:251
+#: websiteFunctions/templates/websiteFunctions/website.html:252
+#: websiteFunctions/templates/websiteFunctions/website.html:255
+#: websiteFunctions/templates/websiteFunctions/website.html:256
+#: websiteFunctions/templates/websiteFunctions/website.html:257
+msgid "Domain Alias"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:299
+#: emailMarketing/templates/emailMarketing/website.html:304
+#: websiteFunctions/templates/websiteFunctions/website.html:262
+#: websiteFunctions/templates/websiteFunctions/website.html:267
+msgid "Add new Cron Job"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:305
+#: websiteFunctions/templates/websiteFunctions/website.html:268
+msgid "Cron Jobs"
+msgstr "ক্রন জব"
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:295
+msgid "This path is relative to: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:332
+#: websiteFunctions/templates/websiteFunctions/website.html:295
+msgid "Leave empty to set default."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:336
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57
+#: websiteFunctions/templates/websiteFunctions/website.html:299
+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:177
+#: managePHP/templates/managePHP/installExtensions.html:29
+#: tuning/templates/tuning/phpTuning.html:166
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:480
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74
+#: websiteFunctions/templates/websiteFunctions/website.html:304
+#: websiteFunctions/templates/websiteFunctions/website.html:737
+msgid "Select PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:354
+#: packages/templates/packages/createPackage.html:84
+#: packages/templates/packages/modifyPackage.html:87
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:75
+#: websiteFunctions/templates/websiteFunctions/website.html:317
+msgid "Additional Features"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:388
+#: websiteFunctions/templates/websiteFunctions/website.html:351
+msgid "Create Domain"
+msgstr "ডোমেইন তৈরি করুন"
+
+#: emailMarketing/templates/emailMarketing/website.html:415
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140
+#: websiteFunctions/templates/websiteFunctions/website.html:378
+msgid "Website succesfully created."
+msgstr "ওয়েবসাইট সফলভাবে তৈরি করা হয়েছে।"
+
+#: emailMarketing/templates/emailMarketing/website.html:449
+#: websiteFunctions/templates/websiteFunctions/website.html:412
+msgid "PHP Version Changed to:"
+msgstr "পিএইচপি সংস্করণ পরিবর্তিত হয়েছে:"
+
+#: emailMarketing/templates/emailMarketing/website.html:453
+#: websiteFunctions/templates/websiteFunctions/website.html:416
+msgid "Deleted:"
+msgstr "ডিলিটেড:"
+
+#: emailMarketing/templates/emailMarketing/website.html:457
+#: websiteFunctions/templates/websiteFunctions/website.html:420
+msgid "SSL Issued:"
+msgstr "এসএসএল ইস্যুকৃত:"
+
+#: emailMarketing/templates/emailMarketing/website.html:461
+#: websiteFunctions/templates/websiteFunctions/website.html:424
+msgid "Changes applied successfully."
+msgstr "পরিবর্তনসমূহ সফলভাবে প্রয়োগ করা হয়েছে।"
+
+#: emailMarketing/templates/emailMarketing/website.html:528
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53
+#: websiteFunctions/templates/websiteFunctions/website.html:492
+msgid "Issue"
+msgstr "ইস্যু"
+
+#: emailMarketing/templates/emailMarketing/website.html:558
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:251
+#: websiteFunctions/templates/websiteFunctions/website.html:520
+msgid "Configurations"
+msgstr "কনফিগারেশন"
+
+#: emailMarketing/templates/emailMarketing/website.html:568
+#: emailMarketing/templates/emailMarketing/website.html:572
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:259
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:263
+#: websiteFunctions/templates/websiteFunctions/website.html:526
+#: websiteFunctions/templates/websiteFunctions/website.html:530
+msgid "Edit vHost Main Configurations"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:573
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:264
+#: websiteFunctions/templates/websiteFunctions/website.html:531
+msgid "vHost Conf"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:582
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:272
+#: websiteFunctions/templates/websiteFunctions/website.html:537
+msgid "Add Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:586
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:276
+#: websiteFunctions/templates/websiteFunctions/website.html:541
+msgid "Rewrite Rules (.htaccess)"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:587
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:277
+#: websiteFunctions/templates/websiteFunctions/website.html:542
+msgid "Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:595
+#: emailMarketing/templates/emailMarketing/website.html:598
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:284
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:288
+#: websiteFunctions/templates/websiteFunctions/website.html:547
+#: websiteFunctions/templates/websiteFunctions/website.html:550
+msgid "Add Your Own SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:599
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:289
+#: websiteFunctions/templates/websiteFunctions/website.html:551
+msgid "Add SSL"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:607
+#: emailMarketing/templates/emailMarketing/website.html:610
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:296
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:300
+#: websiteFunctions/templates/websiteFunctions/website.html:556
+#: websiteFunctions/templates/websiteFunctions/website.html:559
+msgid "Change PHP Version"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:611
+#: emailMarketing/templates/emailMarketing/website.html:815
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:301
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:501
+#: websiteFunctions/templates/websiteFunctions/website.html:560
+#: websiteFunctions/templates/websiteFunctions/website.html:758
+msgid "Change PHP"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:623
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:313
+#: websiteFunctions/templates/websiteFunctions/website.html:571
+msgid "SSL Saved"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:628
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:318
+#: websiteFunctions/templates/websiteFunctions/website.html:576
+msgid "Could not save SSL. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:678
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:368
+#: websiteFunctions/templates/websiteFunctions/website.html:619
+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:373
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:387
+#: websiteFunctions/templates/websiteFunctions/website.html:623
+#: websiteFunctions/templates/websiteFunctions/website.html:636
+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:383
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:439
+#: websiteFunctions/templates/websiteFunctions/website.html:632
+#: websiteFunctions/templates/websiteFunctions/website.html:699
+msgid "Configurations saved."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:734
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:424
+msgid "Current rewrite rules in the file fetched."
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:743
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:429
+#: websiteFunctions/templates/websiteFunctions/website.html:690
+msgid "Could not fetch current rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:757
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:443
+#: websiteFunctions/templates/websiteFunctions/website.html:703
+msgid "Could not save rewrite rules. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:776
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:462
+#: websiteFunctions/templates/websiteFunctions/website.html:721
+msgid "Save Rewrite Rules"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:825
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:511
+#: websiteFunctions/templates/websiteFunctions/website.html:768
+msgid "Failed to change PHP version. Error message:"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:830
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:516
+#: websiteFunctions/templates/websiteFunctions/website.html:773
+msgid "PHP successfully changed for: "
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:855
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:541
+#: websiteFunctions/templates/websiteFunctions/website.html:795
+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:549
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:552
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:553
+#: websiteFunctions/templates/websiteFunctions/website.html:800
+#: websiteFunctions/templates/websiteFunctions/website.html:803
+#: websiteFunctions/templates/websiteFunctions/website.html:804
+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:560
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:563
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:604
+#: websiteFunctions/templates/websiteFunctions/website.html:809
+#: websiteFunctions/templates/websiteFunctions/website.html:812
+#: websiteFunctions/templates/websiteFunctions/website.html:845
+msgid "open_basedir Protection"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:878
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:564
+#: websiteFunctions/templates/websiteFunctions/website.html:813
+msgid "open_basedir"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:890
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:577
+#: websiteFunctions/templates/websiteFunctions/website.html:825
+msgid "Create FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:902
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:589
+#: websiteFunctions/templates/websiteFunctions/website.html:834
+msgid "Delete FTP Acct"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:939
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:628
+#: websiteFunctions/templates/websiteFunctions/website.html:868
+msgid "Apply Changes"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:951
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:640
+#: websiteFunctions/templates/websiteFunctions/website.html:880
+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:915
+#: websiteFunctions/templates/websiteFunctions/website.html:919
+#: websiteFunctions/templates/websiteFunctions/website.html:920
+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:925
+#: websiteFunctions/templates/websiteFunctions/website.html:929
+#: websiteFunctions/templates/websiteFunctions/website.html:930
+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:935
+#: websiteFunctions/templates/websiteFunctions/website.html:939
+#: websiteFunctions/templates/websiteFunctions/website.html:940
+msgid "SMTP Hosts"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1019
+#: emailMarketing/templates/emailMarketing/website.html:1022
+#: websiteFunctions/templates/websiteFunctions/website.html:945
+#: websiteFunctions/templates/websiteFunctions/website.html:950
+msgid "Compose Message"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1023
+#: websiteFunctions/templates/websiteFunctions/website.html:951
+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:666
+#: websiteFunctions/templates/websiteFunctions/website.html:977
+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:677
+#: websiteFunctions/templates/websiteFunctions/website.html:985
+#: websiteFunctions/templates/websiteFunctions/website.html:989
+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
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:685
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:689
+#: websiteFunctions/templates/websiteFunctions/website.html:996
+#: websiteFunctions/templates/websiteFunctions/website.html:1000
+msgid "Install Joomla with LSCache"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1080
+#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:690
+#: websiteFunctions/templates/websiteFunctions/website.html:1001
+msgid "Joomla"
+msgstr "জুমলা"
+
+#: emailMarketing/templates/emailMarketing/website.html:1089
+#: emailMarketing/templates/emailMarketing/website.html:1093
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:697
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:701
+#: websiteFunctions/templates/websiteFunctions/website.html:1007
+#: websiteFunctions/templates/websiteFunctions/website.html:1011
+msgid "Attach Git with this website!"
+msgstr ""
+
+#: emailMarketing/templates/emailMarketing/website.html:1094
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:702
+#: websiteFunctions/templates/websiteFunctions/website.html:1012
+msgid "Git"
+msgstr "গিট"
+
+#: emailMarketing/templates/emailMarketing/website.html:1103
+#: emailMarketing/templates/emailMarketing/website.html:1107
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:711
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:715
+#: websiteFunctions/templates/websiteFunctions/website.html:1018
+#: websiteFunctions/templates/websiteFunctions/website.html:1022
+msgid "Install Prestashop"
+msgstr "প্রেস্তাসপ ইন্সটল করুন"
+
+#: emailMarketing/templates/emailMarketing/website.html:1108
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:716
+#: websiteFunctions/templates/websiteFunctions/website.html:1023
+msgid "Prestashop"
+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: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/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
+msgid "Failed to start installation, Error message: "
+msgstr ""
+
+#: 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/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:87
+#: firewall/templates/firewall/secureSSH.html:172
+#: firewall/templates/firewall/spamassassin.html:47
+#: firewall/templates/firewall/spamassassin.html:177
+#: mailServer/templates/mailServer/dkimManager.html:44
+#: managePHP/templates/managePHP/editPHPConfig.html:157
+#: managePHP/templates/managePHP/editPHPConfig.html:223
+#: 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 ""
+
+#: 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
+msgid "Installation failed."
+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: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/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
+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:58
+#: emailPremium/templates/emailPremium/emailPage.html:66
+#: filemanager/templates/filemanager/index.html:79
+#: filemanager/templates/filemanager/index.html:699
+#: packages/templates/packages/listPackages.html:60
+#: userManagment/templates/userManagment/listUsers.html:51
+#: websiteFunctions/templates/websiteFunctions/listCron.html:66
+msgid "Edit"
+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/emailLimits.html:164
+#: emailPremium/templates/emailPremium/listDomains.html:67
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:207
+msgid "Manage"
+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/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:40
+#: manageServices/templates/manageServices/managePostfix.html:41
+#: manageServices/templates/manageServices/managePowerDNS.html:112
+#: manageServices/templates/manageServices/managePureFtpd.html:41
+#| msgid "Save changes."
+msgid "Save changes"
+msgstr ""
+
+#: emailPremium/templates/emailPremium/policyServer.html:52
+#: firewall/templates/firewall/secureSSH.html:78
+#: mailServer/templates/mailServer/dkimManager.html:40
+#: managePHP/templates/managePHP/editPHPConfig.html:148
+#: 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 ""
+
+#: filemanager/templates/filemanager/index.html:5
+msgid "File Manager - CyberPanel"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:54
+msgid " File Manager"
+msgstr "ফাইল ম্যানেজার"
+
+#: filemanager/templates/filemanager/index.html:58
+#: filemanager/templates/filemanager/index.html:197
+#: filemanager/templates/filemanager/index.html:227
+msgid "Upload"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:61
+msgid "New File"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:64
+msgid "New Folder"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:70
+#: filemanager/templates/filemanager/index.html:557
+#: filemanager/templates/filemanager/index.html:693
+msgid "Copy"
+msgstr "কপি"
+
+#: filemanager/templates/filemanager/index.html:73
+#: filemanager/templates/filemanager/index.html:522
+#: filemanager/templates/filemanager/index.html:691
+msgid "Move"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:76
+#: filemanager/templates/filemanager/index.html:587
+#: filemanager/templates/filemanager/index.html:694
+msgid "Rename"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:82
+#: filemanager/templates/filemanager/index.html:432
+#: filemanager/templates/filemanager/index.html:459
+#: filemanager/templates/filemanager/index.html:697
+msgid "Compress"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:85
+#: filemanager/templates/filemanager/index.html:487
+#: filemanager/templates/filemanager/index.html:698
+msgid "Extract"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:88
+msgid "Fix Permissions"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:113
+msgid "Current Path"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:138
+msgid "Back"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:142
+#: 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
+#: websiteFunctions/templates/websiteFunctions/listCron.html:36
+msgid "Refresh"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:146
+msgid "Select All"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:150
+msgid "UnSelect All"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:159
+msgid "Size (KB)"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:160
+msgid "Last Modified"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:161
+msgid "Permissions"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:181
+msgid "Upload File"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:181
+msgid "Upload Limits"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:187
+msgid "Upload queue"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:188
+msgid "Queue length:"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:192
+msgid "Drop"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:193
+msgid "Drop Files here to upload them."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:205
+msgid "Progress"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:233
+msgid "Remove"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:243
+msgid "Queue progress:"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:252
+msgid "can not be uploaded, Error message:"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:256
+msgid "Upload all"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:259
+msgid "Cancel all"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:262
+msgid "Remove all"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:298
+msgid "File Successfully saved."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:305
+#: firewall/templates/firewall/secureSSH.html:68
+#: managePHP/templates/managePHP/editPHPConfig.html:138
+#: managePHP/templates/managePHP/editPHPConfig.html:205
+#: userManagment/templates/userManagment/apiAccess.html:53
+#: userManagment/templates/userManagment/modifyACL.html:436
+#: userManagment/templates/userManagment/resellerCenter.html:58
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42
+msgid "Save Changes"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:322
+msgid "Create new folder!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:330
+msgid "New Folder Name"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:332
+msgid "Folder will be created in your current directory"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:334
+msgid "Create Folder"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:347
+msgid "Folder Successfully created."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:366
+msgid "Create new file!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:374
+msgid "New File Name"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:376
+msgid ""
+"File will be created in your current directory, if it already exists it will "
+"not overwirte."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:378
+msgid "Create File"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:391
+msgid "File Successfully created."
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:407
+msgid "Confirm Deletion!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:440
+msgid "List of files/folder!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:444
+msgid "Compressed File Name"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:446
+msgid "Enter without extension name!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:450
+msgid "Compression Type"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:475
+msgid "Extracting"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:483
+msgid "Extract in"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:485
+msgid "You can enter . to extract in current directory!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:503
+msgid "Move Files"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:511
+#: filemanager/templates/filemanager/index.html:546
+msgid "List of files/folders!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:515
+msgid "Move to"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:517
+msgid "Enter a path to move your files!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:538
+msgid "Copy Files"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:550
+msgid "Copy to"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:552
+msgid "Enter a path to copy your files to!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:572
+msgid "Renaming"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:580
+msgid "New Name"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:582
+msgid "Enter new name of file!"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:602
+msgid "Changing permissions for"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:611
+msgid "Mode"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:612
+#: serverStatus/templates/serverStatus/topProcesses.html:193
+msgid "User"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:613
+msgid "Group"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:614
+msgid "World"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:619
+msgid "Read"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:625
+msgid "Write"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:631
+msgid "Execute"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:647
+#: filemanager/templates/filemanager/index.html:695
+msgid "Change Permissions"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:648
+msgid "Change Recursively"
+msgstr ""
+
+#: filemanager/templates/filemanager/index.html:692
+msgid "Download"
+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:66
+msgid "In winter we must protect each other.."
+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 "Comming 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:305
+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/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/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/modSecurityRules.html:58
+msgid "Could not save rules, Error message: "
+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
+#: firewall/templates/firewall/modSecurityRulesPacks.html:71
+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/secureSSH.html:3
+msgid "Secure SSH - CyberPanel"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:13
+msgid "SSH Docs"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:14
+msgid "Secure or harden SSH Configurations."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:28
+#: managePHP/templates/managePHP/editPHPConfig.html:29
+msgid "Basic"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:34
+msgid "SSH Keys"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:47
+msgid "SSH Port"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:56
+msgid "Permit Root Login"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:60
+msgid ""
+"Before disabling root login, make sure you have another account with sudo "
+"priviliges on server."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:82
+msgid "SSH Configurations Saved."
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:121
+msgid "Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:150
+msgid "Add Key"
+msgstr ""
+
+#: firewall/templates/firewall/secureSSH.html:167
+msgid "SSH Key Deleted"
+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/createFTPAccount.html:113
+msgid "Cannot create FTP account. Error message:"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:118
+#: ftp/templates/ftp/createFTPAccount.html:122
+#: ftp/templates/ftp/deleteFTPAccount.html:87
+msgid "FTP Account with username:"
+msgstr ""
+
+#: ftp/templates/ftp/createFTPAccount.html:119
+#: ftp/templates/ftp/createFTPAccount.html:123
+#: userManagment/templates/userManagment/createUser.html:129
+msgid "is successfully created."
+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 " 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/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:27
+#: mailServer/templates/mailServer/createEmailAccount.html:27
+#: mailServer/templates/mailServer/deleteEmailAccount.html:27
+#: mailServer/templates/mailServer/emailForwarding.html:26
+#: mailServer/templates/mailServer/listEmails.html:27
+msgid "Postfix is disabled."
+msgstr "পোস্টফিক্স ডিসেবল করা আছে।"
+
+#: 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/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:106
+msgid "Cannot create email account. Error message:"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:111
+msgid "Email with id :"
+msgstr ""
+
+#: mailServer/templates/mailServer/createEmailAccount.html:112
+msgid " is 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 "Email with id : {$ deletedID $} is 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:67
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:104
+#: 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 Docs"
+msgid "Forwarding Options"
+msgstr ""
+
+#: mailServer/templates/mailServer/emailForwarding.html:97
+#: mailServer/templates/mailServer/emailForwarding.html:118
+msgid "Source"
+msgstr "সোর্স"
+
+#: mailServer/templates/mailServer/emailForwarding.html:101
+msgid "or path to the program"
+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 FTP Accounts - CyberPanel"
+msgid "List Email Accounts - CyberPanel"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:13
+#: mailServer/templates/mailServer/listEmails.html:19
+#| msgid "List FTP Accounts"
+msgid "List Email Accounts"
+msgstr ""
+
+#: mailServer/templates/mailServer/listEmails.html:14
+#| msgid "List FTP Accounts or change their passwords."
+msgid "List Emails Accounts. Change their passwords or delete them."
+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:152
+#: managePHP/templates/managePHP/editPHPConfig.html:218
+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
+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:255
+#: userManagment/templates/userManagment/modifyUser.html:126
+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:13
+#: manageSSL/templates/manageSSL/sslForHostName.html:13
+#: manageSSL/templates/manageSSL/sslForMailServer.html:13
+msgid "SSL Docs"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:14
+msgid ""
+"This page can be used to issue Let’s Encrypt SSL for existing websites on "
+"server."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:42
+#: manageSSL/templates/manageSSL/sslForHostName.html:42
+#: manageSSL/templates/manageSSL/sslForMailServer.html:40
+msgid "Issue SSL"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:52
+#: manageSSL/templates/manageSSL/sslForHostName.html:52
+#: manageSSL/templates/manageSSL/sslForMailServer.html:50
+msgid "Cannot issue SSL. Error message:"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/manageSSL.html:56
+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:20
+msgid "Issue SSL For Hostname"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:14
+msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForHostName.html:56
+#: manageSSL/templates/manageSSL/sslForHostName.html:60
+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:20
+msgid "Issue SSL For MailServer"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:14
+msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)."
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:54
+msgid "SSL Issued, your mail server now uses Lets Encrypt!"
+msgstr ""
+
+#: manageSSL/templates/manageSSL/sslForMailServer.html:58
+msgid "Could not connect to server, please refresh this page."
+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 "Security Functions"
+msgid "Select Function Mode"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:53
+#| msgid "Name server"
+msgid "Slave Server"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:60
+#| msgid "MailServer SSL"
+msgid "Master Server IP"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:67
+#| msgid "Name server"
+msgid "Slave Server 1"
+msgstr ""
+
+#: manageServices/templates/manageServices/managePowerDNS.html:74
+#| msgid "Name server"
+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
+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
+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
+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:108
+msgid "Cannot create package. Error message:"
+msgstr ""
+
+#: packages/templates/packages/createPackage.html:113
+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"
+msgid " Successfully Deleted."
+msgstr ""
+
+#: packages/templates/packages/index.html:3
+msgid "Packages - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:3
+#| msgid "Packages - CyberPanel"
+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 "Disk Space"
+msgid "Diskspace"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:36
+#| msgid "Create Email Account"
+msgid "Email Accounts"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:38
+msgid "FTPs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:39
+#| msgid "Add Domains"
+msgid "Child Domains"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:40
+msgid "Allow FQDN as Childs"
+msgstr ""
+
+#: packages/templates/packages/listPackages.html:152
+#| msgid "Additional Features"
+msgid "Additional"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:3
+msgid "Modify Package - CyberPanel"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:117
+msgid "Cannot fetch package details. Error message:"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:121
+msgid "Package Details Successfully Fetched"
+msgstr ""
+
+#: packages/templates/packages/modifyPackage.html:125
+msgid "Successfully Modified"
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:15
+#| msgid "List Databases - CyberPanel"
+msgid "List of installed plugins on your CyberPanel."
+msgstr ""
+
+#: pluginHolder/templates/pluginHolder/plugins.html:31
+#| msgid "Latest Version"
+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
+#: serverLogs/templates/serverLogs/errorLogs.html:3
+msgid "Error Logs - CyberPanel"
+msgstr ""
+
+#: serverLogs/templates/serverLogs/emailLogs.html:15
+msgid "Email Logs for main web server."
+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 ""
+
+#: 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:41
+#| msgid "CyberPanel Main Log File"
+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:221
+msgid "LiteSpeed Status:"
+msgstr "লাইটস্পিড স্ট্যাটাস:"
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:16
+#: serverStatus/templates/serverStatus/litespeedStatus.html:222
+msgid ""
+"On this page you can get information regarding your LiteSpeed processes."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:30
+#: serverStatus/templates/serverStatus/litespeedStatus.html:254
+msgid "LiteSpeed Processes"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:37
+#: serverStatus/templates/serverStatus/litespeedStatus.html:261
+msgid "Process ID"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:49
+#: serverStatus/templates/serverStatus/litespeedStatus.html:273
+msgid "Main Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:52
+#: serverStatus/templates/serverStatus/litespeedStatus.html:276
+msgid "lscgid Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:55
+#: serverStatus/templates/serverStatus/litespeedStatus.html:279
+msgid "Worker Process"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:67
+#: serverStatus/templates/serverStatus/litespeedStatus.html:291
+msgid "Reboot Litespeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:73
+#: serverStatus/templates/serverStatus/litespeedStatus.html:297
+msgid "Stop LiteSpeed"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:87
+#: serverStatus/templates/serverStatus/litespeedStatus.html:310
+msgid "Error Occurred. See CyberPanel main log file."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:92
+#: serverStatus/templates/serverStatus/litespeedStatus.html:315
+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:175
+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:193
+msgid "With great wisdom comes great responsibility."
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:329
+msgid "License Manager"
+msgstr "লাইসেন্স ম্যানেজার"
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:336
+#: serverStatus/templates/serverStatus/litespeedStatus.html:340
+#: serverStatus/templates/serverStatus/litespeedStatus.html:341
+msgid "License Status"
+msgstr "লাইসেন্স স্ট্যাটাস"
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:346
+#: serverStatus/templates/serverStatus/litespeedStatus.html:350
+#: serverStatus/templates/serverStatus/litespeedStatus.html:351
+msgid "Change License"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:378
+msgid "New key"
+msgstr ""
+
+#: serverStatus/templates/serverStatus/litespeedStatus.html:388
+msgid "Change Key"
+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
+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:199
+msgid "Time"
+msgstr "সময়"
+
+#: serverStatus/templates/serverStatus/topProcesses.html:200
+#: websiteFunctions/templates/websiteFunctions/listCron.html:51
+#: websiteFunctions/templates/websiteFunctions/listCron.html:126
+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:192
+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:237
+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:185
+msgid "Initial Request Timeout (secs)"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:60
+#: tuning/templates/tuning/phpTuning.html:200
+msgid "Memory Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:67
+#: tuning/templates/tuning/phpTuning.html:207
+msgid "Memory Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:75
+#: tuning/templates/tuning/phpTuning.html:215
+msgid "Process Soft Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:82
+#: tuning/templates/tuning/phpTuning.html:222
+msgid "Process Hard Limit"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:90
+#: tuning/templates/tuning/phpTuning.html:230
+msgid "Persistent Connection"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:106
+#: tuning/templates/tuning/phpTuning.html:246
+msgid "Tune PHP"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:119
+#: tuning/templates/tuning/phpTuning.html:259
+msgid "Cannot tune. Error message:"
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:124
+#: tuning/templates/tuning/phpTuning.html:264
+msgid "Details Successfully fetched."
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:128
+#: tuning/templates/tuning/phpTuning.html:268
+msgid "PHP for "
+msgstr ""
+
+#: tuning/templates/tuning/phpTuning.html:129
+#: tuning/templates/tuning/phpTuning.html:269
+msgid "Successfully tuned."
+msgstr ""
+
+#: userManagment/templates/userManagment/apiAccess.html:3
+#| msgid "Access Logs - CyberPanel"
+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:99
+#: 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:399
+#: userManagment/templates/userManagment/modifyACL.html:403
+msgid "SSL Management"
+msgstr ""
+
+#: userManagment/templates/userManagment/createACL.html:432
+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/createWebsite.html:66
+msgid "Invalid Email"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:68
+#: userManagment/templates/userManagment/listUsers.html:33
+#: 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:85
+msgid "Security Level"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:120
+#: userManagment/templates/userManagment/index.html:49
+#: userManagment/templates/userManagment/index.html:52
+msgid "Create User"
+msgstr ""
+
+#: userManagment/templates/userManagment/createUser.html:128
+#: userManagment/templates/userManagment/modifyUser.html:112
+msgid "Account with username:"
+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 User - CyberPanel"
+msgid "Delete ACL - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/deleteACL.html:13
+#| msgid "This page can be used to suspend/unsuspend website."
+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 Databases - CyberPanel"
+msgid "List Users - CyberPanel"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:14
+msgid "List Users that you own."
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:35
+msgid "ACL"
+msgstr ""
+
+#: userManagment/templates/userManagment/listUsers.html:84
+#: userManagment/templates/userManagment/resellerCenter.html:37
+#| msgid "Select Owner"
+msgid "New Owner"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyACL.html:3
+#| msgid "Modify User - CyberPanel"
+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 configure SpamAssassin settings."
+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:113
+msgid " is successfully modified."
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:117
+msgid "Cannot modify user. Error message:"
+msgstr ""
+
+#: userManagment/templates/userManagment/modifyUser.html:130
+msgid "Details fetched."
+msgstr ""
+
+#: userManagment/templates/userManagment/resellerCenter.html:3
+#| msgid "Restore Website - CyberPanel"
+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/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/createWebsite.html:3
+msgid "Create New Website - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13
+#: websiteFunctions/templates/websiteFunctions/index.html:14
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21
+msgid ""
+"On this page you can launch, list, modify and delete websites from your "
+"server."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20
+msgid "Website Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54
+msgid "Do not enter WWW, it will be auto created!"
+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:29
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105
+msgid "Create Alias"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36
+msgid "Master Domain"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37
+msgid "Alias"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38
+msgid "File System Path"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63
+msgid "Domain Aliases not found."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79
+msgid "Alias Domain"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93
+msgid ""
+"For SSL to work DNS of domain should point to server, otherwise self signed "
+"SSL will be issued, you can add your own SSL later."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114
+msgid "Operation failed. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118
+msgid "Alias successfully created. Refreshing page in 3 seconds..."
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122
+msgid "Operation Successfull."
+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/installPrestaShop.html:20
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20
+msgid "Installation Details"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28
+msgid "Site Name"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35
+msgid "Login User"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42
+msgid "Login Password"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63
+msgid "Database Prefix"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:126
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91
+msgid "Installation failed. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:130
+#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109
+#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95
+msgid "Installation successful. Visit:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:3
+msgid "Install Magento - CyberPanel"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:12
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:724
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:728
+#: websiteFunctions/templates/websiteFunctions/website.html:1029
+#: websiteFunctions/templates/websiteFunctions/website.html:1033
+msgid "Install Magento"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:13
+msgid "One-click Magento Install!"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/installMagento.html:51
+msgid "Admin Username"
+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/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/launchChild.html:32
+msgid "Copy/Sync to Master"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:673
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:678
+#: websiteFunctions/templates/websiteFunctions/website.html:990
+msgid "WP + LSCache"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/launchChild.html:729
+#: websiteFunctions/templates/websiteFunctions/website.html:1034
+msgid "Magento"
+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:37
+msgid "Add Cron"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:46
+#: websiteFunctions/templates/websiteFunctions/listCron.html:95
+msgid "Minute"
+msgstr "মিনিট"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:47
+#: websiteFunctions/templates/websiteFunctions/listCron.html:101
+msgid "Hour"
+msgstr "ঘন্টা"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:48
+msgid "Day of Month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:49
+#: websiteFunctions/templates/websiteFunctions/listCron.html:113
+msgid "Month"
+msgstr "মাস"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:50
+msgid "Day of Week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:79
+msgid "Pre defined"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:82
+msgid "Every minute"
+msgstr "প্রতি মিনিটে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:83
+msgid "Every 5 minutes"
+msgstr "প্রতি ৫ মিনিটে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:84
+msgid "Every 30 minutes"
+msgstr "প্রতি ৩০ মিনিটে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:85
+msgid "Every hour"
+msgstr "প্রতি ঘন্টায়"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:86
+msgid "Every day"
+msgstr "প্রতি দিনে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:87
+msgid "Every week"
+msgstr "প্রতি সপ্তাহে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:88
+msgid "Every month"
+msgstr "প্রতি মাসে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:89
+msgid "Every year"
+msgstr "প্রতি বছরে"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:107
+msgid "Day of month"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:119
+msgid "Day of week"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:135
+msgid "Save edits"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:142
+msgid "Add cron"
+msgstr "ক্রন যোগ করুন"
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:152
+#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102
+msgid "Cannot fetch website details. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:156
+msgid "Unable to add/save Cron. Error message:"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listCron.html:159
+msgid "Cron job saved"
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3
+msgid "Websites Hosted - CyberPanel"
+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:36
+#: websiteFunctions/templates/websiteFunctions/setupGit.html:161
+msgid "Deployment Key"
+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:228
+msgid "Webhook URL"
+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:29
+msgid "SSH user for "
+msgstr ""
+
+#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29
+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:44
+msgid "Suspend"
+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:29
+msgid "Clone/Staging"
+msgstr "ক্লোন/স্টেজিং"
+
+#: websiteFunctions/templates/websiteFunctions/website.html:30
+msgid "Set up SSH Access"
+msgstr "এসএসএইচ একসেস ক্রিয়েট করুন"
+
+#: websiteFunctions/templates/websiteFunctions/website.html:665
+msgid "It is not required to modify rules if you are using OpenLiteSpeed."
+msgstr ""
+
+#, fuzzy
+#~| msgid "Last Name"
+#~ msgid "List"
+#~ msgstr "Фанилия"
+
+#~ msgid ""
+#~ "Could not fetch details, either LiteSpeed is not running or some error "
+#~ "occurred, please see CyberPanel Main log file."
+#~ msgstr ""
+#~ "Детайлите не са извлечени. OpenLiteSpeed или не е стартиран или има "
+#~ "критична грешка. Разгледайте главния Cyberpanel лог за повече информация."
+
+#, fuzzy
+#~| msgid "Schedule Back up"
+#~ msgid "Achedule Back up"
+#~ msgstr "Планирано Архивиране "
+
+#, fuzzy
+#~| msgid "Modify User"
+#~ msgid "Modify"
+#~ msgstr "Промени Потребител"
+
+#~ msgid "Start"
+#~ msgstr "Стартирай"
+
+#~ msgid "Reload"
+#~ msgstr "Презареди"
+
+#~ msgid "CPU Status"
+#~ msgstr "CPU Статус"
+
+#~ msgid "Fullscreen"
+#~ msgstr "Пълен Екран"
+
+#~ msgid "System Status"
+#~ msgstr "Статус"
+
+#~ msgid "Update started..."
+#~ msgstr "Начало на актуализация"
+
+#~ msgid "Update finished..."
+#~ msgstr "Актуализацията приключи"
+
+#~ msgid "Account Type"
+#~ msgstr "Вид на акаунт"
+
+#~ msgid "User Accounts Limit"
+#~ msgstr "Лимити за Потребителски акаунти"
+
+#~ msgid "Only Numbers"
+#~ msgstr "Само Числа"
+
+#~ msgid "Username should be lowercase alphanumeric."
+#~ msgstr "Потребителскоро име трябва да бъде само с малки букви."
+
+#~ msgid "Must contain one number and one special character."
+#~ msgstr "Трябва да съдържа поне един номер и специален символ."
+
+#~ msgid "Cannot create website. Error message:"
+#~ msgstr "Страницата не е създадена, защото:"
+
+#~ msgid "Website with domain"
+#~ msgstr "Страница с домейн"
+
+#~ msgid " is Successfully Created"
+#~ msgstr "е Успешно Създаден"
+
+#~ msgid "Installation successful. To complete the setup visit:"
+#~ msgstr "Инсталацията завърши успешно. "
+
+#, fuzzy
+#~| msgid "Password"
+#~ msgid "Admin Password"
+#~ msgstr "এডমিন পাসওয়ার্ড"
+
+#, fuzzy
+#~| msgid "Database Name"
+#~ msgid "Database prefix"
+#~ msgstr "Име на База от Данни"
+
+#~ msgid "Daily"
+#~ msgstr "Дневно"
+
+#~ msgid "Weekly"
+#~ msgstr "Седмично"
+
+#~ msgid "HTTP Statistics"
+#~ msgstr "HTTP Статистика"
+
+#~ msgid "Available/Max Connections"
+#~ msgstr "Налични/Максимални Връзки"
+
+#~ msgid "Available/Max SSL Connections"
+#~ msgstr "Налични/Максимални SSL Връзки"
+
+#~ msgid "Requests Processing"
+#~ msgstr "Обработвани заявки"
+
+#~ msgid "Total Requests"
+#~ msgstr "Всички Заявки"
+
+#~ msgid "IPV6"
+#~ msgstr "আইপিভি৬"
+
+#~ msgid "Normal User"
+#~ msgstr "Нормален Потребител"
+
+#~ msgid "Edit Virtual Host Main Configurations"
+#~ msgstr "Редактирай Virtual Host Main Configurations"
+
+#~ msgid "Configuration saved. Restart LiteSpeed put them in effect."
+#~ msgstr ""
+#~ "Конфигурацията е запазена. Рестартирайте LiteSpeed, за да влезнат в сила "
+#~ "промените."
diff --git a/loginSystem/templates/loginSystem/login.html b/loginSystem/templates/loginSystem/login.html
index 06aecce9b..1b6da3feb 100755
--- a/loginSystem/templates/loginSystem/login.html
+++ b/loginSystem/templates/loginSystem/login.html
@@ -197,6 +197,7 @@