From d3340c9e480599afc4b3a38325e42cc863854acd Mon Sep 17 00:00:00 2001 From: usmannasir <01-134132-158@student.bahria.edu.pk> Date: Sat, 10 Nov 2018 16:05:40 +0500 Subject: [PATCH] bug fixes and language improvments --- install/install.py | 26 +- install/installCyberPanel.py | 194 ++- install/litespeed/functions.sh | 1364 ++++++++++++++++++++ install/litespeed/httpd.conf | 67 + install/litespeed/httpd_config.xml | 388 ++++++ install/litespeed/install.sh | 506 ++++++++ install/litespeed/modsec.conf | 21 + locale/br/LC_MESSAGES/django.mo | Bin 78018 -> 78018 bytes locale/br/LC_MESSAGES/django.po | 1730 +++++++++++++++++--------- locale/bs/LC_MESSAGES/django.mo | Bin 29275 -> 29275 bytes locale/bs/LC_MESSAGES/django.po | 1836 ++++++++++++++++++--------- locale/cn/LC_MESSAGES/django.mo | Bin 36933 -> 36933 bytes locale/cn/LC_MESSAGES/django.po | 1792 ++++++++++++++++++--------- locale/es/LC_MESSAGES/django.mo | Bin 12723 -> 12723 bytes locale/es/LC_MESSAGES/django.po | 1821 ++++++++++++++++++--------- locale/fr/LC_MESSAGES/django.mo | Bin 64117 -> 64117 bytes locale/fr/LC_MESSAGES/django.po | 1742 +++++++++++++++++--------- locale/gr/LC_MESSAGES/django.mo | Bin 55331 -> 55331 bytes locale/gr/LC_MESSAGES/django.po | 1846 ++++++++++++++++++---------- locale/id/LC_MESSAGES/django.mo | Bin 414 -> 414 bytes locale/id/LC_MESSAGES/django.po | 1634 +++++++++++++++--------- locale/ja/LC_MESSAGES/django.mo | Bin 76815 -> 76396 bytes locale/ja/LC_MESSAGES/django.po | 1769 +++++++++++++++++--------- locale/pl/LC_MESSAGES/django.mo | Bin 68665 -> 69521 bytes locale/pl/LC_MESSAGES/django.po | 1770 +++++++++++++++++--------- locale/pt/LC_MESSAGES/django.mo | Bin 37674 -> 37674 bytes locale/pt/LC_MESSAGES/django.po | 1846 ++++++++++++++++++---------- locale/ru/LC_MESSAGES/django.mo | Bin 55419 -> 55419 bytes locale/ru/LC_MESSAGES/django.po | 1802 ++++++++++++++++++--------- locale/tr/LC_MESSAGES/django.mo | Bin 45262 -> 45262 bytes locale/tr/LC_MESSAGES/django.po | 1789 ++++++++++++++++++--------- locale/vi/LC_MESSAGES/django.mo | Bin 71048 -> 71048 bytes locale/vi/LC_MESSAGES/django.po | 1725 +++++++++++++++++--------- plogical/CyberCPLogFileWriter.py | 7 +- plogical/applicationInstaller.py | 104 +- plogical/processUtilities.py | 6 + plogical/virtualHostUtilities.py | 327 +++-- plogical/website.py | 80 +- serverStatus/serverStatusUtil.py | 44 +- 39 files changed, 18321 insertions(+), 7915 deletions(-) create mode 100644 install/litespeed/functions.sh create mode 100644 install/litespeed/httpd.conf create mode 100644 install/litespeed/httpd_config.xml create mode 100644 install/litespeed/install.sh create mode 100644 install/litespeed/modsec.conf diff --git a/install/install.py b/install/install.py index c1f3afeb4..45a08d50e 100644 --- a/install/install.py +++ b/install/install.py @@ -1436,7 +1436,6 @@ class preFlightsChecks: self.stdOut("Error converting: " + filename + " from centos defaults to ubuntu defaults: " + str(err), 1, 1, os.EX_OSERR) - def setup_postfix_davecot_config(self, mysql): try: logging.InstallLog.writeToFile("Configuring postfix and dovecot...") @@ -3307,7 +3306,6 @@ def get_distro(): return distro - def get_Ubuntu_release(): release = -1 if exists("/etc/lsb-release"): @@ -3328,7 +3326,6 @@ def get_Ubuntu_release(): return release - def main(): parser = argparse.ArgumentParser(description='CyberPanel Installer') @@ -3337,6 +3334,8 @@ def main(): parser.add_argument('--postfix', help='Enable or disable Email Service.') parser.add_argument('--powerdns', help='Enable or disable DNS Service.') parser.add_argument('--ftp', help='Enable or disable ftp Service.') + parser.add_argument('--ent', help='Install LS Ent or OpenLiteSpeed') + parser.add_argument('--serial', help='Install LS Ent or OpenLiteSpeed') args = parser.parse_args() logging.InstallLog.writeToFile("Starting CyberPanel installation..") @@ -3365,6 +3364,20 @@ def main(): mysql = args.mysql preFlightsChecks.stdOut("Dobule MySQL instance version will be installed.") + if args.ent == None: + ent = 0 + else: + if args.ent == 'ols': + ent = 0 + else: + ent = 1 + if args.serial != None: + serial = args.serial + preFlightsChecks.stdOut("LiteSpeed Enterprise Serial detected: " + serial) + else: + preFlightsChecks.stdOut("Installation failed, please specify LiteSpeed Enterprise key using --serial") + os._exit(0) + checks.checkPythonVersion() checks.setup_account_cyberpanel() if distro == centos: @@ -3385,8 +3398,11 @@ def main(): checks.setup_gunicorn() import installCyberPanel + if ent == 0: + installCyberPanel.Main(cwd, mysql, distro, ent) + else: + installCyberPanel.Main(cwd, mysql, distro, ent, serial) - installCyberPanel.Main(cwd, mysql, distro) checks.fix_selinux_issue() checks.install_psmisc() checks.install_postfix_davecot() @@ -3399,8 +3415,6 @@ def main(): checks.install_rsync() checks.downoad_and_install_raindloop() - - checks.download_install_phpmyadmin() checks.installFirewalld() diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index d591262cd..d1092672f 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -20,48 +20,102 @@ class InstallCyberPanel: mysql_Root_password = "" mysqlPassword = "" - def __init__(self, rootPath, cwd, distro): + def __init__(self, rootPath, cwd, distro, ent, serial = None): self.server_root_path = rootPath self.cwd = cwd self.distro = distro + self.ent = ent + self.serial = serial @staticmethod def stdOut(message, log=0, exit=0, code=os.EX_OK): install.preFlightsChecks.stdOut(message, log, exit, code) - def installLiteSpeed(self): - try: - count = 0 - while (1): + if self.ent == 0: + try: + count = 0 + while (1): - if self.distro == ubuntu: - command = "apt-get -y install openlitespeed" - else: - command = 'yum install -y openlitespeed' - cmd = shlex.split(command) - res = subprocess.call(cmd) + if self.distro == ubuntu: + command = "apt-get -y install openlitespeed" + else: + command = 'yum install -y openlitespeed' + cmd = shlex.split(command) + res = subprocess.call(cmd) - if res == 1: - count = count + 1 - InstallCyberPanel.stdOut("Trying to install OpenLiteSpeed, trying again, try number: " + str(count)) - if count == 3: - logging.InstallLog.writeToFile("Failed to install OpenLiteSpeed, exiting installer! [installLiteSpeed]") - InstallCyberPanel.stdOut("Installation failed, consult: /var/log/installLogs.txt") + if res == 1: + count = count + 1 + InstallCyberPanel.stdOut("Trying to install OpenLiteSpeed, trying again, try number: " + str(count)) + if count == 3: + logging.InstallLog.writeToFile("Failed to install OpenLiteSpeed, exiting installer! [installLiteSpeed]") + InstallCyberPanel.stdOut("Installation failed, consult: /var/log/installLogs.txt") + os._exit(0) + else: + logging.InstallLog.writeToFile("OpenLiteSpeed successfully installed!") + InstallCyberPanel.stdOut("OpenLiteSpeed successfully installed!") + break + except OSError, msg: + logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") + return 0 + except ValueError, msg: + logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") + return 0 + + return 1 + else: + try: + count = 0 + while (1): + + command = 'wget https://www.litespeedtech.com/packages/5.0/lsws-5.3-ent-x86_64-linux.tar.gz' + cmd = shlex.split(command) + res = subprocess.call(cmd) + + command = 'tar zxf lsws-5.3-ent-x86_64-linux.tar.gz' + subprocess.call(shlex.split(command)) + + writeSerial = open('lsws-5.3/serial.no', 'w') + writeSerial.writelines(self.serial) + writeSerial.close() + + shutil.copy('litespeed/install.sh', 'lsws-5.3/') + shutil.copy('litespeed/functions.sh', 'lsws-5.3/') + + os.chdir('lsws-5.3') + + command = 'chmod +x install.sh' + subprocess.call(shlex.split(command)) + + command = 'chmod +x functions.sh' + subprocess.call(shlex.split(command)) + + command = './install.sh' + res = subprocess.call(shlex.split(command)) + + if res == 1: + logging.InstallLog.writeToFile( + "Failed to install LiteSpeed Enterprise! [installLiteSpeed]") + InstallCyberPanel.stdOut("Failed to install LiteSpeed Enterprise!") os._exit(0) - else: - logging.InstallLog.writeToFile("OpenLiteSpeed successfully installed!") - InstallCyberPanel.stdOut("OpenLiteSpeed successfully installed!") + + os.chdir(self.cwd) + confPath = '/usr/local/lsws/conf/' + shutil.copy('litespeed/httpd_config.xml', confPath) + shutil.copy('litespeed/modsec.conf', confPath) + shutil.copy('litespeed/httpd.conf', confPath) + + command = 'chown -R lsadm:lsadm ' + confPath + subprocess.call(shlex.split(command)) break + except OSError, msg: + logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") + return 0 + except ValueError, msg: + logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") + return 0 - except OSError, msg: - logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") - return 0 - except ValueError, msg: - logging.InstallLog.writeToFile(str(msg) + " [installLiteSpeed]") - return 0 - - return 1 + return 1 def reStartLiteSpeed(self): @@ -163,7 +217,6 @@ class InstallCyberPanel: return self.reStartLiteSpeed() - def changePortTo80(self): try: InstallCyberPanel.stdOut("Changing default port to 80..") @@ -191,36 +244,63 @@ class InstallCyberPanel: return self.reStartLiteSpeed() def setupFileManager(self): - try: - logging.InstallLog.writeToFile("Setting up Filemanager files..") - InstallCyberPanel.stdOut("Setting up Filemanager files..") + if self.ent == 0: + try: + logging.InstallLog.writeToFile("Setting up Filemanager files..") + InstallCyberPanel.stdOut("Setting up Filemanager files..") - os.chdir(self.cwd) + os.chdir(self.cwd) - fileManagerPath = self.server_root_path+"Example/html/FileManager" - shutil.copytree("FileManager",fileManagerPath) + fileManagerPath = self.server_root_path+"Example/html/FileManager" + shutil.copytree("FileManager",fileManagerPath) - ## remove unnecessary files + ## remove unnecessary files - fileManagerPath = self.server_root_path + "Example/html/" + fileManagerPath = self.server_root_path + "Example/html/" - shutil.rmtree(fileManagerPath+"protected") - shutil.rmtree(fileManagerPath+"blocked") - os.remove(fileManagerPath+"phpinfo.php") - os.remove(fileManagerPath + "upload.html") - os.remove(fileManagerPath + "upload.php") + shutil.rmtree(fileManagerPath+"protected") + shutil.rmtree(fileManagerPath+"blocked") + os.remove(fileManagerPath+"phpinfo.php") + os.remove(fileManagerPath + "upload.html") + os.remove(fileManagerPath + "upload.php") - logging.InstallLog.writeToFile("Filemanager files are set!") - InstallCyberPanel.stdOut("Filemanager files are set!") + logging.InstallLog.writeToFile("Filemanager files are set!") + InstallCyberPanel.stdOut("Filemanager files are set!") - except OSError, msg: - logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") - return 0 - except ValueError, msg: - logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") - return 0 + except OSError, msg: + logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") + return 0 + except ValueError, msg: + logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") + return 0 - return 1 + return 1 + else: + try: + logging.InstallLog.writeToFile("Setting up Filemanager files..") + InstallCyberPanel.stdOut("Setting up Filemanager files..") + + os.chdir(self.cwd) + + fileManagerPath = self.server_root_path + "/FileManager" + shutil.copytree("FileManager", fileManagerPath) + + ## remove unnecessary files + + command = 'chmod -R 777 ' + fileManagerPath + subprocess.call(shlex.split(command)) + + logging.InstallLog.writeToFile("Filemanager files are set!") + InstallCyberPanel.stdOut("Filemanager files are set!") + + except OSError, msg: + logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") + return 0 + except ValueError, msg: + logging.InstallLog.writeToFile(str(msg) + " [setupFileManager]") + return 0 + + return 1 def installAllPHPVersions(self): try: @@ -305,7 +385,6 @@ class InstallCyberPanel: return 1 - def setup_mariadb_repo(self): try: @@ -648,7 +727,6 @@ class InstallCyberPanel: self.stdOut("MariaDB is now setup so it can support Cyberpanel's needs") - def installPureFTPD(self): try: @@ -1256,7 +1334,7 @@ class InstallCyberPanel: -def Main(cwd, mysql, distro): +def Main(cwd, mysql, distro, ent): InstallCyberPanel.mysqlPassword = randomPassword.generate_pass() InstallCyberPanel.mysql_Root_password = randomPassword.generate_pass() @@ -1276,13 +1354,15 @@ def Main(cwd, mysql, distro): else: InstallCyberPanel.mysqlPassword = InstallCyberPanel.mysql_Root_password - installer = InstallCyberPanel("/usr/local/lsws/",cwd, distro) + installer = InstallCyberPanel("/usr/local/lsws/",cwd, distro, ent) installer.installLiteSpeed() - installer.changePortTo80() + if ent == 0: + installer.changePortTo80() installer.setupFileManager() installer.installAllPHPVersions() - installer.fix_ols_configs() + if ent == 0: + installer.fix_ols_configs() installer.setup_mariadb_repo() diff --git a/install/litespeed/functions.sh b/install/litespeed/functions.sh new file mode 100644 index 000000000..008ee5323 --- /dev/null +++ b/install/litespeed/functions.sh @@ -0,0 +1,1364 @@ + +#!/bin/sh + + +init() +{ + LSINSTALL_DIR=`pwd` + VERSION=`cat VERSION` + + export LSINSTALL_DIR + + DIR_MOD=755 + SDIR_MOD=700 + EXEC_MOD=555 + CONF_MOD=600 + DOC_MOD=644 + + INST_USER=`id` + INST_USER=`expr "$INST_USER" : 'uid=.*(\(.*\)) gid=.*'` + + SYS_ARCH=`uname -p` + SYS_NAME=`uname -s` + if [ "x$SYS_NAME" = "xFreeBSD" ] || [ "x$SYS_NAME" = "xNetBSD" ] || [ "x$SYS_NAME" = "xDarwin" ] ; then + PS_CMD="ps -ax" + ID_GROUPS="id" + TEST_BIN="/bin/test" + ROOTGROUP="wheel" + else + PS_CMD="ps -ef" + ID_GROUPS="id -a" + TEST_BIN="/usr/bin/test" + ROOTGROUP="root" + fi + SETUP_PHP=0 + SET_LOGIN=0 + ADMIN_PORT=7080 + INSTALL_TYPE="upgrade" + SERVER_NAME=`uname -n` + ADMIN_EMAIL="root@localhost" + AP_PORT_OFFSET=2000 + PHP_SUEXEC=2 + + WS_USER=nobody + WS_GROUP=nobody + + DIR_OWN="nobody:nobody" + CONF_OWN="nobody:nobody" + + BUILD_ROOT="$LSWS_HOME/../../../" + WHM_CGIDIR="$BUILD_ROOT/usr/local/cpanel/whostmgr/docroot/cgi" + if [ -d "$WHM_CGIDIR" ] ; then + HOST_PANEL="cpanel" + fi + +} + +license() +{ + SUCC=0 + TRY=1 + while [ $SUCC -eq "0" ]; do + printf "%s" "Do you agree with above license? " + YES_NO='Yes' + if [ "x$YES_NO" != "xYes" ]; then + if [ $TRY -lt 3 ]; then + echo "Sorry, wrong answer! Type 'Yes' with capital 'Y', try again!" + TRY=`expr $TRY + 1` + else + echo "Abort installation!" + exit 0 + fi + + else + SUCC=1 + fi + done + clear +} + +readCurrentConfig() +{ + OLD_USER_CONF=`grep "" "$LSWS_HOME/conf/httpd_config.xml"` + OLD_GROUP_CONF=`grep "" "$LSWS_HOME/conf/httpd_config.xml"` + OLD_USER=`expr "$OLD_USER_CONF" : '.*\(.*\).*'` + OLD_GROUP=`expr "$OLD_GROUP_CONF" : '.*\(.*\).*'` + if [ "x$OLD_USER" != "x" ]; then + WS_USER=$OLD_USER + fi + if [ "x$OLD_GROUP" != "x" ]; then + WS_GROUP=$OLD_GROUP + else + D_GROUP=`$ID_GROUPS $WS_USER` + WS_GROUP=`expr "$D_GROUP" : '.*gid=[0-9]*(\(.*\)) groups=.*'` + fi + DIR_OWN=$WS_USER:$WS_GROUP + CONF_OWN=$WS_USER:$WS_GROUP + +} + + + + +# Get destination directory +install_dir() +{ + + SUCC=0 + INSTALL_TYPE="reinstall" + SET_LOGIN=1 + + if [ $INST_USER = "root" ]; then + DEST_RECOM="/usr/local/lsws" + if [ -f "/opt/lsws/conf/httpd_config.xml" ]; then + DEST_RECOM="/opt/lsws" + fi + WS_USER="nobody" + else + cat < "$LSINSTALL_DIR/admin/conf/htpasswd" + + fi + +} + + +getUserGroup() +{ + + if [ $INST_USER = "root" ]; then + cat </dev/null` + TST_USER=`expr "$USER_INFO" : 'uid=.*(\(.*\)) gid=.*'` + if [ "x$TST_USER" = "x$TMP_USER" ]; then + USER_ID=`expr "$USER_INFO" : 'uid=\(.*\)(.*) gid=.*'` + if [ $USER_ID -gt 10 ]; then + WS_USER=$TMP_USER + SUCC=1 + else + cat <:/ + +EOF + + SUCC=0 + DEFAULT_PORT=8088 + while [ $SUCC -eq "0" ]; do + printf "%s" "HTTP port [$DEFAULT_PORT]: " + TMP_PORT=80 + if [ "x$TMP_PORT" = "x" ]; then + TMP_PORT=$DEFAULT_PORT + fi + SUCC=1 + if [ `expr "$TMP_PORT" : '.*[^0-9]'` -gt 0 ]; then + echo "[ERROR] Only digits is allowed, try again!" + SUCC=0 + fi + if [ $SUCC -eq 1 ]; then + if [ $INST_USER != "root" ]; then + if [ $TMP_PORT -le 1024 ]; then + echo "[ERROR] Only 'root' can use port below 1024, try again!" + SUCC=0 + fi + fi + fi + if [ $SUCC -eq 1 ]; then + if [ `netstat -an | grep -w $TMP_PORT | grep -w LISTEN | wc -l` -gt 0 ]; then + echo "[ERROR] Port $TMP_PORT is in use now, stop the server using this port first," + echo " or choose another port." + SUCC=0 + fi + fi + done + + HTTP_PORT=$TMP_PORT +} + + +# get administration TCP port +getAdminPort() +{ + cat <:/ + +EOF + + SUCC=0 + DEFAULT_PORT=7080 + while [ $SUCC -eq "0" ]; do + printf "%s" "Admin HTTP port [$DEFAULT_PORT]: " + TMP_PORT=7080 + if [ "x$TMP_PORT" = "x" ]; then + TMP_PORT=$DEFAULT_PORT + fi + SUCC=1 + if [ `expr "$TMP_PORT" : '.*[^0-9]'` -gt 0 ]; then + echo "[ERROR] Only digits is allowed, try again!" + SUCC=0 + fi + if [ $SUCC -eq 1 ]; then + if [ $INST_USER != "root" ]; then + if [ $TMP_PORT -le 1024 ]; then + echo "[ERROR] Only 'root' can use port below 1024, try again!" + SUCC=0 + fi + fi + fi + if [ $SUCC -eq 1 ]; then + if [ $TMP_PORT -eq $HTTP_PORT ]; then + echo "[ERROR] The admin HTTP port must be different from the normal HTTP port!" + SUCC=0 + fi + fi + + if [ $SUCC -eq 1 ]; then + if [ `netstat -an | grep -w $TMP_PORT | grep -w LISTEN | wc -l` -gt 0 ]; then + echo "[ERROR] Port $TMP_PORT is in use, stop the server that using this port first," + echo " or choose another port." + SUCC=0 + fi + fi + done + + ADMIN_PORT=$TMP_PORT +} + +configAdminEmail() +{ + cat < "$LSINSTALL_DIR/admin/conf/admin_config.xml" + + sed -e "s/%ADMIN_PORT%/$ADMIN_PORT/" "$LSINSTALL_DIR/admin/conf/admin_config.xml.in" > "$LSINSTALL_DIR/admin/conf/admin_config.xml" + + sed -e "s/%USER%/$WS_USER/" -e "s/%GROUP%/$WS_GROUP/" -e "s#%APACHE_PID_FILE%#$APACHE_PID_FILE#" -e "s/%ADMIN_EMAIL%/$ADMIN_EMAIL/" -e "s#%RUBY_BIN%#$RUBY_PATH#" -e "s/%SERVER_NAME%/$SERVER_NAME/" -e "s/%AP_PORT_OFFSET%/$AP_PORT_OFFSET/" -e "s/%PHP_SUEXEC%/$PHP_SUEXEC/" "$LSINSTALL_DIR/add-ons/$HOST_PANEL/httpd_config.xml${PANEL_VARY}" > "$LSINSTALL_DIR/conf/httpd_config.xml" + +} + +# pass $1 = "$LSWS_HOME/httpd_config.xml" +updateCagefsConfig() +{ + if [ "x$1" = "x" ]; then + conf_file=/usr/local/lsws/conf/httpd_config.xml + else + conf_file="$1" + fi + if [ ! -f "$conf_file" ]; then + return 1 + fi + cagefsctl --cagefs-status 2>/dev/null 1>&2 + if [ $? = 0 ]; then + cp "$conf_file" "$conf_file.tmp" + grep enableLVE "$conf_file" | grep -v grep > /dev/null + if [ $? = 0 ]; then + grep -e "[23]" "$conf_file" | grep -v grep > /dev/null + if [ $? = 0 ]; then + return 0 + fi + sed -e "s#.*#2#" "$conf_file.tmp" > "$conf_file" + else + sed -e "s##2#" "$conf_file.tmp" > "$conf_file" + fi + fi +} + +buildAdminSslCert() +{ + if [ ! -f "$LSWS_HOME/admin/conf/cert/admin.crt" ]; then + HN=`hostname` + openssl req -subj "/CN=$HN/O=webadmin/C=US" -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout "$LSWS_HOME/admin/conf/cert/admin.key" -out "$LSWS_HOME/admin/conf/cert/admin.crt" + fi +} + + +cPanelSwitchPathsConf() +{ + mode=shift + if [ "x$mode" == 'xapache' ]; then + cp /etc/cpanel/ea4/paths.conf /etc/cpanel/ea4/paths.conf.tmp + sed -e 's#/usr/local/lsws/bin/lswsctrl#/usr/sbin/apachectl#' /etc/cpanel/ea4/paths.conf + else + cp /etc/cpanel/ea4/paths.conf /etc/cpanel/ea4/paths.conf.tmp + sed -e 's#/usr/sbin/apachectl#/usr/local/lsws/bin/lswsctrl#' /etc/cpanel/ea4/paths.conf + fi +} + + +# generate configuration from template + +buildConfigFiles() +{ + +#sed -e "s/%ADMIN_PORT%/$ADMIN_PORT/" -e "s/%PHP_FCGI_PORT%/$ADMIN_PHP_PORT/" "$LSINSTALL_DIR/admin/conf/admin_config.xml.in" > "$LSINSTALL_DIR/admin/conf/admin_config.xml" + + sed -e "s/%ADMIN_PORT%/$ADMIN_PORT/" "$LSINSTALL_DIR/admin/conf/admin_config.xml.in" > "$LSINSTALL_DIR/admin/conf/admin_config.xml" + + sed -e "s/%USER%/$WS_USER/" -e "s/%GROUP%/$WS_GROUP/" -e "s/%ADMIN_EMAIL%/$ADMIN_EMAIL/" -e "s/%HTTP_PORT%/$HTTP_PORT/" -e "s/%RUBY_BIN%/$RUBY_PATH/" -e "s/%SERVER_NAME%/$SERVER_NAME/" "$LSINSTALL_DIR/conf/httpd_config.xml.in" > "$LSINSTALL_DIR/conf/httpd_config.xml.tmp" + + if [ $SETUP_PHP -eq 1 ]; then + sed -e "s/%PHP_BEGIN%//" -e "s/%PHP_END%//" -e "s/%PHP_SUFFIX%/$PHP_SUFFIX/" -e "s/%PHP_PORT%/$PHP_PORT/" "$LSINSTALL_DIR/conf/httpd_config.xml.tmp" > "$LSINSTALL_DIR/conf/httpd_config.xml" + else + sed -e "s/%PHP_BEGIN%//" -e "s/%PHP_SUFFIX%/php/" -e "s/%PHP_PORT%/5201/" "$LSINSTALL_DIR/conf/httpd_config.xml.tmp" > "$LSINSTALL_DIR/conf/httpd_config.xml" + fi + +} + +util_mkdir() +{ + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + if [ ! -d "$LSWS_HOME/$arg" ]; then + mkdir "$LSWS_HOME/$arg" + fi + chown "$OWNER" "$LSWS_HOME/$arg" + chmod $PERM "$LSWS_HOME/$arg" + done + +} + + +util_cpfile() +{ + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + cp -f "$LSINSTALL_DIR/$arg" "$LSWS_HOME/$arg" + chown "$OWNER" "$LSWS_HOME/$arg" + chmod $PERM "$LSWS_HOME/$arg" + done + +} + +util_ccpfile() +{ + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + if [ ! -f "$LSWS_HOME/$arg" ]; then + cp "$LSINSTALL_DIR/$arg" "$LSWS_HOME/$arg" + fi + chown "$OWNER" "$LSWS_HOME/$arg" + chmod $PERM "$LSWS_HOME/$arg" + done +} + + +util_cpdir() +{ + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + cp -R "$LSINSTALL_DIR/$arg/"* "$LSWS_HOME/$arg/" + chown -R "$OWNER" "$LSWS_HOME/$arg/"* + #chmod -R $PERM $LSWS_HOME/$arg/* + done +} + + + +util_cpdirv() +{ + OWNER=$1 + PERM=$2 + shift + shift + VERSION=$1 + shift + for arg + do + cp -R "$LSINSTALL_DIR/$arg/"* "$LSWS_HOME/$arg.$VERSION/" + chown -R "$OWNER" "$LSWS_HOME/$arg.$VERSION" + $TEST_BIN -L "$LSWS_HOME/$arg" + if [ $? -eq 0 ]; then + rm -f "$LSWS_HOME/$arg" + fi + FILENAME=`basename $arg` + ln -sf "./$FILENAME.$VERSION/" "$LSWS_HOME/$arg" + #chmod -R $PERM $LSWS_HOME/$arg/* + done +} + +util_cpfilev() +{ + OWNER=$1 + PERM=$2 + shift + shift + VERSION=$1 + shift + for arg + do + cp -f "$LSINSTALL_DIR/$arg" "$LSWS_HOME/$arg.$VERSION" + chown "$OWNER" "$LSWS_HOME/$arg.$VERSION" + chmod $PERM "$LSWS_HOME/$arg.$VERSION" + $TEST_BIN -L "$LSWS_HOME/$arg" + if [ $? -eq 0 ]; then + rm -f "$LSWS_HOME/$arg" + fi + FILENAME=`basename $arg` + ln -sf "./$FILENAME.$VERSION" "$LSWS_HOME/$arg" + done +} + + +installation1() +{ + umask 022 + if [ $INST_USER = "root" ]; then + SDIR_OWN="root:$ROOTGROUP" + chown $SDIR_OWN $LSWS_HOME + else + SDIR_OWN=$DIR_OWN + fi + sed "s:%LSWS_CTRL%:$LSWS_HOME/bin/lswsctrl:" "$LSINSTALL_DIR/admin/misc/lsws.rc.in" > "$LSINSTALL_DIR/admin/misc/lsws.rc" + + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + if [ ! -f "$LSWS_HOME/$arg" ]; then + cp "$LSINSTALL_DIR/$arg" "$LSWS_HOME/$arg" + fi + chown "$OWNER" "$LSWS_HOME/$arg" + chmod $PERM "$LSWS_HOME/$arg" + done +} + + +util_cpdir() +{ + OWNER=$1 + PERM=$2 + shift + shift + for arg + do + cp -R "$LSINSTALL_DIR/$arg/"* "$LSWS_HOME/$arg/" + chown -R "$OWNER" "$LSWS_HOME/$arg/"* + #chmod -R $PERM $LSWS_HOME/$arg/* + done +} + + + +util_cpdirv() +{ + OWNER=$1 + PERM=$2 + shift + shift + VERSION=$1 + shift + for arg + do + cp -R "$LSINSTALL_DIR/$arg/"* "$LSWS_HOME/$arg.$VERSION/" + chown -R "$OWNER" "$LSWS_HOME/$arg.$VERSION" + $TEST_BIN -L "$LSWS_HOME/$arg" + if [ $? -eq 0 ]; then + rm -f "$LSWS_HOME/$arg" + fi + FILENAME=`basename $arg` + ln -sf "./$FILENAME.$VERSION/" "$LSWS_HOME/$arg" + #chmod -R $PERM $LSWS_HOME/$arg/* + done +} + +util_cpfilev() +{ + OWNER=$1 + PERM=$2 + shift + shift + VERSION=$1 + shift + for arg + do + cp -f "$LSINSTALL_DIR/$arg" "$LSWS_HOME/$arg.$VERSION" + chown "$OWNER" "$LSWS_HOME/$arg.$VERSION" + chmod $PERM "$LSWS_HOME/$arg.$VERSION" + $TEST_BIN -L "$LSWS_HOME/$arg" + if [ $? -eq 0 ]; then + rm -f "$LSWS_HOME/$arg" + fi + FILENAME=`basename $arg` + ln -sf "./$FILENAME.$VERSION" "$LSWS_HOME/$arg" + done +} + +compress_admin_file() +{ + TMP_DIR=`pwd` + cd $LSWS_HOME/admin/html + find . | grep -e '\.js$' | xargs -n 1 ../misc/gzipStatic.sh 9 + find . | grep -e '\.css$' | xargs -n 1 ../misc/gzipStatic.sh 9 + cd $TMP_DIR +} + + +install_whm_plugin() +{ + + WHM_PLUGIN_SRCDIR="$LSINSTALL_DIR/add-ons/cpanel/lsws_whm_plugin" + $WHM_PLUGIN_SRCDIR/lsws_whm_plugin_install.sh $WHM_PLUGIN_SRCDIR $LSWS_HOME + + +} + +create_lsadm_freebsd() +{ + pw group add lsadm + lsadm_gid=`grep "^lsadm:" /etc/group | awk -F : '{ print $3; }'` + pw user add -g $lsadm_gid -d / -s /usr/sbin/nologin -n lsadm + pw usermod lsadm -G $WS_GROUP +} + +create_lsadm() +{ + groupadd lsadm + #1>/dev/null 2>&1 + lsadm_gid=`grep "^lsadm:" /etc/group | awk -F : '{ print $3; }'` + useradd -g $lsadm_gid -d / -r -s /sbin/nologin lsadm + usermod -a -G $WS_GROUP lsadm + #1>/dev/null 2>&1 + +} + +create_lsadm_solaris() +{ + groupadd lsadm + #1>/dev/null 2>&1 + lsadm_gid=`grep "^lsadm:" /etc/group | awk -F: '{ print $3; }'` + useradd -g $lsadm_gid -d / -s /bin/false lsadm + usermod -G $WS_GROUP lsadm + + #1>/dev/null 2>&1 + +} + + +create_self_signed_cert_for_admin() +{ +#$1 = filename +#$2 = domain_name + openssl req -x509 -sha256 -newkey rsa:2048 -keyout $1.key -out $1.crt -days 1024 -nodes -subj '/CN=$2' +} + + +fix_cloudlinux() +{ + if [ -d /proc/lve ]; then + lvectl set-user $WS_USER --unlimited + if [ "x$SYS_ARCH" != 'xi386' ]; then + lvectl set-user $WS_USER --pmem=2000G + else + lvectl set-user $WS_USER --pmem=2G + fi + lvectl set-user lsadm --unlimited + lvectl set-user lsadm --pmem=2G + $LSWS_HOME/admin/misc/fix_cagefs.sh + updateCagefsConfig $LSWS_HOME/conf/httpd_config.xml + fi +} + +installation() +{ + umask 022 + if [ $INST_USER = "root" ]; then + export PATH=/sbin:/usr/sbin:$PATH + if [ "x$SYS_NAME" = "xLinux" ]; then + create_lsadm + elif [ "x$SYS_NAME" = "xFreeBSD" ] || [ "x$SYS_NAME" = "xNetBSD" ]; then + create_lsadm_freebsd + elif [ "x$SYS_NAME" = "xSunOS" ]; then + create_lsadm_solaris + fi + grep "^lsadm:" /etc/passwd 1>/dev/null 2>&1 + if [ $? -eq 0 ]; then + CONF_OWN="lsadm:lsadm" + fi + SDIR_OWN="root:$ROOTGROUP" + chown $SDIR_OWN $LSWS_HOME + else + SDIR_OWN=$DIR_OWN + fi + sed "s:%LSWS_CTRL%:$LSWS_HOME/bin/lswsctrl:" "$LSINSTALL_DIR/admin/misc/lsws.rc.in" > "$LSINSTALL_DIR/admin/misc/lsws.rc" + sed "s:%LSWS_CTRL%:$LSWS_HOME/bin/lswsctrl:" "$LSINSTALL_DIR/admin/misc/lsws.rc.gentoo.in" > "$LSINSTALL_DIR/admin/misc/lsws.rc.gentoo" + sed "s:%LSWS_CTRL%:$LSWS_HOME/bin/lswsctrl:" "$LSINSTALL_DIR/admin/misc/lshttpd.service.in" > "$LSINSTALL_DIR/admin/misc/lshttpd.service" + + if [ -d "$LSWS_HOME/admin/html.$VERSION" ]; then + rm -rf "$LSWS_HOME/admin/html.$VERSION" + fi + + + util_mkdir "$SDIR_OWN" $DIR_MOD admin bin docs fcgi-bin lib logs admin/logs add-ons share admin/fcgi-bin + util_mkdir "$SDIR_OWN" $DIR_MOD admin/html.$VERSION admin/misc + util_mkdir "$CONF_OWN" $SDIR_MOD conf conf/cert conf/templates admin/conf admin/conf/cert admin/tmp phpbuild autoupdate + util_mkdir "$SDIR_OWN" $SDIR_MOD admin/cgid admin/cgid/secret + util_mkdir "$CONF_OWN" $DIR_MOD admin/htpasswds + chgrp $WS_GROUP $LSWS_HOME/admin/tmp $LSWS_HOME/admin/cgid $LSWS_HOME/admin/htpasswds + chmod g+x $LSWS_HOME/admin/tmp $LSWS_HOME/admin/cgid $LSWS_HOME/admin/htpasswds + chown $CONF_OWN $LSWS_HOME/admin/tmp/sess_* 1>/dev/null 2>&1 + util_mkdir "$SDIR_OWN" $DIR_MOD DEFAULT + + buildAdminSslCert + + find "$LSWS_HOME/admin/tmp" -type s -atime +1 -delete 2>/dev/null + if [ $? -ne 0 ]; then + find "$LSWS_HOME/admin/tmp" -type s -atime +1 2>/dev/null | xargs rm -f + fi + + find "/tmp/lshttpd" -type s -atime +1 -delete 2>/dev/null + if [ $? -ne 0 ]; then + find "/tmp/lshttpd" -type s -atime +1 2>/dev/null | xargs rm -f + fi + + if [ "x$HOST_PANEL" = "xcpanel" ]; then + if [ ! -d "$BUILD_ROOT/usr/local/lib/php/autoindex/" ]; then + mkdir -p $BUILD_ROOT/usr/local/lib/php/autoindex + fi + if [ -f "$BUILD_ROOT/usr/local/lib/php/autoindex/default.php" ]; then + mv -f "$BUILD_ROOT/usr/local/lib/php/autoindex/default.php" "$BUILD_ROOT/usr/local/lib/php/autoindex/default.php.old" + fi + cp -R "$LSINSTALL_DIR/share/autoindex/"* $BUILD_ROOT/usr/local/lib/php/autoindex/ + if [ -d "$LSWS_HOME/share/autoindex" ]; then + rm -rf "$LSWS_HOME/share/autoindex" + fi + ln -sf /usr/local/lib/php/autoindex "$LSWS_HOME/share/autoindex" + if [ -d "$WHM_CGIDIR" ]; then + install_whm_plugin + fi + else + util_mkdir "$SDIR_OWN" $DIR_MOD share/autoindex + if [ -f "$LSWS_HOME/share/autoindex/default.php" ]; then + mv -f "$LSWS_HOME/share/autoindex/default.php" "$LSWS_HOME/share/autoindex/default.php.old" + fi + util_cpdir "$SDIR_OWN" $DOC_MOD share/autoindex + util_cpfile "$SDIR_OWN" $DOC_MOD share/autoindex/default.php + fi + util_cpdir "$SDIR_OWN" $DOC_MOD add-ons + util_cpfile "$SDIR_OWN" $EXEC_MOD add-ons/modsec/inspectmulti.sh + + util_ccpfile "$SDIR_OWN" $EXEC_MOD fcgi-bin/lsperld.fpl + util_cpfile "$SDIR_OWN" $EXEC_MOD fcgi-bin/RackRunner.rb fcgi-bin/RailsRunner.rb fcgi-bin/RailsRunner.rb.2.3 + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/fcgi-bin/admin_php5 + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/rc-inst.sh admin/misc/admpass.sh admin/misc/rc-uninst.sh admin/misc/uninstall.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/lsws.rc admin/misc/lshttpd.service admin/misc/lsws.rc.gentoo admin/misc/enable_ruby_python_selector.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/mgr_ver.sh admin/misc/gzipStatic.sh admin/misc/fp_install.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/create_admin_keypair.sh admin/misc/awstats_install.sh admin/misc/update.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/cleancache.sh admin/misc/cleanlitemage.sh admin/misc/lsup5.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/fix_cagefs.sh admin/misc/cp_switch_ws.sh + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/lscmctl + ln -sf ./lsup5.sh "$LSWS_HOME/admin/misc/lsup.sh" + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/ap_lsws.sh.in admin/misc/build_ap_wrapper.sh admin/misc/cpanel_restart_httpd.in + util_cpfile "$SDIR_OWN" $DOC_MOD admin/misc/gdb-bt admin/misc/htpasswd.php admin/misc/php.ini admin/misc/genjCryptionKeyPair.php admin/misc/purge_cache_byurl.php + + if [ -f "$LSINSTALL_DIR/admin/misc/chroot.sh" ]; then + util_cpfile "$SDIR_OWN" $EXEC_MOD admin/misc/chroot.sh + fi + + if [ $SET_LOGIN -eq 1 ]; then + util_cpfile "$CONF_OWN" $CONF_MOD admin/conf/htpasswd + else + util_ccpfile "$CONF_OWN" $CONF_MOD admin/conf/htpasswd + fi + + if [ ! -f "$LSWS_HOME/admin/htpasswds/status" ]; then + cp -p "$LSWS_HOME/admin/conf/htpasswd" "$LSWS_HOME/admin/htpasswds/status" + fi + chown $CONF_OWN "$LSWS_HOME/admin/htpasswds/status" + chgrp $WS_GROUP "$LSWS_HOME/admin/htpasswds/status" + chmod 0640 "$LSWS_HOME/admin/htpasswds/status" + + if [ $INSTALL_TYPE = "upgrade" ]; then + util_ccpfile "$CONF_OWN" $CONF_MOD admin/conf/admin_config.xml + util_cpfile "$CONF_OWN" $CONF_MOD admin/conf/php.ini + util_ccpfile "$CONF_OWN" $CONF_MOD conf/httpd_config.xml conf/mime.properties conf/templates/ccl.xml conf/templates/phpsuexec.xml conf/templates/rails.xml + util_ccpfile "$CONF_OWN" $CONF_MOD conf/templates/ccl.xml + $TEST_BIN ! -L "$LSWS_HOME/bin/lshttpd" + if [ $? -eq 0 ]; then + mv -f "$LSWS_HOME/bin/lshttpd" "$LSWS_HOME/bin/lshttpd.old" + fi + $TEST_BIN ! -L "$LSWS_HOME/bin/lscgid" + if [ $? -eq 0 ]; then + mv -f "$LSWS_HOME/bin/lscgid" "$LSWS_HOME/bin/lscgid.old" + fi + $TEST_BIN ! -L "$LSWS_HOME/bin/lswsctrl" + if [ $? -eq 0 ]; then + mv -f "$LSWS_HOME/bin/lswsctrl" "$LSWS_HOME/bin/lswsctrl.old" + fi + $TEST_BIN ! -L "$LSWS_HOME/admin/html" + if [ $? -eq 0 ]; then + mv -f "$LSWS_HOME/admin/html" "$LSWS_HOME/admin/html.old" + fi + + if [ ! -f "$LSWS_HOME/DEFAULT/conf/vhconf.xml" ]; then + util_mkdir "$CONF_OWN" $DIR_MOD DEFAULT/conf + util_cpdir "$CONF_OWN" $DOC_MOD DEFAULT/conf + fi + else + util_cpfile "$CONF_OWN" $CONF_MOD admin/conf/admin_config.xml + util_cpfile "$CONF_OWN" $CONF_MOD conf/templates/ccl.xml conf/templates/phpsuexec.xml conf/templates/rails.xml + util_cpfile "$CONF_OWN" $CONF_MOD admin/conf/php.ini + util_cpfile "$CONF_OWN" $CONF_MOD conf/httpd_config.xml conf/mime.properties + util_mkdir "$CONF_OWN" $DIR_MOD DEFAULT/conf + util_cpdir "$CONF_OWN" $DOC_MOD DEFAULT/conf + util_mkdir "$SDIR_OWN" $DIR_MOD DEFAULT/html DEFAULT/cgi-bin + util_cpdir "$SDIR_OWN" $DOC_MOD DEFAULT/html DEFAULT/cgi-bin + fi + if [ $SETUP_PHP -eq 1 ]; then + if [ ! -s "$LSWS_HOME/fcgi-bin/lsphp" ]; then + cp -f "$LSWS_HOME/admin/fcgi-bin/admin_php5" "$LSWS_HOME/fcgi-bin/lsphp" + chown "$SDIR_OWN" "$LSWS_HOME/fcgi-bin/lsphp" + chmod "$EXEC_MOD" "$LSWS_HOME/fcgi-bin/lsphp" + fi + if [ ! -f "$LSWS_HOME/fcgi-bin/lsphp4" ]; then + ln -sf "./lsphp" "$LSWS_HOME/fcgi-bin/lsphp4" + fi + if [ ! -f "$LSWS_HOME/fcgi-bin/lsphp5" ]; then + ln -sf "./lsphp" "$LSWS_HOME/fcgi-bin/lsphp5" + fi + if [ ! -e "/usr/local/bin/lsphp" ]; then + cp -f "$LSWS_HOME/admin/fcgi-bin/admin_php5" "/usr/local/bin/lsphp" + chown "$SDIR_OWN" "/usr/local/bin/lsphp" + chmod "$EXEC_MOD" "/usr/local/bin/lsphp" + fi + fi + + chown -R "$CONF_OWN" "$LSWS_HOME/conf/" + chmod -R o-rwx "$LSWS_HOME/conf/" + + util_mkdir "$DIR_OWN" $SDIR_MOD tmp + + + util_mkdir "$DIR_OWN" $DIR_MOD DEFAULT/logs DEFAULT/fcgi-bin + util_cpdirv "$SDIR_OWN" $DOC_MOD $VERSION admin/html + + + util_cpfile "$SDIR_OWN" $EXEC_MOD bin/wswatch.sh + util_cpfilev "$SDIR_OWN" $EXEC_MOD $VERSION bin/lswsctrl bin/lshttpd bin/lscgid + + $TEST_BIN ! -L "$LSWS_HOME/modules" + if [ $? -eq 0 ]; then + mv -f "$LSWS_HOME/modules" "$LSWS_HOME/modules.old" + fi + + if [ -d "$LSWS_HOME/modules.$VERSION" ]; then + rm -rf "$LSWS_HOME/modules.$VERSION" + fi + + util_mkdir "$SDIR_OWN" $DIR_MOD modules.$VERSION + util_cpdirv "$SDIR_OWN" $EXEC_MOD $VERSION modules + + #if [ -e "$LSINSTALL_DIR/bin/lshttpd.dbg" ]; then + # if [ -f "$LSINSTALL_DIR/bin/lshttpd.dbg.$VERSION" ]; then + # rm "$LSINSTALL_DIR/bin/lshttpd.dbg.$VERSION" + # fi + # util_cpfilev "$SDIR_OWN" $EXEC_MOD $VERSION bin/lshttpd.dbg + # + # #enable debug build for beta release + # ln -sf ./lshttpd.dbg.$VERSION $LSWS_HOME/bin/lshttpd + #fi + + ln -sf ./lshttpd.$VERSION $LSWS_HOME/bin/lshttpd + ln -sf lshttpd $LSWS_HOME/bin/litespeed + + ln -sf lscgid.$VERSION $LSWS_HOME/bin/httpd + if [ $INST_USER = "root" ]; then + chmod u+s "$LSWS_HOME/bin/lscgid.$VERSION" + + fi + + util_cpdir "$SDIR_OWN" $DOC_MOD docs/ + util_cpfile "$SDIR_OWN" $DOC_MOD VERSION BUILD LICENSE* + + if [ -f $LSWS_HOME/autoupdate/download ]; then + rm $LSWS_HOME/autoupdate/download + fi + + #compress_admin_file + + if [ ! -f "$LSWS_HOME/admin/conf/jcryption_keypair" ]; then + $LSWS_HOME/admin/misc/create_admin_keypair.sh + fi + chown "$CONF_OWN" "$LSWS_HOME/admin/conf/jcryption_keypair" + chmod 0600 "$LSWS_HOME/admin/conf/jcryption_keypair" + + fix_cloudlinux + + if [ $INST_USER = "root" ]; then + $LSWS_HOME/admin/misc/rc-inst.sh + fi + +} + + +setupPHPAccelerator() +{ + cat </ +or http://:/ + +EOF + + if [ $INST_USER = "root" ]; then + if [ $INSTALL_TYPE != "upgrade" ]; then + printf "%s\n%s" "Would you like to have LiteSpeed Web Server started automatically" "when the server restarts [Y/n]? " + START_SERVER='y' + echo + + if [ "x$START_SERVER" = "x" ]; then + START_SERVER=y + fi + if [ `expr "$START_SERVER" : '[Yy]'` -gt 0 ]; then + $LSWS_HOME/admin/misc/rc-inst.sh + else + cat < + AllowOverride none + + + + AllowOverride All + Options +Includes -Indexes +ExecCGI + + +DirectoryIndex index.php index.html + + + Require all denied + + +ErrorLog "/usr/local/lsws/logs/error.log" +LogLevel warn + +LogFormat '"%v %h %l %u %t \"%r\" %>s %b"' combined +CustomLog "/usr/local/lsws/logs/access.log" combined + + +AddType application/x-compress .Z +AddType application/x-gzip .gz .tgz +AddType text/html .shtml +AddOutputFilter INCLUDES .shtml +#AddHandler cgi-script .cgi + +AddDefaultCharset UTF-8 + + + MIMEMagicFile conf/magic + + +EnableSendfile on + +SSLProtocol all -SSLv3 -TLSv1 +SSLHonorCipherOrder on + +SSLCipherSuite ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:HIGH:!EDH-RSA-DES-CBC3-SHA:!DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4 + + +CacheRoot /home/lscache/ + + + +Include /usr/local/lsws/conf/modsec.conf diff --git a/install/litespeed/httpd_config.xml b/install/litespeed/httpd_config.xml new file mode 100644 index 000000000..de85c980b --- /dev/null +++ b/install/litespeed/httpd_config.xml @@ -0,0 +1,388 @@ + + + $HOSTNAME + nobody + nobody + 0 + / + 0 + 120M + /tmp/lshttpd/swap + 1 + 1 + 0 + /usr/local/lsws/conf/httpd.conf + 0 + 0 + 1 + 5 + $SERVER_ROOT/conf/mime.properties + 0 + 86400 + 1 + usman@cyberpersons.com + $SERVER_ROOT/admin/ + + + $SERVER_ROOT/logs/error.log + DEBUG + 0 + 10M + 1 + 1 + + + $SERVER_ROOT/logs/access.log + 10M + 30 + 0 + + + index.html, index.php + + 0 + .htaccess + + + 1 + image/*=A604800, text/css=A604800, application/x-javascript=A604800, application/javascript=A604800 + + + best + 2000 + 200 + 300 + 1000 + 0 + 5 + 0 + 0 + 8192 + 16380 + 500M + 8K + 500M + 4096 + 20M + 256K + 40M + 1 + 1 + 4 + 1 + 1 + 1 + text/*,application/x-javascript,application/javascript,application/xml, image/svg+xml + 1 + 6 + 1M + 300 + null + + + 1 + + + + 1 + 0 + 000 + 000 + + + 0 + 0 + 0 + 0 + 10000 + 10000 + 15 + 300 + + + 200 + 11 + 10 + 0 + 300 + 600 + 1450M + 1500M + 1400 + 1450 + + + 0 + 0 + deny,log,status:403 + 1 + /tmp + $SERVER_ROOT/logs/security_audit.log + + + XSS attack + log,deny,status:403,msg:'XSS attack' + 1 + SecFilterSelective ARGS "(alert|expression|eval|url)[[:space:]]*\(" +SecFilterSelective ARGS "(&\{.+\}|(&#[[0-9a-fA-F]]|\x5cx[0-9a-fA-F]){2})" + +SecFilterSelective ARGS "((javascript|vbscript):|style[[:space:]]*=)" +SecFilterSelective ARGS "(fromCharCode|http-equiv|<.+>|innerHTML|dynsrc|-->)" +SecFilterSelective ARGS "document\.(body|cookie|location|write)" + +SecFilterSelective ARGS_VALUES "jsessionid|phpsessid|onReadyStateChange|xmlHttp" + +SecFilterSelective ARGS "<(applet|div|embed|iframe|img|meta|object|script|textarea)" + +# JavaScript event handlers +SecFilterSelective ARGS "on(Abort|Blur|Click|DblClick|DragDrop|Error|Focus|KeyUp|KeyDown|KeyPrerss|Load|Mouse(Down|Out|Over|Up)|Move|Reset|Resize|Select|Submit|Unload)" + + + SQL injection + log,pass,msg:'SQL Injection attack' + 1 + #SQL generic +SecFilterSelective ARGS "drop[[:space:]]+(database|table|column|procedure)" +SecFilterSelective ARGS "delete[[:space:]]+from|create[[:space:]]+table|update.+set.+=|insert[[:space:]]+into.+values" +SecFilterSelective ARGS "select.+from|bulk[[:space:]]+insert|union.+select|alter[[:space:]]+table" +SecFilterSelective ARGS "or.+1[[:space:]]*=[[:space:]]1|or 1=1--'|'.+--" + +SecFilterSelective ARGS "into[[:space:]]+outfile|load[[:space:]]+data|/\*.+\*/" + + + / + /etc/* + /dev/* + $SERVER_ROOT/conf/* + $SERVER_ROOT/admin/conf/* + + + ALL + + + + + lsapi + lsphp5 +
uds://tmp/lshttpd/lsphp5.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/fcgi-bin/lsphp5 + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp53 +
uds://tmp/lshttpd/lsphp53.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp53/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp54 +
uds://tmp/lshttpd/lsphp54.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp54/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp55 +
uds://tmp/lshttpd/lsphp55.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp55/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp56 +
uds://tmp/lshttpd/lsphp56.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp56/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp70 +
uds://tmp/lshttpd/lsphp70.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp70/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp71 +
uds://tmp/lshttpd/lsphp71.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp71/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+ + lsapi + lsphp72 +
uds://tmp/lshttpd/lsphp72.sock
+ 35 + PHP_LSAPI_CHILDREN=35 + 60 + 0 + 1 + 0 + 3 + $SERVER_ROOT/lsphp72/bin/lsphp + 100 + 1 + 0 + 2047M + 2047M + 400 + 500 +
+
+ + + php + lsapi + lsphp5 + + + php5 + lsapi + lsphp5 + + + php53 + lsapi + lsphp53 + + + php54 + lsapi + lsphp54 + + + php55 + lsapi + lsphp55 + + + php56 + lsapi + lsphp56 + + + php70 + lsapi + lsphp70 + + + php71 + lsapi + lsphp71 + + + php72 + lsapi + lsphp72 + + + + 1 + 5 + LSAPI_MAX_IDLE=60 + 180 + 0 + 60 + 0 + 50 + 1 + 3 + 2047M + 2047M + 400 + 500 + +
diff --git a/install/litespeed/install.sh b/install/litespeed/install.sh new file mode 100644 index 000000000..514f85888 --- /dev/null +++ b/install/litespeed/install.sh @@ -0,0 +1,506 @@ +#!/bin/sh + +cd `dirname "$0"` +source ./functions.sh 2>/dev/null +if [ $? != 0 ]; then + . ./functions.sh + if [ $? != 0 ]; then + echo [ERROR] Can not include 'functions.sh'. + exit 1 + fi +fi + + +test_license() +{ + COPY_LICENSE_KEY=1 + if [ -f "$LSWS_HOME/conf/serial.no" ]; then + if [ ! -f "$LSINSTALL_DIR/serial.no" ]; then + cp "$LSWS_HOME/conf/serial.no" "$LSINSTALL_DIR/serial.no" + else + diff "$LSWS_HOME/conf/serial.no" "$LSINSTALL_DIR/serial.no" 1>/dev/null + if [ $? -ne 0 ]; then + COPY_LICENSE_KEY=0 + fi + fi + fi +# if [ $COPY_LICENSE_KEY -eq 1 ]; then +# if [ -f "$LSWS_HOME/conf/license.key" ] && [ ! -f "$LSINSTALL_DIR/license.key" ]; then +# cp "$LSWS_HOME/conf/license.key" "$LSINSTALL_DIR/license.key" +# fi +# if [ -f "$LSWS_HOME/conf/license.key" ] && [ -f "$LSINSTALL_DIR/license.key" ]; then +# diff "$LSWS_HOME/conf/license.key" "$LSINSTALL_DIR/license.key" +# if [ $? -ne 0 ]; then +# cp "$LSWS_HOME/conf/license.key" "$LSINSTALL_DIR/license.key" +# fi +# fi +# fi + if [ -f "$LSINSTALL_DIR/license.key" ] && [ -f "$LSINSTALL_DIR/serial.no" ]; then + echo "License key and serial number are available, testing..." + echo + bin/lshttpd -V + if [ $? -eq 0 ]; then + LICENSE_OK=1 + if [ -f "$LSINSTALL_DIR/conf/license.key" ]; then + mv "$LSINSTALL_DIR/conf/license.key" "$LSINSTALL_DIR/license.key" + bin/lshttpd -t + fi + fi + echo + fi + + if [ "x$LICENSE_OK" = "x" ]; then + if [ -f "$LSINSTALL_DIR/serial.no" ]; then +# echo "Serial number is available." +# printf "Would you like to register a license key for this server? [Y/n]" +# read TMP_YN +# echo "" +# if [ "x$TMP_YN" = "x" ] || [ `expr "$TMP_YN" : '[Yy]'` -gt 0 ]; then + echo "Contacting licensing server ..." + + echo "" + $LSINSTALL_DIR/bin/lshttpd -r + + if [ $? -eq 0 ]; then + echo "[OK] License key received." + $LSINSTALL_DIR/bin/lshttpd -t + if [ $? -eq 0 ]; then + LICENSE_OK=1 + else + echo "The license key received does not work." + fi + fi +# fi + fi + fi + + if [ "x$LICENSE_OK" = "x" ]; then + + if [ -f "$LSINSTALL_DIR/trial.key" ]; then + $LSINSTALL_DIR/bin/lshttpd -t + if [ $? -ne 0 ]; then + exit 1 + fi + else + cat <" "$LSWS_HOME/conf/httpd_config.xml"` + OLD_CHROOT_PATH_CONF=`grep "" "$LSWS_HOME/conf/httpd_config.xml"` + OLD_ENABLE_CHROOT=`expr "$OLD_ENABLE_CHROOT_CONF" : '.*\(.*\).*'` + OLD_CHROOT_PATH=`expr "$OLD_CHROOT_PATH_CONF" : '[^<]*\([^<]*\).*'` + if [ "x$OLD_ENABLE_CHROOT" != "x" ]; then + ENABLE_CHROOT=$OLD_ENABLE_CHROOT + fi + if [ "x$OLD_CHROOT_PATH" != "x" ]; then + CHROOT_PATH=$OLD_CHROOT_PATH + fi + fi + CHANGE_CHROOT=0 + if [ $INST_USER = "root" ]; then + CHANGE_CHROOT=1 + + if [ $INSTALL_TYPE = "upgrade" ]; then + CHANGE_CHROOT=0 + if [ $ENABLE_CHROOT -eq 1 ]; then + cat < $CHROOT_PATH/etc/passwd + grep "$WS_GROUP" /etc/group > $CHROOT_PATH/etc/group + fi + fi + cp $LSWS_HOME/conf/httpd_config.xml $LSWS_HOME/conf/httpd_config.xml.bak + chown "$DIR_OWN" $LSWS_HOME/conf/httpd_config.xml.bak + RES=`grep '' $LSWS_HOME/conf/httpd_config.xml.bak` + if [ $? -eq 1 ]; then + sed -e "s#
#$CHROOT_PATH$ENABLE_CHROOT#" "$LSWS_HOME/conf/httpd_config.xml.bak" > "$LSWS_HOME/conf/httpd_config.xml" + else + sed -e "s#.*<\/chrootPath>#$CHROOT_PATH<\/chrootPath>#" -e "s/.*<\/enableChroot>/$ENABLE_CHROOT<\/enableChroot>/" "$LSWS_HOME/conf/httpd_config.xml.bak" > "$LSWS_HOME/conf/httpd_config.xml" + fi + fi +} + +installLicense() +{ + if [ -f ./serial.no ]; then + cp -f ./serial.no $LSWS_HOME/conf + chown "$SDIR_OWN" $LSWS_HOME/conf/serial.no + chmod "$DOC_MOD" $LSWS_HOME/conf/serial.no + fi + + if [ -f ./license.key ]; then + cp -f ./license.key $LSWS_HOME/conf + chown "$SDIR_OWN" $LSWS_HOME/conf/license.key + chmod "$CONF_MOD" $LSWS_HOME/conf/license.key + fi + + if [ -f ./trial.key ]; then + cp -f ./trial.key $LSWS_HOME/conf + chown "$SDIR_OWN" $LSWS_HOME/conf/trial.key + chmod "$DOC_MOD" $LSWS_HOME/conf/trial.key + fi +} + +portOffset() +{ +SUCC=0 +SEL=0 +while [ $SUCC -eq "0" ]; do + + cat </dev/null` + TST_USER=`expr "$USER_INFO" : 'uid=.*(\(.*\)) gid=.*'` + if [ "x$TST_USER" = "xapache" ]; then + WS_USER=apache + WS_GROUP=apache + else + WS_USER=www-data + WS_GROUP=www-data + # default PID FILE, source the real one, debian and ubuntu different + APACHE_PID_FILE=/var/run/apache2/apache2.pid + source /etc/apache2/envvars 2>/dev/null + if [ $? != 0 ]; then + . /etc/apache2/envvars + fi + PANEL_VARY=".debian" + fi + ADMIN_PORT=7088 + elif [ $SEL -eq "4" ]; then + HOST_PANEL="hsphere" + WS_USER=httpd + WS_GROUP=httpd + elif [ $SEL -eq "5" ]; then + HOST_PANEL="interworx" + WS_USER=apache + WS_GROUP=apache + elif [ $SEL -eq "6" ]; then + HOST_PANEL="lxadminh" + WS_USER=apache + WS_GROUP=apache + elif [ $SEL -eq "7" ]; then + HOST_PANEL="ispmanager" + WS_USER=apache + WS_GROUP=apache + fi + fi + DIR_OWN=$WS_USER:$WS_GROUP + CONF_OWN=$WS_USER:$WS_GROUP + else + SUCC=1 + fi +done + +} + + +LSINSTALL_DIR=`dirname "$0"` +cd $LSINSTALL_DIR + +init +license +install_dir +test_license +admin_login + + +if [ $INSTALL_TYPE = "reinstall" ]; then + + configAdminEmail + if [ $INST_USER = "root" ]; then + hostPanels + fi + if [ "x$HOST_PANEL" = "x" ]; then + getUserGroup + stopLshttpd + getServerPort + getAdminPort + configRuby + enablePHPHandler + else + hostPanelConfig + fi +fi + +if [ "x$HOST_PANEL" = "x" ]; then + configChroot +fi + +cat < +SecRuleEngine off +SecAuditEngine on +SecDebugLogLevel 0 +SecAuditLogRelevantStatus ^(?:5|4(?!04)) +SecAuditLogParts ABIJDEFHZ +SecAuditLogType Serial +SecAuditLog /usr/local/lsws/logs/auditmodsec.log +SecDataDir /usr/local/lsws/modsec +Include /usr/local/lsws/conf/comodo_litespeed/*.conf +Include /usr/local/lsws/conf/rules.conf + + diff --git a/locale/br/LC_MESSAGES/django.mo b/locale/br/LC_MESSAGES/django.mo index 1da860c1c625193bfbe50d3a77b5041d0a95ab43..9824301abd69415f3dd3c38761cd016df908e031 100644 GIT binary patch delta 25 hcmX@~kmb-rmJQ`|xD0g-4HOJbtPIUJH_maK0sx3;38w%6 delta 25 hcmX@~kmb-rmJQ`|xD0d+4HOKGtqcq|H_maK0sx3537!A| diff --git a/locale/br/LC_MESSAGES/django.po b/locale/br/LC_MESSAGES/django.po index cd6589f52..50cd858f7 100644 --- a/locale/br/LC_MESSAGES/django.po +++ b/locale/br/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2018-10-09 15:48+0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -24,57 +25,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Английски" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Китайски" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Български" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Португалски" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Японски" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Босненски" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "Гръцки" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "Руски" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "Турски" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "Испански" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "Френски" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Политика" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "Filename" msgid "Vietnamese" @@ -136,6 +137,7 @@ msgstr "Първо Име" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -163,6 +165,9 @@ msgstr "Откажи Архив" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -176,6 +181,7 @@ msgid "File" msgstr "Файл" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Дата" @@ -189,6 +195,10 @@ msgstr "Размер" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -241,6 +251,7 @@ msgstr "IP Адрес" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -251,6 +262,8 @@ msgid "Password" msgstr "Парола" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Порт" @@ -295,6 +308,14 @@ msgstr "Дестинацията е добавена" #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -327,7 +348,7 @@ msgstr "Дестинацията е добавена" #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Връзката е неуспешна. Моля презаредете страницата." @@ -462,6 +483,9 @@ msgid "Start Transfer" msgstr "Стартирай трансфер" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -470,7 +494,7 @@ msgstr "Стартирай трансфер" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "Откажи" @@ -557,6 +581,8 @@ msgstr "Състояние" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -565,7 +591,7 @@ msgstr "Състояние" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Съобщение за Грешка" @@ -582,6 +608,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Използвай tab за навигация в контролния панел." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -648,6 +675,7 @@ msgstr "Функции на Бази от Данни" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -675,6 +703,7 @@ msgstr "FTP Функции" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -712,6 +741,7 @@ msgstr "PHP Конфигурация" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -725,6 +755,8 @@ msgid "Security" msgstr "Сигурност" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1085,6 +1117,8 @@ msgid "Access Webmail" msgstr "Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1092,12 +1126,14 @@ msgstr "Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Създай FTP Акаунт" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1106,8 +1142,8 @@ msgstr "Създай FTP Акаунт" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Изтрий FTP Акаунт" @@ -1165,6 +1201,7 @@ msgstr "LiteSpeed Настройки" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP Настройки" @@ -1207,6 +1244,7 @@ msgid "Access Log" msgstr "Access Лог" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1318,39 +1356,49 @@ msgstr "SpamAssassin Конфигурация" msgid "SpamAssassin" msgstr "SpamAssassin" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Email пренасочване" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "Manage Services" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "Управлявай PowerDNS" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "Управлявай Postfix" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "Управлявай FTP" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Инсталирай Модул" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1449,7 +1497,7 @@ msgstr "Списък на базите от данни или промени т #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Избери Домейн" @@ -1544,7 +1592,8 @@ msgstr "Позволи" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Име" @@ -1584,6 +1633,7 @@ msgstr "IPV6 Адрес" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1723,6 +1773,8 @@ msgid "Select Zone" msgstr "Избери Зона" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1764,6 +1816,961 @@ msgstr "Добави Премахни Записи" msgid "Add Delete/Records" msgstr "Добави Премахни/Записи" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Промени Email Парола - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can compose email message to be sent out later." +msgstr "От тази страница може да настройте SpamAssassin." + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site Name" +msgid "Template Name" +msgstr "Име на сайт" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Име" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Forward Email" +msgid "From Email" +msgstr "Пренасочи Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Изтрий Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save edits" +msgid "Save Template" +msgstr "Запази промените" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Създай Email акаунт - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Създай Email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Фанилия" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Път" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +msgstr "Паркирай Домейн" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Назад" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Setup Email Forwarding - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Email пренасочване - CyberPanel" + +#: 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 "Email Policy Server не е стартиран" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:32 +#: emailPremium/templates/emailPremium/listDomains.html:32 +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Позволи" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Промени Email Парола - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Промени Email Парола" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +#, fuzzy +#| msgid "On this page you manage emails limits for Domains/Email Addresses" +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "От тази страница може да управлявате лимитите за Домейни/Email адреси." + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +#, fuzzy +#| msgid "Select All" +msgid "Select List" +msgstr "Избери всички" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Затвори" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "Потвърди" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Добави Домейни" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Forward Email" +msgid "Load Emails" +msgstr "Пренасочи Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "Сървър Статус" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "Действия" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage SMTP Hosts" +msgstr "Управлявай Postfix" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"От тази страница може да променяте версията на панела, както и да извършвате " +"upgrade до последната версия на CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save edits" +msgid "Save Host" +msgstr "Запази промените" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Избери Собственик" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Emails" + +#: 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 +#, fuzzy +#| msgid "Select Website" +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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "Покажи" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Избери FTP Акаунт" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Стартирай" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Emails" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "Покажи" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Всички функции, които са свързани с определена страница." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Използвани ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Позволено" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Използван Трафик" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Зареди Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Зареди Error Логове" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Логовете са изтеглени" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Лог файловете не са извлечени. Използвайте терминала за техния преглед. " +"Съобщение за грешка: " + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Следваща" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Минала" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Добави Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Списък с Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "Domain Alias" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "Добави нова Cron Job" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "Този път е относим към: " + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Отсави празни за по-подразбиране" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Избери PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Допълнителни функции" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Създай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +msgid "Website succesfully created." +msgstr "Сайтът е успешно създаден." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "PHP Версията е променена на:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Изтрит:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "SSL издаден за: " + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "Промените са запаметени успешно." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Издаден" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Конфигурация" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Редактирай vHost Main Configurations" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Добави Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Добави свой SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Добави SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "Промени PHP Версия" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "Промени PHP" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL Запазен" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "SSL не е запазен, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Запази" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Текущата конфигурация във файла е изтеглена" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Текущата конфигурация не е изтеглена, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "Конфигурацията е запазена." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Наличните rewrite rules са изтеглени." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Наличните rewrite rules не са изтеглени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Новите rewrite rules не са запаметени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Запази Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "PHP Версията не е променена. Съобщение за грешка:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "PHP е успешно сменена за:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Файлове" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Файл Мениджър" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "open_basedir Защита" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "Създай FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "Изтрий FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "Запази промените" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "Промените са успешно добавени." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Паркирай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Нов SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Инсталатор на Приложения" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "Инсталирай Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "Инсталирай Joomla с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "Закачи Git към този уебсайт!" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +msgid "Install Prestashop" +msgstr "Инсталирай Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "Prestashop" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1789,7 +2796,8 @@ msgstr "SpamAssassin не е инсталиран" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1798,7 +2806,8 @@ msgstr "Инсталирай" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "Неуспешно стартиране на инсталацията. Съобщение за грешка:" @@ -1807,8 +2816,10 @@ msgstr "Неуспешно стартиране на инсталацията. #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1827,7 +2838,8 @@ msgstr "Не можем да се свържем, моля презаредет #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "Инсталацията не завърши успешно." @@ -1844,7 +2856,8 @@ msgstr "Зимата идва ... както и SpamAssassin." #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1882,15 +2895,6 @@ msgstr "Използвани ресурси" msgid "Limits are being Applied!" msgstr "Лимитите са зададени!" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Забрани" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1898,15 +2902,6 @@ msgstr "Забрани" msgid "Limits are not being applied!" msgstr "Лимитите не са променени!" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Позволи" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1990,34 +2985,10 @@ msgstr "Опресни логове" msgid "Domains - CyberPanel" msgstr "Домейни - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Списък с Домейн" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "От тази страница може да управлявате лимитите за Домейни/Email адреси." -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Домейни" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "Email Policy Server не е стартиран" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "Позволи" - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "Email Policy Server - CyberPanel" @@ -2171,11 +3142,6 @@ msgstr "Постави файловете за качване тук." msgid "Progress" msgstr "Прогрес" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "Действия" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "Премахни" @@ -2261,20 +3227,6 @@ msgstr "Файлът е успешно създаден." msgid "Confirm Deletion!" msgstr "Потвърди изтриването!" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "Потвърди" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Затвори" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "Списък на файлове/директории!" @@ -2502,7 +3454,8 @@ msgid "Action failed. Error message:" msgstr "Действието не е изпълнено, защото:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Действието е успешно изпълнено." @@ -2530,48 +3483,57 @@ msgstr "Управлявайте сигурността на сървъра от msgid "ModSecurity - CyberPanel" msgstr "ModSecurity - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "ModSecurity Конфигурация!" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "ModSec Документация" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "От тази страница може да настройте ModSecurity" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "ModSecurity" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: firewall/templates/firewall/modSecurityRules.html:70 #: firewall/templates/firewall/modSecurityRulesPacks.html:28 #: firewall/templates/firewall/spamassassin.html:29 msgid "ModSecurity is not installed " msgstr "ModSecurity не е инсталиран" -#: firewall/templates/firewall/modSecurity.html:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" "ModSecurity е успешно инсталиран. Страницата ще се презареди след 3 секунди.." -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "Зимата идва ... както и ModSecurity." -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Промените не са запазени. Съобщение са грешка:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "ModSecurity конфигурация е успешно обновлена." @@ -2684,15 +3646,6 @@ msgstr "Ключ" msgid "Add Key" msgstr "Добави Ключ" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Запази" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH Ключа е премахнат" @@ -2981,17 +3934,6 @@ msgstr "Редактирай PHP конфигурация от тази стра msgid "Advanced" msgstr "За Напреднали" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Избери PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3055,6 +3997,7 @@ msgstr "Инсталирайте или премахнете PHP модули о #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Избери PHP Версия" @@ -3081,18 +4024,9 @@ msgstr "Инсталирай" msgid "Uninstall" msgstr "Де-Инсталирай" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Назад" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Детайлите не са извлечени, защото:" @@ -3354,14 +4288,6 @@ msgstr "Последна Версия" msgid "Access Logs - CyberPanel" msgstr "Access Логове - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Access Логове" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Access логове за главния web сървър" @@ -3467,37 +4393,45 @@ msgstr "Виж LiteSpeed статус и логове." msgid "LiteSpeed Status - CyberPanel" msgstr "LiteSpeed Статус - CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "LiteSpeed Статус" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" "На тази страница може да разгледате информация за OpenLiteSpeed процесите" -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "LiteSpeed Processes" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "Process ID" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Main Процес" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "lscgid Процес" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Worker Process" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3506,21 +4440,75 @@ msgstr "" "грешка. Разгледайте главния Cyberpanel лог за повече информация." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Рестартирай LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Спри LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Възникна проблем. Прегледайте главния лог на CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Няма връзка със сървъра." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Файл Мениджър" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Сървър Статус" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Промени лимити" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Нов файл" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Промени" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "Services - CyberPanel" @@ -3562,7 +4550,8 @@ msgid "Tuning Details" msgstr "Детайли за Настройки" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Max Connections" @@ -3587,7 +4576,8 @@ msgid "Enable GZIP Compression" msgstr "Включи GZIP Компресия" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "В момента" @@ -3616,50 +4606,62 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP Настройки - CyberPanel" #: 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 "Поставете как всяка PHP версия ще се държи на сървъра." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Initial Request Timeout (secs)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Memory Soft Limit" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Memory Hard Limit" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Process Soft Limit" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Process Hard Limit" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Persistent Connection" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Настрой PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Настройките не са въведени, защото:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Детайлите са успешно извлечени." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP Версия за" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Успешно настроен" @@ -3863,12 +4865,6 @@ msgstr "Невалиден Email" msgid "Websites Limit" msgstr "Лимити за страници" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Потребителско Име" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4012,52 +5008,14 @@ msgstr "( 0 = Без Лимит )" msgid "Application Installer - CyberPanel" msgstr "Инсталатор на Приложения - CyberPanel" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Инсталатор на Приложения" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "Инсталатор на Приложения" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "Инсталирай Wordpress с LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress с LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "Инсталирай Joomla(?) с LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "Инсталирай Joomla с LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "Joomla" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Добави нова страница - CyberPanel" @@ -4085,23 +5043,6 @@ msgstr "Избери Собственик" msgid "Do not enter WWW, it will be auto created!" msgstr "НЕ въвеждайте www. То ще бъде автоматично създадено!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Допълнителни функции" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -msgid "Website succesfully created." -msgstr "Сайтът е успешно създаден." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Премахни страница - CyberPanel" @@ -4156,11 +5097,6 @@ msgstr "Паркиран домейн" msgid "File System Path" msgstr "Системен път" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Издаден" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "Няма паркиран домейн" @@ -4239,13 +5175,6 @@ msgstr "Парола" msgid "Database Prefix" msgstr "База от данни prefix" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Път" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4290,268 +5219,6 @@ msgstr "Wordpress с LSCache" msgid "Blog Title" msgstr "Име на Блог" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "Покажи" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Всички функции, които са свързани с определена страница." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Използвани ресурси" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Ресурси" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Позволено" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Използван Трафик" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Зареди Access Логове" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Зареди Error Логове" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Логовете са изтеглени" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Лог файловете не са извлечени. Използвайте терминала за техния преглед. " -"Съобщение за грешка: " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Следваща" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Минала" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Конфигурация" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Редактирай vHost Main Configurations" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Добави Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "Rewrite Rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Добави свой SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Добави SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "Промени PHP Версия" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "Промени PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL Запазен" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "SSL не е запазен, защото:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Текущата конфигурация във файла е изтеглена" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Текущата конфигурация не е изтеглена, защото:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "Конфигурацията е запазена." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Наличните rewrite rules са изтеглени." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Наличните rewrite rules не са изтеглени, защото:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Новите rewrite rules не са запаметени, защото:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Запази Rewrite Rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "PHP Версията не е променена. Съобщение за грешка:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "PHP е успешно сменена за:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Файлове" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Файл Мениджър" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "open_basedir Защита" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "open_basedir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "Създай FTP Акаунт" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "Изтрий FTP Акаунт" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "Запази промените" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "Промените са успешно добавени." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "Закачи Git към този уебсайт!" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "Git" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -msgid "Install Prestashop" -msgstr "Инсталирай Prestashop" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "Prestashop" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "Cron Мениджър - CyberPanel" @@ -4811,55 +5478,6 @@ msgstr "Страница" msgid "Successfully " msgstr "Успешно" -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Добави Домейни" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "Domain Alias" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "Добави нова Cron Job" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "Cron Jobs" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "Този път е относим към: " - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Отсави празни за по-подразбиране" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Създай Домейн" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "PHP Версията е променена на:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Изтрит:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "SSL издаден за: " - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "Промените са запаметени успешно." - #~ msgid "CPU Status" #~ msgstr "CPU Статус" diff --git a/locale/bs/LC_MESSAGES/django.mo b/locale/bs/LC_MESSAGES/django.mo index bb6e5bf28a872939ab10a2bf413035401a3b7e19..678cde3836c19323984f284724517759673287ff 100644 GIT binary patch delta 25 hcmccpgz@$h#tn%cT!y-a1`38IR)*%Avpqg&0sw`C2}u9| delta 25 hcmccpgz@$h#tn%cTn4&^1`3A8RtAQfvpqg&0sw_U2|xe< diff --git a/locale/bs/LC_MESSAGES/django.po b/locale/bs/LC_MESSAGES/django.po index 5521623a7..243d8a0c9 100644 --- a/locale/bs/LC_MESSAGES/django.po +++ b/locale/bs/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2017-10-21 21:00+0200\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -24,57 +25,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.1\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Engleski" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Kineski" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "English" msgid "Polish" msgstr "Engleski" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -138,6 +139,7 @@ msgstr "Ime datoteke" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -167,6 +169,9 @@ msgstr "Kreiraj backup" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -180,6 +185,7 @@ msgid "File" msgstr "Datoteka" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Datum" @@ -193,6 +199,10 @@ msgstr "Veličina" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -247,6 +257,7 @@ msgstr "IP adresa" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -257,6 +268,8 @@ msgid "Password" msgstr "Šifra" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Port" @@ -303,6 +316,14 @@ msgstr "Destinacija je dodana." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -335,7 +356,7 @@ msgstr "Destinacija je dodana." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Ne mogu se spojiti na udaljeni računar. Molimo da refreshujete " @@ -480,6 +501,9 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -488,7 +512,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "" @@ -587,6 +611,8 @@ msgstr "Upravljajte postavkama" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -595,7 +621,7 @@ msgstr "Upravljajte postavkama" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Greška: " @@ -612,6 +638,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Koristi tabove da te vode do kontrolnog panela" #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -680,6 +707,7 @@ msgstr "Funkcije za bazu podataka" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -707,6 +735,7 @@ msgstr "FTP funkcije" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -746,6 +775,7 @@ msgstr "Izmijeni PHP konfiguracije" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -759,6 +789,8 @@ msgid "Security" msgstr "Sigurnost" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1131,6 +1163,8 @@ msgid "Access Webmail" msgstr "Pristup webmailu" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1138,12 +1172,14 @@ msgstr "Pristup webmailu" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Kreiranje FTP računa" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1152,8 +1188,8 @@ msgstr "Kreiranje FTP računa" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Briši FTP račun" @@ -1213,6 +1249,7 @@ msgstr "LiteSpeed tuning" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP tuning" @@ -1257,6 +1294,7 @@ msgid "Access Log" msgstr "Pristupni log" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1384,45 +1422,55 @@ msgstr "Upravljajte postavkama" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Email log" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "Upravljanje SSL-om" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "Upravljanje SSL-om" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "Upravljanje SSL-om" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Instalacija extenzija" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1519,7 +1567,7 @@ msgstr "Izlistajte baze podataka ili promijenite njihove šifre." #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Odaberite domene" @@ -1618,7 +1666,8 @@ msgstr "Uključi" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Ime" @@ -1660,6 +1709,7 @@ msgstr "IP adresa" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1807,6 +1857,8 @@ msgid "Select Zone" msgstr "Izaberi zonu" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1850,6 +1902,1008 @@ msgstr "Dodaj / izbriši unose" msgid "Add Delete/Records" msgstr "Dodaj / izbriši unose" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Promijeni Email šifru - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "Na ovoj stranici možete podesiti Backup destinacije (SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "Ime datoteke" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Ime" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Kreiraj email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Izbriši email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Kreiranje email računa" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Kreiraj email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Prezime" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Putanja" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Email" +msgid "Create List" +msgstr "Kreiraj email" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Idi nazad" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Kreiranje email računa" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +msgid "Enable Now." +msgstr "Uključi" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Korisničko ime" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Isključi" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Uključi" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Promijeni Email šifru - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Promijeni Email šifru" + +#: 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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "Izaberite Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Izbriši sajt" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Destination" +msgid "Add More Emails" +msgstr "Dodaj destinaciju" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Kreiraj email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "Status servera" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "FTP funkcije" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Upravljajte SSL-om - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "Upravljanje SSL-om" + +#: 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 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Vlasnik" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Početna - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Emailovi" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Odabir sajta" + +#: 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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "Prethodno" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Izaberite FTP nalog" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Početak" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Emailovi" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "Prethodno" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Upotreba resursa" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Resurs" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Dopušteno" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Upotreba jesečnog protoka" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +#, fuzzy +#| msgid "Access Logs" +msgid "Load Access Logs" +msgstr "Pristupni logovi" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Pristupni logovi" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +#, fuzzy +#| msgid "Error Logs" +msgid "Load Error Logs" +msgstr "Log grešaka" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Logovi" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Sljedeće" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Prethodno" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +#, fuzzy +#| msgid "Domain Name" +msgid "Domains" +msgstr "Naziv domene" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +#, fuzzy +#| msgid "Add Destination" +msgid "Add Domains" +msgstr "Dodaj destinaciju" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +#, fuzzy +#| msgid "Select Domain" +msgid "List Domains" +msgstr "Odaberite domene" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domain Name" +msgid "Domain Alias" +msgstr "Naziv domene" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Izaberi PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Dodatne informacije" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +#, fuzzy +#| msgid "Create Email" +msgid "Create Domain" +msgstr "Kreiraj email" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr " je spješno kreiran. " + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +#, fuzzy +#| msgid "Version Management" +msgid "PHP Version Changed to:" +msgstr "Upravljanje verzijama" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +#, fuzzy +#| msgid "Delete" +msgid "Deleted:" +msgstr "Briši" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +#, fuzzy +#| msgid "SSL Issued for" +msgid "SSL Issued:" +msgstr "SSL izdat za " + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "Baza podataka je uspješno kreirana." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +#, fuzzy +#| msgid "Issue SSL" +msgid "Issue" +msgstr "Izdavanje SSL" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Upravljajte postavkama" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules (.htaccess)" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +#, fuzzy +#| msgid "Add SSL" +msgid "Add Your Own SSL" +msgstr "Dodaj SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Dodaj SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "PHP verzija" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Promjena" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SLL spremljen" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Sačuvaj" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "SSH Configurations Saved." +msgid "Configurations saved." +msgstr "SSH konfiguracije su sačuvane." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Trenutno rewrite pravilo je dohvaćeno." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Nisam mogao dohvatiti trenutno rewrite pravilo. Poruka s greškom:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Nisam mogao promijeniti vrijednost rewrite pravila. Poruka s greškom:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create FTP account. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Ne mogu napraviti FTP nalog. Poruka o grešci:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "Šifra je uspješno promijenjena za:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Datoteke" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Upravljač datotekama" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "Kreiranje FTP računa" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "Briši FTP račun" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Sačuvaj promjene" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Rule successfully added." +msgid "Changes successfully saved." +msgstr "Pravilo je uspješno dodano." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Email" +msgid "Create Lists" +msgstr "Kreiraj email" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Upravljanje SSL-om" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Instalacija aplikacija" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install wordpress with LSCache" +msgstr "Wordpress sa LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress sa LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "Wordpress sa LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Instaliraj" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1881,7 +2935,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1892,7 +2947,8 @@ msgstr "Instaliraj" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1903,8 +2959,10 @@ msgstr "Nije moguće dodati destinaciju. Greška je:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1923,7 +2981,8 @@ msgstr "Ne mogu se spojiti na udaljeni računar. Molimo da refreshujete" #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1940,7 +2999,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1988,15 +3048,6 @@ msgstr "Upotreba resursa" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Isključi" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -2004,15 +3055,6 @@ msgstr "Isključi" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Uključi" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2115,40 +3157,10 @@ msgstr "FTP logovi" msgid "Domains - CyberPanel" msgstr "Početna - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -#, fuzzy -#| msgid "Select Domain" -msgid "List Domains" -msgstr "Odaberite domene" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -#, fuzzy -#| msgid "Domain Name" -msgid "Domains" -msgstr "Naziv domene" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Uključi" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -2334,13 +3346,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "FTP funkcije" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2448,20 +3453,6 @@ msgstr " je spješno kreiran. " msgid "Confirm Deletion!" msgstr "Upravljajte postavkama" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2713,7 +3704,8 @@ msgid "Action failed. Error message:" msgstr "Nije uspjelo. Greška:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Uspješno je radnja obavljena." @@ -2743,55 +3735,64 @@ msgstr "Upravljajte bezbijednošću servera na ovoj stranici." msgid "ModSecurity - CyberPanel" msgstr "Bezbijednost - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "Izmijeni PHP konfiguracije" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." msgstr "Na ovoj stranici možete podesiti Backup destinacije (SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Sigurnost" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not save rewrite rules. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Nisam mogao promijeniti vrijednost rewrite pravila. Poruka s greškom:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid " is successfully created." @@ -2930,15 +3931,6 @@ msgstr "Ključ" msgid "Add Key" msgstr "Dodaj ključ" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Sačuvaj" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH ključ je izbrisan" @@ -3242,17 +4234,6 @@ msgstr "Izmijenite PHP konfiguracije na ovoj stranici." msgid "Advanced" msgstr "Napredno" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Izaberi PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3319,6 +4300,7 @@ msgstr "" #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "PHP verzija" @@ -3347,18 +4329,9 @@ msgstr "Instaliraj" msgid "Uninstall" msgstr "Ukloni" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Idi nazad" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Ne mogu da prikupim detalje. Poruka o grešci:" @@ -3640,14 +4613,6 @@ msgstr "Najnovija verzija" msgid "Access Logs - CyberPanel" msgstr "Pristupni logovi - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Pristupni logovi" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Access logovi za glavni web server." @@ -3762,59 +4727,121 @@ msgstr "Pregled LiteSpeed statusa i log fajlova." msgid "LiteSpeed Status - CyberPanel" msgstr "LiteSpeed status" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "LiteSpeed status:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "Na ovoj stranici možete vidjeti informacije vaših LiteSpeed procesa." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "LiteSpeed procesi" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "ID procesa" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Glavni proces" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "lscgid proces" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Radni procesi" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." msgstr "" #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 #, fuzzy #| msgid "Reboot LiteSpeed" msgid "Reboot Litespeed" msgstr "Ponovo pokreni LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Zaustavi LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Ne mogu se spojiti na udaljeni računar." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Upravljač datotekama" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "Status servera" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Promjena" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "Datoteka" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Promjena" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -3854,7 +4881,8 @@ msgid "Tuning Details" msgstr "" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "" @@ -3879,7 +4907,8 @@ msgid "Enable GZIP Compression" msgstr "" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Trenutno:" @@ -3906,52 +4935,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP modifikacije" #: 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:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "PHP verzija " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "" @@ -4155,12 +5196,6 @@ msgstr "Neispravan email" msgid "Websites Limit" msgstr "" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Korisničko ime" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4303,60 +5338,18 @@ msgstr "(0=Neograničeno)" msgid "Application Installer - CyberPanel" msgstr "Instalacija aplikacija" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Instalacija aplikacija" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Instalacija aplikacija" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install wordpress with LSCache" -msgstr "Wordpress sa LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress sa LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 #, fuzzy #| msgid "Wordpress with LSCache" msgid "Install Joomla with(?) LSCache" msgstr "Wordpress sa LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "Wordpress sa LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "" @@ -4382,24 +5375,6 @@ msgstr "Vlasnik" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Dodatne informacije" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr " je spješno kreiran. " - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "" @@ -4460,13 +5435,6 @@ msgstr "" msgid "File System Path" msgstr "Status servera" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -#, fuzzy -#| msgid "Issue SSL" -msgid "Issue" -msgstr "Izdavanje SSL" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4561,13 +5529,6 @@ msgstr "Šifra" msgid "Database Prefix" msgstr "Naziv baze" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Putanja" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4628,298 +5589,6 @@ msgstr "Wordpress sa LSCache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "Prethodno" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Upotreba resursa" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Resurs" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Dopušteno" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Upotreba jesečnog protoka" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -#, fuzzy -#| msgid "Access Logs" -msgid "Load Access Logs" -msgstr "Pristupni logovi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -#, fuzzy -#| msgid "Error Logs" -msgid "Load Error Logs" -msgstr "Log grešaka" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Logovi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Sljedeće" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Prethodno" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Upravljajte postavkama" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules (.htaccess)" -msgstr "Sačuvaj promjene" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Sačuvaj promjene" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -#, fuzzy -#| msgid "Add SSL" -msgid "Add Your Own SSL" -msgstr "Dodaj SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Dodaj SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "PHP verzija" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Promjena" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SLL spremljen" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "SSH konfiguracije su sačuvane." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Trenutno rewrite pravilo je dohvaćeno." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Nisam mogao dohvatiti trenutno rewrite pravilo. Poruka s greškom:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Nisam mogao promijeniti vrijednost rewrite pravila. Poruka s greškom:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Sačuvaj promjene" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create FTP account. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Ne mogu napraviti FTP nalog. Poruka o grešci:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "Šifra je uspješno promijenjena za:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Datoteke" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Upravljač datotekama" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "Kreiranje FTP računa" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "Briši FTP račun" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Sačuvaj promjene" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "Pravilo je uspješno dodano." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Instaliraj" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5199,69 +5868,6 @@ msgstr "Sajt " msgid "Successfully " msgstr "Uspješno " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -#, fuzzy -#| msgid "Add Destination" -msgid "Add Domains" -msgstr "Dodaj destinaciju" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domain Name" -msgid "Domain Alias" -msgstr "Naziv domene" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -#, fuzzy -#| msgid "Create Email" -msgid "Create Domain" -msgstr "Kreiraj email" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -#, fuzzy -#| msgid "Version Management" -msgid "PHP Version Changed to:" -msgstr "Upravljanje verzijama" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -#, fuzzy -#| msgid "Delete" -msgid "Deleted:" -msgstr "Briši" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSL Issued:" -msgstr "SSL izdat za " - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "Baza podataka je uspješno kreirana." - #~ msgid "CPU Status" #~ msgstr "Status CPU-a" diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo index c9b160698c5df8ebcbf816028cdadbece27718b0..ce9569e936fa0c6d2f822dff2cd5c45f3ddaaf24 100644 GIT binary patch delta 25 hcmX@Qfa&N0rVVQoxD0g-4HOJbtPIUJZ%^pc2LOFr2?GEC delta 25 hcmX@Qfa&N0rVVQoxD0d+4HOKGtqcq|Z%^pc2LOE-2>Jj3 diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po index 822c0631e..87e79e52f 100644 --- a/locale/cn/LC_MESSAGES/django.po +++ b/locale/cn/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2017-10-29 19:32+0100\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -25,57 +26,57 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.0.4\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "英语" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "中文" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "保加利亚语" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "葡萄牙语" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "日语" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "波斯尼亚语" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "政策" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -139,6 +140,7 @@ msgstr "文件名" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -166,6 +168,9 @@ msgstr "取消备份" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -179,6 +184,7 @@ msgid "File" msgstr "文件" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "日期" @@ -192,6 +198,10 @@ msgstr "大小" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -244,6 +254,7 @@ msgstr "IP地址" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -254,6 +265,8 @@ msgid "Password" msgstr "密码" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "端口" @@ -300,6 +313,14 @@ msgstr "远程目录已添加" #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -332,7 +353,7 @@ msgstr "远程目录已添加" #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "无法连接到服务器, 请刷新此页面" @@ -471,6 +492,9 @@ msgid "Start Transfer" msgstr "开始迁移" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -479,7 +503,7 @@ msgstr "开始迁移" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "取消" @@ -567,6 +591,8 @@ msgstr "配置" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -575,7 +601,7 @@ msgstr "配置" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "错误信息: " @@ -592,6 +618,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "通过标签页来浏览控制面板" #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -658,6 +685,7 @@ msgstr "数据库功能" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -685,6 +713,7 @@ msgstr "FTP功能" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -722,6 +751,7 @@ msgstr "设置PHP参数" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -735,6 +765,8 @@ msgid "Security" msgstr "安全" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1101,6 +1133,8 @@ msgid "Access Webmail" msgstr "进入Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1108,12 +1142,14 @@ msgstr "进入Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "创建FTP用户" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1122,8 +1158,8 @@ msgstr "创建FTP用户" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "删除FTP用户" @@ -1183,6 +1219,7 @@ msgstr "LiteSpeed设置" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP设置" @@ -1227,6 +1264,7 @@ msgid "Access Log" msgstr "访问日志" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1352,45 +1390,55 @@ msgstr "配置" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Email日志" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "管理SSL" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "管理SSL" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "管理SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "安装扩展" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1487,7 +1535,7 @@ msgstr "查看数据库或修改密码" #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "选择域名" @@ -1582,7 +1630,8 @@ msgstr "开启" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "名称" @@ -1624,6 +1673,7 @@ msgstr "IP地址" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1765,6 +1815,8 @@ msgid "Select Zone" msgstr "选择DNS区域" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1806,6 +1858,988 @@ msgstr "添加/删除记录" msgid "Add Delete/Records" msgstr "添加/删除记录" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "修改Email密码 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "这里是远程备份页面(SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "文件名" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "名" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "创建Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "删除Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "创建Email用户 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "创建Email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "姓" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "路径" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Email" +msgid "Create List" +msgstr "创建Email" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "返回" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "创建Email用户 - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "开启" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "修改Email密码 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "修改Email密码" + +#: 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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "选择Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "关闭" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "添加域名" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "创建Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "服务器状态" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "FTP功能" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "管理SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "管理SSL" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "此页面可以查看并更新至CyberPanel最新版本 " + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "选择拥有者" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "主页 - Cyberpanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Emails" + +#: 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 +#, fuzzy +#| msgid "Select Website" +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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "上一个" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "选择FTP用户" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "开始" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Emails" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "上一个" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "所有与网站相关的功能." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "资源使用量" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "资源" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "可用" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "流量使用量" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "读取访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "读取错误日志" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "日志读取成功" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "下一个" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "上一个" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "域名" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "添加域名" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "查看域名" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domains" +msgid "Domain Alias" +msgstr "域名" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "此目录相对与:" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "留空则设置为默认根目录." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "无效域名(注意: 不需要添加http或https)" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "选择PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "额外功能" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "创建域名" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "已成功添加" + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "版本管理:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "删除:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "已为签发证书:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "成功创建数据库" + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "签发SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "配置" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "编辑vHost主配置" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "添加Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "添加Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "选择PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "修改" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL证书已保存" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "无法保存SSL证书, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "保存" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "当前配置读取成功." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "无法读取当前配置, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "SSH Configurations Saved." +msgid "Configurations saved." +msgstr "SSH设置已保存" + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "当前Rewrite rules读取成功." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "无法读取当前Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "无法保存Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create website. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "无法创建网站, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "已成功为修改密码 :" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "文件" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "文件管理" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "创建FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "删除FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "保存修改" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Rule successfully added." +msgid "Changes successfully saved." +msgstr "成功添加规则" + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Email" +msgid "Create Lists" +msgstr "创建Email" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "管理SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "应用安装器" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "安装Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Install wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "安装Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "安装" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1837,7 +2871,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1848,7 +2883,8 @@ msgstr "安装" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1859,8 +2895,10 @@ msgstr "无法添加远程目录, 错误信息: " #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1879,7 +2917,8 @@ msgstr "无法连接, 请刷新此页面" #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1896,7 +2935,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1944,15 +2984,6 @@ msgstr "资源使用量" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "关闭" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1960,15 +2991,6 @@ msgstr "关闭" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "开启" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2075,36 +3097,10 @@ msgstr "FTP日志" msgid "Domains - CyberPanel" msgstr "主页 - Cyberpanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "查看域名" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "域名" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "开启" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -2290,13 +3286,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "FTP功能" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2404,20 +3393,6 @@ msgstr "已成功添加" msgid "Confirm Deletion!" msgstr "配置" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "关闭" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2667,7 +3642,8 @@ msgid "Action failed. Error message:" msgstr "操作失败, 错误信息: " #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "操作成功" @@ -2697,55 +3673,64 @@ msgstr "在此页面管理服务器安全相关内容" msgid "ModSecurity - CyberPanel" msgstr "安全 - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "设置PHP参数" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." msgstr "这里是远程备份页面(SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "安全" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not fetch current configuration. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "无法读取当前配置, 错误信息:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid "Backup Process successfully started." @@ -2884,15 +3869,6 @@ msgstr "密钥" msgid "Add Key" msgstr "添加密钥" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "保存" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH密钥已删除" @@ -3191,17 +4167,6 @@ msgstr "在此页面设置PHP参数" msgid "Advanced" msgstr "高级" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "选择PHP版本" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3267,6 +4232,7 @@ msgstr "在此页面安装/卸载PHP扩展" #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "选择PHP版本" @@ -3293,18 +4259,9 @@ msgstr "安装" msgid "Uninstall" msgstr "卸载" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "返回" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "无法获取详情, 错误信息: " @@ -3579,14 +4536,6 @@ msgstr "最新版本" msgid "Access Logs - CyberPanel" msgstr "访问日志 - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "访问日志" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Web服务器日志" @@ -3698,57 +4647,119 @@ msgstr "查看LiteSpeed状态与日志" msgid "LiteSpeed Status - CyberPanel" msgstr "LiteSpeed状态 - CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "LiteSpeed状态:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "此页面可以查看LiteSpeed进程信息." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "LiteSpeed进程" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "进程ID" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "主进程" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "lscgid进程" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "工作进程" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." msgstr "无法获取详情, LiteSpeed没有运行或者有错误发生 请检查CyberPnael日志." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "重启LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "停止LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "发生错误, 请查看CyberPanel主日志." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "无法连接到服务器." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "文件管理" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "服务器状态" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "修改" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "文件" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "修改" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -3788,7 +4799,8 @@ msgid "Tuning Details" msgstr "设置详情" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "最大连接数" @@ -3813,7 +4825,8 @@ msgid "Enable GZIP Compression" msgstr "开启GZIP压缩" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "当前:" @@ -3842,52 +4855,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP设置 - CyberPanel" #: 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 "在此调整每个PHP版本." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "初始化请求超时 (秒)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "内存软限制" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "内存硬限制" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "进程软限制" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "进程硬限制" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "数据库持久连接" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "设置PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "无法保存设置, 错误信息:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "详情读取成功." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "PHP版本 " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "已成功保存." @@ -4091,12 +5116,6 @@ msgstr "无效的Email" msgid "Websites Limit" msgstr "网站数量限制" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "用户名" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4239,58 +5258,18 @@ msgstr "(0为无限制 )" msgid "Application Installer - CyberPanel" msgstr "应用安装器" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "应用安装器" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "应用安装器" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "安装Wordpress和LS Cache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress和LS Cache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 #, fuzzy #| msgid "Install wordpress with LSCache" msgid "Install Joomla with(?) LSCache" msgstr "安装Wordpress和LS Cache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Install wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "安装Wordpress和LS Cache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "创建新网站 - CyberPanel" @@ -4316,24 +5295,6 @@ msgstr "选择拥有者" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "无效域名(注意: 不需要添加http或https)" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "额外功能" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "已成功添加" - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "删除网站 - CyberPanel" @@ -4394,11 +5355,6 @@ msgstr "" msgid "File System Path" msgstr "系统状态" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "签发SSL证书" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4495,13 +5451,6 @@ msgstr "密码" msgid "Database Prefix" msgstr "数据库名字" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "路径" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4562,292 +5511,6 @@ msgstr "安装Wordpress和LS Cache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "上一个" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "所有与网站相关的功能." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "资源使用量" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "资源" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "可用" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "流量使用量" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "读取访问日志" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "读取错误日志" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "日志读取成功" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "下一个" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "上一个" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "配置" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "编辑vHost主配置" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "保存Rewrite rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "添加SSL证书" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "添加SSL证书" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "选择PHP版本" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "修改" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL证书已保存" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "无法保存SSL证书, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "当前配置读取成功." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "无法读取当前配置, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "SSH设置已保存" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "当前Rewrite rules读取成功." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "无法读取当前Rewrite rules, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "无法保存Rewrite rules, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "保存Rewrite rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "无法创建网站, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "已成功为修改密码 :" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "文件" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "文件管理" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "创建FTP用户" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "删除FTP用户" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "保存修改" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "成功添加规则" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "安装" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5127,59 +5790,6 @@ msgstr "网站 " msgid "Successfully " msgstr "成功 " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "添加域名" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domains" -msgid "Domain Alias" -msgstr "域名" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "此目录相对与:" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "留空则设置为默认根目录." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "创建域名" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "版本管理:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "删除:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "已为签发证书:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "成功创建数据库" - #~ msgid "CPU Status" #~ msgstr "CPU使用量" diff --git a/locale/es/LC_MESSAGES/django.mo b/locale/es/LC_MESSAGES/django.mo index f9ce98c26085f673b7964a0524e94578256200a2..35e4dc753a69ece15aefd7232f7ea296ef1c42b6 100644 GIT binary patch delta 23 ecmdm-yg7M8up*bCuAzZ~p^25D`Q})~FaZEwg9g|D delta 23 ecmdm-yg7M8up*a%uAzZ~p|O>L;pSMyFaZEwKnBkM diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index 0ec00dfe2..46108e86a 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2018-03-05 13:54+0000\n" "Last-Translator: FFrancisco Galan \n" "Language-Team: \n" @@ -24,57 +25,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Inglés" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Chino" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Bulgaro" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Portugués" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Japonés" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Politica" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -138,6 +139,7 @@ msgstr "Nombre del archivo" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -165,6 +167,9 @@ msgstr "Cancelar Copia de seguridad" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -178,6 +183,7 @@ msgid "File" msgstr "Archivo" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Fecha" @@ -191,6 +197,10 @@ msgstr "Tamaño" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -246,6 +256,7 @@ msgstr "Dirección IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -256,6 +267,8 @@ msgid "Password" msgstr "Contraseña" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Puerto" @@ -302,6 +315,14 @@ msgstr "Destino Añadido." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -334,7 +355,7 @@ msgstr "Destino Añadido." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Imposible conectar. Por favour actualice la pagina." @@ -473,6 +494,9 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -481,7 +505,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 #, fuzzy #| msgid "Cancel Backup" msgid "Cancel" @@ -577,6 +601,8 @@ msgstr "Configuraciones" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -585,7 +611,7 @@ msgstr "Configuraciones" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Error:" @@ -602,6 +628,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Use las pestañas para moverse por el panel." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -668,6 +695,7 @@ msgstr "Opciones de Base de datos" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -695,6 +723,7 @@ msgstr "Opciones FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -732,6 +761,7 @@ msgstr "Configuracion PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -745,6 +775,8 @@ msgid "Security" msgstr "Seguridad" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1109,6 +1141,8 @@ msgid "Access Webmail" msgstr "Acceso Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1116,12 +1150,14 @@ msgstr "Acceso Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Crear Cuenta FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1130,8 +1166,8 @@ msgstr "Crear Cuenta FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Eliminar Cuenta FTP" @@ -1191,6 +1227,7 @@ msgstr "Modificar LiteSpeed" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Modificar PHP" @@ -1235,6 +1272,7 @@ msgid "Access Log" msgstr "" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1356,43 +1394,53 @@ msgstr "Configuraciones" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Version Management" +msgid "Email Marketing" +msgstr "Versión" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "Opciones SSL" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "Opciones SSL" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "Opciones SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 msgid "Installed Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1489,7 +1537,7 @@ msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "" @@ -1584,7 +1632,8 @@ msgstr "Activar" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Nombre" @@ -1626,6 +1675,7 @@ msgstr "Dirección IP" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1767,6 +1817,8 @@ msgid "Select Zone" msgstr "" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1808,6 +1860,1001 @@ msgstr "" msgid "Add Delete/Records" msgstr "" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Inicio - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "" +"En esta página usted puede configurar la ubicación para la Copia de seguridad" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "Nombre del archivo" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Nombre" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Crear Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Eliminar Email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Cambios Guardados" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Restore Website - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Restaurar Sitio - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Crear Email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Apellido" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Ruta" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create User" +msgid "Create List" +msgstr "Crear Usuario" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Atras" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Inicio - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +msgid "Enable Now." +msgstr "Activar" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Nombre de Usuario" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Desactivar" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Activar" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Inicio - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Emails" +msgid "Manage Email Lists" +msgstr "Emails" + +#: 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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "Seleccionar Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Eliminar Sitio Web" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Destination" +msgid "Add More Emails" +msgstr "Añadir Destino" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Crear Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "Estado del Servidor" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "Opciones FTP" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Inicio - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "Opciones SSL" + +#: 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 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Cambios Guardados" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Seleccionar Propietario" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Inicio - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Emails" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Seleccionar Sitio Web" + +#: 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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select Website" +msgid "Select STMP Host" +msgstr "Seleccionar Sitio Web" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Iniciar" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Emails" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Recursis Usados" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Recurso" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Permitido" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Trafico Utilizado" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Cargar Reportes" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Cargar Reportes de Error" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Cargar Reportes" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Siguiente" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +#, fuzzy +#| msgid "Domain Name" +msgid "Domains" +msgstr "Nombre de Dominio" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +#, fuzzy +#| msgid "Add Destination" +msgid "Add Domains" +msgstr "Añadir Destino" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +#, fuzzy +#| msgid "List Databases" +msgid "List Domains" +msgstr "Lista de Base de Datos" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domain Name" +msgid "Domain Alias" +msgstr "Nombre de Dominio" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +#, fuzzy +#| msgid "Create Email" +msgid "Create Domain" +msgstr "Crear Email" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "Successfully Deleted" +msgid "Website succesfully created." +msgstr "Eliminado Correctamente" + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +#, fuzzy +#| msgid "Version Management" +msgid "PHP Version Changed to:" +msgstr "Versión" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +#, fuzzy +#| msgid "Delete" +msgid "Deleted:" +msgstr "Eliminar" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +#, fuzzy +#| msgid "SSL Saved" +msgid "SSL Issued:" +msgstr "SSL Guardado" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "successful." +msgid "Changes applied successfully." +msgstr "completado." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +#, fuzzy +#| msgid "Issue SSL" +msgid "Issue" +msgstr "Aplicar SSL" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Configuraciones" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Editar vHost Main Configuracion" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Añadir cambios (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "Añadir cambios (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Cambios Guardados" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Añadir tu propio certificado SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Añadir SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "PHP version " +msgid "Change PHP Version" +msgstr "Version PHP " + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Cambiar" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL Guardado" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "No se han podido guarder los cambios. Error:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Guardar" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "Configurations" +msgid "Configurations saved." +msgstr "Configuraciones" + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "No se han podido guarder los cambios. Error:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Cambios Guardados" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot add destination. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Error al añadir el destino. Error:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Archivos" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Explorador de Archivos" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "Crear Cuenta FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "Eliminar Cuenta FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Guardar Cambios" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Successfully " +msgid "Changes successfully saved." +msgstr "Satisfactoriamente " + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create User" +msgid "Create Lists" +msgstr "Crear Usuario" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Opciones SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Instalador de Aplicaciones" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install wordpress with LSCache" +msgstr "Wordpress con LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress con LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "Wordpress con LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Instalar" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1840,7 +2887,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1851,7 +2899,8 @@ msgstr "Instalar" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1862,8 +2911,10 @@ msgstr "Error al añadir el destino. Error:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1882,7 +2933,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1899,7 +2951,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1943,15 +2996,6 @@ msgstr "Recursis Usados" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Desactivar" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1959,15 +3003,6 @@ msgstr "Desactivar" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Activar" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2066,40 +3101,10 @@ msgstr "Server Logs" msgid "Domains - CyberPanel" msgstr "Inicio - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -#, fuzzy -#| msgid "List Databases" -msgid "List Domains" -msgstr "Lista de Base de Datos" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -#, fuzzy -#| msgid "Domain Name" -msgid "Domains" -msgstr "Nombre de Dominio" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Activar" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Home - CyberPanel" @@ -2283,13 +3288,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "Opciones FTP" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2397,20 +3395,6 @@ msgstr "Eliminado Correctamente" msgid "Confirm Deletion!" msgstr "Configuraciones" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2655,7 +3639,8 @@ msgid "Action failed. Error message:" msgstr "" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "" @@ -2685,56 +3670,65 @@ msgstr "" msgid "ModSecurity - CyberPanel" msgstr "Inicio - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Configurations" msgid "ModSecurity Configurations!" msgstr "Configuraciones" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." msgstr "" "En esta página usted puede configurar la ubicación para la Copia de seguridad" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Seguridad" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not save rewrite rules. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "No se han podido guarder los cambios. Error:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "" @@ -2867,15 +3861,6 @@ msgstr "Llave" msgid "Add Key" msgstr "Añadir Llave" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Guardar" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Llave SSH Borrada" @@ -3172,17 +4157,6 @@ msgstr "" msgid "Advanced" msgstr "Avanzado" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "" @@ -3246,6 +4220,7 @@ msgstr "" #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "" @@ -3272,18 +4247,9 @@ msgstr "Instalar" msgid "Uninstall" msgstr "Desinstalar" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Atras" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "" @@ -3550,14 +4516,6 @@ msgstr "Version PHP " msgid "Access Logs - CyberPanel" msgstr "" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "" @@ -3666,57 +4624,119 @@ msgstr "" msgid "LiteSpeed Status - CyberPanel" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Proceso LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "Identificador del Proceso" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." msgstr "" #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Reiniciar LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Parar LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "" +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Explorador de Archivos" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "Estado del Servidor" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Cambiar" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "Archivo" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Cambiar" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Home - CyberPanel" @@ -3756,7 +4776,8 @@ msgid "Tuning Details" msgstr "" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Conexiones máximas" @@ -3781,7 +4802,8 @@ msgid "Enable GZIP Compression" msgstr "Activar GZIP Compression" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Actualmente:" @@ -3808,52 +4830,64 @@ 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:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Configurar PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "Version PHP " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "" @@ -4057,12 +5091,6 @@ msgstr "Email no Valido" msgid "Websites Limit" msgstr "Limites para el Sitio Web" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Nombre de Usuario" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4206,58 +5234,16 @@ msgstr "( 0 = Ilimitados )" msgid "Application Installer - CyberPanel" msgstr "Instalador de Aplicaciones" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Instalador de Aplicaciones" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Instalador de Aplicaciones" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install wordpress with LSCache" -msgstr "Wordpress con LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress con LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "Wordpress con LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "" @@ -4283,24 +5269,6 @@ msgstr "Seleccionar Propietario" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "Successfully Deleted" -msgid "Website succesfully created." -msgstr "Eliminado Correctamente" - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "" @@ -4359,13 +5327,6 @@ msgstr "" msgid "File System Path" msgstr "Estado del Sistema" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -#, fuzzy -#| msgid "Issue SSL" -msgid "Issue" -msgstr "Aplicar SSL" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4458,13 +5419,6 @@ msgstr "Contraseña" msgid "Database Prefix" msgstr "Nombre de la Base de Datos" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Ruta" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4525,290 +5479,6 @@ msgstr "Wordpress con LSCache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "Anterior" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Recursis Usados" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Recurso" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Permitido" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Trafico Utilizado" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Cargar Reportes" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Cargar Reportes de Error" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Cargar Reportes" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Siguiente" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Anterior" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Configuraciones" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Editar vHost Main Configuracion" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Añadir cambios (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "Añadir cambios (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Cambios Guardados" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Añadir tu propio certificado SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Añadir SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "PHP version " -msgid "Change PHP Version" -msgstr "Version PHP " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Cambiar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL Guardado" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "No se han podido guarder los cambios. Error:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "Configurations" -msgid "Configurations saved." -msgstr "Configuraciones" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "No se han podido guarder los cambios. Error:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Cambios Guardados" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot add destination. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Error al añadir el destino. Error:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Archivos" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Explorador de Archivos" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "Crear Cuenta FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "Eliminar Cuenta FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Guardar Cambios" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Successfully " -msgid "Changes successfully saved." -msgstr "Satisfactoriamente " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Instalar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Home - CyberPanel" @@ -5078,69 +5748,6 @@ msgstr "Sitio web " msgid "Successfully " msgstr "Satisfactoriamente " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -#, fuzzy -#| msgid "Add Destination" -msgid "Add Domains" -msgstr "Añadir Destino" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domain Name" -msgid "Domain Alias" -msgstr "Nombre de Dominio" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -#, fuzzy -#| msgid "Create Email" -msgid "Create Domain" -msgstr "Crear Email" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -#, fuzzy -#| msgid "Version Management" -msgid "PHP Version Changed to:" -msgstr "Versión" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -#, fuzzy -#| msgid "Delete" -msgid "Deleted:" -msgstr "Eliminar" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -#, fuzzy -#| msgid "SSL Saved" -msgid "SSL Issued:" -msgstr "SSL Guardado" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "successful." -msgid "Changes applied successfully." -msgstr "completado." - #~ msgid "CPU Status" #~ msgstr "Estadi del CPU" diff --git a/locale/fr/LC_MESSAGES/django.mo b/locale/fr/LC_MESSAGES/django.mo index b491ac6f1be0847cab8660e38c2ea46d9ff8c9e8..0689985b62ac1f678562afdb4e2adb487b3fbf13 100644 GIT binary patch delta 25 hcmezRh573j<_)eBxeRp;4HOJbtPIUJ`%hHM1OSg{32^`b delta 25 hcmezRh573j<_)eBxeRm-4HOKGtqcq|`%hHM1OSgE31|QS diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 06be4e0c0..dc863e1cb 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2018-07-30 15:35+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -25,57 +26,57 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 2.0.6\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Anglais" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Chinois" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Bulgare" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Portugais" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Japonais" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Bosniaque" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "Grec" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "Russe" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "Turc" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "Espanol" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Politique" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "Filename" msgid "Vietnamese" @@ -137,6 +138,7 @@ msgstr "Nom de fichier" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -164,6 +166,9 @@ msgstr "Annuler la sauvegarde" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -177,6 +182,7 @@ msgid "File" msgstr "Fichier" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Date" @@ -190,6 +196,10 @@ msgstr "Taille" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -245,6 +255,7 @@ msgstr "Adresse IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -255,6 +266,8 @@ msgid "Password" msgstr "Mot de passe" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Port" @@ -299,6 +312,14 @@ msgstr "Destination ajoutée." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -331,7 +352,7 @@ msgstr "Destination ajoutée." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "N'a pas pu se connecter au serveur. Veuillez actualiser cette page." @@ -466,6 +487,9 @@ msgid "Start Transfer" msgstr "Démarrer le transfert" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -474,7 +498,7 @@ msgstr "Démarrer le transfert" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "Annuler" @@ -562,6 +586,8 @@ msgstr "Condition" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -570,7 +596,7 @@ msgstr "Condition" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Message d'erreur:" @@ -587,6 +613,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Utilisez les onglets pour naviguer dans le panneau de contrôle." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -653,6 +680,7 @@ msgstr "Fonctions de base de données" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -680,6 +708,7 @@ msgstr "Fonctions FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -717,6 +746,7 @@ msgstr "Configurations PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -730,6 +760,8 @@ msgid "Security" msgstr "Sécurité" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1088,6 +1120,8 @@ msgid "Access Webmail" msgstr "Accéder au Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1095,12 +1129,14 @@ msgstr "Accéder au Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Créer un compte FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1109,8 +1145,8 @@ msgstr "Créer un compte FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Supprimer le compte FTP" @@ -1169,6 +1205,7 @@ msgstr "Réglage de la vitesse" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Réglage de PHP" @@ -1211,6 +1248,7 @@ msgid "Access Log" msgstr "Journal d'accès" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1322,39 +1360,49 @@ msgstr "SpamAssassin Configurations" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Email d'expéditeur" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "Gérer les services" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "Gérer PowerDNS" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "Gérer Postfix" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "Gérer le FTP" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Installer des extensions" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1453,7 +1501,7 @@ msgstr "Répertoriez les bases de données ou modifiez leurs mots de passe." #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Sélectionner un domaine" @@ -1548,7 +1596,8 @@ msgstr "Activer maintenant" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Nom" @@ -1588,6 +1637,7 @@ msgstr "IPV6 Adresse" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1730,6 +1780,8 @@ msgid "Select Zone" msgstr "Sélectionner une zone" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1771,6 +1823,967 @@ msgstr "Ajouter des enregistrements de suppression" msgid "Add Delete/Records" msgstr "Ajouter Supprimer / Enregistrements" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Changer le mot de passe - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can compose email message to be sent out later." +msgstr "Sur cette page, vous pouvez configurer les paramètres de SpamAssassin." + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site Name" +msgid "Template Name" +msgstr "Nom du site" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Prénom" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Forward Email" +msgid "From Email" +msgstr "Un courriel transféré" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Supprimer l'email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save edits" +msgid "Save Template" +msgstr "Enregistrer les modifications" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Créer un compte de messagerie - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Créer un email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Nom de famille" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Chemin" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +msgstr "Créer un alias" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Retourner" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Setup Email Forwarding - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Configuration du transfert d'e-mail - CyberPanel" + +#: 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 "Le serveur de stratégie de messagerie n'est pas activé" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:32 +#: emailPremium/templates/emailPremium/listDomains.html:32 +msgid "Enable Now." +msgstr "Activer maintenant" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Désactiver" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Activer" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Changer le mot de passe - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Changer le mot de passe" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +#, fuzzy +#| msgid "On this page you manage emails limits for Domains/Email Addresses" +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "" +"Sur cette page, vous gérez les limites des e-mails pour les domaines / " +"adresses e-mail" + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +#, fuzzy +#| msgid "Select All" +msgid "Select List" +msgstr "Tout sélectionner" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Supprimer le site Web" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Fermer" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "Confirmer" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Ajouter des domaines" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Forward Email" +msgid "Load Emails" +msgstr "Un courriel transféré" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +msgid "email" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "Statut des services" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Gérer SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage SMTP Hosts" +msgstr "Gérer Postfix" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Sur cette page, vous pouvez gérer les versions et / ou mettre à jour vers la " +"dernière version de CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save edits" +msgid "Save Host" +msgstr "Enregistrer les modifications" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Sélectionnez le propriétaire" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Domaines - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Select Email" +msgid "Send Emails" +msgstr "Sélectionnez Email" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Sélectionnez votre site" + +#: 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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "Aperçu" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Sélectionnez un compte FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Début" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Forward Email" +msgid "Total Emails" +msgstr "Un courriel transféré" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "Aperçu" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Toutes les fonctions liées à un site particulier." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "L'utilisation des ressources" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Ressource" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Permis" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Utilisation de la bande passante" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Charger les journaux d'accès" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Journaux d'accès" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Charger les journaux d'erreurs" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Journaux récupérés" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Impossible d'extraire les journaux, consultez le fichier journaux via la " +"ligne de commande. Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Suivant" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "précédent" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Domaines" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Ajouter des domaines" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Liste des domaines" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "Alias de domaine" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "Ajouter un nouveau travail Cron" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "Ce chemin est relatif à:" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Laissez vide pour définir la valeur par défaut." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Domaine non valide (Remarque: vous n'avez pas besoin d'ajouter 'http' ou " +"'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Sélectionnez PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Caractéristiques supplémentaires" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Créer un domaine" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "est créé avec succès." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "Version PHP Modifié pour:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Supprimé:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "SSL émis:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "Modifications appliquées avec succès" + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Problème" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Configurations" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Modifier les configurations principales de vHost" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Ajouter des règles de réécriture (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "Règles de réécriture (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "Règles de réécriture" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Ajoutez votre propre SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Ajouter SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "Changer la version de PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "Changer PHP" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL sauvegardé" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Impossible d'enregistrer le SSL. Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "sauvegarder" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Configuration actuelle dans le fichier récupéré." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Impossible d'extraire la configuration actuelle. Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "Configurations enregistrées." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Règles de réécriture en cours dans le fichier récupéré." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "" +"Impossible d'extraire les règles de réécriture actuelles. Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Impossible d'enregistrer les règles de réécriture. Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Enregistrer les règles de réécriture" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "Échec de la modification de la version de PHP Message d'erreur:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "PHP a changé avec succès pour:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "dossiers" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Gestionnaire de fichiers" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "open_basedir Protection" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "Créer un compte FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "Supprimer le compte FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "Appliquer les modifications" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "Changements enregistrés avec succès." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Créer un alias" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Gérer SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Compresse" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Compresse" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Installateur d'application" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "Installez wordpress avec LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress avec LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "Installez Joomla avec LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "Joignez Git avec ce site!" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install WordPress" +msgid "Install Prestashop" +msgstr "Installer WordPress" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1797,7 +2810,8 @@ msgstr "SpamAssassin n'est pas installé" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1806,7 +2820,8 @@ msgstr "Installer lMaintenant" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "Impossible de démarrer l'installation, message d'erreur:" @@ -1815,8 +2830,10 @@ msgstr "Impossible de démarrer l'installation, message d'erreur:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1835,7 +2852,8 @@ msgstr "N'a pas pu se connecter. Veuillez actualiser cette page" #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "L'installation a échoué." @@ -1851,7 +2869,8 @@ msgstr "L'hiver arrive, mais SpamAssassin l'est aussi." #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1890,15 +2909,6 @@ msgstr "Utilisation des ressources de domaine" msgid "Limits are being Applied!" msgstr "Les limites sont appliquées!" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Désactiver" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1906,15 +2916,6 @@ msgstr "Désactiver" msgid "Limits are not being applied!" msgstr "Les limites ne sont pas appliquées!" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Activer" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1997,36 +2998,12 @@ msgstr "" msgid "Domains - CyberPanel" msgstr "Domaines - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Liste des domaines" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" "Sur cette page, vous gérez les limites des e-mails pour les domaines / " "adresses e-mail" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Domaines" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "Le serveur de stratégie de messagerie n'est pas activé" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "Activer maintenant" - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "Serveur de stratégie de messagerie électronique - CyberPanel" @@ -2183,11 +3160,6 @@ msgstr "Déposez des fichiers ici pour les télécharger." msgid "Progress" msgstr "Progréssion" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "Retirer" @@ -2273,20 +3245,6 @@ msgstr "Fichier créé avec succès." msgid "Confirm Deletion!" msgstr "Confirmer la suppression" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "Confirmer" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Fermer" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "Liste des fichiers / dossiers!" @@ -2526,7 +3484,8 @@ msgid "Action failed. Error message:" msgstr "Action: échoué. Message d'erreur:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Action réussie." @@ -2554,49 +3513,58 @@ msgstr "Gérer la sécurité du serveur sur cette page." msgid "ModSecurity - CyberPanel" msgstr "ModSecurity - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "Configurations ModSecurity!" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "Sur cette page, vous pouvez configurer les paramètres ModSecurity." -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "ModSecurity" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: firewall/templates/firewall/modSecurityRules.html:70 #: firewall/templates/firewall/modSecurityRulesPacks.html:28 #: firewall/templates/firewall/spamassassin.html:29 msgid "ModSecurity is not installed " msgstr "ModSecurity n'est pas installé" -#: firewall/templates/firewall/modSecurity.html:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" "ModSecurity installé avec succès, rafraîchissant la page en 3 secondes." -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "L'hiver arrive, tout comme ModSecurity." -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "" "Impossible d'enregistrer les configurations ModSecurity. Message d'erreur:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "Les configurations ModSecurity ont été enregistrées avec succès." @@ -2711,15 +3679,6 @@ msgstr "Clé" msgid "Add Key" msgstr "Ajouter une clé" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "sauvegarder" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Clé SSH supprimée" @@ -3012,17 +3971,6 @@ msgstr "Modifiez les configurations PHP sur cette page." msgid "Advanced" msgstr "Avancée" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Sélectionnez PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "" @@ -3086,6 +4034,7 @@ msgstr "Installer / désinstaller des extensions php sur cette page." #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Sélectionnez la version PHP" @@ -3112,18 +4061,9 @@ msgstr "Installer" msgid "Uninstall" msgstr "Désinstaller" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Retourner" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Impossible d'extraire les détails. Message d'erreur:" @@ -3385,14 +4325,6 @@ msgstr "Dernière version" msgid "Access Logs - CyberPanel" msgstr "Accès aux journaux - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Journaux d'accès" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Accéder aux journaux pour le serveur Web principal." @@ -3505,38 +4437,46 @@ msgstr "Afficher l'état de LiteSpeed ​​et les fichiers journaux." msgid "LiteSpeed Status - CyberPanel" msgstr "Statut LiteSpeed ​​- CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Statut LiteSpeed:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" "Sur cette page, vous pouvez obtenir des informations sur vos processus " "LiteSpeed." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Processus LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "ID de processus" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Processus principal" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "Processus lscgid" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Processus de travail" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3546,21 +4486,75 @@ msgstr "" "de CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Redémarrez Litespeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Arrêtez LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Erreur est survenue. Voir le fichier journal principal de CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "N'a pas pu se connecter au serveur." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Gestionnaire de fichiers" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Statut des services" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Modifier les limites" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Nouveau fichier" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Changement" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "Services - CyberPanel" @@ -3602,7 +4596,8 @@ msgid "Tuning Details" msgstr "Détails de réglage" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Max Connexions" @@ -3627,7 +4622,8 @@ msgid "Enable GZIP Compression" msgstr "Activer la compression GZIP" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Actuellement:" @@ -3656,52 +4652,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP Tuning - CyberPanel" #: 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 "" "Définissez la manière dont chaque version de PHP se comporte dans votre " "serveur ici." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Délai initial de demande (secondes)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Limite souple de mémoire" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Limite dure de mémoire" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Traiter la limite souple" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Traiter la limite dure" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Connexion persistante" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Régler PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Impossible de syntoniser. Message d'erreur:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Détails Récupéré avec succès." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP pour" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Avec succès réglé." @@ -3904,12 +4912,6 @@ msgstr "Email invalide" msgid "Websites Limit" msgstr "Limites de sites Web" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Nom d'utilisateur" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4054,52 +5056,14 @@ msgstr "" msgid "Application Installer - CyberPanel" msgstr "Application Installer - CyberPanel" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Installateur d'application" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "Installation de l'application en un clic" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "Installez wordpress avec LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress avec LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "Installer Joomla avec (?) LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "Installez Joomla avec LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Créer un nouveau site Web - CyberPanel" @@ -4127,26 +5091,6 @@ msgstr "Sélectionnez le propriétaire" msgid "Do not enter WWW, it will be auto created!" msgstr "Ne pas entrer WWW, il sera créé automatiquement!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"Domaine non valide (Remarque: vous n'avez pas besoin d'ajouter 'http' ou " -"'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Caractéristiques supplémentaires" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "est créé avec succès." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Supprimer le site Web - CyberPanel" @@ -4202,11 +5146,6 @@ msgstr "Alias" msgid "File System Path" msgstr "Chemin du système de fichiers" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Problème" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "Alias ​​de domaine non trouvés" @@ -4284,13 +5223,6 @@ msgstr "Mot de passe" msgid "Database Prefix" msgstr "Préfixe de base de données" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Chemin" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4343,271 +5275,6 @@ msgstr "Installez WordPress avec LSCache." msgid "Blog Title" msgstr "Titre du Blog" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "Aperçu" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Toutes les fonctions liées à un site particulier." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "L'utilisation des ressources" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Ressource" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Permis" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Utilisation de la bande passante" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Charger les journaux d'accès" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Charger les journaux d'erreurs" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Journaux récupérés" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Impossible d'extraire les journaux, consultez le fichier journaux via la " -"ligne de commande. Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Suivant" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "précédent" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Configurations" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Modifier les configurations principales de vHost" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Ajouter des règles de réécriture (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "Règles de réécriture (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "Règles de réécriture" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Ajoutez votre propre SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Ajouter SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "Changer la version de PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "Changer PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL sauvegardé" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Impossible d'enregistrer le SSL. Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Configuration actuelle dans le fichier récupéré." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Impossible d'extraire la configuration actuelle. Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "Configurations enregistrées." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Règles de réécriture en cours dans le fichier récupéré." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "" -"Impossible d'extraire les règles de réécriture actuelles. Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Impossible d'enregistrer les règles de réécriture. Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Enregistrer les règles de réécriture" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "Échec de la modification de la version de PHP Message d'erreur:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "PHP a changé avec succès pour:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "dossiers" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Gestionnaire de fichiers" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "open_basedir Protection" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "Créer un compte FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "Supprimer le compte FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "Appliquer les modifications" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "Changements enregistrés avec succès." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "Joignez Git avec ce site!" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install WordPress" -msgid "Install Prestashop" -msgstr "Installer WordPress" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "Cron Management - CyberPanel" @@ -4867,55 +5534,6 @@ msgstr "Site Internet" msgid "Successfully " msgstr "Avec succès" -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Ajouter des domaines" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "Alias de domaine" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "Ajouter un nouveau travail Cron" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "Cron Jobs" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "Ce chemin est relatif à:" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Laissez vide pour définir la valeur par défaut." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Créer un domaine" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "Version PHP Modifié pour:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Supprimé:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "SSL émis:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "Modifications appliquées avec succès" - #~ msgid "CPU Status" #~ msgstr "Statut du processeur" diff --git a/locale/gr/LC_MESSAGES/django.mo b/locale/gr/LC_MESSAGES/django.mo index e40d35792018d77e45481eafd1ac1ba526e9218c..c33b07af4e1791e21834c1e921c9457a8cf0873b 100644 GIT binary patch delta 25 hcmZ3yfqC%;<_#aBxeRp;4HOJbtPIUJ|BBYE0RVpa2}J+^ delta 25 hcmZ3yfqC%;<_#aBxeRm-4HOKGtqcq||BBYE0RVos2|NG* diff --git a/locale/gr/LC_MESSAGES/django.po b/locale/gr/LC_MESSAGES/django.po index e6ef04216..a3ef516f4 100644 --- a/locale/gr/LC_MESSAGES/django.po +++ b/locale/gr/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2018-01-04 22:12+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -24,57 +25,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.13\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Αγγλικά" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Κινέζικα" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Βουλγάρικα" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Πορτογαλικά" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Ιαπωνικά" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Πολιτική" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -140,6 +141,7 @@ msgstr "Όνομα Αρχείου" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -167,6 +169,9 @@ msgstr "Ακύρωση της δημιουργίας αντιγράφων ασφ #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -180,6 +185,7 @@ msgid "File" msgstr "Αρχείο" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Ημερομηνία" @@ -193,6 +199,10 @@ msgstr "Μέγεθος" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -249,6 +259,7 @@ msgstr "Διεύθυνση: IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -259,6 +270,8 @@ msgid "Password" msgstr "Κωδικός" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Θύρα" @@ -305,6 +318,14 @@ msgstr "Προορισμός προστεθεί." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -337,7 +358,7 @@ msgstr "Προορισμός προστεθεί." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "" "Δεν μπορούσε να συνδεθεί με το διακομιστή. Παρακαλούμε ανανεώστε αυτή τη " @@ -482,6 +503,9 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -490,7 +514,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 #, fuzzy #| msgid "Cancel Backup" msgid "Cancel" @@ -592,6 +616,8 @@ msgstr "Ρυθμίσεις" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -600,7 +626,7 @@ msgstr "Ρυθμίσεις" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Μήνυμα λάθους:" @@ -617,6 +643,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Χρησιμοποιήστε τις καρτέλες για να περιηγηθείτε στον πίνακα ελέγχου." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -683,6 +710,7 @@ msgstr "Λειτουργίες βάσης δεδομένων" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -710,6 +738,7 @@ msgstr "Λειτουργίες FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -747,6 +776,7 @@ msgstr "Ρυθμίσεις PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -760,6 +790,8 @@ msgid "Security" msgstr "Ασφάλεια" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1126,6 +1158,8 @@ msgid "Access Webmail" msgstr "Πρόσβαση Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1133,12 +1167,14 @@ msgstr "Πρόσβαση Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Δημιουργία Λογαριασμού FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1147,8 +1183,8 @@ msgstr "Δημιουργία Λογαριασμού FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Διαγραφή του Λογαριασμού FTP " @@ -1208,6 +1244,7 @@ msgstr "Συντονισμός διακομιστή" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Συντονισμός PHP" @@ -1252,6 +1289,7 @@ msgid "Access Log" msgstr "Αρχείο καταγραφής Πρόσβασης" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1377,45 +1415,55 @@ msgstr "Ρυθμίσεις" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Αρχείο καταγραφής Email " + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "Διαχείριση SSL" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "Διαχείριση SSL" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "Διαχείριση SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Εγκατάσταση Eπεκτάσεων" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1515,7 +1563,7 @@ msgstr "Λίστα βάσεων δεδομένων ή αλλαγή των κω #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Επιλέξτε Domain" @@ -1616,7 +1664,8 @@ msgstr "Ενεργοποίηση" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Όνομα" @@ -1658,6 +1707,7 @@ msgstr "Διεύθυνση: IP" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1807,6 +1857,8 @@ msgid "Select Zone" msgstr "Επιλέξτε Ζώνη" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1848,6 +1900,1017 @@ msgstr "Προσθήκη/Διαγραφή Αρχείων" msgid "Add Delete/Records" msgstr "Προσθήκη Διαγραφή/Αρχείων" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Αλλάξετε τον κωδικό πρόσβασης ηλεκτρονικού ταχυδρομείου - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "" +"Σε αυτή τη σελίδα μπορείτε να ρυθμίσετε τα αντίγραφα ασφαλείας των " +"προορισμοί. (SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "Όνομα Αρχείου" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Κύριο Όνομα" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Δημιουργία Email " + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Διαγραφή Email " + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Αποθήκευση κανόνων επανεγγραφής" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Δημιουργήστε λογαριασμό Email - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Δημιουργία Email " + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Επώνυμο" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Διαδρομή" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Email" +msgid "Create List" +msgstr "Δημιουργία Email " + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Επιστροφή" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Δημιουργήστε λογαριασμό Email - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Ενεργοποίηση" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Αλλάξετε τον κωδικό πρόσβασης ηλεκτρονικού ταχυδρομείου - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "Επιλέξτε διεύθυνση email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Destination" +msgid "Add More Emails" +msgstr "Προσθήκη προορισμού" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Δημιουργία Email " + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "Κατάσταση Διακομιστή" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "Λειτουργίες FTP" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Διαχείριση SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "Διαχείριση SSL" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Σε αυτή τη σελίδα μπορείτε να διαχειριστείτε τις εκδόσεις ή και να " +"αναβαθμίσετε στην τελευταία έκδοση του CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Αποθήκευση κανόνων επανεγγραφής" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Επιλέξτε Κάτοχο" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Αρχική σελίδα - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Emails" + +#: 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 +#, fuzzy +#| msgid "Select Website" +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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "Προηγούμενο" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Επιλέξτε λογαριασμό FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Έναρξη" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Emails" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "Προηγούμενο" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Όλες οι λειτουργίες που σχετίζονται με συγκεκριμένο ιστότοπο." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Χρήση Πηγών" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Πηγή" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Επιτρέπεται" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Χρήση Εύρους ζώνης" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Φόρτωση αρχείων καταγραφής πρόσβασης" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Αρχεία καταγραφής πρόσβασης" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Φόρτωση καταγραφών σφαλμάτων" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Αρχεία καταγραφής που Έχουν εξαχθεί" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Δεν ήταν δυνατή η λήψη αρχείων καταγραφής. Χρησιμοποιήστε τη γραμμή εντολών " +"για να προβάλετε το αρχείο καταγραφής. Μήνυμα λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Επόμενο" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Προηγούμενο" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +#, fuzzy +#| msgid "Domain Name" +msgid "Domains" +msgstr "Όνομα Domain" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +#, fuzzy +#| msgid "Add Destination" +msgid "Add Domains" +msgstr "Προσθήκη προορισμού" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +#, fuzzy +#| msgid "Select Domain" +msgid "List Domains" +msgstr "Επιλέξτε Domain" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domain Name" +msgid "Domain Alias" +msgstr "Όνομα Domain" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +#, fuzzy +#| msgid "Leave empty to select default home directory." +msgid "Leave empty to set default." +msgstr "Αφήστε κενό για να επιλέξετε προεπιλεγμένο αρχικό κατάλογο." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Μη έγκυρος τομέας (Σημείωση: Δεν χρειάζεται να προσθέσετε 'http' ή 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Επιλέξτε PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Επιπρόσθετα Χαρακτηριστικά" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +#, fuzzy +#| msgid "Create Email" +msgid "Create Domain" +msgstr "Δημιουργία Email " + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "δημιουργήθηκε με επιτυχία." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +#, fuzzy +#| msgid "Version Management" +msgid "PHP Version Changed to:" +msgstr "Τελευταία Έκδοση:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +#, fuzzy +#| msgid "Delete" +msgid "Deleted:" +msgstr "Διαγραφή" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +#, fuzzy +#| msgid "SSL Issued for" +msgid "SSL Issued:" +msgstr "SSL που Εκδίδονται για" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "Η βάση δεδομένων δημιουργήθηκε με επιτυχία." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +#, fuzzy +#| msgid "Issue SSL" +msgid "Issue" +msgstr "Έκδοση SSL" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Ρυθμίσεις" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Επεξεργασία κύριων παραμέτρων vHost" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Προσθήκη Κανόνων επανεγγραφής (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "Προσθήκη Κανόνων επανεγγραφής (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Αποθήκευση κανόνων επανεγγραφής" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Προσθέστε το Δικό σας SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Προσθέστε το SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "Επιλέξτε Έκδοση PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Αλλαγή" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL Αποθηκεύθηκε " + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Δεν ήταν δυνατή η αποθήκευση του SSL. Μήνυμα λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Αποθήκευση" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Η τρέχουσα διαμόρφωση του αρχείου έχει παραληφθεί." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Δεν ήταν δυνατή η λήψη της τρέχουσας διαμόρφωσης. Μήνυμα λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "SSH Configurations Saved." +msgid "Configurations saved." +msgstr "Οι ρυθμίσεις SSH αποθηκεύτηκαν." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Οι τρέχοντες κανόνες επανεγγραφής στο αρχείο που έχουν ληφθεί." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "" +"Δεν ήταν δυνατή η εξαγωγή των υφιστάμενων κανόνων επανεγγραφής. Μήνυμα " +"λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Δεν ήταν δυνατή η αποθήκευση κανόνων επανεγγραφής. Μήνυμα λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Αποθήκευση κανόνων επανεγγραφής" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create website. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Δεν είναι δυνατή η δημιουργία ιστότοπου. Μήνυμα λάθους:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "Κωδικός πρόσβασης άλλαξε με επιτυχία για:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Αρχεία" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Διαχείριση Αρχείων" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "Δημιουργία Λογαριασμού FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "Διαγραφή του Λογαριασμού FTP " + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Αποθήκευση Aλλαγών" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Rule successfully added." +msgid "Changes successfully saved." +msgstr "Προστέθηκε με επιτυχία κανόνας." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Email" +msgid "Create Lists" +msgstr "Δημιουργία Email " + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Διαχείριση SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Πρόγραμμα Εγκατάστασης της Εφαρμογής" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install wordpress with LSCache" +msgstr "WordPress με LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "WordPress με LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "WordPress με LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Εγκατάσταση" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1881,7 +2944,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1892,7 +2956,8 @@ msgstr "Εγκατάσταση" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1903,8 +2968,10 @@ msgstr "Δεν είναι δυνατή η προσθήκη προορισμού. #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1923,7 +2990,8 @@ msgstr "Αδυναμία σύνδεσης. Ανανεώστε αυτή τη σε #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1940,7 +3008,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1988,15 +3057,6 @@ msgstr "Χρήση Πηγών" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Απενεργοποιήση" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -2004,15 +3064,6 @@ msgstr "Απενεργοποιήση" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Ενεργοποίηση" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2119,40 +3170,10 @@ msgstr "Αρχεία καταγραφής FTP" msgid "Domains - CyberPanel" msgstr "Αρχική σελίδα - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -#, fuzzy -#| msgid "Select Domain" -msgid "List Domains" -msgstr "Επιλέξτε Domain" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -#, fuzzy -#| msgid "Domain Name" -msgid "Domains" -msgstr "Όνομα Domain" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Ενεργοποίηση" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -2338,13 +3359,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "Λειτουργίες FTP" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2452,20 +3466,6 @@ msgstr "δημιουργήθηκε με επιτυχία." msgid "Confirm Deletion!" msgstr "Ρυθμίσεις" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2720,7 +3720,8 @@ msgid "Action failed. Error message:" msgstr "Η ενέργεια απέτυχε. Μήνυμα λάθους:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Ενέργεια επιτυχής." @@ -2750,19 +3751,22 @@ msgstr "Διαχειριστείτε την ασφάλεια του διακομ msgid "ModSecurity - CyberPanel" msgstr "Ασφάλεια - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "Επεξεργασία Ρυθμίσεων PHP" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." @@ -2770,37 +3774,43 @@ msgstr "" "Σε αυτή τη σελίδα μπορείτε να ρυθμίσετε τα αντίγραφα ασφαλείας των " "προορισμοί. (SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Ασφάλεια" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not fetch current configuration. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Δεν ήταν δυνατή η λήψη της τρέχουσας διαμόρφωσης. Μήνυμα λάθους:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid " is successfully created." @@ -2945,15 +3955,6 @@ msgstr "Κλειδί" msgid "Add Key" msgstr "Προσθήκη κλειδιού" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Αποθήκευση" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Το κλειδί SSH διαγράφηκε" @@ -3276,17 +4277,6 @@ msgstr "Επεξεργασία Ρυθμίσεων PHP" msgid "Advanced" msgstr "Ρυθμίσεις για προχωρημένους" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Επιλέξτε PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "ένδειξη_λάθους" @@ -3353,6 +4343,7 @@ msgstr "Εγκατάσταση/απεγκατάσταση επεκτάσεων p #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Επιλέξτε Έκδοση PHP" @@ -3379,18 +4370,9 @@ msgstr "Εγκατάσταση" msgid "Uninstall" msgstr "Απεγκατάσταση" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Επιστροφή" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Δεν μπορεί να προσκομίσει στοιχεία. Μήνυμα λάθους:" @@ -3681,14 +4663,6 @@ msgstr "Τελευταία έκδοση" msgid "Access Logs - CyberPanel" msgstr "Αρχεία καταγραφής πρόσβασης - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Αρχεία καταγραφής πρόσβασης" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Πρόσβαση σε αρχεία καταγραφής για τον κύριο διακομιστή ιστού." @@ -3807,38 +4781,46 @@ msgstr "Προβάλετε την κατάσταση LiteSpeed και τα αρ msgid "LiteSpeed Status - CyberPanel" msgstr "Κατάσταση LiteSpeed - CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Κατάσταση LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" "Σε αυτή τη σελίδα μπορείτε να λάβετε πληροφορίες σχετικά με τις διαδικασίες " "LiteSpeed." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Διαδικασίες LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "Αναγνωριστικό διαδικασίας" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Κύρια διαδικασία" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "Διαδικασία lscgid" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Worker Process" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3848,21 +4830,75 @@ msgstr "" "CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Επανεκκινήστε το Litespeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Τερματίστε το LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Προέκυψε Σφάλμα. Δείτε το κύριο αρχείο καταγραφής CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Δεν ήταν δυνατή η σύνδεση με το διακομιστή" +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Διαχείριση Αρχείων" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "Κατάσταση Διακομιστή" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Αλλαγή" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "Αρχείο" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Αλλαγή" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -3906,7 +4942,8 @@ msgid "Tuning Details" msgstr "Tuning Details" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Μέγιστες Συνδέσεις" @@ -3931,7 +4968,8 @@ msgid "Enable GZIP Compression" msgstr "Ενεργοποίηση Συμπίεσης GZIP" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Αυτή τη στιγμή είστε:" @@ -3960,52 +4998,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "Συντονισμός PHP - CyberPanel" #: 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 "Ορίστε πώς συμπεριφέρεται κάθε έκδοση της PHP στο διακομιστή σας εδώ." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Αρχική αίτηση χρονικού ορίου (δευτερόλεπτα)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Ελαστικό όριο μνήμης" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Αυστηρό Όριο Μνήμης" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Διαδικασία Ελαστικού Ορίου μνήμης" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Διαδικασία Αυστηρού Ορίου" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Συνεχής σύνδεση" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Συντονίστε το PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Δεν είναι δυνατό να συντονιστείτε. Μήνυμα λάθους:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Επιτυχής λήψη στοιχείων." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "Έκδοση ΡΗΡ" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Ρυθμίστηκε επιτυχώς." @@ -4211,12 +5261,6 @@ msgstr "Μη έγκυρο email" msgid "Websites Limit" msgstr "Όριο ιστοσελίδες" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Όνομα Χρήστη" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4369,58 +5413,16 @@ msgstr "(0 = απεριόριστα)" msgid "Application Installer - CyberPanel" msgstr "Πρόγραμμα Εγκατάστασης της Εφαρμογής" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Πρόγραμμα Εγκατάστασης της Εφαρμογής" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Πρόγραμμα Εγκατάστασης της Εφαρμογής" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install wordpress with LSCache" -msgstr "WordPress με LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "WordPress με LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "WordPress με LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Δημιουργία νέας ιστοσελίδας - CyberPanel" @@ -4448,25 +5450,6 @@ msgstr "Επιλέξτε Κάτοχο" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"Μη έγκυρος τομέας (Σημείωση: Δεν χρειάζεται να προσθέσετε 'http' ή 'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Επιπρόσθετα Χαρακτηριστικά" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "δημιουργήθηκε με επιτυχία." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Διαγραφή Ιστοσελίδας - CyberPanel" @@ -4529,13 +5512,6 @@ msgstr "" msgid "File System Path" msgstr "Κατάσταση Συστήματος" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -#, fuzzy -#| msgid "Issue SSL" -msgid "Issue" -msgstr "Έκδοση SSL" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4633,13 +5609,6 @@ msgstr "Κωδικός" msgid "Database Prefix" msgstr "Όνομα βάσης δεδομένων" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Διαδρομή" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4702,296 +5671,6 @@ msgstr "WordPress με LSCache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "Προηγούμενο" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Όλες οι λειτουργίες που σχετίζονται με συγκεκριμένο ιστότοπο." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Χρήση Πηγών" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Πηγή" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Επιτρέπεται" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Χρήση Εύρους ζώνης" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Φόρτωση αρχείων καταγραφής πρόσβασης" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Φόρτωση καταγραφών σφαλμάτων" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Αρχεία καταγραφής που Έχουν εξαχθεί" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Δεν ήταν δυνατή η λήψη αρχείων καταγραφής. Χρησιμοποιήστε τη γραμμή εντολών " -"για να προβάλετε το αρχείο καταγραφής. Μήνυμα λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Επόμενο" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Προηγούμενο" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Ρυθμίσεις" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Επεξεργασία κύριων παραμέτρων vHost" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Προσθήκη Κανόνων επανεγγραφής (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "Προσθήκη Κανόνων επανεγγραφής (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Αποθήκευση κανόνων επανεγγραφής" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Προσθέστε το Δικό σας SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Προσθέστε το SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "Επιλέξτε Έκδοση PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Αλλαγή" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL Αποθηκεύθηκε " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Δεν ήταν δυνατή η αποθήκευση του SSL. Μήνυμα λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Η τρέχουσα διαμόρφωση του αρχείου έχει παραληφθεί." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Δεν ήταν δυνατή η λήψη της τρέχουσας διαμόρφωσης. Μήνυμα λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "Οι ρυθμίσεις SSH αποθηκεύτηκαν." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Οι τρέχοντες κανόνες επανεγγραφής στο αρχείο που έχουν ληφθεί." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "" -"Δεν ήταν δυνατή η εξαγωγή των υφιστάμενων κανόνων επανεγγραφής. Μήνυμα " -"λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Δεν ήταν δυνατή η αποθήκευση κανόνων επανεγγραφής. Μήνυμα λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Αποθήκευση κανόνων επανεγγραφής" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Δεν είναι δυνατή η δημιουργία ιστότοπου. Μήνυμα λάθους:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "Κωδικός πρόσβασης άλλαξε με επιτυχία για:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Αρχεία" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Διαχείριση Αρχείων" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "Δημιουργία Λογαριασμού FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "Διαγραφή του Λογαριασμού FTP " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Αποθήκευση Aλλαγών" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "Προστέθηκε με επιτυχία κανόνας." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Εγκατάσταση" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5273,71 +5952,6 @@ msgstr "Ιστοσελίδα:" msgid "Successfully " msgstr "Επιτυχώς" -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -#, fuzzy -#| msgid "Add Destination" -msgid "Add Domains" -msgstr "Προσθήκη προορισμού" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domain Name" -msgid "Domain Alias" -msgstr "Όνομα Domain" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -#, fuzzy -#| msgid "Leave empty to select default home directory." -msgid "Leave empty to set default." -msgstr "Αφήστε κενό για να επιλέξετε προεπιλεγμένο αρχικό κατάλογο." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -#, fuzzy -#| msgid "Create Email" -msgid "Create Domain" -msgstr "Δημιουργία Email " - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -#, fuzzy -#| msgid "Version Management" -msgid "PHP Version Changed to:" -msgstr "Τελευταία Έκδοση:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -#, fuzzy -#| msgid "Delete" -msgid "Deleted:" -msgstr "Διαγραφή" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSL Issued:" -msgstr "SSL που Εκδίδονται για" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "Η βάση δεδομένων δημιουργήθηκε με επιτυχία." - #~ msgid "CPU Status" #~ msgstr "Κατάσταση Επεξεργαστή" diff --git a/locale/id/LC_MESSAGES/django.mo b/locale/id/LC_MESSAGES/django.mo index cbe540957a6f88a45e56820ac56ad7692f97813f..a2934ee189b78e00ee59a3faaf5b57bf32cc3c21 100644 GIT binary patch delta 21 ccmbQoJdb%oFPEXNp@D*-iIt)G#_8;g078HTpa1{> delta 21 ccmbQoJdb%oFPDL?p@D*-v6X@0#_8;g076CumjD0& diff --git a/locale/id/LC_MESSAGES/django.po b/locale/id/LC_MESSAGES/django.po index 6e0b65d92..9502e624b 100644 --- a/locale/id/LC_MESSAGES/django.po +++ b/locale/id/LC_MESSAGES/django.po @@ -10,12 +10,13 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,55 +26,55 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 msgid "Polish" msgstr "" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 msgid "Vietnamese" msgstr "" @@ -133,6 +134,7 @@ msgstr "" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -160,6 +162,9 @@ msgstr "" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -173,6 +178,7 @@ msgid "File" msgstr "" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "" @@ -186,6 +192,10 @@ msgstr "" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -238,6 +248,7 @@ msgstr "" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -248,6 +259,8 @@ msgid "Password" msgstr "" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "" @@ -292,6 +305,14 @@ msgstr "" #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -324,7 +345,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "" @@ -455,6 +476,9 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -463,7 +487,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "" @@ -547,6 +571,8 @@ msgstr "" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -555,7 +581,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "" @@ -572,6 +598,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "" #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -638,6 +665,7 @@ msgstr "" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -665,6 +693,7 @@ msgstr "" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -702,6 +731,7 @@ msgstr "" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -715,6 +745,8 @@ msgid "Security" msgstr "" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1065,6 +1097,8 @@ msgid "Access Webmail" msgstr "" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1072,12 +1106,14 @@ msgstr "" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1086,8 +1122,8 @@ msgstr "" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "" @@ -1145,6 +1181,7 @@ msgstr "" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "" @@ -1187,6 +1224,7 @@ msgid "Access Log" msgstr "" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1298,37 +1336,45 @@ msgstr "" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +msgid "Email Marketing" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 msgid "Installed Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 msgid "Installed" msgstr "" @@ -1423,7 +1469,7 @@ msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "" @@ -1516,7 +1562,8 @@ msgstr "" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "" @@ -1556,6 +1603,7 @@ msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1691,6 +1739,8 @@ msgid "Select Zone" msgstr "" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1732,6 +1782,880 @@ msgstr "" msgid "Add Delete/Records" 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:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +msgid "Create List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +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:32 +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +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/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +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 +msgid "Owner" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +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:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +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 +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:151 +msgid "Job ID" +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:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +msgid "Website succesfully created." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +msgid "Create Lists" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +msgid "Manage Lists" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +msgid "Install Prestashop" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1757,7 +2681,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1766,7 +2691,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "" @@ -1775,8 +2701,10 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1795,7 +2723,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "" @@ -1810,7 +2739,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1848,15 +2778,6 @@ msgstr "" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1864,15 +2785,6 @@ msgstr "" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1955,34 +2867,10 @@ msgstr "" msgid "Domains - CyberPanel" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "" - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "" @@ -2136,11 +3024,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2224,20 +3107,6 @@ msgstr "" msgid "Confirm Deletion!" msgstr "" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2461,7 +3330,8 @@ msgid "Action failed. Error message:" msgstr "" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "" @@ -2489,47 +3359,56 @@ msgstr "" msgid "ModSecurity - CyberPanel" msgstr "" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "" @@ -2640,15 +3519,6 @@ msgstr "" msgid "Add Key" msgstr "" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "" @@ -2931,17 +3801,6 @@ msgstr "" msgid "Advanced" msgstr "" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "" @@ -3005,6 +3864,7 @@ msgstr "" #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "" @@ -3031,18 +3891,9 @@ msgstr "" msgid "Uninstall" msgstr "" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "" @@ -3295,14 +4146,6 @@ msgstr "" msgid "Access Logs - CyberPanel" msgstr "" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "" @@ -3407,57 +4250,109 @@ msgstr "" msgid "LiteSpeed Status - CyberPanel" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." msgstr "" #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "" +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +msgid "License Manager" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +msgid "License Status" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +msgid "Change License" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +msgid "New key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +msgid "Change Key" +msgstr "" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "" @@ -3495,7 +4390,8 @@ msgid "Tuning Details" msgstr "" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "" @@ -3520,7 +4416,8 @@ msgid "Enable GZIP Compression" msgstr "" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "" @@ -3547,50 +4444,62 @@ 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:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "" @@ -3752,12 +4661,6 @@ msgstr "" msgid "Websites Limit" msgstr "" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -3884,52 +4787,14 @@ msgstr "" msgid "Application Installer - CyberPanel" msgstr "" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "" @@ -3955,22 +4820,6 @@ msgstr "" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -msgid "Website succesfully created." -msgstr "" - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "" @@ -4021,11 +4870,6 @@ msgstr "" msgid "File System Path" msgstr "" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4100,13 +4944,6 @@ msgstr "" msgid "Database Prefix" msgstr "" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4151,266 +4988,6 @@ msgstr "" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -msgid "Install Prestashop" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "" @@ -4661,52 +5238,3 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 msgid "Successfully " msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "" diff --git a/locale/ja/LC_MESSAGES/django.mo b/locale/ja/LC_MESSAGES/django.mo index 78d6b3824718f9a35cc1ea764726b31884b50dc5..10147b29561991a934f2223efa665896f1fe89ea 100644 GIT binary patch delta 19633 zcmZA82Y6LQyY}%F2!v1)N+_WQ2%#iE0)!G!kS4tsrT5-@Uo??k1yrPnB8XHG1Sta2 z1VIofq7(%bqzY06Isbdl$=9@JTtRqX3fmndx!U&S!aW9{uu0E$QV4|b> z^KxP@{5uv6EIC(&r6T5U`niqxv(i_#DN%slaOcg zW}+rC*XkDq^gVAK84a`tHRBVg8_!#O71i-yRvuo@4V)F#VIhkXFkO)6RYpB&gZgg5 zEio(c0MyD&MNRNyOwahBx8e}Os+yD$;=HfH?`lX*;mmMUKp&r8Cx7=Z(^08T~?v<|g| zn^7zE4aVRx)Dk~HZDqEmo|gkFAjigg1J&*m)ObfNe&mzUlH_jY2C9YXsGr62Q1#m^ zzKUAPG|gSRcvQ!Yu^^5>O<*~;#sjGK(QkNO9M(j|LoD_ek%^+c*dBFXKdYaF8hAG9EqE98psP_Uvs3kY|BsN->v9r< z@gi!bSJVLSU?M)k(pZ#@&54~*@iejD{<3sLP?U<7`SdGR3X!LFlL;_r5> ze;zU+?OlfjQ7cgf)ln7H(lx}~*by~>@fd}3P!staHIcoj{w|{0y}%q8*1`2#1XW%d z^_EoY;JXIhDd024dkeM4XHhe}jwSIK7RUIG&UUERayDvfcA(D0J@XlAVktYhiDf|z zT+*zJ8mFO8MoZNJbwgh)f-0A*u>_t%EnTY4&P=FNo*T7QWl$4njq0x}M&ck$jx$k* zc`j;Y7h!hvKP97??L+O=NmNJIEWU?YiI6UCX|rP{;v`f@^-vRUWpOXmR*f*7$mlRM$58BsYA^t`0wc_~Py@_HosFfal{$=i@)K5n0d?wc zq0T^P4>xdr)CW{?RR7h`*HYCbqbKNq+M}MRrRrz#Y}5qjV^;hGqj47&z{{u!g!XiM zp9SNI6H)hd!4x>u;?bz~GkdcBp=1_OkQ!H@2Hs!|kE0ITuNZ|7Fh6GLI}V)x^F4!5UxQz=mFG(jw5fG@7*Aio`T^1{BeMpQ4{KqIy56J9*dgb z6x0(eMLqFa)JO1ER6n;d9A8*{_yG5LksaeHFN5s5*9`;T|JTUqhKHy_lX9S&X*zt3 zI4f$&-$Xr8d(=m2AJh{MK)r6`Q0*3@CceV_47DN~F#~Qv^>aw&n#n0EIETrI|1keV zJ>e~@e~dB2DF(UMEDkkbZOn*`Q4{Kdn$Tc#4(cO$E$U2thnm1y^s|t;N=B#r8LFeG z!R{27#6ZWWnRh{TG|cK3TKpvzqx`g)Vu*V!OPMuM{kK8A9pmv;Tt0-I&|dyZftKtJ zCgKCsVTm2;{)9?Ibx;TO(cBLU;1twZS&!Pft*8lqjoP9gQ1_j-_$g|z3<4V<1<(UFQA@0bhI0|5URW+s=N(m!_lZSumCmi4%CAj!JPOrY9$_9 zdFU9|UnFLwJQ~CGNl<}I;BaAaD*B;jzAVsyKO9g?y9>3HKbTig6Mty&bJXh<1eVC&oj=gKs0K_ileUqUnQd%w?NIfi#703^)pc`vKlqftr&|ZQLpU_t4}fB z4U`FWX0o9^pz>QBi^+*gqb8Izp7qzj6)DguuZ?=2hoJ@>hw5k+YH#1S`qik{fV@dVTarlZ<@h9S5GwQ{>K8jqp+y^neg{ghK&2boY4$%$>T zgq6?52;xPkC)j}b@gN4{4b%X4QCsOvb%!@Cs=wTr5=)`lm&ept3F+7OYLijJcBl@9 zU}_wXdV(343g??k%$2D28&FTQ15@Mo7N0}icguW;p~NpRHHJ>pxa@xf86CDFs3$3l zYFGm`<3^|tlIEz>-wn056EF&wq9(c<^`wVT{d|vl%`RGe+v@*CO(4Z|WPC3@8Qquz zHRF7kh_R@S+ME4RpKRk$?UtYhSc!qXMz!B%9z(UifO^1xP=_{jhI`HPqpuq)kdakU zPhJPruo-HgeyEOzTRg>_i+Z0IS-cd}5wAk6)E3kPPhd&Bgher8rrWy8Gg*H%s7HYY zZjD;1LDT~!T6twm zPu$eEiY};*2ciZVgBoBC>dBW`yvE|~ScdY0SRP-P<>$Ch!lBrT^3|xb6*AYYNEoWW zDAY&2A4f(rtcKdN#uoRncob>{7FzjQ)Dv#UvUmiwl)>{jKNyAjoal`DoEU}L+GUu8 zt1Z5YaeDvnkkOv!e8)A+i<)sPYRO8V4r4{sKyRW>^n>t)d-jCHi6njyC6FX5y9RPRvAn5_LxYKn-*kwK9)U6HB$g zO*}is5SKzdP)pP}-7vY{{~=Z}0<{uvV=0`DlW`9wVy%UqHxkEUF?@#QF!o({Xggys z;;C2KqO zgz9)V>aZQfIDC$gSY(Mid{t2o&=IvVeNh7qMNMEVs=wK&GqTwylbg&z)WE-EPJDv8 zG0RdH=Rqxb1+0p-u@KJ2!nh5!g_ki4zPik{Z;E=bPG%2`C+>&C(f^Q4Lozu&be~AQ zQ8OKbn&C{;d%O%afqj?{Poh@jA!ftm%iSkvPE@;6s0XTIaWho=&gKBjs`uX~qrF~; zTDlde*J~qc@Au=JAU<+YE7Rd)_k=!b=@*zA%)_XOUojt|`cJjOov|#aiRB9Dvm9jd zP*4R+U`GsejGD*>%#8amAD%-k{d25=F`u|S?Tb3Z?_e2RgxcDZR({WXf?6SOC9BT( zUN{*&SuE;?8mIxgqPAkR#WOI5_#@O49k%kbs19#qL41zyuwn&PxprTD>i$wXggP6y zQ4gA8HS4c|%aYL(H^o@&i@9(SYGt;emh2}?i8oObyN`Okl7Ghk!i9OTA`U~f-->E~ z1dHMisFm^7xckelVgEIw8Wg0*wpbbap;llMYKgzKIOAH^VIkB2#ZjlfGHT^|p|)rm zmd16c6}gH!r0LeV&y5&tP26G~>#v4eDG0?osDYoLW*)v?N0ep5xwrtMvG4}ht{!S7 zI$>HIgc@)hs=rTB6WxUA@ql>-^~>p+Po^%Jo2YNCq>b(aW(?LRUWe-NU#x>MpSuAE zqLzMwxfJzLz8zn~hgcoUZgPj!$8N-{Q1uzU@VwX2Z%jrF7oi6D4K><$gkb~QK-XP5cPm{&{xNu z$!Ne{s2PqjC!re7MosKfY>8X&4a~UPeVO#cHpCy8|6o1h7JHnZq7M0Ed=snhI5E9RqCWDyp^jaGin${(VZI_&|s zB6+YB@oSh9haB)-W*!B_DcE2Ymrxx)H!~e{A25Y6f$|!d6-QthoNM)mExwNBD9?My zO}Hh-5)VT4y9~477N3ls_$U^^^xx75%cJ5A=FixIIOSn?%G;yfinSKMz$V1CSyvs> zWf+FrF%2F@t=wtU#P6UEy&v+O`|QtwIs=KQhSg9{&<3mFyQn?AfFW4)sQY?O#5m$g zSP^@pCa@MG@DS=Sp2y_)0wXc`vB3Slmy3)}c_CNeRma@K4N*(g4~ya?)Wp8PSUhU+ z6I8p5-@8xBLZ|^7pza%BE<>G#W0(?u#k6|=uUWx^Kmmu);?U!+VR}r*4Ovl7Rsc0% zB`k!^FmM>L81W+1K!-8#YxVhf|~ho ztbt=K{uVP4A2+XH4Dn+uk9khJ3ADsK#6z(JF2n+O81+DRF+Dy#&H5{o=8T(JPBRXR zQ(gg8-wX5MXe(ca3B<>-DkeMY26!Dc!QS{Pj>EtTnuk$`{YT7(_k1#1vNS)rKc@?# zZfs}qQq)SEMeX%Ptcdx}F*)pjI^|1IOM4VG(etPW@P6jw9pW((7hrbWfN9V_LPlF~ z1~t$X^M-lPd}4aPxOO3C7;50m78gME7iV!f)O%kEHPNc56&ir48Q+^kMoTis6?p3{ z{tERroJF1L;PdV+$cPPy3u9v(fz9z4*2kC&ZfS?0CNc{(;0LHPu>m#V<5*Dd|D`~N zKM*duw;&!z(x4Hl;W1Q47f^e412wVWOV%FsgpIHyHbZ^QPQ}c)9&_V<)Z1_cD`MJT z`LoX_Q-_QWS;TMdEEGTu{2FTDhS(6>ptfiOs^c$F10O}L&XUIW>b{RL8qZu|{gruU1$nQ!x1c)4Q0}9a^b?EEq1p%i?!I(luoQ7))ay7I+u&E& z5+na`D>@j95YNG?xC7O1&^6Y-Bbmf&uH*MGCGjrQC)2JCRnu7(1w_p|g1+_&{x7^D3mC5Ld+Mo{E4AejuF(*F2!kF>4 z`?XsERX+>W@e1<@wkG}yb*Adyaj#uFj3FL`5x5A|?*=Tc_x~svE#-5}gHdrx4G z5Vti)qF%p+7>*lIOT8QQdL2Zq)bCdR1l4coU#@)|h7ni5P^=v&XaAd$(T$x^9S%b+ zy^qY$+l1-xGA7_(SQPW$b5GI`Ro(~F<1);M8&NB?5A`5_T6xO*uD?i(()(YKjFz+p zR>U?~4VPH?71R?yMJ-|KzujrhW7a~QnZc;{dN^u{XJZ;%i(0vD<`1Ze-9TRz86LQq z7eP&=JZecBTHFt{l#@_5eromKV=VD))QV((=q6AD6}QDQI0KvEe$>+EeB@Rj<`Mg^ z36!Eh9o5CmI2;S%EX;yiQHSt*%!E%c3e!DyZ$UBC3iL+}Fc`I!K5FSFS^08Qe`~D% zo5!rb8Xl%Vdv*eA;T6_bIBM9asmy!M&LNDgQTxcoI9| zoBy~8@51WDLH;xTM+Y)Ba4fFIF&O*Y{SH`-8;P%@>KFa%-uIj@+y_^0Or-n-zJeiM zP~hxT!_vgl%)Qu{_z7xj>jnjRWzp|NrVN=CsEYHbCwYci(&Wj40(%~UX^D%XmM{sm zB@HnOM`9}c0M*Y5OpW_cEA>5Q!;2V?kC7Giy~4?Z0!vsC)vyujuyw$t_?DFy2o4H- z*(9RAvdl-lM9H@qxSWhb-hU$0@Y9-%AP52AcSvi6k@B!w+kkBCa{a+x|EoCiKhfPpR z-yXHcy-+JMA9Xg?Tm28HkLL5J!+HbN?vB-mrgj5Gpe9rTTVp+Jg=_a@pyoGg%Tcr;Q{1eY=)Yc|ta09=N z-0ypx$mq$2q6S!u+T%@_7f)j;e2iM5q8VNJ>!|kKu^sxT(|!pxkr$|b`(z3V`~Z0e z^}24yCb%C1fB$EX2nzfIWIP%g=_@-h$f4pZ_kvxlg|5KZ}Q3I7QYoNBGjm1MPo`D+R6Vw1(P~rK7Nmfu?@bTEy&x0Pp~U)j|}qK zWB%;!Fu#S%iND5a*da%d*A#E#bgY^)$m7NEPUPhMuSdc8TtR_<7>vsub)Lr@eR>r)E7qg-eiP~w@LPNZ@1Z6XpWh8!2dfY-K>Y|khuX5V(JV2(hI*arq7HRS)a%;= zby)pzWVA#ZFb4NogBz%UlNE3s#G*dY%Aq>wkNOCmj3x0ZYT(G2An!e_hkAf(sJG@{ z)B|QK=q!LO^!}G1vy+M$I2daeajniMS!EJ8!HgJ7H=5jI%VCzeHod?dL zSHa49+fCmP7bE>f+?hR2BE81>^M15`){uXLl!l6B_=xn7y5I3CYL(K`!ARn^)RjnC6Z&|EvRdT3lAe=a zNz!!-t0ZGru2P}TMmEcB`cl@~?g>13Zwi)DaUbhb(U^Qy+(;b6KxJ_% zWqi$fN68n(q10bSU42OnDF21@9r<3QudI%&SKsn`$p5G|#I5PKBl_?2pCAhRkj9e# z6Lsw-@loduqTv~QpI9Hrlay$am+~$+fjV7fiFH*n50WoJ>Op-s${t!fKGnQ9(q_`P zd@Fgm=;Td;{v=)Hk#7&LnsqeH$}dtkoU)Jc80n-E_r_9RpYmqJ6EzTJx(;DkyLUY? z-)LTO%9>jJD9YL<)5+uNM&&VU{DSyj@=-J_Me0V%8)y~y=Pqv|aT8KW(h5>4(igO^ zZEc!aKhG)GHHDOoyk5YbOfVz)bEKbDukmki!z-k_6l^2@jil=<(#$~4{VTz3+RUfT zTe^{J9VwWkudfi&%hx#CUZY(H2JBA$kyU;~e#}b^{eBdjB26S!)(v==RD>Hx5$gl_ z9UE{trg|vmbC#Y)(_4=GW5Qz90M1QlXKcVMuNZ~#L zT_b6j6Ymo5C8eZc%RtTl`_B@x#dWjYbDB1%{+l3m9m(&ZPG3c>Nax5upe!%x58_yx zY(Mhb`Bn12YdX2J>X?SVT4@h!tnd!0HFXt9A++PCP2d`Cx`^}eQv3;pm#pG%?mJ3; z8?GjeCQZ=(O`6xgru#6~*KGlc+u|^cHQh(6uUmoB4oEy@T^g}~eD;m|pFl?;J(ZLV@yODpE zBTk^a7AYlZ1Z`uf--S0wRjF6=1vaq0Qm2xRQ07xHg8T)&)w=k5A#i0SE)kyE?o7R8bdbmKzr=%jprLYmb>>~dcsVO~mC3T`a znzWjv>#^B_y3Vv4=8C<|IJG9~Q1HYBOrg9o7fs*g2*o=$p zhPviO%J;jQ0zde5_lLyysNaH_txmtca;cKbr>-G`4I+Pw`c~H0JnTpLulkftK}J^! z$N&DDog0>0r}?e)C&|s_x#s|N%}Fgu`cmq3M$yZX|2P)W&_HHlA4jyaq~oOd>407pO3O^q=D9%s7D$@*=!v0(j?v^ zpNsMj@P(CM(XXs*babAygcLzVI5(yyf1LbjtVq%oOVV$1T@OeztrNxZq?EL~j?=CE zKI#_{mt)Y;_&afPj3(A~iFl;G<#JQdhMT^pU><2N=^v7=F4UzaKi=YxD639>Fzr9K zvR1T-C%sBt8p^w1Zkt3_@+HZ?LVYSybJ9PQ&F0=!cvAbXYYyoxDwk4`3=5I=1!~;C zy}m&lX#*ZJKePIl)V*zGRZXk%t`qOHG3Hv~QoK!h9LZluWj#7bB3MYp0P->9@7qnf zryy~A(ifyxm8b5Pm+FJa|4h5mqzLlq@eSI2ifynWeeT9|)U6jH3#k`33@0rn^m~eaH}6eSutW=9UWc*_v9nJPWfueR+8Sc zHXmA>%6k4dI_Ya2sr+^FNi-}(`osoKPuUsrGbyV?+C=_WEK2)VQP*x9K>0HAm&n() zd)r#yF*u9zqog)g=GLDZs+0b^veQ6UbIeb}Cm3vY=^ad zjk@`i=_+U@r)&)MIWV6-|No?-DnTLF&O1Q-DzUDocGD~58`5travh?@teed(QdH5;ir&vl{RmYZ%lfHxHXM+W#-0Q94H6DQH02!ws|S=Jr(P zBz;a?8GGPaZd!r`iF;bRmH4&|u!i~+R!%l>9p=BCD2t-ac;#KO_cnd}Oa34I%06R- zVlSx*m7TdE2RC*j4kLbyl_~p)vf<>z$>%3kBCqRp(lpW!q@1(~;T~P*$?M8WT#NQ& ziKB_1T6w(o|6kJAq#jg^#M2l?Q!#91Id zNc*DL!rI)!JXW8Fyg%83cGmH4*02xdQ@F8=l~=&pq%GE7)FD2EEnX_yZubwh`vzJ( z7mLyE6e*H^?Q(M&ML{M?CfiM)*-f7XZ7NphVUbOhhRzD!^n7Hp@DzP}b?-QQQ>JN& zndUWEQhd|YB|TEaG$~qTK-Hn*LS4c)bMUdmXO7lC#=3a e{>v}NrwsZg*TSaJLGkncxtrs;vT4h2U~tF>cWdr1Fo@nBW4KjyxpifJ<`NY z_*cw9d>^%P>6*F;6vQyD?^U2u0PAB`>}O6e7oh(_7)<*{Oplwf3Vx5p(QD@V#iDK? z9`(qoVSa3Z8E}L-8GV}RJ5+Rs%TV#Rs3qTrnotU|CA>$dfuEu7B&fNYNFLM*7Dw%c zDyWrgjhV3<7Q|twi7vrBxVJgaKP{EZBs9Qn)Ez#@o*2}^^EzW+48tE$6Fi5S$Tifn zzk{0aL)7_MTYCO+BT(lRu(%v*FI2~POlZma7o{?agqG?ftc>4aHhh3F7}CmJs3d9$ z<53f-jfJo=YKe!V9_70jiQABU=$%IOE7aOuuMsL9>7$}0`2cmHgQ$V-TAcND*Io(L z-UGFivrzpupawdQh4Be$0{Pppfw3;C|4NL-A1r=ou`jZ%d;RL8I`&2lJO_2bjaURv zS-aQHT_^^1hmBC}y)iYugIbv-sFhlY+3`!%xCbnM6Y1yk{-KhEhM@Lt59C0_h0V&A zZ-jcr9kDcyL2cU4&4U<8d>wOQPzU$yqfmRLBx+*iF&JxM2CnbbvktBN2`+$|abMJH zHxacLW}-IJhp0`v0k!m7F(dwtI`6Kvr)K?i;V{%&kP~%d#ZW6#P3?OB8&c8h(gK69 zGis)9r~?kfcpQo4@e9n2mn{zH;R~}^5AKe*6>90GoAXh-`~!@^&8P{SM~!z4Bk(T_#Ed=N zX3m0I*+|TVzM@n#vpT3})dDrpn-&j2t;96c(k{iUxD_?fA=JdrS$qrisGgV+z1(;e zF^GHuYJ&BUN8OUo9Y&+>cmn3YS*Qzrj9SuUi;q}*5jF6?s2fT5rrUIR zQ8!QvbptI?;|#-$djBU=(I%OX+9c~yOZ%fkkN#?d{%{cnl%#hFZzK zsBy-aQ&AIm$Kq9(hIk`JaeZ$K6>Wx7m=>?2I^0LCz!NjLkGnt^79*b*wNkI5?z|al z0-aDd)E~76W}qhYG3omo^(FN26uUbCc05?!^ zj3QqfHDFiE_e0&lWGsOzF(V#BP4IWrjoq_2m2aSX=2=h!<;L__7&XIkmal0xL`|$U zYT!;5_qX=p<^x%lr0H(X+pZ+8j4fclH8xfv7?5#8`|au7s7b zCsx4~s5?E6>K{7T?V((#3+6>_!dTR!u8W#bQ{*l4d3~vbk(i9_aUp6#_fVVWiN)R! zH^H>1JIIS#u@b0nxr(T924E)iS^Hen=fzSig`1J5?p;U!_y3zi-3cR5uhUf2Op~w{ zE=Dc+8Ppy9j#}E=s5`!odfftsxqeZoiN~15QEydg%#7txJ6S|6;(BEcezVy|<1Zq#chMGVd^o3LDK}EZK9BQED zs9l_F@p075uc8KeZ0$KlxVQqAB;VScg4u|_GJimge*raas*!Gm^N-|7Xy8~9)v-G2 z*^Wmo;Vg{Dd8kLSAH(q|YQXELkLvWJ+y_w%YVR~eJ<67-8)}bwWCKv=4Y7F9DAr#W zTuLH4u0h2+P#63O%i%AmB?}$xmN+MtATEqr>Q>ki2cssu59{JHjKJDs+*{QV)jk%r zDL4A4=$Rd|#Ca@A`~-Euf@9s%mqsmpZH&cksEN)+O?(+@Ws*@7JBXF>F=oZGM z)Wmzayw4j>MJG;1oj3zE@FLVRT!F=K4Qd6BTl;;>|7-aoZ@Ilt4`b-p1$E)6s2f>` zxp5Whb7HqY&+|V{MHfuL9C+K`z{P3PW(mhQtZaLw4{AW|9WCv2)Kb20u0u_Hm&N;0 zuiY8*3g#rfhZ@^UH^E&fAL<#tf|_9m%!U0?OE(>Lp_P~izeeRxq9%S1^|hRKqKiwS z9zk6!iES|or(*(sf<7(%4JulJ+o&b`2Q_fWBscSds2P_+wKqVuw?RG2VW^2t!s56L z_4@u`?T1mQTI5 z?ZZ&7?ReA$r(qeKjeT$@w!>nR{r_0vO_|L4>-|1OLhohzDSR$t0ye=}*aCk=O(brr z`)hRvY)iZqt6{cj?z^Hn>V02;TIzMENA(jH#+#^>%Q~HZNy9iF6+QETm=C97G_FCt z*FRtg{)T~g9ra9anJ-W)k!6N^=22!mhLCTBnm}t*zu}k$C!ki&H=RmBD(|8O-i~?= zkDvxPkDAC;?2OMW-(jZvjPHTEfiYMB=b@H<6Y2t6QIGNVOhqT| zGY?~0;?t;(mrxh}6SesQXS+MgjOv#UHR0l@*R~YuZK#EM)*Ub!N1-OV1a-qJFca7J z)=<%F^^Fp^-#VN^P2hrg!}5QjCj1oRF(}EMSJ`|O^-0$b)o&zf{0XQD%tc*iG5S)H#WE?ge9_%l(DXbI}| zTsxQb*RDK3LYwR?X2LtD&-NGSe_!8r1I3{}YAa(wY>xgVM(vRasEI5>UHDVfg}<_R zkHv>j*E#Q_q7(i^&Dfjg?kFQFABkaD((*M>1HWeNucI!|2X*J8EuLcW0<1uOIaa~b zX0~_SC!?<^l@2r{qITs)%#7Di1O9{B1Htp%1oNOCS**qNEN+EbfkBp^in_xESP@sE zR`NX7!GDm?4WCzif&1WSg?hH5u`(uFyaQv251^j;-5F&6pE)p)#mV z-57O4eK8KlqdpP8z}j5j`-zHnci1BLt(6nCq8G18QZCVrISnzf;l7A7CNOu-M&EIn;$}pDxY9&{o?tBAQ!f#MFaQ}VQU+?cD61vl%Wo~z8LFJ>c zFcw4YjpnFjYK3qMBPD_ z58MUwqwXvgHDJ711$9TYFbg)oyx0LXk#SfMr=c$NIcoE5!C1V35g6|K(Cx-js5@$c z8n`{`!rf65>W3O|9BMbOz&x0Yn!qv4jaN|TrCRRdP}B_;!8%w0i{LmcioR7;^h^(9 zI2K#sPN;>tD&7C@z3R!NJ7ngwYdd#fge$u?hI;T7tIHlmpJt&?xVC2`Ugf$WGL$MU>fSqm!Xz^ z7uLrcSdi;`WmdZjyp9!!JE5NKBFk?wx1pAD4{Ea>L*3bJRR7R5?t;ZokD{i-}@bsWFe{Z(ofYHw`BGI#)W;isrO&iR@9-CqWyh&!QH zW*ln8-pACq9yPJAQ8%#fGoF7NDwjyqz$%}+6UL%Wn1dy7A!=pzpayt~no#H$Zu8~G z1md!&B_DzHakj-LQRCf2P3S&q_Xq3mYFfIub?zB8#`462Q7f_r*`?kQ)Cb88?1)k8 zUB9uY52i0s7v6@t&@t4bJ%jIH+YRpZy@l$Rd850L!ageLNmM{xunua#eyEv_Kz;wu zFqdK=@n_fw*JEw`7vr$jm+mhvgHhvshp*uc%!K8W-O|@Jech;3rr|BDgXyzs6^z2TUIlgiK z7Ss-hkY9qDVEQfYj_aW&vJe~MDXfGAw({@0*b&vf2Akm@SOu$o>l}r;-d9*%59tvV z4OD)cdv=pB1Mv*Zj*Brret}xzBbN8JyZ1aCW5^dn?Ukme^LktC!(7DgVhKz}t;p|~ zPn)FN4)=Gz*5)YG083HNYy)af?7}Q~(BktLNqh~phXQxH{$UtJ9F5wH)luWUV(slM z-xqx~X&7ROWXwmr)#7tz3hK+}57ZrI+T{i=f|_6)YJxS)2B>~5P!sEi?Qt}=!IP-( zl9J!C{++0F{*Dg~+<}cTYPYi=YL|bDZ87a0K8~?F&c(Rz*|@k96R`STxBDkz1LC8o zM;W=#O{gep#S%~}(rKU1?ebyPu*@2^pqBbDYDF%gerg5ncb|Nf%+?r3eyGJCqXyn( z{(^akZ((T+J>b5)s$m7svY6Zqx<$ zp$52!+T}MbPJ7s`WH!`FmBkX+05!3ZSRCKBcpGNd`+t&3VH$3tE|~R*J2Bquj@k?J zFg32k^!S;@-&nlU;-Adpn1Oz0Q8#uSHL<{>ZqG$vB-i&6sFcJ`s0$^b|ISgHZa3z} zM;M3Mj=8uF>dv~N?raR|0-sMu3Tq2*0K>O!l{b>=2>o4Ln4XdXqb>+?=q;yP-; zI~G4fz4w9V-AvP7PDV;{pO)=Xa#EAb*PE$M}L0| z^pVK^yZdn&f%=+lgxPTj=E3Qx3$Df*co_F%rb})!p2A4t>!=9^rML@c!)C*OR zYTPjxh;O4$OSFJWF8l~JMcln)xFmVSeCfA z#mi9VeUGtt1IuCfHP&D6W5a9i2grDAPkauwq!q8buhEuRhuDW2_UG?Oh42Js!>6bVgxzy1SOT@89WgIXK)prFQIB+|`77qs`~QeaCK|%-yCsiC zolqFFU|m#uThze4EuM`TiQh*(vd=8P39}IIMLojPs7LS{#$nb6?t`f|mgf3iGb$x8 z5p^dU)qsaE486bHfSFM%RSGch~9hg#8%79T;a3+nD>4SdagD`0u>$d**cxLVyQLq8T7jvU6BnSy`2sb8Ggt)gpvKGj zkK2rK|FHg9Nwg&qjr~z?!yMEK97R3blc;C;8*1sVT0YeiH(+{HdjYc;Y7dmgSFsLi zB6CqIvC87_eU>3{(Lf7$GX+B~bUJl-_(rwZ_Y zjkZPI(HB?|e?mQ?;6RtJhFX~ps1@ywdgQ$@z25&MDtabMu_$iDX#5pJ@EPg?!9fB3 z@BMfl4kKwxc%5Y1E7Z zQoDgdP;n$iV}8rmMqQvaYLE1^{2+@HEl$D++LvP_Zbk0g`vuc+eJ_QI2D**9&~r05 zjT<<<8IJnej7IgZZ*d#cfD{2p*P}Mc z0o0w{w)|7nz}eEdrHn*PxB_bLG{($03iYiy6LkY?P%H5>YP?gJ4lk$kxo3Wdgq9>{ zsM{=MP#s#KK3KY-cJBaGzaiE>8+D<@sAszgJK|C7fN|;F`Lj_ISc*D-CF(|Y_^4<} z_M)EANz_1hQ7e(2|Bn*2$Ds1@s5@$gdd)^yejREe2T@CX9dqDwtc2ki-G!TCEO8%H z-nW>Fp4m~2G^*dLsEKqmM_Ya&YA>v@ct7ep<1A`Ik1U@d%#9n3 zwEMi0RCIxcsE%)-p6M9W1?QobawQJHfXvQ8*ogQyoQoy0xM#Z^b>V}k^RJ<9>Rj5zcZ+ujAfs3g3 z`kBS~3b@Tw4I7ZJhnm1V)CbZBsDVC5eLn0&?UBQlzi;{Ag04L~>iihgqbOr}UwJBe z_H|L;ejTh~3RWXth??MW)I{!JZLAa%;Qx_29`y*vW?k!q@y5n!n z1K5uEByPu2MFaT%hT;9YO+~NS8^zpGC8EAW=3@<9g}Rd~SQGz34IE$GJ>vwkJ?hSe zp&re2)Oqir`mZ%NqxyZ18T9_2rlK#0tJZKA_2m;38{n~tz4Sb=Evei;nQP#e$7QRG zr>(L&+EJbU>4-m~=sTeo?PI8aPDw|-KbECWQ`Ggni3BYO?o-!mv`I;hFUSq1?d8#g zlXXlW-d2u@#K(hIm5a8bfzYvKLZxAzCSbI&*bY;o>DTAKS(Yu z^$$637wTy2@c)_ozjgP&|14*nUdNe~o|L1MqLj^){*<>FG&kyaKnWsVL5b#q>+n;` z%VV2W)V&+|fd90qX&UiS%2c=iSpfz)Mep}1O{wdr(@1<5OW{Hr;F!+l*luxE>U<}8 z4=t{Q-N{X6oK%!QsrTUgPLw*-zoA^C)T7^3+WpsmmB!W7n_wCm_EYCKf;XR{;{xWP za}G*zN+A7o%q3qFLnx)m#nP5S>0{@S_EK40U(0tXF|_L_OQ}fly&y3}89RQr4)gH~ za?`Pz<e_uxX~m_!Kq)YOA1pOJrgd`_i_1=nb6K;Q59{o$1$=)*~S zZNQdvI#2FL;*ON;6#aba$qD(WPr)B>1}5Sn8&sd|d^i2i(VI3MDU{F1^V7oHP5mLI zKSf7A{rhV_2GY@k6ZT*uN{9`lkLC50g7hgw`%N2k9J!arCi=FceGv9VeV6FyMa++0 zZ$9-^oX5A_{~V{ur`K5e{H;%AEs1f+4;HTrgXo(r0ILvZP)8la4_?*@&(YSx;xfcJ zt^ODFS83Dnuc>+_+T$7Hh~@O-)z{pDL=2@dT0J?s(YXV0ej9W&?fek-Zqinm+$+>| zjCFVyF`M;mh$m@pKq*YQLfhZ?CgTNB^oy$oeQxXdXC+aBg#J|`FQqo|LK?GBa#G*Q zi8?Y+*YPHK{Seuuz>cxjHiW)QXx9&ykE!eTz$6T&eF3(ll%;(vWgd0^2liW3o>N_n zhiO<$JwIh0WgNLjlt0P8Jl0dMMs7Og@yn$7j9fF?XH%|GN)hWAA22_2t*risO=b(3 zi?se_t?v=@L)80@+<2zi29HzLkq@F&AQwbjmOlJ?@#3k!MPA2l;`X%jTfr+u{vL(U zn@OzW32`TEP3$|xA5}=`_=D2Y>iV6fV>oACq0a^vdXtHZQ+iWk$?;3cf7~(O#euZF zVdE?zu10*%&M!~Ah4L!xUEIHv@u6#-)#niPpS3jeqiY5Envv;3rZ7Y3_<&POV;t_p zU-0EIoBC+_7NBoOlCNM3J8wJj80t~9H=qpv&v~B^U#942M}7@u80CQWqK*wT{)n&p zBlkxd8~AhD7SZ{Mwf&A0iSyIm5p_hH$8bNTE$39lHz|qqJ4T#~`T-nC|39hgNYQVR zeXj2RvnCxH)99wfL$HqZXuV2lu7Mcvke&0~+B=eqqUh+3#poAD(Gg~SUbprq7Qdiv zvNr2JI+mn#q2Aq2nk0!UancAoaUHo4{ylx0+8Y|1;|F^6z~=NCVrR!vA5ShF`Y1`{ zTjR^)BkQ+}bHAeK=t;RwnMT=TIjY`c`mUe^QZf?zQrYSx66~VmS?o(=H@md0|4XH<3(2ROXyZAZ!>KIC{ll7nMQr;}$Zo2+*Yp}fk zFOokHY$HDa=P+0~N>1vp*}#WsD{X@>$10ZB7#(c9S{SMXM{3$@;2nR&w;gd>itn%` zdi`gB_sN~H{B8!{%s_#Z?v&Gttu4Eq(~mfY`rCMml8v&Eq9e0S@;LQK>tBRiOX~42 zU)oL9Nhb`ZWTSBq4kdqyi}t1d3-tr2V=ZMT`M1gaZRdXJZ*l*nQh%X*pZ2Y^wPmab z;>FY}Q^KjAv~yPL`Dd^bMO~X=3+iuJy)6T+qP#o?bMiAA;2cT*Val6mjlWqw7(XHR z5#?J-4f>SCK8!gNhfxYp{QLhclC7yH)2S0DuE%e&82PGrQXM%uQzlWmlK+7G0Q?x= zp?_!UFOL%B4w3tsq9ZqL(d2Xt#2?A;$I-;TT2zM7;T3|7G|Z;nl=^k@zY}-B{x*0e z@;a80yFw{o7nnl*wlMu zjt98i8go#Op#Cd%#@cv^KB*})DEo+)Vk!pAOvy&9V}PCC$Aw-S@>{7Vlb>L1x$v~L z@8$aca}=Z2n8AMHqy+rG$3G;R&=yDAOq-_-b zN@+yhmzFr!S>568bS1M0Yp2Z?oD zrT!izjSKyMe#)QQXrD_-pdLplp}#=R&1Wb6hBHX$D1#qTlBn0FET!!X zWf8enly@j$6dlFLm!?c49%;E-W-r=5rVJb7a zLo#J^?OxM?{d#vF?Putl$(3iuXPw_`S%oyi26XM;V`z`$rOO5c&oBLP_R!L$N|Y`a zUAjW$a+Q*seVjfZuvE$N$z4{StUZ6l)ok-OJWL(3BW2>^l!+gDFB4%OrX(&-N&GZr z(uR~tD^n7algnM-o;uzCPGtVY%Q-kRw7{fU|EFil#C4aynQ;A+)hQGCza=RXCMDm! z9THyb{~OLrNnDnaxHe_dW>?#$Yb7S9B+j_L_JhqYf&%tLE&eipK+Q}kiAz!vr>7*& POi5g>rhEAV#-{myPl3Qb diff --git a/locale/ja/LC_MESSAGES/django.po b/locale/ja/LC_MESSAGES/django.po index aed3475ad..db24bfb33 100644 --- a/locale/ja/LC_MESSAGES/django.po +++ b/locale/ja/LC_MESSAGES/django.po @@ -3,12 +3,20 @@ # This file is distributed under the same license as the CyberPanel package. # FIRST AUTHOR , 2017. # +#: baseTemplate/templates/baseTemplate/index.html:177 +#: baseTemplate/templates/baseTemplate/index.html:223 +#: baseTemplate/templates/baseTemplate/index.html:229 +#: baseTemplate/templates/baseTemplate/index.html:235 +#: baseTemplate/templates/baseTemplate/index.html:241 +#: baseTemplate/templates/baseTemplate/index.html:247 +#: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" -"PO-Revision-Date: 2018-10-14 17:49+0900\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" +"PO-Revision-Date: 2018-09-21 15:46+0900\n" "Last-Translator: @ kazuo210 \n" "Language-Team: LANGUAGE \n" "Language: ja\n" @@ -16,59 +24,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.0.6\n" +"X-Generator: Poedit 2.1.1\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "英語" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "中国語" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "ブルガリア語" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "ポルトガル語" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "日本語" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "ボスニア語" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "ギリシャ語" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "ロシア語" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "トルコ語" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "スペイン語" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "フランス語" -#: CyberCP/settings.py:182 -msgid "Polish" -msgstr "ポーランド語" - #: CyberCP/settings.py:183 +#, fuzzy +#| msgid "Policy" +msgid "Polish" +msgstr "ポリシ" + +#: CyberCP/settings.py:184 +#, fuzzy +#| msgid "Filename" msgid "Vietnamese" -msgstr "ベトナム語" +msgstr "ファイル名" #: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 #: backup/templates/backup/backup.html:21 @@ -126,6 +138,7 @@ msgstr "ファイル名" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -153,6 +166,9 @@ msgstr "バックアップを中止" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -166,6 +182,7 @@ msgid "File" msgstr "ファイル" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "日付" @@ -179,6 +196,10 @@ msgstr "サイズ" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -232,6 +253,7 @@ msgstr "IP アドレス" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -242,6 +264,8 @@ msgid "Password" msgstr "パスワード" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "ポート" @@ -286,6 +310,14 @@ msgstr "追加された宛先。" #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -318,7 +350,7 @@ msgstr "追加された宛先。" #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "サーバーに接続できませんでした。 このページを更新してください。" @@ -451,6 +483,9 @@ msgid "Start Transfer" msgstr "転送を開始" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -459,7 +494,7 @@ msgstr "転送を開始" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "キャンセル" @@ -546,6 +581,8 @@ msgstr "条件" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -554,7 +591,7 @@ msgstr "条件" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "エラーメッセージ:" @@ -571,6 +608,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "タブを使用して、コントロール パネルを操作します。" #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -637,6 +675,7 @@ msgstr "データベース機能" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -664,6 +703,7 @@ msgstr "FTP 機能" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -701,6 +741,7 @@ msgstr "PHPの設定" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -714,6 +755,8 @@ msgid "Security" msgstr "セキュリティ" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1064,6 +1107,8 @@ msgid "Access Webmail" msgstr "Webメール アクセス" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1071,12 +1116,14 @@ msgstr "Webメール アクセス" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "FTP アカウントの作成" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1085,8 +1132,8 @@ msgstr "FTP アカウントの作成" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "FTP アカウントの削除" @@ -1144,6 +1191,7 @@ msgstr "LiteSpeed チューニング" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP チューニング" @@ -1186,6 +1234,7 @@ msgid "Access Log" msgstr "アクセスログ" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1297,39 +1346,53 @@ msgstr "SpamAssassinの設定" msgid "SpamAssassin" msgstr "Spamassassin" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Eメール転送" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "サービスの管理" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "PowerDNS の管理" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "postfixの管理" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "FTP の管理" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" -msgstr "プラグイン" +msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 +#, fuzzy +#| msgid "Install Extensions" msgid "Installed Plugins" -msgstr "インストールされたプラグイン" +msgstr "拡張機能のインストール" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 +#, fuzzy +#| msgid "Install" msgid "Installed" -msgstr "インストールされました" +msgstr "インストール" #: baseTemplate/templates/baseTemplate/versionManagment.html:3 msgid "Version Management - CyberPanel" @@ -1424,7 +1487,7 @@ msgstr "データベースを一覧表示するか、パスワードを変更し #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "ドメインタイプの選択" @@ -1519,7 +1582,8 @@ msgstr "今すぐ有効にする" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "名称" @@ -1559,6 +1623,7 @@ msgstr "IPv6 アドレス" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1700,6 +1765,8 @@ msgid "Select Zone" msgstr "ゾーンを選択" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1741,6 +1808,961 @@ msgstr "削除レコードを追加" msgid "Add Delete/Records" msgstr "削除/レコードを追加" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "メール パスワードの変更 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can compose email message to be sent out later." +msgstr "このページでは、SpamAssassin の設定を構成できます。" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site Name" +msgid "Template Name" +msgstr "サイト名" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "名" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Forward Email" +msgid "From Email" +msgstr "Eメール転送" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "メールの削除" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save edits" +msgid "Save Template" +msgstr "編集の保存" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "メールアカウントの作成 - Cyber​​Panel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "姓" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "パス" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +msgstr "エイリアスの作成" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "前に戻る" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Setup Email Forwarding - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Eメール転送の設定 - CyberPanel" + +#: 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 "Eメールポリシーサーバーが有効になっていません " + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:32 +#: emailPremium/templates/emailPremium/listDomains.html:32 +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "有効化" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "メール パスワードの変更 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "メール パスワードの変更" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +#, fuzzy +#| msgid "On this page you manage emails limits for Domains/Email Addresses" +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "このページでは、ドメイン/EメールアドレスのEメールの制限を管理します" + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +#, fuzzy +#| msgid "Select ACL" +msgid "Select List" +msgstr "ACL を選択" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Web サイトの削除" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "閉じる" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "確認" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "ドメインの追加" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Forward Email" +msgid "Load Emails" +msgstr "Eメール転送" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "メール" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "サービスの状態" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "操作" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "SSL の管理 - Cyber​​Panel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage SMTP Hosts" +msgstr "postfixの管理" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"このページでは、バージョン管理や CyberPanel の最新バージョンへのアップグレー" +"ドが可能です" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save edits" +msgid "Save Host" +msgstr "編集の保存" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "New Owner" +msgid "Owner" +msgstr "新しい所有者" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "ドメイン - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Web サイトを選択" + +#: 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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "プレビュー" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "FTP アカウントを選択" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "起動" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +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:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "プレビュー" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "すべての機能は、特定のサイトに関連します。" + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "リソースの使用量" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "リソース" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "許可" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "帯域幅の使用量" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "アクセス ログを読み込む" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "アクセスログ" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "エラー ログを読み込む" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "ログが取得されました" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"ログを取得できませんでした、コマンドラインからログファイルを参照してくださ" +"い。 エラーメッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "次へ" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "前へ" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "ドメイン" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "ドメインの追加" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "ドメインの一覧" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "ドメインエイリアス" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "新しい Cron ジョブを追加する" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "Cron ジョブ" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "このパスからの相対: " + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "デフォルトを設定するには、空のままにします。" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"無効なドメイン(注: 'http' または 'https' を追加する必要はありません)" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "PHP の選択" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "その他の機能" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "ドメインの作成" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +msgid "Website succesfully created." +msgstr "Web サイトが作成されました。" + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "PHP のバージョンを変更:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "削除済み:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "SSLの発行:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "変更は適用されました。" + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "発行" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "設定" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "メイン vHost 設定の編集" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Rewrite ルールを追加 (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "Rewrite ルール (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "Rewrite ルール" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "独自のSSLを追加" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "SSL を追加" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "PHP のバージョンを変更する" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "PHP を変更する" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL を保存しました" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "SSL を保存できませんでした。エラー メッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "保存" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "取得されたファイル内にある現在の設定。" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "現在の設定を取得できませんでした。エラー メッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "設定が保存されました。" + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "取得されたファイル内にある現在の rewrite ルール。" + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "現在の rewrite ルールを取得できませんでした。エラー メッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "rewrite ルールを保存できませんでした。エラー メッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Rewrite ルールを保存" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "PHP バージョンの変更に失敗しました。 エラーメッセージ:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "PHP が変更されました: " + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "ファイル" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "ファイル 管理" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "open_basedir 保護" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "FTP アカウントの作成" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "FTP アカウントの削除" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "変更を適用" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "変更は保存されました。" + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "エイリアスの作成" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "SSL の管理" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "圧縮" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "圧縮" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "アプリケーションインストーラー" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "LSCache と Wordpress をインストールする" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress の LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "LSCache と Joomla をインストールする" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "このウェブサイトでGitをアタッチしてください!" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +msgid "Install Prestashop" +msgstr "Prestashop をインストールする" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "Prestashop" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1766,7 +2788,8 @@ msgstr "SpamAssassin がインストールされていません " #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1775,7 +2798,8 @@ msgstr "今すぐインストールする。" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "インストールの開始に失敗しました。エラーメッセージ: " @@ -1784,8 +2808,10 @@ msgstr "インストールの開始に失敗しました。エラーメッセー #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1804,7 +2830,8 @@ msgstr "接続できませんでした。このページを更新してくださ #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "インストールに失敗しました。" @@ -1819,7 +2846,8 @@ msgstr "冬は来ますが、SpamAssassin もそうです。" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1857,15 +2885,6 @@ msgstr "ドメインリソースの使用状況" msgid "Limits are being Applied!" msgstr "制限が適用されています!" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "無効化" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1873,15 +2892,6 @@ msgstr "無効化" msgid "Limits are not being applied!" msgstr "制限が適用されていません!" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "有効化" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1964,34 +2974,10 @@ msgstr "ログをフラッシュする" msgid "Domains - CyberPanel" msgstr "ドメイン - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "ドメインの一覧" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "このページでは、ドメイン/EメールアドレスのEメールの制限を管理します" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "ドメイン" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "Eメールポリシーサーバーが有効になっていません " - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "今すぐ有効にする。" - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "Eメールポリシーサーバー - CyberPanel" @@ -2146,11 +3132,6 @@ msgstr "アップロードするファイルをここにドロップします。 msgid "Progress" msgstr "進行状況" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "操作" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "除去" @@ -2236,20 +3217,6 @@ msgstr "ファイルが作成されました。" msgid "Confirm Deletion!" msgstr "削除を確認してください!" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "確認" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "閉じる" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "ファイル/フォルダの一覧!" @@ -2477,7 +3444,8 @@ msgid "Action failed. Error message:" msgstr "操作が失敗しました。エラーメッセージ:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "操作は終了しました。" @@ -2505,47 +3473,56 @@ msgstr "このページでサーバーセキュリティを管理します。" msgid "ModSecurity - CyberPanel" msgstr "ModSecurity - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "ModSecurity の設定する!" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "ModSec のドキュメント" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "このページでは、ModSecurity 設定を構成できます。" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "ModSecurity" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: firewall/templates/firewall/modSecurityRules.html:70 #: firewall/templates/firewall/modSecurityRulesPacks.html:28 #: firewall/templates/firewall/spamassassin.html:29 msgid "ModSecurity is not installed " msgstr "ModSecurity がインストールされていません " -#: firewall/templates/firewall/modSecurity.html:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "ModSecurityがインストールされ、3秒後にページが再表示されます.." -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "冬は来ますが、ModSecurity もそうです。" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "ModSecurity 設定を保存できませんでした。 エラーメッセージ: " -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "ModSecurity 設定が保存されました。" @@ -2658,15 +3635,6 @@ msgstr "キー" msgid "Add Key" msgstr "キーを追加" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "保存" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH キーが削除されました" @@ -2955,17 +3923,6 @@ msgstr "このページで PHP 設定を編集してください。" msgid "Advanced" msgstr "高度" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "PHP の選択" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3029,6 +3986,7 @@ msgstr "このページでPHP拡張機能をインストール/アンインス #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "PHP バージョンを選択" @@ -3055,18 +4013,9 @@ msgstr "インストール" msgid "Uninstall" msgstr "アンインストール" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "前に戻る" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "詳細を取得できません。エラーメッセージ:" @@ -3314,25 +4263,21 @@ msgid "Successfully Modified" msgstr "更新されました" #: pluginHolder/templates/pluginHolder/plugins.html:15 +#, fuzzy +#| msgid "List Databases - CyberPanel" msgid "List of installed plugins on your CyberPanel." -msgstr "CyberPanelにインストールされているプラグインの一覧です。" +msgstr "データベースの一覧 - Cyber​​Panel" #: pluginHolder/templates/pluginHolder/plugins.html:31 +#, fuzzy +#| msgid "Latest Version" msgid "Version" -msgstr "バージョン" +msgstr "最新バージョン" #: serverLogs/templates/serverLogs/accessLogs.html:3 msgid "Access Logs - CyberPanel" msgstr "アクセスログ - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "アクセスログ" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "メイン Web サーバーのアクセスログ。" @@ -3443,36 +4388,44 @@ msgstr "LiteSpeed の状態とログファイルを表示します。" msgid "LiteSpeed Status - CyberPanel" msgstr "LiteSpeed の状態 - Cyber​​Panel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "LiteSpeed の状態:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "このページでは、LiteSpeed プロセスに関する情報を得ることができます。" -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "LiteSpeed 操作" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "プロセス ID" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "メイン機能" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "lscgid プロセス" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "ワーカー プロセス" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3481,22 +4434,76 @@ msgstr "" "発生しました。Cyber​​Panel メインログファイルを参照してください。" #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "LiteSpeed を再起動" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "LiteSpeed を停止" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "" "エラーが発生しました。 CyberPanelメインログファイルを参照してください。" -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "サーバーに接続できませんでした。" +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "ファイル 管理" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "サービスの状態" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "制限の変更する" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "新しいファイル" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "変更" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "サービス - CyberPanel" @@ -3538,7 +4545,8 @@ msgid "Tuning Details" msgstr "チューニングの詳細" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "最大接続数" @@ -3563,7 +4571,8 @@ msgid "Enable GZIP Compression" msgstr "GZIP 圧縮を有効にする" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "現在:" @@ -3591,50 +4600,62 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP チューニング - Cyber​​Panel" #: 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 "PHPの各バージョンがサーバー上でどのように動作するかを設定します。" -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "初期要求タイムアウト(秒)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "メモリ使用量のソフトリミット" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "メモリ使用量のハードリミット" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "プロセス数のソフトリミット" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "プロセス数のハードリミット" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "永続的な接続" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "PHPをチューニング" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "チューニングできません。エラー メッセージ:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "詳細が取得されました。" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP 用 " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "調整されました。" @@ -3798,12 +4819,6 @@ msgstr "無効なメールアドレスです" msgid "Websites Limit" msgstr "Web サイトの制限" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "ユーザー名" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -3930,52 +4945,14 @@ msgstr "( 0 = 無制限 )" msgid "Application Installer - CyberPanel" msgstr "アプリケーションインストラー - CyberPanel" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "アプリケーションインストーラー" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "ワンクリックでアプリケーションをインストール。" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "LSCache と Wordpress をインストールする" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress の LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "LSCache(?) と Joomla をインストールする" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "LSCache と Joomla をインストールする" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "Joomla" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "新しい Web サイトの作成する - Cyber​​Panel" @@ -4003,23 +4980,6 @@ msgstr "所有者を選択" msgid "Do not enter WWW, it will be auto created!" msgstr "WWW を入力しないでください、自動的に作成されます!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"無効なドメイン(注: 'http' または 'https' を追加する必要はありません)" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "その他の機能" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -msgid "Website succesfully created." -msgstr "Web サイトが作成されました。" - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Web サイトの削除 - Cyber​​Panel" @@ -4074,11 +5034,6 @@ msgstr "エイリアス" msgid "File System Path" msgstr "ファイルシステムのパス" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "発行" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "ドメインエイリアスが見つかりません。" @@ -4155,13 +5110,6 @@ msgstr "ログインパスワード" msgid "Database Prefix" msgstr "データベースプレフィックス" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "パス" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4206,268 +5154,6 @@ msgstr "LSCache と Wordpress をインストールする。" msgid "Blog Title" msgstr "ブログタイトル" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "プレビュー" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "すべての機能は、特定のサイトに関連します。" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "リソースの使用量" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "リソース" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "許可" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "帯域幅の使用量" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "アクセス ログを読み込む" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "エラー ログを読み込む" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "ログが取得されました" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"ログを取得できませんでした、コマンドラインからログファイルを参照してくださ" -"い。 エラーメッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "次へ" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "前へ" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "設定" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "メイン vHost 設定の編集" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Rewrite ルールを追加 (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "Rewrite ルール (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "Rewrite ルール" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "独自のSSLを追加" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "SSL を追加" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "PHP のバージョンを変更する" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "PHP を変更する" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL を保存しました" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "SSL を保存できませんでした。エラー メッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "取得されたファイル内にある現在の設定。" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "現在の設定を取得できませんでした。エラー メッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "設定が保存されました。" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "取得されたファイル内にある現在の rewrite ルール。" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "現在の rewrite ルールを取得できませんでした。エラー メッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "rewrite ルールを保存できませんでした。エラー メッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Rewrite ルールを保存" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "PHP バージョンの変更に失敗しました。 エラーメッセージ:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "PHP が変更されました: " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "ファイル" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "ファイル 管理" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "open_basedir 保護" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "open_basedir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "FTP アカウントの作成" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "FTP アカウントの削除" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "変更を適用" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "変更は保存されました。" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "このウェブサイトでGitをアタッチしてください!" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "Git" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -msgid "Install Prestashop" -msgstr "Prestashop をインストールする" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "Prestashop" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "Cron 管理 - CyberPanel" @@ -4725,55 +5411,6 @@ msgstr "Web サイト " msgid "Successfully " msgstr "成功しました " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "ドメインの追加" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "ドメインエイリアス" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "新しい Cron ジョブを追加する" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "Cron ジョブ" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "このパスからの相対: " - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "デフォルトを設定するには、空のままにします。" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "ドメインの作成" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "PHP のバージョンを変更:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "削除済み:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "SSLの発行:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "変更は適用されました。" - #~ msgid "CPU Status" #~ msgstr "CPU の状態" diff --git a/locale/pl/LC_MESSAGES/django.mo b/locale/pl/LC_MESSAGES/django.mo index e17619b34b88fd55d53d1ef72ce46035bd179038..189ff2959f47662a3c30ed113f773d4b0ee527e6 100644 GIT binary patch delta 20071 zcmZ|X2Y8R?M4zI?r|8UiaS5lhEt;`*f-I+pE3Zmx8?)J3Mb?cbp>F zpFj3`JI>bH%5|JItsN%-*J6I$hK2Bu^%o2y{S@}#R@j2-C<`^Q!&m^XV-=BV9H%O3r48Gg3Ae_A zq~lOKmyVj?A`D`D=Y1j(xEu4~1?xSlcLzHV`cPg1b7Le%V|6T#!%!<+iCVx0)RBFN z;dlT8@TT$e#3F}m$8i|VMKO;16Ue_+!;qPFrG zs-CNx>9`3-k{*njz(VYeyHNE*VweopL8S-Sw0kxY7a6;4!8ugN|Djf1qC2~R%~1`9 zp$1xvTH#(>eh#%m*?O3r@k8xY2+~0f z;6JDi^Yk*8%Y{1Aau|pmQSJKK@=>UPC!*ehnW%*>NA1jqD%bnJhlpO61L%z>P&55O z74R3Vfxlu+EXu(a!8cIp;aC?pq0ac4HK>niSKm4k(Uiy?2p-T0(yS>p>}pQ zhM{{I5pC5D)L9)sb#&IIucCJ1F=}i52biA;nw{y^DoHQBEMf9b@Z>SaD!-Dt>HBi2RW=kVb>4rAl0oCzP)I!p+1kOh-;1kpW z4x-v!$3VUR4~XcJWFKTMNpaK%q&#Y8nxe`(+wv4FOL`nuzzvuaPowIeM_snxt&dO> z$d+jG^J5OuC9o*tJ7tOJGBig&j6qe1L+!v|YZ_{RiKsg=AGK4Tp;rEtEkBN$@I}-e zc#4`(zQN`LRUFlS4RmX(>J!O{ols}g6SY6kFXSekD9&0M`Sh`{uBhWX=SPr#-cBnIr z$J#g&wKH3-nW%|>h8pKI=E93f?7xf1Z)Aj{|4@^zh}xodr~$j${B%@DE3hbLqB=Zf z^Dm$l@Bk}fNU}My#;6H)MD0kdO^(r3Rev1n4$VTfn~%DLD^UyGg&KGt@|L-s^F)Hkcz`|8XSkVAEb7t>w&`K0368}8 zoR3=ZyQoj_CR9I{Fc03f7!%M>7{S@x|5^s2y30d2u7EpWVvWOb*$MZ!sI`GuEF`E4*mS zZ((WD4^gjKkyJBaGzODyf|^iQ)PxeOlTh{FMct{-Q4=_V?gB)9B%)h>8`V)znz_Xh z=;;_W^RB3l2HEl%HvK+UBL8daLkuBZa+I+Ss{eMVw_^lqhZm0GB-HUrG8*7VsI$F; z+QMg81HDF@2DPvN=|-pyV^E*!@mLBMqb~Cv)KMNpE#N!UkzGQyyK2+EW7vNU=s(6> zu259E5^9F^usXhu+Olz|EuM)LaS3Xx58)el1vTNCV`+m)sN0{3daI71%Kt!J$`bB$ z(_sTtMq4b4gHZ!6LhaC6)YfNW1w4(K=nKq`0prZhM4%>C7wh66%!lux-i|EPM2?{P zb>FlFPi%qTcvCSF^;XnIt+<7?n{@!{a;BlSdLrtU&p=Il4r=R{q1tc7!ng-D@iQjh z?c5-uh7V8;pQ1YUebaQD7t4_jMeRTnRC%1uA8PZLVkr4psJn0yHSi`KUxFq?)L~~VhDy}&$j#)YHOdMwlX(;$zrG-sch4=P_JD} zYZuf+W3d3iN#_p@^tLi^Cu)XAF$^!Fw(bdPfRKr1CrYF8o1rEiizRWaO|L>7!7i+X z-(XREf{n4jB+g%3-<^ndpbu)x5>XwGLCt&-YQ}49`KPx02x>>Jqb7PE%VWS~^ZM37 zmA{4>r!8unPN*+s@5$`HG7`wp`#H>3OhpYm7IoXFq2BB5s1Em_+I@pM+aGNCb<}Hn z2Q}bhtcw5QV2ql=UsiBAcEpEM*iyaU&8M38ay+&my&c=*Gwh75r!4QN9(^zd zwNrgiXB%ftL+!{+)LqE1Zo!p%XC}~^*X+eIk7Y9 zL(>cU;s~368uhI|k6Oq*jKCbT%n_7F^u+v!6@Gf73gHsh^R(3|uu z^vC(AftI5tvJKVYA@s*nsD3V>CVbs`$NC6W{{?F2a?Msd&c7HDWt2rVtY>Y8ex%!> zKgOU2jz?X>v8a{JK-F7$?&4R%D^h{4~1oPt-*7%wfTd?-V4Wj*6jPze+Y; zUlmBVMNQxhYhRl`7&YPHSOe2h{d{cQheb%AMAf^4o-ZP50zPxue>DgoB8#FLRKx&m zg}Ti#sP}&as^M&F25RLiQ1v#T2Ko}!-w~TWYrTTHyuaJ@pL5y&05Tqvp{??nXJ+Wa zYNVsEBF1AbeA|}4iyC+Le%b3}ROv;X=ey2#M2 zY=F9C9WW0jpuX{Gs55*E)zJpjYxXhftvQ08Ek@muN2rP9USR4MM-5!grt8>rQ#X-3 z6m&*4h)2zM6lz6NZT{OBM0&l=--(*YepI_-r~xjcR({u}pV_qk+m2I<`~nz_?X2!u zM5>bUHTJ@%s7u#%q1ln%s18$5cVHZ9f{Rc`w$7&a+Vpp*9k^-p|3xj(Kg0ahEDW`i zow2Fj{}dwnaO^;RIKD%j?Om*kPi?yTBJ&AufI9ObsCvUt6HZ6%*d)|toQE1{6Y5eQ z#JqR~qwsGmruRQ$F~0+l(HM2Rr=vc#^H5v52sOZasDU@z{B5Y6_yR-lsPziwC;iBp z`yF$K!cljmCTg75Fpu8<=0r5JZm5|jVriU$TG3|IKv}5Q=a9|+1~s9dusWW{nHaRh zd=Hl4IMOGu61HB-zyD%7mc$+CP9k!SNIQIe8Q*7IjGgf(+==Cuo7eF&>PSLXm>;9< zF^u$Ptb&J7D}0PPb7!U5xggX|7DTPQG-@K1Rn`Fqx$;~b(Fc@H4Dg#8m}2Dzty|!zbbYhLo@7+g)s@Wf|;lR zm!ej-4%Kjr^%K;JvM?CG#Nv1wHIe(Mt$vOgCw!H;d{J0|bYC}-LPX|ZG2Dn+(IHgF zr%(f*Lrv%^s>A!JJ5zAAX;&6CffiTG{L8MQhUgOIcj^69ccOw!Dl5U9VHwM`ew=>Wd zq@q?n2eoxeaex=E9crci>&we@E9Umf=(Lt8uubvb5WQG5qAfgR|JU)%CyScdckbfM1{V`4&|oHbE9IuyI(9IS;mZF#Xz%#UMt7b5j3n1}iyaun;J*LKrkG-`mMsN22S zdI?oOIMd`e$4aEfVO7<`B)o{VvDFT91XED$4&rNi|DO`6NJbrg(lo(=s0nOAHN1gp zP;8gU?~F>%#R|9|8{%Em)>qClU&30b9cqR7u?L3ZFbu#9^!)z6mPjxeTW!IYHhs)` z8MT#vV|fhTZGRC#W>W zP+RyeYDdx++)FoPnh44qz%I~6f<~ioW0$-Z-ZjCzge%4`Ffb>Mv52Yoj z1@FPUc=$`VIm2@{;|Xdf{P&qHDu^1WG`g@ZY63k`XP%0MaV6@5v>T)F3TlhkI8S4Ju$8(v46%G7q)IUtvvrh;^~T0kfiks3RMT zn)noS;S$uP+>M&ZanuCe*NAAq`>3t+IcQdrAEQY(K)r71s9U@Zb-8wDcy7plYYsI8ohdJEo1 zU9z267H^=AB+oZyWnrk5mbdB3s7u=j)xHO6M+Tu=1EmttkK09<1Gi&N{0y~K2T)u5 z18R$JVHI?~HQ$S>sEOA>y*+JE3+j&Axsf)1A!?k}=!<*5<^0w0K{7P(S?gttBz?

YzYA4<606`(sLPe}2eUIpF(2v5s0B5}8kmUN za5a`Q0nL9ZgHrE%iPDER^4zuA7YZhwY&rnBj0JW9JQ7gJ*^MlWr??O>jKQ&PGnxih| z0MvJ8GHSx>Q1vp;u>Y!Xh>S9L1@oi-S#w4%RJw_^yUkBQb+`~U(00@joWh!z{hYb= zby4LVu{sVzy|x=rJ9+vX`>z2mlhF(xq0;q!He1&Tb-7|t4OXDG`UBK!b{I9leJqc8 z&zmExk2-?p*bUpEj$$K5;8xVzanemhTk!)H#+w*|*)Eu^FNm7C3w5izpti6F*1#cH z71!eH_yg9$!Wa4V3Oi#V%tG~l3LD`aEQRib$NE9Iyj8l z;%k^2!+tS8Tq3OvQ4{KpO>qutfu~RtzlPd@2PWU`gkClU6l7bJ3nNJ)H- zN{8Pt6RL}<*cx?-`lC9UfG%8!x)YhGqd9@PJHKNQ48Ca=5{0@mO)(tDVRu}0ll}K5 z@`Mb{{5k5fg#2ncERC8_Bh&=Dqh|tGob*D}UD=N6_y{(@KTtVp@88UTc~Je7z#yAGNaIP+Rr@v!mBN^B()4cBCw- zUR~6YHACH*-k1YNqwa_sRc|@^l5{o@@!U?VK*2uLUATif0`I>}2f?VfA`C}k6w-n7 zzRmv#br%j`Sv-e+nEk%V55QccBTy5G!Vtaxt%zubeXRpg9jBn~#3)q5ai|r|KwY-A zsEHm#t>`@F#G9!0cTp2~WOe>F-wl6MyF%!%_rEd`ZCNyGBAr!$Jy9JFz&x0Oo-MTb z%Q1-j_fQ?~Kn?sIYNt+P3H%jHq2B}Z!zv0jv3BTIB!-B#F3vgzHQ+qdEnbDHw;luW zBh=CCMcs+-umzsQU@Y;_9BFlQk#2#SSR!ho!%z#H@sR!3hhiZa`EVP$@BnIn>!=mn z#|R90WF}G@wKI)T^;)BLraNj!Qc?X)Lk+YHRewF|@_vY__sJvnUuV0Y47~-%Q7iZr z8{j}rOQHf@G}<2JE-;nPtAbUQJ>_dm>>J0`W=Ou;4Dn7CB?YHUk z7)AOaM(F)7^}_r-Z;9H{cTun12Urldp?2gjYM|q&m7PUh!rQ17Kepy}ygWx#0yS_g zR6iY1Z^0nc0*0eoTRfJC&S(~f;d0amV<&1t=TT?=E9&)mj#{~wmzQUvfmoSz2rk8D zsI9()OE5f}m*@NN88#xFJ-e4@XPagBay##kF^P;p80zii`8(Ytj3a##FJLtv(=f=_ z%jrkD6TXg_SRDVs`WTkO%d*hE{qPwbEy{ zV&0ryo=aE=Ym;9NwdL`sqewmXpMiQk*P@PO2WkS}pf24>)HptV#=LGKdC4e> zY7m9`;x$FBU;wJa$=1cFt>1*2z)sWvU)ubyQ4{$dHPJh$@5U3XQ9#{m&Yl%ggh@DUF(7TP%Z#sGVDA%QvAWegZY2tJZ%pnRJ2N zUivZZcBT<2N5(cx$DdIHcj13ar`IkKwZhTX30RNxG+c=Lu`PB9Gy}eedX0CXCUygh zVPGCF&)+X9qWW!(x%K{cC!(z%fZDQg*6HX)TF*uzzhyIV{rSZ!@s^~EQ~sLG8)_SU zL%Is#I_aUjHVp}li2q=_*-AWy`{(4PU=995;OC8V3vb|FLLNF8N4hU@syTsn5MBt+ zzYCXFCeL4_hnlEUnYiBbE2v954Y$#5r)@ifyzYc*1lIrmK6j{ii|oH_1J!6jysjOr zJ@Ijb7q%JTYvP4yw4L~Ff{v&Sd1>U;AmmdS={E=`DEo#wE{r6-k5HX*J;B5eQMLZQKR}#;r^KU{JNoH@`NDL>vn*68Oo^)s8`eJ2~&cQ&@IE%bs!uP~0;%Lfm zU|-5p)Q0@4grmfh2%k~*@@a45`tJ|U&r~{2Mgk4vaXG=8yb*+n#P6Y=eS{LE$5Zc| z>XFvZiRpwn)QKcN5vNe5rvYg_uUiij*Q-95@?qpX<>!yeop3TL5Oxy2Be>|KI}Ru4 ziN?Z&*0!TDHvbn>?5xM*gzpLGXj`80F4XO6%l{=$&vC46+ioLWke@$JRWf62h4Ey@ z+4vwTp0t%;kncr)1fdpT2%!Xddae^@lI}*RN!UWjMc6^x)}9(n#P*ZjF5oTl3sWaR z>mNyGeiD}nR|tCU(4aoy5$R7!U-jg2hB(j0o8dj`tf0;;+wLRsya|y6{iJ*KnMB<` zsW+JM5{W;iP~$uAk(lsG&0(a^5T+8E(I5_w5-QVhB5D1=T5bniNB%KFd&&~X??`+K z@y-N2ZxHnPZ9>>Z*;CXrfpR~M|Fuaw*~nNxg;S(E5)KmAGl~2nc%Srsf*%9-^pyPX zKUNWqqU?Ly<^pxjznmat1Bib`nSK!UB3vN;jJ%TBSpTnNRACT3!w7q9CrZyD{7m`` zm9Hp+XN0Y*_+3Ij${G{+mBA@u+m5xWjvjvO|If3L*kzmg$4$dyB)-It36ls@NY8j> z5L?$n0sbsQoqqTn-z6OKl$d`nQ1ow`ew#8qYpi{Ue@Q6#O5ghT2hX$7R#GB2@eZ$~ z^>ch8VI|?^Q<_fpQfGp#_ckm1fOrBSmG~yYMS?%+cWG1^qiK_!yqC`;{oSP>nIBQ8 zrxb-zcpj5&#bC;hWt^&$&%K=z{qCdRTlDm$RV&Pk-KmvDi?g;Tl~*BMi~J6R+=O)U zDpCFg{y}I;xvIZoNAjhP{%;VzBX5fB=ejlD%THAp8MUbtVhgD2lqUWsokT0a6H56D z+vzFFx)2|OEwCA3k*Vg)Ca(;2^|T_c=Q8CV5GsA69{cec?$ljXcm`XS|?W2i0DFWg0Kx!QJPuvF52Q{Kz=m4Rc(|CPL4sK>|fKYtdb zY!kursfw`K=Om3A(da0JJqUdWwQPAhW!Xt*+JSz;$u{mw{xm`<+IGTgwE3K}WmuPV z98RN5PdVG>UyVQACTdV=2=Td8IE4cU@7l7Dup{NAJ8Gb5PH>l&`?o z80<~FO}ZPFvxDCxJ&trq(tT+2Bk5&?BLpv7CmG!VWK1XMd5_SNcp42h+r0i%s!3=- zSuXMiU@<$1g2by4Z$fz>p*P_fdGFA66aHxHy-j>NWgE!PiIoTk$>VW5pYUfNGK$y% zf3R-xl=Hh2Wpiy_bE_?K?vmbX2U%z{SK|ZnqXKPcv<3)Y@0Zpe>pPx z6Fws}BE(X7$yQLGUc}F1O+pCqAnZxK4=@&+(dpM1K-mVuZt{Hz^~u*0g-Mj_X<={* zQBO|?&-+K@iOpC{d?E4mgr&s$Vmyua5ZANA;1sYOmbV_T?T=svb^I{Dtt%c7E)a%M z|4qVsgi%b)GyW3W$vadSLim-&dDVek!6@=7k=7G$aH`X$6rnl!o5_2hu*}w3YwI+| zs`N41_M_~!#OqS83}LJ1uPS5~AoC)f%_FlR;Zx$*up(s*P|rRbMgAJ%SBbYHu4ka_ zyaLWA{{&%x%`-L3f5dwk52IX9H!Pc-ivMO*X_n7jljH)rOtnovB|Vogp1l2bsOFR{ zCQnbK)sMW%l$XG8@^6#hig+1MEp7(srlj>ew{7YZ??n87C)e|b+o?guR4NAA%r|Z2 z`J_AA4pg+kmfyrnc49LrZ%Vu!wk7{0A<4G4)tyE!Bi3pEN1A&u(l*FN!8kg~pu+}) z8l>A%Hjnr~yh&I|T+dkQ1(EJW`Y)w%zAdX`y+eLyLPOHMsjH_j?TQkAPCP&Q=vTHP zWd2|)T=Z1q*KX4HDO+nhizWYrjd#b7ZT;WzAIeH&5dG+RK>V~V?`eGtTiSRG^)jiK zkAB=eY~~=_xB>-TDM+(}rD76gzu9^kU^wA#()Vy8W#frICUhVirv75vHj%P$!fw(n za44Ro&3ddzI_2ei@F5v9Xsl-|At&iqpKnPFB+o^i$;A7=QurV7|Hwb{O5T3rEg2wz z{9?2lL^_1@6KqW0FXW9So=1OWiy)&RiEptv&L*5D6sJ-Ejr3e2uBRyJR@9qHx}-8} zc{S4B#1G+MvURLKVIXz8;3&M0g~+dpRY~iap^9(P@J|v4i0kP@`a=xyr1-%}`Y;Wu zVQ*XK2^P2I;lyX!ct6|mEn6?y=GU_M^{_Qzm(ACYHKz?3N3e&@6kpj6M%#v?ZF(tI zqWnifaVGSCKl#X*Y1@2a+ida5Om3CmD|@3RZ8FkZj}07@&_69H!PPi6euyh=SmwRf z0ogL{w~ff%G+|_FVsdP1VoLJJOuu$Nhvi5aot%^s+duQlpt`vWjZBSAN=oSOv`n@! zSBIpufr-=&O}X(L=s#>OR#=n$KnkW?vi{n)>9`?MdO zoG>DD(e%)4zP6LiGu?i52BnO4(MRe?*MO7}u8|2NMkU54jC92&_jkp{dnV>8(>XPE zL}~?B=hT#86F6Go(G_CE4=U__5tv(l8&tjPI4Qm)adW8>3@Bxbfh)8D6R zn?z>kN`IyL*!V%FO2QD=Xjkg!l*FO0Y))FG%+R+9dkE5S9FJzA+d)(_iWVIk*Q;cB)ZZ@9-5ps(3R-wpPm@2##8@)`}Eg8t#f7k z_lsX}a$r(6BLjpAVsRm{r=8O?(#nC?zM)`%ztK2+q2I(@c6zTEc4p4(988ph}V3FYfLuB ziNq%nj#K!3(}hLO>Y?^@Nt^i8NbG6z(T0| zDqumZhoP8m9WNQ*nMXz)uSIX%h5@(>E92K#9GxbnT?y2LlTnYP3dUh`)T0_wmZla#`1JsP4qB;m|W;)J?L6i&H zayitqPsL=cfkp9c)K0C$O1K-t@NqNtKb}mE=4PNo)D|YACQ=g}kB6;Tb|LT%*?RKu;Pj!t7?e2JPs zTr0=vh;>lyS7Ql0YRgY;Iij_ByXv9Z^+EMJ8#SJ58<`?x&e;Y|8#7QmYK3X2`abA` zb5J|82(?qIF*j~Ub^NW3-$k{1fg$MC)|`PnsB&SW%c*25(ooO1BbLU|s8hSqdJHw8 zTbLKU+L>n`g*q#Vr~%8PH&#bYu&%9dY0Di^6YhsO^!`sE6GmV<>M$)so!YIat^XVY z@mJK1f7*JV_GaK93?`lzwX$NUfved1hN!otIeKAd)I@uzUhn@vGRZg+%i|{0PF%NT zj}GS4rl6kjQ0sEkeJ8EiI1s}rS42LOoGn-l|3*EUDxJ*zT~N<{7P>T(Ofvew`3kkt z&7q4yEucDT0WDDd3`4Da66y@h zMNMc6YG=Q2*Yo_(*ap{ZgV$J;2L8Rw>ynK6dhUkmupg?U(bf#q1m@WCCzze`HjKhO zsIzbmwe`0!J3c}`#&=#SgWkQ(070lj5`#Y20JZX_w!RZ;Mg37{U>a&dt1vfiK@D&i zwNocikLEYj4&Ain?0wjO%`AY79zhfq!eorccBp~Jqn`OJOu~(*`!1t5-nZo^sP^7{ z%}PU13yVYzTo`p(i|xQSbXi)cc)*>Uag_ z#LYJTCFY=f4s|B3q89cP)qmIkbDygqnGyt&uo8B}%D50q;u#D?&w=I;1)~NGM;*R` zsFhYhO{gyF_3DP&kulgFXQC!_3w355nzGAzMn*Gq2ALIvqqe>fCSxfK!nZINjzHCC zpgt!)z$Dy^JWb~c=ETl}P5b_+Gcyh~(MebxXJdBV@dFvH=x5Z{-axJRHtIEdj(Rj< zL(I%0t#PQ=st5*SNmM^oZM=~!H$_k4ovd9^3+SPG&3GW01RRTc%~qiXJcuE93^k$4 zs0saH%`w!pFN8W&HBl32g5lT!b;^gL`dNTF#OrPO7`im`%Vae01KS{Qm?BJniq zSPY}Q!MYzcz*$tsFEADJ4L6UV4eD9JimP-Ir#|gHg|XIOfK8ZFv!Dz)!IpZbR+R@2DMpJc9k#Dfb*{wl)b{ zP;P|DxB~0oIn-&7e%ri8DX98Zs6#jt)!{l@-i<{mpG6J$8nx2_qs-1mV+qPtTx2x! zzNneMjo~;O^*Vlnp?DR8@CoWY_8x6IEQpFHqvCaJxd-ZP8IGFRWa~WZD%2r#Z6~8G z-itcTU!!Jx6t(3)p*pyY?zaIo;jl3#9*4TGH0r+csE%u*`fZHGuqEn@jkop7Ox)$H zw-skGFAbic&OpwwW`MG&mDE6Obu-k82io{})PV0}9$akWndm-SSc>>f)Wq|QGyTP5 zsNVl%GI}=kt?f}W?{CY)P_I{pbq;ExOHq$%7iysIZ21vtg1+yVPsIEfK{**UPE(A= z?us+MGm(sDz7+NKyVI60q8`CxOhg|VM`1G7z~-o}{}8nUi&2ki4Qjw0sEMCKP582{ ze`@Q!$MgKPB?ZXj$5L1v8=&6X5vcmHsDY-V26_+m0rinBuSC6;n^5hxp$6WGI^_pZ zpZyO|{XIwZ<1>N%*Ru_tU>X!ay|2Yk9hJi}SP}bTI<~`e*c8i5H1G8!)a$qh>)``z zf+_E^OE?uZkxSSSeJAl-0eekiE2@w=K%hFl#(Y?Pvf1kP7)^N;7RH6Bt=*4R@e=9` zL}r*Dqh&Fca!b_fJOZ`ynW!C_k9wqwtQ%cqv=#eMXW*FiH`I+UQ4`2E#k7kK%K+!aDbD=3TwF%`YA8)|@FsAoA6b$Z`L zbvPe=aD#O_>b^aw1$~8KcofzC7gRq_Y`rthy%3k&K!W@prAWZF~`G!pkuk*I_QspL0bSe1MVo8r3jzh8Z9pHGy)d zc5hf4q1tyqt#B0T@J>O!?<-LEeQrI7zLbxl+MPj{2D(p19X~^rv(GdJp-yc+TaH2v zlz`f)a;P0>f@QH2mc%*ekNa)?3Dm$BQD@`^2H>5U?7yDvGXlE7Ze1+p6Hz-i6*a&D)WAz^d=+X3wxiCP57~YkfQ4`^rsGL$jFlFcf7hFa%_$$l9T>gPyoP7666G9= z%(rDt)U#iTrEw2xfp^iRl|3P&t@HZGY^6VH<@vE9#-Ucw0kzVusFe;to$9eRJ_QR? zo`*UUU!wXwf;yBZQTLrk-FNdN_Fo-7BA{pa8q1>hVl!YxR6G^ct`_Q9H^m6-f*NQn zYDF2S_U~EeV+iHN7=xQpJNg}}zsLH?q(kO>Y))+w=A+mVb?8Q-X8s{+M^>T+T94Yf zOjL)5P-o*7>b{q#f%7dfhq?snzWTP@47HGfE;6;qyn{vX5EjKhupNdkHLu%X)D2Tn zD_me*f=QHD;V3+VO|kJZ^8vIR^_p(OI6RB`TzHOo&=tJgbX*j*B`K(i+NhOxL_MoM z*wcf5Rzt1y;tKOR-NR_go-5537qC`Gwd-mfis6(eV-S9foCTM&$z+@_Fh3PXQ9E!Q zwZ(y}Oh?hEfs!y1n_ziNNA1We)Y(~wTH$3Ie`@_3wGhwM=Kh=*qW8ZT8O^K;Y6n`N zR^AnLTKl6;^%&G)TZLNLCRDq9s2w|w@$Aqw)IxmMn6ps`Ln+s{c0?_3Fy>`^XE7Od z@ENM(6R3&&f?C;KTYiZ3DF2JavF@j)-B8rT#$y;x#{#$vwSxz&r%?U=irUHh=+dFe zxz>EGMxrKA34O2;s=hfE!EP9fGprj?6FG?y_yS`v_d4?dm5e%^Bd{cXiki?_jKUl1 z*nd5fZ0mW4F%aLv8K^CLh?=qY2J`GfFbCx*EQ|@Li8i+NEm0Hbg4)sXm<<Q`e5Uc@RGw#9rGG;@*BN9+_-hX+stJVu@7q^-sts4tI&wtNy3DSK=)zXy^qopN{7 zKtEtL^xbamYk*ZLyRang!G_L zjd`#KYGq@sQ!t$J9Bhi~P!oBD{^+;c+#inmE4@>YjJBj0`eGGK#k$rE)QS(=@;$6g zxx^lGHilT&U=89IumMJW&KrQeu{YkvHrVV7^QE@|U5yA_BvS^9d}&tR9<}n}m>1v0 zQ2ZEUaVu&oPobXq@7AZNmHX^9Upi5!6<5b#OhY}|&bIu{UiM#G`91+{(Gt`^8!;C5 zqbBexY6o6o1jc=3K9Ewe6y;v1`xl_<*PteN5QFd>7Qd_=S;OLaFwm!ftt`!)P#Pu27GM>tbks`YoaDn54Ga9 zw%o^*UCwASdhMp826!K%aiuLEu;tUJi9W&@^ge7>9*>%MIV^znQ3LhENE~C!3sGln zE#|`==>Goyo{T#D4Yie?N6c0Rquzp&s6$p6i()_2Bbkp{*>d#4ZMM7KX{|z5ZE;1=(^odms)nR?qBWQ=(;sID1GtdWjqjq8+YDGVyR&)imb1!T> z@3&^4c+`D0QT;Z+?AQrig~{}^4Q8Vb(R|c1--fC`VSR#HQRGomUkpS!lwrDw1f-bW2s_PAM5 zC2UE#25O=UQIB*DYQP-Z(H{8JN_!#x9Uttam{La+pK@AX( z*|0RmVlrw$t!#Z4)L~3V-9H)i!89AS!>-k2bm)$vW_khjNp}OavdHhvUpl*D4a!?l z6MT$b=<$PjZGBLOFE46h6)+BKqIR$+>d{TbZnzR@=W@JHnfE^!HN!lpQyPo9p`5L6 zjHM~JK%JQk)XpqMwcm_d(Lqeco45s|el%z5B8P6 z25M{PVGu4vor!g*NAnHp@O_Wo_!9==CDaGcUCf0!&Y1RjF_>~JdSV%=_dl7822Mde zg6gQPY=l}-KO27^^?9%u)lnv@-C@+BypA#GoHY}UMYSu9s;`Mfurubysp!%(T51Ca ztmjbid#DbBeli0kVQI=uP-kQUhU0G3M83yzcppn(!E@$^%A1&*@`tFM+K4r9`#JVs zTm2USZEd!n&1+Qv-8+EAiT6W2vjwOvUxBT0EviH3y!pZ5gL-7eP%BSFt-KnBVF%Ps z4@OON^m+DQr+5niJ>$k%=Hs0Lx<)48UQS7bjRh!djFwQ7e0n8o=+eS$PC1UKJH@ zic#1Nwe{mM96vo+5Z(dAqtqt_x%B>@Ak&<{C2WsLznU$ZiQ2N2s6)30HG%!8 z37kef%bTc2^%(PDz;9*&g;3@Cs2%HyYBvORc4naazyJM&Oe}#ts2N{CJ)5VfLlb<> ze4tcBt)vy|tn|Y;T#0S*FzS)TTsIRhgnA^EQT?T%Ce#}X;dpfa_rITzi6O8Dby&`$ zI(~qu7;?ir)265n+o4{^bks8*fjR>jsAoJEy>Kad<0{k{ScesH7wZ0pH`sq|%_{=h z%7EX^7UxBER2(&6dGyA5_y#t{IXD9cVDwE6AkM-nco#MCqPNW7`+H*>%3H0zx6Rws z?KaO}9ehe)Du&En0R6Ir(6X!k@~0(d!Pmwh3ant z>I_UpwV#Dr$RgC)%0wpUa(*JCmE6M|_#D-N$Dd~49M%vFBp!)cS#i{THBdX1hMK@z zHr^lA-`kiAC!i+$fsJoO_xJw}GV1UMYT(PL6d5&(TS*)FTzM% zje7P6Fc#0E26&2EfY)Pl#u88yX@J_97U=%p|2vY=*7U<5%)n4wfEs86>V}<|4fmni z9YQ_ZGpJ9ts~CbWum%P^G2j19Q0?ZU?puNCcl#5bzgD)FfM)zPYDGVyw(tRJ%U;|1 zz`x7@k*LE|3KOtChT{u?;I7Lwlb*0!q3mfQ; znt%&6v3aPKuf>|U6U*UCY=xy>n!g=qV4~_#1KvR0_Xss%=aqRqQ&9EQki+P5(rlnL z=A)vA^&QMhd7&+D!%~!wqdqZTVRMZ6+ic}f)a&NLJUAJ(6H8F1el==An^A}FAcir% zbJCsR@BgT0^9(g`&VNit38>Sbiu!=5i`v>Is7KQU^Wz}Y=fn)uv)zX3Z!hYtIgMKR zIn+e2V-n*#cgQTnh=0u%e})SvKSzBoy#Lz#xIB-Q)z0y7KE&488}DOdl|4M%f3;eJ zmni#sdbod-{*GNJ7s=+~{xLfZV<`WCt}0~yB%>`#^zv{YiWJn=wLtAed(_H@VJ#es zTG0X2N)Mw}dJ5IJT>e_HenMc}D_zFGr#d-*nUjmZ1*Y z8q`1+tv6Ax)nin9Zyyi$CtZG2KW|u@ptiglYT$vkJPLKzGJISf?hl6L1T^DAs8f6f zHE_1<9_|mM6ilMr5;c(w)M1)qU1R+m6NrC@5%?Dt!QdQbhbp1!-$eIDJXa zfbv&Z6ifPgxc{M{HIAk{5jF5XsMjml&+Jr;H38qyeK-gEVw&2c25jhW7T5_jG1n|I z(PVaF6rM$O{1~-$9sy>H15vL{L2DvARM(TQUgAfopM;(| zI9&bkGUv~kK!Ys=QV8e~Xg7560jK{A)EP`FNnLT|sW|g7-gYvNd~NQ}x~foLgF+tM zYvbSJpOil(WnE{G)k@SBV8DejqW~%=0pW52_cA)Au zT7&j4$ft78Aba09+LR=Jo^*zMH_{~1$1eUTPttV)e^4?-_n#~IbCvBRCv|mfT?qND zHouwri#9*nwpDQ*=_aWYF`bEI)N88qbC&zNkX(GmxUW*ox_}yz@{<3BN?qUL6=GlD zYtjqyFHj#uKVuKt7Q_F&#uLz|V`E!az`DnJj=K8#{4YocJqi9y#}7!kY=f&b*htcK zlh_Z`{qOY~u{zv8kQ753y)j)#Uy-IzSDaXDd`jYla;8)Mj+Av((!alyrXuS)P5$ky zg0+;bugxHHxp@I;Gs&CuD|JIjACmgh{*Y~()y40WOHkNv1I_4TG5L|)yP7oAMZk+p z7-n5>kqPIhF=yx(1O?C02sE zaU@--#4^Z_u?-+Qwu7pauM?k5Dnz~-aSu{i?n@`> z>$eZ78?lX~7NkzJdx^RV;d9FEa0Ko1Yy39}3?wbGjml#kQX68rz9qk&d|mRtkha=( z&&dba2`?npfpQ<*ZSU(so-bDS6-m1S$-09zQnJSR@sWZ#G~lf=RbX`sv2#6r0yj78zlGsCll25^?y26xi>eT zLH(SXNL?c7m@4em!rs@%s&EkbCA7Om{s`#}TUUhGJvHE}XK-d|{3BH83bpoU&=0uj zp}p}}Y-5@@Ka&5A{3}~$!%hI@cewv=8+c4Uoiv?td(tTKm+@2D%_d)kG5#grQ0sr2 z!Zm_f*V3#EZXgY#elTeuZ4OXA@t?MNDPN$Y0i-hjiMO@+($wcB&$q9WP8)yH5mMIG zQ~R$U6u%MdO^P73V=#TUzD@d@q@QT9Se4YAysjLicBJvdbj5OCS5ghiPp~;@ANfwy zd16)i3?W4kuc-dHu8~~TD11opO$tMBJFdf-+%yXNV@1@J-})~3Pi#IOOSx-VDfu)~ zHOgMxH=U%bA5OOUhK$#iw3K!&^!#&Bcub)RX%0#MXrQYmsSv3$H|odYU3^BpuD8hd zCm%=tPf~<}TqTILq;9<_I&*P78v0VM1x=|KO+q%uV1l$ zkaQg;ope#%>q2!afwvpHrPd_%q#b=^^y2LtPOe@E)C63>e%?i&92mi%|*SK|oM za_Y0Lm6X3C)w8kBuqdgWzW+zk={hQVXSKFA#T#l!y{-$ixrEQLJ*hMCrPzT~gmxQ9 zS=WB@?-SSc(0YK_G13Rbve~xf^!`t#Fpbon4tvlzgV-+0f8hekO^NRz|2MIZC=a1L zmi%2}RY|4EA12&6mTO-18$b*JS?qn)HAaNW~7+6-j4P zaSaXcld`Tf;teT#+0L$!|L8yU2dFYT@(UI-RZE4 z?KC$=6MIFYH1gV|)uf+@WnBs6o6zxP+j%})=WF}uNPMNOJ5F6a8~@tI)K7N({{N23 zJOr!bUV>ZDlk!l~C*%j?QPMW@?@=Fvx*idGN$N(&jcn&(rpo!nwpmDh0~?DXHk@?I zmWyGye*fuuVsQVt#^x)csy`)Fr=zttp2clC%TE0NclmMSMe0{jznKPY$k!$5YGKEm zNS&)8!O#EGNsa&H-J_d(oR4YOos?kfzb79=(iLuFtMDz-5E~yu{$28akb)WXDdjiG zZzm;EE@Pf7Cz!%^D!u7!BkBqzHpXO~EyNC!c2OQ~V;^H}(rn^8@qxW>o2~zbL2{CG zy-&KKJZ*O4uVg1-nBM=-Dd=iS;CqvGZqslI`TDlga@76rwUxTlq-WICXR_mH5JLLO z-lO)h#D^%ub%<1(wzF(s-%?(nlbuW&@IM38BBpCO@o(tx3VDAzd!PJ6@|DQzx=q?- z2V8_bNCSzT;l4T8kEAQr;B+P4m3&w3k4D!g{L#yH@DG)zNV?|PnDT!5gDcaRgzSM)kG4kj4km!Qcm&(-7T0L_st?UfY@#ui@}0={-epfMMYoI zK^p2BM#@L|cW&xT(pALZEWsJJ-9I)a%Gq`uxbGbGc`1*y?c(t`ZH^ObM*7LNb$_z8 zrLforvT^epByVoGMe4y#rEFar;`=lbR|SJ}p1Pyt_hF=s1#n-K%{L>2+1UYD8K_ z+C+Lq9qTt&E*iv=?M3n-U82L5sA~{)&1qbal%IS$u?84`g|R(tZ;=j>bj_t*V~nQU zoO)gLi1i|$Nd5$A1LaW~e>jaw*hWpPy{SA$ygn8qjV9iVn|9a%63Ay=e#92j=1ZJm zgWYg6<+UVTHL1Ttz9s#1BrPL9$X(;5KQos$%9MMj=iJtxO!ltcuY2FFb7wtBo!j6+P-gu#(VlaMt_{yzy|!Fj=G9}5 y0yCeU@9v#B^GffaOpiZ1d1m%{G|E3S^4|vj3;2h=DhrPIdKB69!q;P=_x}NkK#!6D diff --git a/locale/pl/LC_MESSAGES/django.po b/locale/pl/LC_MESSAGES/django.po index 332541957..4c9f6f393 100644 --- a/locale/pl/LC_MESSAGES/django.po +++ b/locale/pl/LC_MESSAGES/django.po @@ -10,12 +10,13 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,59 +26,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Angielski" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Chiński" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Bułgarski" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Portugalski" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Japoński" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Bośniacki" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "Grecki" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "Rosyjski" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "Turecki" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "Hiszpański" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "Francuski" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 msgid "Polish" msgstr "Polski" -#: CyberCP/settings.py:183 -#, fuzzy -#| msgid "Filename" +#: CyberCP/settings.py:184 msgid "Vietnamese" -msgstr "Nazwa pliku" +msgstr "Wietnamski" #: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 #: backup/templates/backup/backup.html:21 @@ -135,6 +134,7 @@ msgstr "Nazwa pliku" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -162,6 +162,9 @@ msgstr "Anuluj kopię zapasową" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -175,6 +178,7 @@ msgid "File" msgstr "Plik" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Data" @@ -188,6 +192,10 @@ msgstr "Rozmiar" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -243,6 +251,7 @@ msgstr "Adres IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -253,6 +262,8 @@ msgid "Password" msgstr "Hasło" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Port" @@ -297,6 +308,14 @@ msgstr "Dodano miejsce docelowe." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -329,7 +348,7 @@ msgstr "Dodano miejsce docelowe." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Nie można połączyć się z serwerem. Odśwież tę stronę." @@ -431,8 +450,6 @@ msgid "Restore" msgstr "Przywróć" #: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 -#, fuzzy -#| msgid "Add/Delete Destination" msgid "Add/Delete Destinations" msgstr "Dodaj/Usuń zdalną kopię" @@ -464,6 +481,9 @@ msgid "Start Transfer" msgstr "Rozpocznij przesyłanie" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -472,7 +492,7 @@ msgstr "Rozpocznij przesyłanie" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "Anuluj" @@ -559,6 +579,8 @@ msgstr "Stan" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -567,7 +589,7 @@ msgstr "Stan" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Komunikat o błędzie:" @@ -584,6 +606,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Użyj kart, aby poruszać się po panelu sterowania." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -650,6 +673,7 @@ msgstr "Funkcje bazy danych" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -677,6 +701,7 @@ msgstr "Funkcje FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -714,6 +739,7 @@ msgstr "Konfiguracja PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -727,6 +753,8 @@ msgid "Security" msgstr "Bezpieczeństwo" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1077,6 +1105,8 @@ msgid "Access Webmail" msgstr "Dostęp Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1084,12 +1114,14 @@ msgstr "Dostęp Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Utwórz konto FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1098,8 +1130,8 @@ msgstr "Utwórz konto FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Usuń konto FTP" @@ -1157,6 +1189,7 @@ msgstr "LiteSpeed Tuning" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP Tuning" @@ -1199,6 +1232,7 @@ msgid "Access Log" msgstr "Logi dostępu" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1310,43 +1344,49 @@ msgstr "Konfiguracja SpamAssassin" msgid "SpamAssassin" msgstr "SpamAssassin" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Przekazywanie poczty" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "Zarządzaj usługami" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "Zarządzaj PowerDNS" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "Zarządzaj Postfix" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "Zarządzaj FTP" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" -msgstr "" +msgstr "Wtyczki" -#: baseTemplate/templates/baseTemplate/index.html:586 -#, fuzzy -#| msgid "Install Extensions" +#: baseTemplate/templates/baseTemplate/index.html:587 msgid "Installed Plugins" -msgstr "Zainstaluj rozszerzenia" +msgstr "Zainstalowane wtyczki" -#: baseTemplate/templates/baseTemplate/index.html:586 -#, fuzzy -#| msgid "Install" +#: baseTemplate/templates/baseTemplate/index.html:587 msgid "Installed" -msgstr "Zainstaluj" +msgstr "Zainstalowane" #: baseTemplate/templates/baseTemplate/versionManagment.html:3 msgid "Version Management - CyberPanel" @@ -1441,7 +1481,7 @@ msgstr "Lista baz danych lub zmień ich hasła." #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Wybierz domenę" @@ -1536,7 +1576,8 @@ msgstr "Włącz teraz" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Nazwa" @@ -1576,6 +1617,7 @@ msgstr "Adres IPV6" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1715,6 +1757,8 @@ msgid "Select Zone" msgstr "Wybierz strefę" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1756,6 +1800,960 @@ msgstr "Dodaj usuwanięcie rekordów" msgid "Add Delete/Records" msgstr "Dodaj Usuń/Rekord" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Zmień hasło e-maila - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can compose email message to be sent out later." +msgstr "Na tej stronie możesz skonfigurować ustawienia SpamAssassin." + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site Name" +msgid "Template Name" +msgstr "Nazwa witryny" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Imię" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Forward Email" +msgid "From Email" +msgstr "Prześlij dalej wiadomość pocztową" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Skasuj e-maila" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save edits" +msgid "Save Template" +msgstr "Zapisz zmiany" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Utwórz konto pocztowe - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Utwórz e-maila" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Nazwisko" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Ścieżka" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +msgstr "Utwórz alias" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Powrót" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Setup Email Forwarding - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Konfiguracja przekazywania poczty - CyberPanel" + +#: 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 "Serwer ochrony pocztowej nie jest włączony" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:32 +#: emailPremium/templates/emailPremium/listDomains.html:32 +msgid "Enable Now." +msgstr "Włącz teraz." + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Nazwa Użytkownika" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Wyłącz" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Włącz" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Zmień hasło e-maila - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Zmień hasło e-maila" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +#, fuzzy +#| msgid "On this page you manage emails limits for Domains/Email Addresses" +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "" +"Na tej stronie zarządzasz limitami poczty domen oraz adresów pocztowych." + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +#, fuzzy +#| msgid "Select ACL" +msgid "Select List" +msgstr "Wybierz uprawnienia" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Usuń witrynę" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Zamknij" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "Potwierdź" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Dodaj domeny" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Forward Email" +msgid "Load Emails" +msgstr "Prześlij dalej wiadomość pocztową" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Poczta" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "Status usług" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "Akcje" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Zarządzaj SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage SMTP Hosts" +msgstr "Zarządzaj Postfix" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Na tej stronie można zarządzać wersjami i uaktualnić do najnowszej wersji " +"CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save edits" +msgid "Save Host" +msgstr "Zapisz zmiany" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +msgid "Owner" +msgstr "Właściciel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Domeny - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Poczta" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Wybierz witrynę" + +#: 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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "Podgląd" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Wybierz konto FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Start" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Poczta" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "Podgląd" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Wszystkie funkcje związane z tą witryną." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Wykorzystanie zasobów" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Zasoby" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Dozwolone" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Wykorzystanie przepustowości" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Wczytaj logi dostępu" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Logi dostępu" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Wczytaj logi błędów" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Odzyskane logi" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Nie można odzyskać logów, sprawdź plik dziennika za pomocą wiersza poleceń. " +"Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Dalej" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Wstecz" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Domeny" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Dodaj domeny" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Lista domen" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "Aliasy ​​domen" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "Dodaj nowe zadanie Cron" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "Ta ścieżka jest względna do:" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Pozostaw puste, aby ustawić domyślną wartość." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "Nieprawidłowa domena (uwaga: nie musisz dodawać 'http' lub 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Wybierz PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Dodatkowe funkcje" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Utwórz domenę" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +msgid "Website succesfully created." +msgstr "Witryna została pomyślnie utworzona." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "Wersja PHP zmieniona dla:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Usunięte:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "Wydano SSL:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "Zmiany zastosowano pomyślnie." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Wynik" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Konfiguracja" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Edytuj konfigurację vHost" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Dodaj reguły przepisywania (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "Reguły przepisywania (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Dodaj własny SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Dodaj SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "Zmień wersję PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "Zmień PHP" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "Zapisz SSL" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Nie można zapisać SSL. Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Zapisz" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Bieżąca konfiguracja w pobranym pliku." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Nie można pobrać bieżącej konfiguracji. Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "Zapisano konfigurację." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Aktualne reguły przepisywania w edytowanym poniżej pliku." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Nie można pobrać aktualnych reguł przepisywania. Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "" +"Impossible d'enregistrer les règles de réécriture. Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Zapisz reguły przepisywania" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "Nie można zmienić wersji PHP. Komunikat o błędzie:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "PHP zostało zmienione na:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Pliki" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Menedżer plików" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "Ochrona open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "Utwórz konto FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "Usuń konto FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "Zastosuj zmiany" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "Zmiany zostały pomyślnie zapisane." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Utwórz alias" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Zarządzanie SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Pakuj" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Pakuj" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Instalator aplikacji" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "Zainstaluj wordpress z LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress z LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "Zainstaluj Joomla z LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "Dołącz do Git z tą stroną!" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +msgid "Install Prestashop" +msgstr "Instalator Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "Prestashop" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1781,7 +2779,8 @@ msgstr "SpamAssassin nie jest zainstalowany" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1790,7 +2789,8 @@ msgstr "Zainstaluj teraz." #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "Uruchomienie instalacji nie powiodło się. Komunikat o błędzie:" @@ -1799,8 +2799,10 @@ msgstr "Uruchomienie instalacji nie powiodło się. Komunikat o błędzie:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1819,7 +2821,8 @@ msgstr "Nie można się połączyć. Odśwież tę stronę." #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "Instalacja nie powiodła się." @@ -1836,7 +2839,8 @@ msgstr "Nadchodzi zima, podobnie jak SpamAssassin." #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1875,15 +2879,6 @@ msgstr "Wykorzystanie zasobów domeny" msgid "Limits are being Applied!" msgstr "Zastosowano ograniczenia!" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Wyłącz" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1891,15 +2886,6 @@ msgstr "Wyłącz" msgid "Limits are not being applied!" msgstr "Limity nie są zastosowane!" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Włącz" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1982,35 +2968,11 @@ msgstr "Strumień dziennika" msgid "Domains - CyberPanel" msgstr "Domeny - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Lista domen" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" "Na tej stronie zarządzasz limitami poczty domen oraz adresów pocztowych." -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Domeny" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "Serwer ochrony pocztowej nie jest włączony" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "Włącz teraz." - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "Serwer ochrony pocztowej - CyberPanel" @@ -2164,11 +3126,6 @@ msgstr "Upuść pliki tutaj, aby je przesłać." msgid "Progress" msgstr "Postęp" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "Akcje" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "Usuń" @@ -2254,20 +3211,6 @@ msgstr "Plik został pomyślnie utworzony." msgid "Confirm Deletion!" msgstr "Potwierdź usunięcie!" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "Potwierdź" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Zamknij" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "Lista plików/folderów!" @@ -2380,7 +3323,7 @@ msgstr "Zmień rekursywnie" #: filemanager/templates/filemanager/index.html:701 msgid "Download" -msgstr "" +msgstr "Pobierz" #: firewall/templates/firewall/csf.html:3 msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" @@ -2495,7 +3438,8 @@ msgid "Action failed. Error message:" msgstr "Operacja nie powiodła się. Komunikat o błędzie:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Operacja powiodła się." @@ -2523,49 +3467,58 @@ msgstr "Zarządzaj zabezpieczeniami serwera na tej stronie." msgid "ModSecurity - CyberPanel" msgstr "ModSecurity - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "Konfiguracja ModSecurity!" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "ModSec dokumentacja" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "Na tej stronie możesz skonfigurować ustawienia ModSecurity." -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "ModSecurity" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: firewall/templates/firewall/modSecurityRules.html:70 #: firewall/templates/firewall/modSecurityRulesPacks.html:28 #: firewall/templates/firewall/spamassassin.html:29 msgid "ModSecurity is not installed " msgstr "ModSecurity nie jest zainstalowany" -#: firewall/templates/firewall/modSecurity.html:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" "ModSecurity został pomyślnie zainstalowany, strona zostanie odświeżona za 3 " "sekundy.." -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "Nadchodzi zima, podobnie jak ModSecurity." -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Nie można zapisać konfiguracji ModSecurity. Komunikat o błędzie:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "Konfiguracja ModSecurity została pomyślnie zapisana." @@ -2678,15 +3631,6 @@ msgstr "Klucz" msgid "Add Key" msgstr "Dodaj klucz" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Zapisz" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Usunięto klucz SSH" @@ -2976,17 +3920,6 @@ msgstr "Zmień konfiguracje PHP na tej stronie." msgid "Advanced" msgstr "Zaawansowane" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Wybierz PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "" @@ -3050,6 +3983,7 @@ msgstr "Zainstaluj/Odinstaluj rozszerzenia PHP na tej stronie." #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Wybierz wersję PHP" @@ -3076,18 +4010,9 @@ msgstr "Zainstaluj" msgid "Uninstall" msgstr "Odinstaluj" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Powrót" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Nie można pobrać szczegółów. Komunikat o błędzie:" @@ -3335,29 +4260,17 @@ msgid "Successfully Modified" msgstr "Pomyślnie zmodyfikowano" #: pluginHolder/templates/pluginHolder/plugins.html:15 -#, fuzzy -#| msgid "List Databases - CyberPanel" msgid "List of installed plugins on your CyberPanel." -msgstr "Lista baz danych - CyberPanel" +msgstr "Lista zainstalowanych wtyczek w twoim CyberPanelu." #: pluginHolder/templates/pluginHolder/plugins.html:31 -#, fuzzy -#| msgid "Latest Version" msgid "Version" -msgstr "Najnowsza wersja" +msgstr "Wersja" #: serverLogs/templates/serverLogs/accessLogs.html:3 msgid "Access Logs - CyberPanel" msgstr "Logi dostępu - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Logi dostępu" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Logi dostępu dla głównego serwera www." @@ -3468,36 +4381,44 @@ msgstr "Wyświetl status i logi LiteSpeed." msgid "LiteSpeed Status - CyberPanel" msgstr "Status LiteSpeed ​​- CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Status LiteSpeed:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "Na tej stronie można uzyskać informacje o swoich procesach LiteSpeed." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Procesy LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "ID procesu" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Główny proces" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "Proces lscgid" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Proces Worker" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3506,28 +4427,82 @@ msgstr "" "patrz główny plik dziennika CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Zrestartuj Litespeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Zatrzymaj LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Wystąpił błąd, popatrz do głównego pliku dziennika CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Nie można połączyć się z serwerem." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Menedżer plików" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Status usług" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Zmień limity" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Nowy plik" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Zmień" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "Usługi - CyberPanel" #: serverStatus/templates/serverStatus/services.html:25 msgid "Show stats for services and actions (Start, Stop, Restart)" -msgstr "" +msgstr "Pokaż statystyki usług i działań (Start, Stop, Restart)" #: tuning/templates/tuning/index.html:3 msgid "Server Tuning - CyberPanel" @@ -3561,7 +4536,8 @@ msgid "Tuning Details" msgstr "Ustawianie szczegółów" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "" "

Maksymalna liczba połączeń
(Max " @@ -3598,7 +4574,8 @@ msgstr "" "Compression)

" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Obecnie:" @@ -3627,50 +4604,62 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP Tuning - CyberPanel" #: 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 "Określ, jak ma się zachować każda wersja PHP na twoim serwerze." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Początkowy czas żądania (sekundy)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Miękki limit pamięci" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Twardy limit pamięci" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Miękki limit procesów" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Twardy limit procesów" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Trwałe połączenie" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Ustaw PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Nie można dostroić. Komunikat o błędzie:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Szczegóły Pobrano pomyślnie." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP dla" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Zakończono pomyślnie." @@ -3728,7 +4717,7 @@ msgstr "Administrator" #: userManagment/templates/userManagment/createACL.html:60 #: userManagment/templates/userManagment/modifyACL.html:63 msgid "User Management" -msgstr "" +msgstr "Zarządzanie użytkownikami" #: userManagment/templates/userManagment/createACL.html:99 #: userManagment/templates/userManagment/modifyACL.html:104 @@ -3758,7 +4747,7 @@ msgstr "Zarządzanie DNS" #: userManagment/templates/userManagment/createACL.html:232 #: userManagment/templates/userManagment/modifyACL.html:237 msgid "Add/Delete" -msgstr "" +msgstr "Dodaj/Usuń" #: userManagment/templates/userManagment/createACL.html:240 #: userManagment/templates/userManagment/modifyACL.html:245 @@ -3778,7 +4767,7 @@ msgstr "Zarządzanie kopiami zapasowymi" #: userManagment/templates/userManagment/createACL.html:355 #: userManagment/templates/userManagment/modifyACL.html:360 msgid "Achedule Back up" -msgstr "" +msgstr "Zaplanuj kopię zapasową" #: userManagment/templates/userManagment/createACL.html:373 #: userManagment/templates/userManagment/modifyACL.html:378 @@ -3835,12 +4824,6 @@ msgstr "Nieprawidłowy e-mail" msgid "Websites Limit" msgstr "Limit stron internetowych" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Nazwa Użytkownika" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -3958,10 +4941,8 @@ msgid "List the account details for the currently logged in user." msgstr "Wyświetl szczegóły konta dla aktualnie zalogowanego użytkownika." #: userManagment/templates/userManagment/userProfile.html:58 -#, fuzzy -#| msgid "Account Level" msgid "Account ACL" -msgstr "Poziom konta" +msgstr "ACL konta" #: userManagment/templates/userManagment/userProfile.html:67 msgid "( 0 = Unlimited )" @@ -3971,52 +4952,14 @@ msgstr "(0 = Brak limitu)" msgid "Application Installer - CyberPanel" msgstr "Instalator aplikacji - CyberPanel" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Instalator aplikacji" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "Zainstaluj aplikację jednym kliknięciem." -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "Zainstaluj wordpress z LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress z LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "Zainstaluj Joomla z (?) LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "Zainstaluj Joomla z LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "Joomla" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Utwórz nową stronę internetową - CyberPanel" @@ -4044,22 +4987,6 @@ msgstr "Wybierz właściciela" msgid "Do not enter WWW, it will be auto created!" msgstr "Nie wpisuj WWW, zostanie automatycznie utworzony!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "Nieprawidłowa domena (uwaga: nie musisz dodawać 'http' lub 'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Dodatkowe funkcje" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -msgid "Website succesfully created." -msgstr "Witryna została pomyślnie utworzona." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Usuń witrynę - CyberPanel" @@ -4114,11 +5041,6 @@ msgstr "Alias" msgid "File System Path" msgstr "Ścieżka systemu plików" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Wynik" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "Nie znaleziono aliasów domen." @@ -4196,13 +5118,6 @@ msgstr "Hasło logowania" msgid "Database Prefix" msgstr "Prefiks bazy danych" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Ścieżka" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4247,269 +5162,6 @@ msgstr "Zainstaluj WordPress z LSCache." msgid "Blog Title" msgstr "Tytuł bloga" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "Podgląd" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Wszystkie funkcje związane z tą witryną." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Wykorzystanie zasobów" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Zasoby" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Dozwolone" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Wykorzystanie przepustowości" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Wczytaj logi dostępu" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Wczytaj logi błędów" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Odzyskane logi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Nie można odzyskać logów, sprawdź plik dziennika za pomocą wiersza poleceń. " -"Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Dalej" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Wstecz" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Konfiguracja" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Edytuj konfigurację vHost" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Dodaj reguły przepisywania (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "Reguły przepisywania (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "Rewrite Rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Dodaj własny SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Dodaj SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "Zmień wersję PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "Zmień PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "Zapisz SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Nie można zapisać SSL. Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Bieżąca konfiguracja w pobranym pliku." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Nie można pobrać bieżącej konfiguracji. Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "Zapisano konfigurację." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Aktualne reguły przepisywania w edytowanym poniżej pliku." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Nie można pobrać aktualnych reguł przepisywania. Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "" -"Impossible d'enregistrer les règles de réécriture. Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Zapisz reguły przepisywania" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "Nie można zmienić wersji PHP. Komunikat o błędzie:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "PHP zostało zmienione na:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Pliki" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Menedżer plików" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "Ochrona open_basedir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "open_basedir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "Utwórz konto FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "Usuń konto FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "Zastosuj zmiany" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "Zmiany zostały pomyślnie zapisane." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "Dołącz do Git z tą stroną!" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "Git" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -msgid "Install Prestashop" -msgstr "Instalator Prestashop" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "Prestashop" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "Zarządzanie Cronem - CyberPanel" @@ -4768,55 +5420,6 @@ msgstr "Witryna internetowa" msgid "Successfully " msgstr "Z sukcesem" -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Dodaj domeny" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "Aliasy ​​domen" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "Dodaj nowe zadanie Cron" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "Cron Jobs" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "Ta ścieżka jest względna do:" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Pozostaw puste, aby ustawić domyślną wartość." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Utwórz domenę" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "Wersja PHP zmieniona dla:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Usunięte:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "Wydano SSL:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "Zmiany zastosowano pomyślnie." - #~ msgid "CPU Status" #~ msgstr "Status procesora" @@ -4911,8 +5514,5 @@ msgstr "Zmiany zastosowano pomyślnie." #~ msgid "Launch" #~ msgstr "Środowisko" -#~ msgid "Owner" -#~ msgstr "Właściciel" - #~ msgid "State" #~ msgstr "Status" diff --git a/locale/pt/LC_MESSAGES/django.mo b/locale/pt/LC_MESSAGES/django.mo index 6df2a08373cac1fdedfc4c067c1b2b7670b56655..bd67c3c16a0d08af950101715d17543628b1215f 100644 GIT binary patch delta 25 hcmZ3rjA_*}rVXnixD0g-4HOJbtPIUJZ;2?g0swez2(|zK delta 25 hcmZ3rjA_*}rVXnixD0d+4HOKGtqcq|Z;2?g0swd_2(17B diff --git a/locale/pt/LC_MESSAGES/django.po b/locale/pt/LC_MESSAGES/django.po index 243cceaa2..7e581723d 100644 --- a/locale/pt/LC_MESSAGES/django.po +++ b/locale/pt/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2017-10-21 00:03+0100\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -24,57 +25,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.4\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Inglês" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Chinês" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "English" msgid "Polish" msgstr "Inglês" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -138,6 +139,7 @@ msgstr "Nome do Ficheiro" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -167,6 +169,9 @@ msgstr "Criar Backup" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -180,6 +185,7 @@ msgid "File" msgstr "Ficheiro" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Data" @@ -193,6 +199,10 @@ msgstr "Tamanho" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -247,6 +257,7 @@ msgstr "Endereço de IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -257,6 +268,8 @@ msgid "Password" msgstr "Palavra-Chave" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Porta" @@ -303,6 +316,14 @@ msgstr "Destino Adicionado." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -335,7 +356,7 @@ msgstr "Destino Adicionado." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Impossível conectar ao servidor. Por favor atualize esta página." @@ -480,6 +501,9 @@ msgid "Start Transfer" msgstr "" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -488,7 +512,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "" @@ -587,6 +611,8 @@ msgstr "Configurações" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -595,7 +621,7 @@ msgstr "Configurações" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Mensagem de erro:" @@ -612,6 +638,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Use as abas para navegar pelo painel de controlo." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -680,6 +707,7 @@ msgstr "Funções da Base de Dados" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -707,6 +735,7 @@ msgstr "Funções do FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -746,6 +775,7 @@ msgstr "Altere as Configurações PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -759,6 +789,8 @@ msgid "Security" msgstr "Segurança" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1131,6 +1163,8 @@ msgid "Access Webmail" msgstr "Aceder ao Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1138,12 +1172,14 @@ msgstr "Aceder ao Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Criar Conta de FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1152,8 +1188,8 @@ msgstr "Criar Conta de FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Apagar Conta de FTP" @@ -1213,6 +1249,7 @@ msgstr "Afinação do LiteSpeed" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Afinação do PHP" @@ -1257,6 +1294,7 @@ msgid "Access Log" msgstr "Log de Acessos" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1384,45 +1422,55 @@ msgstr "Configurações" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Log de E-Mail" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "Gerir SSL" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "Gerir SSL" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "Gerir SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Instalar Extensões" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1521,7 +1569,7 @@ msgstr "Listar Bases de Dados ou altere as suas palavras-chave." #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Selecionar Domínio" @@ -1620,7 +1668,8 @@ msgstr "Ativar" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Nome" @@ -1662,6 +1711,7 @@ msgstr "Endereço de IP" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1809,6 +1859,8 @@ msgid "Select Zone" msgstr "Selecionar Zona" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1852,6 +1904,1016 @@ msgstr "Adicionar/Apagar Registos" msgid "Add Delete/Records" msgstr "Adicionar Apagar/Registos" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Alterar Palavra-Chave de E-Mail - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "Nesta página, pode definir os seus destinos de backups. (SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "Nome do Ficheiro" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Primeiro Nome" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Criar E-Mail" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Apagar E-Mail" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Guardar Regras Rewrite" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Criar Conta de E-Mail - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Criar E-Mail" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Último Nome" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Caminho" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Email" +msgid "Create List" +msgstr "Criar E-Mail" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Voltar" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Criar Conta de E-Mail - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +msgid "Enable Now." +msgstr "Ativar" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Nome de Utilizador" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Desativar" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Ativar" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Alterar Palavra-Chave de E-Mail - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Alterar Palavra-Chave de E-Mail" + +#: 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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "Selecionar E-Mail" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Apagar Website" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Destination" +msgid "Add More Emails" +msgstr "Adicionar Destino" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Criar E-Mail" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "E-Mail" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "Estado do Servidor" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "Funções do FTP" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Gerir SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "Gerir SSL" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Nesta página poderás gerir as versões e/ou atualizar para a versão mais " +"recente do CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Guardar Regras Rewrite" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Selecionar Dono" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Principal - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "E-Mails" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Selecionar website" + +#: 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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Selecionar Conta de FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Iniciar" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "E-Mails" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Todas as funções relacionadas com um site específico." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Uso de Recursos" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Recurso" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Permitido" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Uso de Banda" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +#, fuzzy +#| msgid "Access Logs" +msgid "Load Access Logs" +msgstr "Logs de Acesso" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Logs de Acesso" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +#, fuzzy +#| msgid "Error Logs" +msgid "Load Error Logs" +msgstr "Log de Erros" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Logs Obtidos" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Impossível obter os logs, veja o ficheiro de logs pela linha de comandos. " +"Mensagem de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Próximo" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Anterior" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +#, fuzzy +#| msgid "Domain Name" +msgid "Domains" +msgstr "Nome de Domínio" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +#, fuzzy +#| msgid "Add Destination" +msgid "Add Domains" +msgstr "Adicionar Destino" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +#, fuzzy +#| msgid "Select Domain" +msgid "List Domains" +msgstr "Selecionar Domínio" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domain Name" +msgid "Domain Alias" +msgstr "Nome de Domínio" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "Domínio Inválido (Nota: Não é necessãrio adicionar 'http' ou 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Selecionar PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Funcionalidades Adicionais" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +#, fuzzy +#| msgid "Create Email" +msgid "Create Domain" +msgstr "Criar E-Mail" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "foi criado com sucesso." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +#, fuzzy +#| msgid "Version Management" +msgid "PHP Version Changed to:" +msgstr "Gestão de Versões" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +#, fuzzy +#| msgid "Delete" +msgid "Deleted:" +msgstr "Apagar" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +#, fuzzy +#| msgid "SSL Issued for" +msgid "SSL Issued:" +msgstr "SSL Emitida para" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "Base de Dados criado com sucesso." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +#, fuzzy +#| msgid "Issue SSL" +msgid "Issue" +msgstr "Emitir SSL" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Configurações" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Alterar as Configurações do vHost Principal" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Adicionar Regras Rewrite (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "Adicionar Regras Rewrite (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Guardar Regras Rewrite" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +#, fuzzy +#| msgid "Add SSL" +msgid "Add Your Own SSL" +msgstr "Adicionar SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Adicionar SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "Selecione Versão do PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Alterar" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL Guardado" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Impossível guardar SSL. Mensagem de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Guardar" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Configuração atual do ficheiro obtida." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Impossível obter configuração atual. Mensagem de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "SSH Configurations Saved." +msgid "Configurations saved." +msgstr "Configurações do SSH Guardadas." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Regras Rewrite atuais no ficheiro obtidas." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Impossível obter regras Rewrite atuais. Mensagem de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Impossível guardar regras Rewrite. Mensagem de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Guardar Regras Rewrite" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create website. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Impossível criar website. Mensage de erro:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "Palavra-Chave alterada com sucesso para :" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Ficheiros" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Gestor de Ficheiros" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "Criar Conta de FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "Apagar Conta de FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Guardar Alterações" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Rule successfully added." +msgid "Changes successfully saved." +msgstr "Regra adicionada com sucesso." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Email" +msgid "Create Lists" +msgstr "Criar E-Mail" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Gerir SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Instalador de Aplicações" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install wordpress with LSCache" +msgstr "Wordpress com LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress com LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "Wordpress com LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Instalar" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1883,7 +2945,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1894,7 +2957,8 @@ msgstr "Instalar" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1905,8 +2969,10 @@ msgstr "Impossível adicionar destino. Mensagem de erro:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1925,7 +2991,8 @@ msgstr "Não foi possível efetuar a ligação. Por favor atualize esta página. #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1942,7 +3009,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1990,15 +3058,6 @@ msgstr "Uso de Recursos" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Desativar" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -2006,15 +3065,6 @@ msgstr "Desativar" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Ativar" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2121,40 +3171,10 @@ msgstr "Log de FTP" msgid "Domains - CyberPanel" msgstr "Principal - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -#, fuzzy -#| msgid "Select Domain" -msgid "List Domains" -msgstr "Selecionar Domínio" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -#, fuzzy -#| msgid "Domain Name" -msgid "Domains" -msgstr "Nome de Domínio" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Ativar" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -2340,13 +3360,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "Funções do FTP" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2454,20 +3467,6 @@ msgstr "foi criado com sucesso." msgid "Confirm Deletion!" msgstr "Configurações" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2719,7 +3718,8 @@ msgid "Action failed. Error message:" msgstr "Ação falhou. Mensagem de erro:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Ação com sucesso." @@ -2749,55 +3749,64 @@ msgstr "Administre a segurança do servidor nesta página." msgid "ModSecurity - CyberPanel" msgstr "Segurança - CyberPaneç" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "Altere as Configurações PHP" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." msgstr "Nesta página, pode definir os seus destinos de backups. (SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Segurança" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not fetch current configuration. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Impossível obter configuração atual. Mensagem de erro:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid " is successfully created." @@ -2942,15 +3951,6 @@ msgstr "Chave" msgid "Add Key" msgstr "Adicionar Chave" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Guardar" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Chave SSD Apagada" @@ -3254,17 +4254,6 @@ msgstr "Editar as Configurações do PHP nesta página." msgid "Advanced" msgstr "Avançado" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Selecionar PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3330,6 +4319,7 @@ msgstr "Instale/desinstale extensões do php nesta página." #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Selecione Versão do PHP" @@ -3358,18 +4348,9 @@ msgstr "Instalar" msgid "Uninstall" msgstr "Desinstalar" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Voltar" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Impossível obter os detalhes. Mensagem de erro:" @@ -3651,14 +4632,6 @@ msgstr "Última Versão" msgid "Access Logs - CyberPanel" msgstr "Logs de Acesso - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Logs de Acesso" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Logs de Acesso para o servidor web principal." @@ -3774,36 +4747,44 @@ msgstr "Ver o estado e ficheiros de log do LiteSpeed." msgid "LiteSpeed Status - CyberPanel" msgstr "Estado do LiteSpeed - CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Estado do LiteSpeed:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "Nesta página poderás obter informação sobre os processos do LiteSpeed." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Processos do LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "ID do Processo" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Processo Principal" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "Processo lscgid" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Processo Worker" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3812,23 +4793,77 @@ msgstr "" "ocorreu, por favir veja o ficheiro de log principal do CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 #, fuzzy #| msgid "Reboot LiteSpeed" msgid "Reboot Litespeed" msgstr "Reiniciar o LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Parar o LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Ocorreu um erro. Veja o ficheiro de log principal do CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Impossível establecer ligação ao servidor." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Gestor de Ficheiros" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "Estado do Servidor" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Alterar" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "Ficheiro" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Alterar" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -3872,7 +4907,8 @@ msgid "Tuning Details" msgstr "Detalhes de Afinação" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Ligações Máximas" @@ -3897,7 +4933,8 @@ msgid "Enable GZIP Compression" msgstr "Ativar Compressão GZIP" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Atualmente:" @@ -3926,52 +4963,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "Afinar PHP - CyberPanel" #: 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 "Veja como cada versão do PHP se comporta no seu servidor." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Pedido de Timeout Inicial (segs)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Limite de Memória Leve" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Limite de Memória Duro" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Limite de Processos Leve" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Limite de Processos Duro" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Ligação Persistente" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Ainar PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Impossível afinar. Mensagem de erro:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Detalhes Obtidos com Sucesso." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "Versão do PHP " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Afinado com sucesso." @@ -4175,12 +5224,6 @@ msgstr "E-Mail Inválido" msgid "Websites Limit" msgstr "Limite de Websites" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Nome de Utilizador" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4327,60 +5370,18 @@ msgstr "( 0 = Ilimitado )" msgid "Application Installer - CyberPanel" msgstr "Instalador de Aplicações" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Instalador de Aplicações" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Instalador de Aplicações" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install wordpress with LSCache" -msgstr "Wordpress com LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress com LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 #, fuzzy #| msgid "Wordpress with LSCache" msgid "Install Joomla with(?) LSCache" msgstr "Wordpress com LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "Wordpress com LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Criar Novo Website - CyberPanel" @@ -4408,24 +5409,6 @@ msgstr "Selecionar Dono" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "Domínio Inválido (Nota: Não é necessãrio adicionar 'http' ou 'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Funcionalidades Adicionais" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "foi criado com sucesso." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Apagar Website - CyberPanel" @@ -4488,13 +5471,6 @@ msgstr "" msgid "File System Path" msgstr "Estado do Servidor" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -#, fuzzy -#| msgid "Issue SSL" -msgid "Issue" -msgstr "Emitir SSL" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4592,13 +5568,6 @@ msgstr "Palavra-Chave" msgid "Database Prefix" msgstr "Nome da Base de Dados" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Caminho" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4659,300 +5628,6 @@ msgstr "Wordpress com LSCache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "Anterior" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Todas as funções relacionadas com um site específico." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Uso de Recursos" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Recurso" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Permitido" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Uso de Banda" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -#, fuzzy -#| msgid "Access Logs" -msgid "Load Access Logs" -msgstr "Logs de Acesso" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -#, fuzzy -#| msgid "Error Logs" -msgid "Load Error Logs" -msgstr "Log de Erros" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Logs Obtidos" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Impossível obter os logs, veja o ficheiro de logs pela linha de comandos. " -"Mensagem de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Próximo" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Anterior" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Configurações" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Alterar as Configurações do vHost Principal" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Adicionar Regras Rewrite (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "Adicionar Regras Rewrite (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Guardar Regras Rewrite" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -#, fuzzy -#| msgid "Add SSL" -msgid "Add Your Own SSL" -msgstr "Adicionar SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Adicionar SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "Selecione Versão do PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Alterar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL Guardado" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Impossível guardar SSL. Mensagem de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Configuração atual do ficheiro obtida." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Impossível obter configuração atual. Mensagem de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "Configurações do SSH Guardadas." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Regras Rewrite atuais no ficheiro obtidas." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Impossível obter regras Rewrite atuais. Mensagem de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Impossível guardar regras Rewrite. Mensagem de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Guardar Regras Rewrite" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Impossível criar website. Mensage de erro:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "Palavra-Chave alterada com sucesso para :" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Ficheiros" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Gestor de Ficheiros" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "Criar Conta de FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "Apagar Conta de FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Guardar Alterações" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "Regra adicionada com sucesso." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Instalar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5232,69 +5907,6 @@ msgstr "Website " msgid "Successfully " msgstr "Com Sucesso " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -#, fuzzy -#| msgid "Add Destination" -msgid "Add Domains" -msgstr "Adicionar Destino" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domain Name" -msgid "Domain Alias" -msgstr "Nome de Domínio" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -#, fuzzy -#| msgid "Create Email" -msgid "Create Domain" -msgstr "Criar E-Mail" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -#, fuzzy -#| msgid "Version Management" -msgid "PHP Version Changed to:" -msgstr "Gestão de Versões" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -#, fuzzy -#| msgid "Delete" -msgid "Deleted:" -msgstr "Apagar" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSL Issued:" -msgstr "SSL Emitida para" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "Base de Dados criado com sucesso." - #~ msgid "CPU Status" #~ msgstr "Estado do CPU" diff --git a/locale/ru/LC_MESSAGES/django.mo b/locale/ru/LC_MESSAGES/django.mo index 76d7284d14bf4eafd4b68ebf910ad697f747363d..527b4609e2e18f3340c22b92d7b8b9fa244504bf 100644 GIT binary patch delta 25 hcmeypf%*3a<_$*^xD0g-4HOJbtPIUJpHEm*4gieQ3MT*n delta 25 hcmeypf%*3a<_$*^xD0d+4HOKGtqcq|pHEm*4gidi3LXFe diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index 7d5b7b800..4a940fbc3 100644 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2017-11-12 17:56+0200\n" "Last-Translator: aleks \n" "Language-Team: LANGUAGE \n" @@ -26,57 +27,57 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Английский" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Китайский" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Болгарский" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Португальский" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Японский" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Боснийский" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "Русский" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Политика" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -141,6 +142,7 @@ msgstr "Имя файла" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -168,6 +170,9 @@ msgstr "Отменить резервное копирование" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -181,6 +186,7 @@ msgid "File" msgstr "Файл" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Дата" @@ -194,6 +200,10 @@ msgstr "Размер" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -248,6 +258,7 @@ msgstr "IP Адрес" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -258,6 +269,8 @@ msgid "Password" msgstr "Пароль" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Порт" @@ -304,6 +317,14 @@ msgstr "Добавлено место назначения." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -336,7 +357,7 @@ msgstr "Добавлено место назначения." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Не удалось подключиться к серверу. Пожалуйста обновите эту страницу." @@ -475,6 +496,9 @@ msgid "Start Transfer" msgstr "Старт Переноса" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -483,7 +507,7 @@ msgstr "Старт Переноса" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "Отмена" @@ -573,6 +597,8 @@ msgstr "Конфигурации" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -581,7 +607,7 @@ msgstr "Конфигурации" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Сообщение об ошибке:" @@ -598,6 +624,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Используйте вкладки панели управления для навигации" #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -664,6 +691,7 @@ msgstr "Функции базы данных" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -691,6 +719,7 @@ msgstr "FTP функции" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -728,6 +757,7 @@ msgstr "Конфигурации PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -741,6 +771,8 @@ msgid "Security" msgstr "Безопасность" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1107,6 +1139,8 @@ msgid "Access Webmail" msgstr "Доступ к Веб-почте" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1114,12 +1148,14 @@ msgstr "Доступ к Веб-почте" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Создание учетной записи FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1128,8 +1164,8 @@ msgstr "Создание учетной записи FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Удаление учетной записи FTP" @@ -1189,6 +1225,7 @@ msgstr "Настройка LiteSpeed " #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Настройка PHP" @@ -1233,6 +1270,7 @@ msgid "Access Log" msgstr "Лог-журнал доступа" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1358,45 +1396,55 @@ msgstr "Конфигурации" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Лог эл.почты" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "Управление SSL" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "Управление SSL" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "Управление SSL" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Установка расширений" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1495,7 +1543,7 @@ msgstr "Просмотреть список баз данных или изме #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Выберите домен" @@ -1592,7 +1640,8 @@ msgstr "Включить" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Имя" @@ -1634,6 +1683,7 @@ msgstr "IP Адрес" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1782,6 +1832,8 @@ msgid "Select Zone" msgstr "Выберите зону" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1823,6 +1875,995 @@ msgstr "Добавить Удалить записи" msgid "Add Delete/Records" msgstr "Добавить/Удалить записи" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Изменить пароль электронной почты - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "" +"На этой странице можно настроить место назначения резервного копирования. " +"(SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "File Name" +msgid "Template Name" +msgstr "Имя файла" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Имя" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Создание электронной почты" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Удаление почты" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Сохранить правила перезаписи" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Создание учетной записи электронной почты - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Фамилия" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Путь" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Email" +msgid "Create List" +msgstr "Создание электронной почты" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Назад" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Создание учетной записи электронной почты - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +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:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Включить" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Изменить пароль электронной почты - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +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 +#, fuzzy +#| msgid "Select Email" +msgid "Select List" +msgstr "Выберите адрес электронной почты" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Закрыть" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Добавление доменов" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Создание электронной почты" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Эл. почта" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Server Status" +msgid "Verification Status" +msgstr "Состояние сервера" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +#, fuzzy +#| msgid "FTP Functions" +msgid "Actions" +msgstr "FTP функции" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Управление SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "Управление SSL" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"На этой странице можно управлять версиями и/или обновить до последней версии " +"CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Сохранить правила перезаписи" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Выберите владельца" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Главная - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +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 +#, fuzzy +#| msgid "Select Website" +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 +#, fuzzy +#| msgid "Previous" +msgid "Preview Template" +msgstr "Предыдущая" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Выберите учетную запись FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Начать" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +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:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +#, fuzzy +#| msgid "Previous" +msgid "Preview" +msgstr "Предыдущая" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Все функции, относящиеся к определенному сайту." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Использование ресурсов" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Ресурс" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Разрешено" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Использование пропускной способности" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Загрузить лог-журналы доступа" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Лог-журналы доступа" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr " Загрузить лог-журналы ошибок" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Логи получены" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Невозможно получить лог-журнал, просмотрите логи через терминал. Сообщение " +"об ошибке." + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Следующий" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Предыдущая" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Домены" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Добавление доменов" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Список доменов" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domains" +msgid "Domain Alias" +msgstr "Домены" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "Этот путь является относительным:" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Оставьте пустым, чтобы задать по умолчанию." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Недопустимый домен (Примечание: вам не нужно добавлять «http» или «https»)" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Выберите PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Дополнительные параметры" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Создать домен" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "успешно создан." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "PHP версии изменено на:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Удалено:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "SSL выпущен:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "База данных создана успешно." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Выпуск" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Конфигурации" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Редактирование основных конфигураций vHost " + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Добавление правила перезаписи (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "Добавление правила перезаписи (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Сохранить правила перезаписи" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Добавить свой собственный SSL" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Добавьте SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "Выберите версию PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Изменить" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL сохранен" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Не удалось сохранить SSL. Сообщение об ошибке:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Сохранить" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Текущая конфигурация в файле загружена" + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Не удалось получить текущую конфигурацию. Сообщение об ошибке:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +#, fuzzy +#| msgid "SSH Configurations Saved." +msgid "Configurations saved." +msgstr "SSH конфигурации сохранены." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Текущие правила перезаписи в извлеченном файле." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Не удалось получить текущие правила перезаписи. Сообщение об ошибке:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Не удалось сохранить правила перезаписи. Сообщение об ошибке:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Сохранить правила перезаписи" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create website. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Не удается создать веб-сайт. Сообщение об ошибке:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "Пароль успешно изменен для:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Файлы" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Диспетчер Файлов" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "Создание учетной записи FTP" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "Удаление учетной записи FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Сохранить изменения" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "Rule successfully added." +msgid "Changes successfully saved." +msgstr "Правило успешно добавлено." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Email" +msgid "Create Lists" +msgstr "Создание электронной почты" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Управление SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +msgid "Compose Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +msgid "Compose" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Установщик приложения" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "Установить wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "WordPress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Install wordpress with LSCache" +msgid "Install Joomla with LSCache" +msgstr "Установить wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Установить" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1856,7 +2897,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1867,7 +2909,8 @@ msgstr "Установить" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1878,8 +2921,10 @@ msgstr "Не удается добавить место назначения. С #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1898,7 +2943,8 @@ msgstr "Не удалось подключиться. Пожалуйста об #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1915,7 +2961,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1963,15 +3010,6 @@ msgstr "Использование ресурсов" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Отлючить" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1979,15 +3017,6 @@ msgstr "Отлючить" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Включить" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2094,36 +3123,10 @@ msgstr "Лог-журнал FTP" msgid "Domains - CyberPanel" msgstr "Главная - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Список доменов" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Домены" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Включить" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -2309,13 +3312,6 @@ msgstr "" msgid "Progress" msgstr "" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "FTP функции" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "" @@ -2423,20 +3419,6 @@ msgstr "успешно создан." msgid "Confirm Deletion!" msgstr "Конфигурации" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Закрыть" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "" @@ -2690,7 +3672,8 @@ msgid "Action failed. Error message:" msgstr "Не удалось выполнить действие. Сообщение об ошибке:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Успешное действие " @@ -2720,19 +3703,22 @@ msgstr "Управление безопасностью сервера на эт msgid "ModSecurity - CyberPanel" msgstr "Безопасность - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "Редактирование конфигурации PHP" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." @@ -2740,37 +3726,43 @@ msgstr "" "На этой странице можно настроить место назначения резервного копирования. " "(SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Безопасность" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not fetch current configuration. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Не удалось получить текущую конфигурацию. Сообщение об ошибке:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid "Backup Process successfully started." @@ -2914,15 +3906,6 @@ msgstr "Ключ" msgid "Add Key" msgstr "Добавить ключ" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Сохранить" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH ключ удален" @@ -3234,17 +4217,6 @@ msgstr "Редактирование конфигурации PHP на этой msgid "Advanced" msgstr "Расширенные настройки" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Выберите PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr " Директива display_errors" @@ -3310,6 +4282,7 @@ msgstr "Установка/удаление расширений php на это #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Выберите версию PHP" @@ -3336,18 +4309,9 @@ msgstr "Установить" msgid "Uninstall" msgstr "Деинсталлировать" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Назад" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Не удалось получить детали. Сообщение об ошибке:" @@ -3628,14 +4592,6 @@ msgstr "Последняя версия" msgid "Access Logs - CyberPanel" msgstr "Лог-журналы доступа - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Лог-журналы доступа" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Лог-журналы доступа для основного веб-сервера." @@ -3754,36 +4710,44 @@ msgstr "Просмотр состояние LiteSpeed ​​и файлов ло msgid "LiteSpeed Status - CyberPanel" msgstr "Состояние LiteSpeed ​​- CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Состояние LiteSpeed:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "На этой странице вы можете получить информацию о процессах LiteSpeed." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "Процессы LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "Идентификатор процесса" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Основной процесс" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "Процесс lscgid" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "Worker Process" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3792,21 +4756,75 @@ msgstr "" "либо ошибка, см. Главный файл лог-журнала CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Перезагрузка Litespeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Остановить LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Произошла ошибка. См. Основной файл лог-журнала CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Невозможно подключиться к серверу" +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Диспетчер Файлов" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Server Status" +msgid "License Status" +msgstr "Состояние сервера" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Изменить" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "File" +msgid "New key" +msgstr "Файл" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Изменить" + #: serverStatus/templates/serverStatus/services.html:3 #, fuzzy #| msgid "Server Logs - CyberPanel" @@ -3850,7 +4868,8 @@ msgid "Tuning Details" msgstr "Детали настройки" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Максимальное количество соединений" @@ -3875,7 +4894,8 @@ msgid "Enable GZIP Compression" msgstr "Включить сжатие Gzip" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "В данный момент" @@ -3904,52 +4924,64 @@ msgid "PHP Tuning - CyberPanel" msgstr "Настройка PHP - CyberPanel" #: 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 "Установите поведение различых версий PHP на вашем сервере" -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Исходный тайм-аут запроса (сек.)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Мягкий лимит памяти" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Жесткий лимит памяти" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Мягкий лимит процесса" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Жесткий лимит процесса" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Постоянное соединение" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Настроить PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Невозможно настроить. Сообщение об ошибке:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Детали успешно доставлены." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 #, fuzzy #| msgid "PHP version " msgid "PHP for " msgstr "Версия PHP" -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Успешно настроен" @@ -4156,12 +5188,6 @@ msgstr "Некорректный Email" msgid "Websites Limit" msgstr "Предельное количество веб-сайтов" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Имя пользователя" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4311,58 +5337,18 @@ msgstr "(0 = неограниченно)" msgid "Application Installer - CyberPanel" msgstr "Установщик приложения" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Установщик приложения" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Установщик приложения" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "Установить wordpress с LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "WordPress с LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 #, fuzzy #| msgid "Install wordpress with LSCache" msgid "Install Joomla with(?) LSCache" msgstr "Установить wordpress с LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Install wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "Установить wordpress с LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Создать новый сайт - CyberPanel" @@ -4390,25 +5376,6 @@ msgstr "Выберите владельца" msgid "Do not enter WWW, it will be auto created!" msgstr "" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"Недопустимый домен (Примечание: вам не нужно добавлять «http» или «https»)" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Дополнительные параметры" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "успешно создан." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Удалить веб-сайт - CyberPanel" @@ -4471,11 +5438,6 @@ msgstr "" msgid "File System Path" msgstr "Состояние системы" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Выпуск" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4573,13 +5535,6 @@ msgstr "Пароль" msgid "Database Prefix" msgstr "Имя базы данных" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Путь" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4640,294 +5595,6 @@ msgstr "Установить wordpress с LSCache" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "Предыдущая" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Все функции, относящиеся к определенному сайту." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Использование ресурсов" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Ресурс" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Разрешено" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Использование пропускной способности" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Загрузить лог-журналы доступа" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr " Загрузить лог-журналы ошибок" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Логи получены" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Невозможно получить лог-журнал, просмотрите логи через терминал. Сообщение " -"об ошибке." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Следующий" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Предыдущая" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Конфигурации" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Редактирование основных конфигураций vHost " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Добавление правила перезаписи (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "Добавление правила перезаписи (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Сохранить правила перезаписи" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Добавить свой собственный SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Добавьте SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "Выберите версию PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Изменить" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL сохранен" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Не удалось сохранить SSL. Сообщение об ошибке:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Текущая конфигурация в файле загружена" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Не удалось получить текущую конфигурацию. Сообщение об ошибке:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "SSH конфигурации сохранены." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Текущие правила перезаписи в извлеченном файле." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Не удалось получить текущие правила перезаписи. Сообщение об ошибке:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Не удалось сохранить правила перезаписи. Сообщение об ошибке:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Сохранить правила перезаписи" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Не удается создать веб-сайт. Сообщение об ошибке:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "Пароль успешно изменен для:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Файлы" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Диспетчер Файлов" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "Создание учетной записи FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "Удаление учетной записи FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Сохранить изменения" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "Правило успешно добавлено." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Установить" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5209,59 +5876,6 @@ msgstr "Веб-сайт" msgid "Successfully " msgstr "Успешно" -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Добавление доменов" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domains" -msgid "Domain Alias" -msgstr "Домены" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "Этот путь является относительным:" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Оставьте пустым, чтобы задать по умолчанию." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Создать домен" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "PHP версии изменено на:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Удалено:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "SSL выпущен:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "База данных создана успешно." - #~ msgid "CPU Status" #~ msgstr "Состояние ЦП" diff --git a/locale/tr/LC_MESSAGES/django.mo b/locale/tr/LC_MESSAGES/django.mo index c7c6506c7466bd5d66a01a742732b786c0345a43..d2f2ed77607a42e43f5ca36c67c17dc802480eb7 100644 GIT binary patch delta 25 gcmX^2km=k*rVW8PT!y-a1`38IR)*%AqjQQ~0E1Qt@c;k- delta 25 gcmX^2km=k*rVW8PTn4&^1`3A8RtAQfqjQQ~0D}_<=l}o! diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index 27a16798f..ed4e533aa 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -10,11 +10,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: CyberPanel 1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: 2018-02-04 04:34+0300\n" "Last-Translator: Burak BOZ\n" "Language-Team: Burak BOZ \n" @@ -25,57 +26,57 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 1.8.7.1\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "İngilizce" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Çince" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Bulgar" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Portekizce" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Japonca" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Boşnakça" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Politika" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "File Name" msgid "Vietnamese" @@ -139,6 +140,7 @@ msgstr "Dosya Adı" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -166,6 +168,9 @@ msgstr "Yedeklemeyi iptal et" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -179,6 +184,7 @@ msgid "File" msgstr "Dosya" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Tarih" @@ -192,6 +198,10 @@ msgstr "Boyut" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -246,6 +256,7 @@ msgstr "IP Adresi" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -256,6 +267,8 @@ msgid "Password" msgstr "Şifre" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Port" @@ -301,6 +314,14 @@ msgstr "Hedef Eklendi." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -333,7 +354,7 @@ msgstr "Hedef Eklendi." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Sunucuya bağlanılamıyor. Lütfen bu sayfayı yenileyin." @@ -470,6 +491,9 @@ msgid "Start Transfer" msgstr "Aktarımı Başlat" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -478,7 +502,7 @@ msgstr "Aktarımı Başlat" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "İptal" @@ -565,6 +589,8 @@ msgstr "Durum" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -573,7 +599,7 @@ msgstr "Durum" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Hata mesajı:" @@ -590,6 +616,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Kontrol panelinde gezinmek için sekmeleri kullanın." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -656,6 +683,7 @@ msgstr "Veritabanı Fonksiyonları" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -683,6 +711,7 @@ msgstr "FTP Fonksiyonları" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -720,6 +749,7 @@ msgstr "PHP Ayarları" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -733,6 +763,8 @@ msgid "Security" msgstr "Güvenlik" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1095,6 +1127,8 @@ msgid "Access Webmail" msgstr "Webmail'e Eriş" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1102,12 +1136,14 @@ msgstr "Webmail'e Eriş" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "FTP Hesabı Oluştur" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1116,8 +1152,8 @@ msgstr "FTP Hesabı Oluştur" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "FTP Hesabı Sil" @@ -1177,6 +1213,7 @@ msgstr "LiteSpeed İnce ayarları" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "PHP İnce ayarları" @@ -1219,6 +1256,7 @@ msgid "Access Log" msgstr "Erişim günlüğü" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1344,45 +1382,55 @@ msgstr "Yapılandırmalar" msgid "SpamAssassin" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Log" +msgid "Email Marketing" +msgstr "Eposta günlüğü" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 #, fuzzy #| msgid "Manage SSL" msgid "Manage Services" msgstr "SSL Yönetimi" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 #, fuzzy #| msgid "Manage SSL" msgid "Manage PowerDNS" msgstr "SSL Yönetimi" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 #, fuzzy #| msgid "Manage SSL" msgid "Manage FTP" msgstr "SSL Yönetimi" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Uzantıları Yükle" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1480,7 +1528,7 @@ msgstr "Veritabanlarını listele yada şifrelerini değiştir." #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Domain seç" @@ -1577,7 +1625,8 @@ msgstr "Etkinleştir" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "İsim" @@ -1619,6 +1668,7 @@ msgstr "IP Adresi" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1766,6 +1816,8 @@ msgid "Select Zone" msgstr "Bölge Seçin" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1807,6 +1859,989 @@ msgstr "Kayıt Ekle Sil" msgid "Add Delete/Records" msgstr "Kayıt Ekle/Sil" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Eposta Parolasını Değiştir - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can compose email message to be sent out later." +msgstr "Bu sayfada yedekleme hedeflerini ayarlayabilirsiniz. (SFTP)" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site name" +msgid "Template Name" +msgstr "Site adı" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "İsim" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Create Email" +msgid "From Email" +msgstr "Eposta Oluştur" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Eposta Sil" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Template" +msgstr "Rewrite Kurallarını Kaydet" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "FTP Hesabı Oluştur - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Eposta Oluştur" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Soyisim" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Dizin" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create File" +msgid "Create List" +msgstr "Dosya Oluştur" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Geri dön" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "FTP Hesabı Oluştur - CyberPanel" + +#: 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:32 +#, fuzzy +#| msgid "Enable" +msgid "Enable Now." +msgstr "Etkinleştir" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Kullanıcı adı" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Pasifleştir" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Etkinleştir" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Eposta Parolasını Değiştir - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Eposta Parolasını Değiştir" + +#: 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 +#, fuzzy +#| msgid "Select All" +msgid "Select List" +msgstr "Tümünü Seç" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Website Sil" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Kapat" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "Onayla" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Alan adı ekle" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Create Email" +msgid "Load Emails" +msgstr "Eposta Oluştur" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "Eposta" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "Hizmet Durumları" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "Eylemler" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "SSL'i Yönet - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage SMTP Hosts" +msgstr "SSL Yönetimi" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Bu sayfa CyberPanel'in sürüm bilgilerini ve varsa güncellemelerini içerir." + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Save Host" +msgstr "Rewrite Kurallarını Kaydet" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +msgstr "Sahibi Seç" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Ev - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Epostalar" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Web site seçin" + +#: 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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "Önizleme" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "FTP Hesabı seçin" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Başla" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Epostalar" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "Önizleme" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Belirli bir siteyle ilgili tüm işlevler." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Kaynak Kullanımı" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Kaynak" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "İzin Verilen" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Bant Genişliği Kullanımı" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Erişim Günlüklerini Getir" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Erişim Günlükleri" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Hata Günlüklerini Getir" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Kayıtlar getirildi" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Günlükler getirilemedi, komut satırından günlük dosyalarına bakmayı deneyin. " +"Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Sonraki" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Önceki" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Alan adları" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Alan adı ekle" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Alan adlarını listele" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#, fuzzy +#| msgid "Domains" +msgid "Domain Alias" +msgstr "Alan adları" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "This path is relative to: " + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Varsayılan olarak ayarlamak için boş bırakın." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "Geçersiz Alan Adı (Not: 'http' veya 'https' eklemeniz gerekmez)" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "PHP'yi seçin" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Ek Özellikler" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Alan Adı Oluştur" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +#, fuzzy +#| msgid "is successfully created." +msgid "Website succesfully created." +msgstr "başarıyla oluşturuldu." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "PHP Sürümü değiştirildi:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Silindi:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "SSL Veren:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +#, fuzzy +#| msgid "Database created successfully." +msgid "Changes applied successfully." +msgstr "Veritabanı başarıyla oluşturuldu." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Issue" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Yapılandırmalar" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Sanal Sunucu Ana Yapılandırmalarını Düzenle" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Yeniden Yazma Kuralları Ekle (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +#, fuzzy +#| msgid "Add Rewrite Rules (.htaccess)" +msgid "Rewrite Rules (.htaccess)" +msgstr "Yeniden Yazma Kuralları Ekle (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +#, fuzzy +#| msgid "Save Rewrite Rules" +msgid "Rewrite Rules" +msgstr "Rewrite Kurallarını Kaydet" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Kendi SSL'nizi Ekleyin" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "SSL ekle" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +#, fuzzy +#| msgid "Select PHP Version" +msgid "Change PHP Version" +msgstr "PHP Versiyonunu Seçin" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +#, fuzzy +#| msgid "Change" +msgid "Change PHP" +msgstr "Değiştir" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "SSL Kaydedildi" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "SSL kaydedilemedi. Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Kaydet" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Dosyadaki geçerli yapılandırma getirildi." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Geçerli yapılandırma alınamadı. Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "Yapılandırmalar kaydedildi." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Dosyadaki geçerli yeniden yazma kuralları getirildi." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Geçerli yeniden yazma kuralları getirilemedi. Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Yeniden yazma kuralları kaydedilemedi. Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Rewrite Kurallarını Kaydet" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +#, fuzzy +#| msgid "Cannot create website. Error message:" +msgid "Failed to change PHP version. Error message:" +msgstr "Web sitesi oluşturulamıyor. Hata mesajı:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#, fuzzy +#| msgid "Password successfully changed for :" +msgid "PHP successfully changed for: " +msgstr "Parola başarıyla değiştirildi:" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Dosyalar" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Dosya Yöneticisi" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +#, fuzzy +#| msgid "Create FTP Account" +msgid "Create FTP Acct" +msgstr "FTP Hesabı Oluştur" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +#, fuzzy +#| msgid "Delete FTP Account" +msgid "Delete FTP Acct" +msgstr "FTP Hesabı Sil" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +#, fuzzy +#| msgid "Save Changes" +msgid "Apply Changes" +msgstr "Değişiklikleri Kaydet" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#, fuzzy +#| msgid "File Successfully saved." +msgid "Changes successfully saved." +msgstr "Dosya başarıyla kaydedildi." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create File" +msgid "Create Lists" +msgstr "Dosya Oluştur" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "SSL Yönetimi" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Sıkıştır" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Sıkıştır" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Uygulama Kurucu" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "LSCache ile birlikte WordPress kur" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "LSCache ile birlikte Wordpress" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +#, fuzzy +#| msgid "Install Joomla with(?) LSCache" +msgid "Install Joomla with LSCache" +msgstr "LSCache ile birlikte Joomla kur?" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +#, fuzzy +#| msgid "Install" +msgid "Install Prestashop" +msgstr "Kur" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 #, fuzzy @@ -1838,7 +2873,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1849,7 +2885,8 @@ msgstr "Kur" #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 #, fuzzy #| msgid "Cannot add destination. Error message:" @@ -1860,8 +2897,10 @@ msgstr "Hedef eklenemiyor. Hata mesajı:" #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1880,7 +2919,8 @@ msgstr "Bağlanılamadı, lütfen bu sayfayı yenileyin." #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 #, fuzzy #| msgid "Installation failed. Error message:" @@ -1897,7 +2937,8 @@ msgstr "" #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1945,15 +2986,6 @@ msgstr "Kaynak Kullanımı" msgid "Limits are being Applied!" msgstr "" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Pasifleştir" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1961,15 +2993,6 @@ msgstr "Pasifleştir" msgid "Limits are not being applied!" msgstr "" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Etkinleştir" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -2076,36 +3099,10 @@ msgstr "FTP Günlükleri" msgid "Domains - CyberPanel" msgstr "Ev - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Alan adlarını listele" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Alan adları" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "" - -#: emailPremium/templates/emailPremium/listDomains.html:32 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now." -msgstr "Etkinleştir" - #: emailPremium/templates/emailPremium/policyServer.html:3 #, fuzzy #| msgid "Services - CyberPanel" @@ -2269,11 +3266,6 @@ msgstr "Dosya yüklemek için buraya sürükleyip bırakın." msgid "Progress" msgstr "İlerleme" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "Eylemler" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "Kaldır" @@ -2359,20 +3351,6 @@ msgstr "Dosya başarıyla oluşturuldu." msgid "Confirm Deletion!" msgstr "Silmeyi Onayla!" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "Onayla" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Kapat" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "Dosya/Dizin listesi" @@ -2616,7 +3594,8 @@ msgid "Action failed. Error message:" msgstr "Eylem başarısız. Hata mesajı:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Eylem başarılı." @@ -2646,55 +3625,64 @@ msgstr "Bu sayfada sunucu güvenliğini yönetin." msgid "ModSecurity - CyberPanel" msgstr "Güvenlik - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 #, fuzzy #| msgid "Edit PHP Configurations" msgid "ModSecurity Configurations!" msgstr "PHP Yapılandırmalarını Düzenle" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can configure ModSecurity settings." msgstr "Bu sayfada yedekleme hedeflerini ayarlayabilirsiniz. (SFTP)" -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 #, fuzzy #| msgid "Security" msgid "ModSecurity" msgstr "Güvenlik" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: 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:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "" -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "" -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 #, fuzzy #| msgid "Could not fetch current configuration. Error message:" msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Geçerli yapılandırma alınamadı. Hata mesajı:" -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 #, fuzzy #| msgid "Backup Process successfully started." @@ -2837,15 +3825,6 @@ msgstr "Anahtar" msgid "Add Key" msgstr "Anahtar Ekle" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Kaydet" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "SSH Anahtarı Silindi" @@ -3147,17 +4126,6 @@ msgstr "Bu sayfadan PHP Yapılandırmalarını düzenleyin." msgid "Advanced" msgstr "Gelişmiş" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "PHP'yi seçin" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3223,6 +4191,7 @@ msgstr "Bu sayfada php uzantılarını yükleyin / kaldırın." #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "PHP Versiyonunu Seçin" @@ -3249,18 +4218,9 @@ msgstr "Kur" msgid "Uninstall" msgstr "Kaldır" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Geri dön" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Ayrıntılar alınamıyor. Hata mesajı:" @@ -3539,14 +4499,6 @@ msgstr "Son Sürüm" msgid "Access Logs - CyberPanel" msgstr "Erişim Günlükleri - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Erişim Günlükleri" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Ana web sunucusu için Erişim Günlükleri." @@ -3663,36 +4615,44 @@ msgstr "LiteSpeed durumunu ve günlük dosyalarını görüntüleyin." msgid "LiteSpeed Status - CyberPanel" msgstr "LiteSpeed Durumu - CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "LiteSpeed Durumu:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "Bu sayfada LiteSpeed süreçleriniz hakkında bilgi alabilirsiniz." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "LiteSpeed Süreçleri" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "İşlem kimliği" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "Ana Süreç" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "lscgid Süreci" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "İşçi Süreci" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3701,21 +4661,75 @@ msgstr "" "için CyberPanel ana günlük dosyasına bakın." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Litespeed'i Yeniden Başlat" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "LiteSpeed'i Durdur" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Hata oluştu. CyberPanel ana günlük dosyasına bakın." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Sunucuya bağlanılamadı." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Dosya Yöneticisi" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Hizmet Durumları" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change" +msgid "Change License" +msgstr "Değiştir" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Yeni Dosya" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Değiştir" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "Hizmetler - CyberPanel" @@ -3757,7 +4771,8 @@ msgid "Tuning Details" msgstr "Ayarlama Detayları" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Maks Bağlantı" @@ -3782,7 +4797,8 @@ msgid "Enable GZIP Compression" msgstr "GZIP Sıkıştırmasını Etkinleştir" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Şu anda:" @@ -3811,50 +4827,62 @@ msgid "PHP Tuning - CyberPanel" msgstr "PHP Ayarları - CyberPanel" #: 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 "Her bir PHP sürümünün sunucunuzda nasıl davrandığını ayarlayın." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Initial Request Timeout (secs)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Memory Soft Limit" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Memory Hard Limit" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Process Soft Limit" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Process Hard Limit" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Kalıcı Bağlantı" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "PHP'yi ayarla" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Ayarlanamıyor. Hata mesajı:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Ayrıntılar Başarıyla getirildi." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP for " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Başarıyla ayarlandı." @@ -4058,12 +5086,6 @@ msgstr "Geçersiz eposta" msgid "Websites Limit" msgstr "Web Siteleri Limiti" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Kullanıcı adı" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -4209,56 +5231,16 @@ msgstr "( 0 = Limitsiz )" msgid "Application Installer - CyberPanel" msgstr "Uygulama Kurucu" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Uygulama Kurucu" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 #, fuzzy #| msgid "Application Installer" msgid "One-click application install." msgstr "Uygulama Kurucu" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "LSCache ile birlikte WordPress kur" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "LSCache ile birlikte Wordpress" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "LSCache ile birlikte Joomla kur?" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -#, fuzzy -#| msgid "Install Joomla with(?) LSCache" -msgid "Install Joomla with LSCache" -msgstr "LSCache ile birlikte Joomla kur?" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "Joomla" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Yeni Web Sitesi Oluştur - CyberPanel" @@ -4286,24 +5268,6 @@ msgstr "Sahibi Seç" msgid "Do not enter WWW, it will be auto created!" msgstr "WWW olarak girmeyin, otomatik olarak oluşturulacaktır!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "Geçersiz Alan Adı (Not: 'http' veya 'https' eklemeniz gerekmez)" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Ek Özellikler" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "başarıyla oluşturuldu." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Web Sitesi Sil - CyberPanel" @@ -4366,11 +5330,6 @@ msgstr "" msgid "File System Path" msgstr "Sistem Durumu" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Issue" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "" @@ -4468,13 +5427,6 @@ msgstr "Yönetici şifresi" msgid "Database Prefix" msgstr "Veritabanı ön eki" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Dizin" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4535,290 +5487,6 @@ msgstr "LSCache ile birlikte WordPress kur" msgid "Blog Title" msgstr "" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "Önizleme" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Belirli bir siteyle ilgili tüm işlevler." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Kaynak Kullanımı" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Kaynak" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "İzin Verilen" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Bant Genişliği Kullanımı" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Erişim Günlüklerini Getir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Hata Günlüklerini Getir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Kayıtlar getirildi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Günlükler getirilemedi, komut satırından günlük dosyalarına bakmayı deneyin. " -"Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Sonraki" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Önceki" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Yapılandırmalar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Sanal Sunucu Ana Yapılandırmalarını Düzenle" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Yeniden Yazma Kuralları Ekle (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "Yeniden Yazma Kuralları Ekle (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "Rewrite Kurallarını Kaydet" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Kendi SSL'nizi Ekleyin" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "SSL ekle" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "PHP Versiyonunu Seçin" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "Değiştir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "SSL Kaydedildi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "SSL kaydedilemedi. Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Dosyadaki geçerli yapılandırma getirildi." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Geçerli yapılandırma alınamadı. Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "Yapılandırmalar kaydedildi." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Dosyadaki geçerli yeniden yazma kuralları getirildi." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Geçerli yeniden yazma kuralları getirilemedi. Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Yeniden yazma kuralları kaydedilemedi. Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Rewrite Kurallarını Kaydet" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "Web sitesi oluşturulamıyor. Hata mesajı:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "Parola başarıyla değiştirildi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Dosyalar" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Dosya Yöneticisi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "FTP Hesabı Oluştur" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "FTP Hesabı Sil" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "Değişiklikleri Kaydet" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "File Successfully saved." -msgid "Changes successfully saved." -msgstr "Dosya başarıyla kaydedildi." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "Kur" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 #, fuzzy #| msgid "Version Management - CyberPanel" @@ -5098,59 +5766,6 @@ msgstr "Web sitesi " msgid "Successfully " msgstr "Başarıyla " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Alan adı ekle" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#, fuzzy -#| msgid "Domains" -msgid "Domain Alias" -msgstr "Alan adları" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "This path is relative to: " - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Varsayılan olarak ayarlamak için boş bırakın." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Alan Adı Oluştur" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "PHP Sürümü değiştirildi:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Silindi:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "SSL Veren:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "Veritabanı başarıyla oluşturuldu." - #~ msgid "CPU Status" #~ msgstr "İşlemci Durumu" diff --git a/locale/vi/LC_MESSAGES/django.mo b/locale/vi/LC_MESSAGES/django.mo index 8b1033da7c27b222fd8cf27e1909c3bb61c335b4..c56f021a3d0d23fba150f1084bf5eeb2b8389475 100644 GIT binary patch delta 25 gcmeBJ&C;=&Wkcv9E<;^I0|i49D?{_m@ryKz0dao_RsaA1 delta 25 gcmeBJ&C;=&Wkcv9E(2Xd0|i54D+9yL@ryKz0dYJCO#lD@ diff --git a/locale/vi/LC_MESSAGES/django.po b/locale/vi/LC_MESSAGES/django.po index 33762b6cf..53c68514a 100644 --- a/locale/vi/LC_MESSAGES/django.po +++ b/locale/vi/LC_MESSAGES/django.po @@ -5,11 +5,12 @@ #: baseTemplate/templates/baseTemplate/index.html:241 #: baseTemplate/templates/baseTemplate/index.html:247 #: baseTemplate/templates/baseTemplate/index.html:253 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 msgid "" msgstr "" "Project-Id-Version: cyberpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-10 13:01+0500\n" +"POT-Creation-Date: 2018-11-10 14:17+0500\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -19,57 +20,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.1.1\n" -#: CyberCP/settings.py:171 +#: CyberCP/settings.py:172 msgid "English" msgstr "Tiếng Anh" -#: CyberCP/settings.py:172 +#: CyberCP/settings.py:173 msgid "Chinese" msgstr "Tiếng Trung" -#: CyberCP/settings.py:173 +#: CyberCP/settings.py:174 msgid "Bulgarian" msgstr "Tiếng Bungari" -#: CyberCP/settings.py:174 +#: CyberCP/settings.py:175 msgid "Portuguese" msgstr "Bồ đào nha" -#: CyberCP/settings.py:175 +#: CyberCP/settings.py:176 msgid "Japanese" msgstr "Tiếng Nhật" -#: CyberCP/settings.py:176 +#: CyberCP/settings.py:177 msgid "Bosnian" msgstr "Tiếng Bosnia" -#: CyberCP/settings.py:177 +#: CyberCP/settings.py:178 msgid "Greek" msgstr "Hy Lạp" -#: CyberCP/settings.py:178 +#: CyberCP/settings.py:179 msgid "Russian" msgstr "Tiếng Nga" -#: CyberCP/settings.py:179 +#: CyberCP/settings.py:180 msgid "Turkish" msgstr "Thổ Nhĩ Kỳ" -#: CyberCP/settings.py:180 +#: CyberCP/settings.py:181 msgid "Spanish" msgstr "Tây Ban Nha" -#: CyberCP/settings.py:181 +#: CyberCP/settings.py:182 msgid "French" msgstr "Tiếng Pháp" -#: CyberCP/settings.py:182 +#: CyberCP/settings.py:183 #, fuzzy #| msgid "Policy" msgid "Polish" msgstr "Chính sách" -#: CyberCP/settings.py:183 +#: CyberCP/settings.py:184 #, fuzzy #| msgid "Filename" msgid "Vietnamese" @@ -131,6 +132,7 @@ msgstr "Tên tệp" #: backup/templates/backup/backup.html:106 #: backup/templates/backup/restore.html:63 #: baseTemplate/templates/baseTemplate/index.html:257 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 #: filemanager/templates/filemanager/index.html:215 #: firewall/templates/firewall/firewall.html:36 #: firewall/templates/firewall/modSecurityRulesPacks.html:112 @@ -158,6 +160,9 @@ msgstr "Hủy Back up" #: backup/templates/backup/backupSchedule.html:89 #: databases/templates/databases/listDataBases.html:87 #: 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:135 #: firewall/templates/firewall/modSecurityRulesPacks.html:109 #: ftp/templates/ftp/listFTPAccounts.html:99 @@ -171,6 +176,7 @@ msgid "File" msgstr "Tập tin" #: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" msgstr "Ngày" @@ -184,6 +190,10 @@ msgstr "Kích thước" #: backup/templates/backup/backupDestinations.html:100 #: backup/templates/backup/backupSchedule.html:92 #: 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:516 #: filemanager/templates/filemanager/index.html:72 #: filemanager/templates/filemanager/index.html:705 #: firewall/templates/firewall/firewall.html:140 @@ -238,6 +248,7 @@ msgstr "Địa chỉ IP" #: backup/templates/backup/remoteBackups.html:37 #: databases/templates/databases/createDatabase.html:58 #: databases/templates/databases/listDataBases.html:90 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 #: ftp/templates/ftp/listFTPAccounts.html:103 #: mailServer/templates/mailServer/changeEmailPassword.html:65 #: mailServer/templates/mailServer/createEmailAccount.html:64 @@ -248,6 +259,8 @@ msgid "Password" msgstr "Mật khẩu" #: backup/templates/backup/backupDestinations.html:45 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 #: firewall/templates/firewall/firewall.html:139 msgid "Port" msgstr "Cổng" @@ -292,6 +305,14 @@ msgstr "Đã thêm vị trí mới." #: dns/templates/dns/createDNSZone.html:71 #: dns/templates/dns/createNameServer.html:111 #: dns/templates/dns/deleteDNSZone.html:80 +#: emailMarketing/templates/emailMarketing/website.html:159 +#: emailMarketing/templates/emailMarketing/website.html:412 +#: emailMarketing/templates/emailMarketing/website.html:463 +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:665 +#: emailMarketing/templates/emailMarketing/website.html:717 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:923 #: emailPremium/templates/emailPremium/emailLimits.html:101 #: emailPremium/templates/emailPremium/emailPage.html:119 #: mailServer/templates/mailServer/changeEmailPassword.html:93 @@ -324,7 +345,7 @@ msgstr "Đã thêm vị trí mới." #: websiteFunctions/templates/websiteFunctions/website.html:665 #: websiteFunctions/templates/websiteFunctions/website.html:717 #: websiteFunctions/templates/websiteFunctions/website.html:804 -#: websiteFunctions/templates/websiteFunctions/website.html:924 +#: websiteFunctions/templates/websiteFunctions/website.html:923 msgid "Could not connect to server. Please refresh this page." msgstr "Không thể kết nối tới máy chủ. Vui lòng tải lại trang." @@ -457,6 +478,9 @@ msgid "Start Transfer" msgstr "Bắt đầu chuyển" #: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:316 +#: emailMarketing/templates/emailMarketing/website.html:774 +#: emailMarketing/templates/emailMarketing/website.html:898 #: emailPremium/templates/emailPremium/emailLimits.html:75 #: emailPremium/templates/emailPremium/emailPage.html:83 #: emailPremium/templates/emailPremium/emailPage.html:93 @@ -465,7 +489,7 @@ msgstr "Bắt đầu chuyển" #: websiteFunctions/templates/websiteFunctions/launchChild.html:611 #: websiteFunctions/templates/websiteFunctions/website.html:316 #: websiteFunctions/templates/websiteFunctions/website.html:774 -#: websiteFunctions/templates/websiteFunctions/website.html:899 +#: websiteFunctions/templates/websiteFunctions/website.html:898 msgid "Cancel" msgstr "Hủy bỏ" @@ -552,6 +576,8 @@ msgstr "Tình trạng" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:64 #: databases/templates/databases/listDataBases.html:54 +#: emailMarketing/templates/emailMarketing/website.html:402 +#: emailMarketing/templates/emailMarketing/website.html:915 #: firewall/templates/firewall/firewall.html:166 #: managePHP/templates/managePHP/editPHPConfig.html:221 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 @@ -560,7 +586,7 @@ msgstr "Tình trạng" #: websiteFunctions/templates/websiteFunctions/setupGit.html:240 #: websiteFunctions/templates/websiteFunctions/setupGit.html:286 #: websiteFunctions/templates/websiteFunctions/website.html:402 -#: websiteFunctions/templates/websiteFunctions/website.html:916 +#: websiteFunctions/templates/websiteFunctions/website.html:915 msgid "Error message:" msgstr "Lỗi:" @@ -577,6 +603,7 @@ msgid "Use the tabs to navigate through the control panel." msgstr "Sử dụng các tab để điều hướng qua bảng điều khiển." #: baseTemplate/templates/baseTemplate/homePage.html:23 +#: emailMarketing/templates/emailMarketing/website.html:37 #: websiteFunctions/templates/websiteFunctions/launchChild.html:37 #: websiteFunctions/templates/websiteFunctions/website.html:37 msgid "Usage" @@ -643,6 +670,7 @@ msgstr "Hàm cơ sở dữ liệu" #: baseTemplate/templates/baseTemplate/index.html:352 #: baseTemplate/templates/baseTemplate/index.html:353 #: baseTemplate/templates/baseTemplate/index.html:354 +#: emailMarketing/templates/emailMarketing/website.html:48 #: packages/templates/packages/createPackage.html:67 #: packages/templates/packages/modifyPackage.html:73 #: websiteFunctions/templates/websiteFunctions/launchChild.html:48 @@ -670,6 +698,7 @@ msgstr "Chức năng FTP" #: baseTemplate/templates/baseTemplate/index.html:245 #: baseTemplate/templates/baseTemplate/index.html:407 #: baseTemplate/templates/baseTemplate/index.html:409 +#: emailMarketing/templates/emailMarketing/website.html:43 #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "FTP" @@ -707,6 +736,7 @@ msgstr "Cấu hình PHP" #: baseTemplate/templates/baseTemplate/homePage.html:243 #: baseTemplate/templates/baseTemplate/homePage.html:246 #: baseTemplate/templates/baseTemplate/index.html:511 +#: emailMarketing/templates/emailMarketing/website.html:116 #: websiteFunctions/templates/websiteFunctions/launchChild.html:116 #: websiteFunctions/templates/websiteFunctions/website.html:116 msgid "Logs" @@ -720,6 +750,8 @@ msgid "Security" msgstr "Bảo mật" #: baseTemplate/templates/baseTemplate/index.html:117 +#: emailMarketing/templates/emailMarketing/website.html:55 +#: emailMarketing/templates/emailMarketing/website.html:76 #: websiteFunctions/templates/websiteFunctions/launchChild.html:55 #: websiteFunctions/templates/websiteFunctions/launchChild.html:76 #: websiteFunctions/templates/websiteFunctions/website.html:55 @@ -1070,6 +1102,8 @@ msgid "Access Webmail" msgstr "Truy cập Webmail" #: baseTemplate/templates/baseTemplate/index.html:414 +#: emailMarketing/templates/emailMarketing/website.html:856 +#: emailMarketing/templates/emailMarketing/website.html:859 #: ftp/templates/ftp/createFTPAccount.html:12 #: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 #: ftp/templates/ftp/index.html:27 @@ -1077,12 +1111,14 @@ msgstr "Truy cập Webmail" #: userManagment/templates/userManagment/modifyACL.html:301 #: websiteFunctions/templates/websiteFunctions/launchChild.html:569 #: websiteFunctions/templates/websiteFunctions/launchChild.html:572 -#: websiteFunctions/templates/websiteFunctions/website.html:857 -#: websiteFunctions/templates/websiteFunctions/website.html:860 +#: websiteFunctions/templates/websiteFunctions/website.html:856 +#: websiteFunctions/templates/websiteFunctions/website.html:859 msgid "Create FTP Account" msgstr "Tạo tài khoản FTP" #: baseTemplate/templates/baseTemplate/index.html:415 +#: emailMarketing/templates/emailMarketing/website.html:868 +#: emailMarketing/templates/emailMarketing/website.html:871 #: ftp/templates/ftp/deleteFTPAccount.html:12 #: ftp/templates/ftp/deleteFTPAccount.html:18 #: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:37 @@ -1091,8 +1127,8 @@ msgstr "Tạo tài khoản FTP" #: userManagment/templates/userManagment/modifyACL.html:310 #: websiteFunctions/templates/websiteFunctions/launchChild.html:581 #: websiteFunctions/templates/websiteFunctions/launchChild.html:584 -#: websiteFunctions/templates/websiteFunctions/website.html:869 -#: websiteFunctions/templates/websiteFunctions/website.html:872 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +#: websiteFunctions/templates/websiteFunctions/website.html:871 msgid "Delete FTP Account" msgstr "Xóa tài khoản FTP" @@ -1150,6 +1186,7 @@ msgstr "Điều chỉnh LiteSpeed" #: baseTemplate/templates/baseTemplate/index.html:468 #: 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 "Điều chỉnh PHP" @@ -1192,6 +1229,7 @@ msgid "Access Log" msgstr "Nhật ký truy cập" #: baseTemplate/templates/baseTemplate/index.html:517 +#: emailMarketing/templates/emailMarketing/website.html:138 #: serverLogs/templates/serverLogs/errorLogs.html:14 #: serverLogs/templates/serverLogs/index.html:37 #: serverLogs/templates/serverLogs/index.html:39 @@ -1303,39 +1341,49 @@ msgstr "Cấu hình SpamAssassin" msgid "SpamAssassin" msgstr "SpamAssassin" -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:565 +#: baseTemplate/templates/baseTemplate/index.html:557 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: websiteFunctions/templates/websiteFunctions/website.html:947 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Chuyển tiếp email" + +#: baseTemplate/templates/baseTemplate/index.html:564 +#: baseTemplate/templates/baseTemplate/index.html:566 msgid "Manage Services" msgstr "Quản lý dịch vụ" -#: baseTemplate/templates/baseTemplate/index.html:570 +#: baseTemplate/templates/baseTemplate/index.html:571 #: manageServices/templates/manageServices/managePowerDNS.html:22 msgid "Manage PowerDNS" msgstr "Quản lý PowerDNS" -#: baseTemplate/templates/baseTemplate/index.html:571 +#: baseTemplate/templates/baseTemplate/index.html:572 #: manageServices/templates/manageServices/managePostfix.html:22 msgid "Manage Postfix" msgstr "Quản lý Postfix" -#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:573 msgid "Manage FTP" msgstr "Quản lý FTP" -#: baseTemplate/templates/baseTemplate/index.html:579 -#: baseTemplate/templates/baseTemplate/index.html:581 +#: baseTemplate/templates/baseTemplate/index.html:580 +#: baseTemplate/templates/baseTemplate/index.html:582 #: pluginHolder/templates/pluginHolder/plugins.html:14 #: pluginHolder/templates/pluginHolder/plugins.html:21 msgid "Plugins" msgstr "" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install Extensions" msgid "Installed Plugins" msgstr "Cài đặt tiện ích mở rộng" -#: baseTemplate/templates/baseTemplate/index.html:586 +#: baseTemplate/templates/baseTemplate/index.html:587 #, fuzzy #| msgid "Install" msgid "Installed" @@ -1434,7 +1482,7 @@ msgstr "Danh sách Cơ sở dữ liệu hoặc thay đổi mật khẩu của h #: dns/templates/dns/addDeleteDNSRecords.html:42 #: ftp/templates/ftp/deleteFTPAccount.html:39 #: ftp/templates/ftp/listFTPAccounts.html:40 -#: tuning/templates/tuning/phpTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:30 msgid "Select Domain" msgstr "Chọn tên miền" @@ -1529,7 +1577,8 @@ msgstr "Bật ngay" #: filemanager/templates/filemanager/index.html:212 #: firewall/templates/firewall/firewall.html:136 #: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 +#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:226 msgid "Name" msgstr "Tên" @@ -1569,6 +1618,7 @@ msgstr "Địa chỉ IPV6" #: dns/templates/dns/addDeleteDNSRecords.html:156 #: dns/templates/dns/createDNSZone.html:38 #: dns/templates/dns/createNameServer.html:38 +#: emailMarketing/templates/emailMarketing/website.html:311 #: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 #: websiteFunctions/templates/websiteFunctions/website.html:311 msgid "Domain Name" @@ -1711,6 +1761,8 @@ msgid "Select Zone" msgstr "Chọn khu vực" #: dns/templates/dns/deleteDNSZone.html:62 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 #: ftp/templates/ftp/deleteFTPAccount.html:73 #: mailServer/templates/mailServer/deleteEmailAccount.html:77 #: packages/templates/packages/deletePackage.html:49 @@ -1752,6 +1804,959 @@ msgstr "Thêm bản ghi xóa" msgid "Add Delete/Records" msgstr "Thêm Xóa / Ghi" +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Compose Email Message - CyberPanel" +msgstr "Thay đổi mật khẩu Email - CyberPanel" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:13 +#: emailMarketing/templates/emailMarketing/composeMessages.html:19 +msgid "Compose Email Message" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:14 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can compose email message to be sent out later." +msgstr "Trên trang này, bạn có thể cấu hình cài đặt SpamAssassin." + +#: emailMarketing/templates/emailMarketing/composeMessages.html:29 +#, fuzzy +#| msgid "Site Name" +msgid "Template Name" +msgstr "Tên trang web" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:36 +msgid "Email Subject" +msgstr "" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:43 +#, fuzzy +#| msgid "First Name" +msgid "From Name" +msgstr "Tên" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:50 +#, fuzzy +#| msgid "Forward Email" +msgid "From Email" +msgstr "Email chuyển tiếp" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:57 +#, fuzzy +#| msgid "Delete Email" +msgid "Reply Email" +msgstr "Xóa email" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:73 +#, fuzzy +#| msgid "Save edits" +msgid "Save Template" +msgstr "Lưu chỉnh sửa" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Create Email List - CyberPanel" +msgstr "Tạo tài khoản email - CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +#, fuzzy +#| msgid "Create Email" +msgid "Create Email List" +msgstr "Tạo email" + +#: 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 +#, fuzzy +#| msgid "Last Name" +msgid "List Name" +msgstr "Họ" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:321 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:321 +msgid "Path" +msgstr "Đường dẫn" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +msgstr "Tạo Alias" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:422 +#: managePHP/templates/managePHP/installExtensions.html:94 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 +#: websiteFunctions/templates/websiteFunctions/website.html:422 +msgid "Go Back" +msgstr "Quay lại" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +#, fuzzy +#| msgid "Setup Email Forwarding - CyberPanel" +msgid "Email Marketing - CyberPanel" +msgstr "Thiết lập chuyển tiếp email - CyberPanel" + +#: 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 "Chính sách Email Máy chủ chưa được bật " + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:32 +#: emailPremium/templates/emailPremium/listDomains.html:32 +msgid "Enable Now." +msgstr "Bật ngay bây giờ." + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:81 +#: userManagment/templates/userManagment/userProfile.html:42 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 +msgid "Username" +msgstr "Tên người dùng" + +#: 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:60 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Disable" +msgstr "Tắt" + +#: 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:62 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:232 +msgid "Enable" +msgstr "Bật" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, fuzzy +#| msgid "Change Email Password - CyberPanel" +msgid "Manage Email Lists - CyberPanel" +msgstr "Thay đổi mật khẩu Email - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Email Lists" +msgstr "Thay đổi mật khẩu Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +#, fuzzy +#| msgid "On this page you manage emails limits for Domains/Email Addresses" +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "" +"Trên trang này, bạn quản lý các giới hạn email cho Tên miền / Địa chỉ Email" + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +#, fuzzy +#| msgid "Select ACL" +msgid "Select List" +msgstr "Chọn ACL" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete This List" +msgstr "Xóa trang web" + +#: 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:476 +#: filemanager/templates/filemanager/index.html:426 +#: filemanager/templates/filemanager/index.html:469 +#: filemanager/templates/filemanager/index.html:532 +#: filemanager/templates/filemanager/index.html:567 +#: filemanager/templates/filemanager/index.html:597 +#: filemanager/templates/filemanager/index.html:658 +#: websiteFunctions/templates/websiteFunctions/website.html:476 +msgid "Close" +msgstr "Đóng" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:425 +msgid "Confirm" +msgstr "Xác nhận" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, fuzzy +#| msgid "Add Domains" +msgid "Add More Emails" +msgstr "Thêm tên miền" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +#, fuzzy +#| msgid "Forward Email" +msgid "Load Emails" +msgstr "Email chuyển tiếp" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +#, fuzzy +#| msgid "Email" +msgid "email" +msgstr "E-mail" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +#, fuzzy +#| msgid "Services Status" +msgid "Verification Status" +msgstr "Trạng thái Dịch vụ" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:216 +#: mailServer/templates/mailServer/emailForwarding.html:113 +msgid "Actions" +msgstr "Hành động" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "Quản lý SSL - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage SMTP Hosts" +msgstr "Quản lý Postfix" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +#, fuzzy +#| msgid "" +#| "On this page you can manage versions and or upgrade to latest version of " +#| "CyberPanel" +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "" +"Trên trang này, bạn có thể quản lý phiên bản và nâng cấp lên phiên bản " +"CyberPanel mới nhất" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +#, fuzzy +#| msgid "Save edits" +msgid "Save Host" +msgstr "Lưu chỉnh sửa" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#, fuzzy +#| msgid "New Owner" +msgid "Owner" +msgstr "Chủ sở hữu mới" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Send Emails - CyberPanel" +msgstr "Tên miền - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:999 +#: emailMarketing/templates/emailMarketing/website.html:1002 +#: emailMarketing/templates/emailMarketing/website.html:1003 +#: websiteFunctions/templates/websiteFunctions/website.html:999 +#: websiteFunctions/templates/websiteFunctions/website.html:1002 +#: websiteFunctions/templates/websiteFunctions/website.html:1003 +#, fuzzy +#| msgid "Emails" +msgid "Send Emails" +msgstr "Email" + +#: 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 +#, fuzzy +#| msgid "Select Website" +msgid "Select Template" +msgstr "Chọn website" + +#: 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 +#, fuzzy +#| msgid "Preview" +msgid "Preview Template" +msgstr "Xem trước" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +#, fuzzy +#| msgid "Select FTP Account" +msgid "Select STMP Host" +msgstr "Chọn tài khoản FTP" + +#: 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 +#, fuzzy +#| msgid "Start" +msgid "Start Job" +msgstr "Bắt đầu" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +#, fuzzy +#| msgid "Emails" +msgid "Total Emails" +msgstr "Email" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:13 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 +#: websiteFunctions/templates/websiteFunctions/website.html:13 +msgid "Preview" +msgstr "Xem trước" + +#: emailMarketing/templates/emailMarketing/website.html:14 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:14 +msgid "All functions related to a particular site." +msgstr "Tất cả các tính năng liên quan đến một trang web cụ thể." + +#: emailMarketing/templates/emailMarketing/website.html:25 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 +#: websiteFunctions/templates/websiteFunctions/website.html:25 +msgid "Resource Usage" +msgstr "Sử dụng tài nguyên" + +#: emailMarketing/templates/emailMarketing/website.html:36 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 +#: websiteFunctions/templates/websiteFunctions/website.html:36 +msgid "Resource" +msgstr "Nguồn" + +#: emailMarketing/templates/emailMarketing/website.html:38 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 +#: websiteFunctions/templates/websiteFunctions/website.html:38 +msgid "Allowed" +msgstr "Được phép" + +#: emailMarketing/templates/emailMarketing/website.html:60 +#: emailMarketing/templates/emailMarketing/website.html:87 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 +#: websiteFunctions/templates/websiteFunctions/website.html:60 +#: websiteFunctions/templates/websiteFunctions/website.html:87 +msgid "Bandwidth Usage" +msgstr "Sử dụng băng thông" + +#: emailMarketing/templates/emailMarketing/website.html:123 +#: emailMarketing/templates/emailMarketing/website.html:126 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 +#: websiteFunctions/templates/websiteFunctions/website.html:123 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Load Access Logs" +msgstr "Tải Logs truy cập" + +#: emailMarketing/templates/emailMarketing/website.html:127 +#: serverLogs/templates/serverLogs/accessLogs.html:17 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:27 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:127 +msgid "Access Logs" +msgstr "Logs truy cập" + +#: emailMarketing/templates/emailMarketing/website.html:134 +#: emailMarketing/templates/emailMarketing/website.html:137 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:134 +#: websiteFunctions/templates/websiteFunctions/website.html:137 +msgid "Load Error Logs" +msgstr "Lỗi tải Logs" + +#: emailMarketing/templates/emailMarketing/website.html:149 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 +#: websiteFunctions/templates/websiteFunctions/website.html:149 +msgid "Logs Fetched" +msgstr "Tải thành công Logs" + +#: emailMarketing/templates/emailMarketing/website.html:154 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "Không thể tìm nạp Logs, xem tệp nhật ký thông qua command line. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:175 +#: emailMarketing/templates/emailMarketing/website.html:214 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 +#: websiteFunctions/templates/websiteFunctions/website.html:175 +#: websiteFunctions/templates/websiteFunctions/website.html:214 +msgid "Next" +msgstr "Kế tiếp" + +#: emailMarketing/templates/emailMarketing/website.html:176 +#: emailMarketing/templates/emailMarketing/website.html:215 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 +#: websiteFunctions/templates/websiteFunctions/website.html:176 +#: websiteFunctions/templates/websiteFunctions/website.html:215 +msgid "Previous" +msgstr "Trước" + +#: emailMarketing/templates/emailMarketing/website.html:253 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:35 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:253 +msgid "Domains" +msgstr "Tên miền" + +#: emailMarketing/templates/emailMarketing/website.html:261 +#: emailMarketing/templates/emailMarketing/website.html:264 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:261 +#: websiteFunctions/templates/websiteFunctions/website.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:265 +msgid "Add Domains" +msgstr "Thêm tên miền" + +#: emailMarketing/templates/emailMarketing/website.html:272 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:276 +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:275 +#: websiteFunctions/templates/websiteFunctions/website.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "List Domains" +msgstr "Danh sách tên miền" + +#: emailMarketing/templates/emailMarketing/website.html:282 +#: emailMarketing/templates/emailMarketing/website.html:285 +#: emailMarketing/templates/emailMarketing/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:282 +#: websiteFunctions/templates/websiteFunctions/website.html:285 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +msgid "Domain Alias" +msgstr "Domain Alias" + +#: emailMarketing/templates/emailMarketing/website.html:293 +#: emailMarketing/templates/emailMarketing/website.html:296 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +#: websiteFunctions/templates/websiteFunctions/website.html:296 +msgid "Add new Cron Job" +msgstr "Thêm Cron Job mới" + +#: emailMarketing/templates/emailMarketing/website.html:297 +#: websiteFunctions/templates/websiteFunctions/website.html:297 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "This path is relative to: " +msgstr "Đường dẫn này dẫn đến: " + +#: emailMarketing/templates/emailMarketing/website.html:323 +#: websiteFunctions/templates/websiteFunctions/website.html:323 +msgid "Leave empty to set default." +msgstr "Để trống để đặt mặc định." + +#: emailMarketing/templates/emailMarketing/website.html:325 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:325 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "Tên miền không hợp lệ (Lưu ý: Bạn không cần thêm 'http' hoặc 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:330 +#: emailMarketing/templates/emailMarketing/website.html:760 +#: managePHP/templates/managePHP/editPHPConfig.html:48 +#: managePHP/templates/managePHP/editPHPConfig.html:182 +#: managePHP/templates/managePHP/installExtensions.html:28 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:330 +#: websiteFunctions/templates/websiteFunctions/website.html:760 +msgid "Select PHP" +msgstr "Chọn PHP" + +#: emailMarketing/templates/emailMarketing/website.html:347 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/website.html:347 +msgid "Additional Features" +msgstr "Tính năng bổ sung" + +#: emailMarketing/templates/emailMarketing/website.html:380 +#: websiteFunctions/templates/websiteFunctions/website.html:380 +msgid "Create Domain" +msgstr "Tạo tên miền" + +#: emailMarketing/templates/emailMarketing/website.html:406 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 +#: websiteFunctions/templates/websiteFunctions/website.html:406 +msgid "Website succesfully created." +msgstr "Trang web được tạo thành công." + +#: emailMarketing/templates/emailMarketing/website.html:441 +#: websiteFunctions/templates/websiteFunctions/website.html:441 +msgid "PHP Version Changed to:" +msgstr "Phiên bản PHP đã thay đổi thành:" + +#: emailMarketing/templates/emailMarketing/website.html:445 +#: websiteFunctions/templates/websiteFunctions/website.html:445 +msgid "Deleted:" +msgstr "Đã xóa:" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:449 +msgid "SSL Issued:" +msgstr "Đã cấp SSL:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:453 +msgid "Changes applied successfully." +msgstr "Đã áp dụng thay đổi thành công." + +#: emailMarketing/templates/emailMarketing/website.html:515 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:515 +msgid "Issue" +msgstr "Sự cố" + +#: emailMarketing/templates/emailMarketing/website.html:540 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 +#: websiteFunctions/templates/websiteFunctions/website.html:540 +msgid "Configurations" +msgstr "Cấu hình" + +#: emailMarketing/templates/emailMarketing/website.html:549 +#: emailMarketing/templates/emailMarketing/website.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 +#: websiteFunctions/templates/websiteFunctions/website.html:549 +#: websiteFunctions/templates/websiteFunctions/website.html:552 +msgid "Edit vHost Main Configurations" +msgstr "Chỉnh sửa cấu hình chính của vHost" + +#: emailMarketing/templates/emailMarketing/website.html:553 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 +#: websiteFunctions/templates/websiteFunctions/website.html:553 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:561 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 +#: websiteFunctions/templates/websiteFunctions/website.html:561 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Thêm Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:564 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:564 +msgid "Rewrite Rules (.htaccess)" +msgstr "Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:565 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 +#: websiteFunctions/templates/websiteFunctions/website.html:565 +msgid "Rewrite Rules" +msgstr "Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: emailMarketing/templates/emailMarketing/website.html:576 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Add Your Own SSL" +msgstr "Thêm SSL của riêng bạn" + +#: emailMarketing/templates/emailMarketing/website.html:577 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 +#: websiteFunctions/templates/websiteFunctions/website.html:577 +msgid "Add SSL" +msgstr "Thêm SSL" + +#: emailMarketing/templates/emailMarketing/website.html:585 +#: emailMarketing/templates/emailMarketing/website.html:588 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/website.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:588 +msgid "Change PHP Version" +msgstr "Thay đổi phiên bản PHP" + +#: emailMarketing/templates/emailMarketing/website.html:589 +#: emailMarketing/templates/emailMarketing/website.html:785 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 +#: websiteFunctions/templates/websiteFunctions/website.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:785 +msgid "Change PHP" +msgstr "Thay đổi PHP" + +#: emailMarketing/templates/emailMarketing/website.html:601 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 +#: websiteFunctions/templates/websiteFunctions/website.html:601 +msgid "SSL Saved" +msgstr "Đã lưu SSL" + +#: emailMarketing/templates/emailMarketing/website.html:606 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 +#: websiteFunctions/templates/websiteFunctions/website.html:606 +msgid "Could not save SSL. Error message:" +msgstr "Không thể lưu SSL. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:630 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:630 +#: websiteFunctions/templates/websiteFunctions/website.html:689 +msgid "Save" +msgstr "Lưu" + +#: emailMarketing/templates/emailMarketing/website.html:655 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:655 +msgid "Current configuration in the file fetched." +msgstr "Cấu hình hiện tại đã được tìm nạp." + +#: emailMarketing/templates/emailMarketing/website.html:660 +#: emailMarketing/templates/emailMarketing/website.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 +#: websiteFunctions/templates/websiteFunctions/website.html:660 +#: websiteFunctions/templates/websiteFunctions/website.html:673 +msgid "Could not fetch current configuration. Error message:" +msgstr "Không thể tìm nạp cấu hình hiện tại. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:669 +#: emailMarketing/templates/emailMarketing/website.html:721 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:669 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Configurations saved." +msgstr "Đã lưu cấu hình." + +#: emailMarketing/templates/emailMarketing/website.html:707 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 +#: websiteFunctions/templates/websiteFunctions/website.html:707 +msgid "Current rewrite rules in the file fetched." +msgstr "Rewrite Rules hiện tại đã được tìm nạp." + +#: emailMarketing/templates/emailMarketing/website.html:712 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 +#: websiteFunctions/templates/websiteFunctions/website.html:712 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Không thể tìm nạp Rewrite Rules hiện tại. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:725 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 +#: websiteFunctions/templates/websiteFunctions/website.html:725 +msgid "Could not save rewrite rules. Error message:" +msgstr "Không thể Rewrite Rules. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:741 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 +#: websiteFunctions/templates/websiteFunctions/website.html:741 +msgid "Save Rewrite Rules" +msgstr "Lưu Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:796 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 +#: websiteFunctions/templates/websiteFunctions/website.html:796 +msgid "Failed to change PHP version. Error message:" +msgstr "Không thể thay đổi phiên bản PHP. Lỗi:" + +#: emailMarketing/templates/emailMarketing/website.html:800 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +msgid "PHP successfully changed for: " +msgstr "PHP đã được thay đổi cho: " + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Files" +msgstr "Tập tin" + +#: emailMarketing/templates/emailMarketing/website.html:833 +#: emailMarketing/templates/emailMarketing/website.html:836 +#: emailMarketing/templates/emailMarketing/website.html:837 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +#: websiteFunctions/templates/websiteFunctions/website.html:836 +#: websiteFunctions/templates/websiteFunctions/website.html:837 +msgid "File Manager" +msgstr "Quản lý tập tin" + +#: emailMarketing/templates/emailMarketing/website.html:844 +#: emailMarketing/templates/emailMarketing/website.html:847 +#: emailMarketing/templates/emailMarketing/website.html:885 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 +#: websiteFunctions/templates/websiteFunctions/website.html:844 +#: websiteFunctions/templates/websiteFunctions/website.html:847 +#: websiteFunctions/templates/websiteFunctions/website.html:885 +msgid "open_basedir Protection" +msgstr "open_basedir Protection" + +#: emailMarketing/templates/emailMarketing/website.html:848 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 +#: websiteFunctions/templates/websiteFunctions/website.html:848 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:860 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/website.html:860 +msgid "Create FTP Acct" +msgstr "Tạo FTP Acct" + +#: emailMarketing/templates/emailMarketing/website.html:872 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/website.html:872 +msgid "Delete FTP Acct" +msgstr "Xóa acct FTP" + +#: emailMarketing/templates/emailMarketing/website.html:907 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 +#: websiteFunctions/templates/websiteFunctions/website.html:907 +msgid "Apply Changes" +msgstr "Áp dụng các thay đổi" + +#: emailMarketing/templates/emailMarketing/website.html:919 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +msgid "Changes successfully saved." +msgstr "Đã lưu các thay đổi thành công." + +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailMarketing/templates/emailMarketing/website.html:958 +#: emailMarketing/templates/emailMarketing/website.html:959 +#: websiteFunctions/templates/websiteFunctions/website.html:955 +#: websiteFunctions/templates/websiteFunctions/website.html:958 +#: websiteFunctions/templates/websiteFunctions/website.html:959 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Tạo Alias" + +#: emailMarketing/templates/emailMarketing/website.html:966 +#: emailMarketing/templates/emailMarketing/website.html:969 +#: emailMarketing/templates/emailMarketing/website.html:970 +#: websiteFunctions/templates/websiteFunctions/website.html:966 +#: websiteFunctions/templates/websiteFunctions/website.html:969 +#: websiteFunctions/templates/websiteFunctions/website.html:970 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Quản lý SSL" + +#: emailMarketing/templates/emailMarketing/website.html:977 +#: emailMarketing/templates/emailMarketing/website.html:980 +#: emailMarketing/templates/emailMarketing/website.html:981 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +#: websiteFunctions/templates/websiteFunctions/website.html:980 +#: websiteFunctions/templates/websiteFunctions/website.html:981 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:988 +#: emailMarketing/templates/emailMarketing/website.html:991 +#: websiteFunctions/templates/websiteFunctions/website.html:988 +#: websiteFunctions/templates/websiteFunctions/website.html:991 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Nén" + +#: emailMarketing/templates/emailMarketing/website.html:992 +#: websiteFunctions/templates/websiteFunctions/website.html:992 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Nén" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 +#: websiteFunctions/templates/websiteFunctions/website.html:1019 +msgid "Application Installer" +msgstr "Trình cài đặt ứng dụng" + +#: emailMarketing/templates/emailMarketing/website.html:1028 +#: emailMarketing/templates/emailMarketing/website.html:1031 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 +#: websiteFunctions/templates/websiteFunctions/website.html:1028 +#: websiteFunctions/templates/websiteFunctions/website.html:1031 +msgid "Install wordpress with LSCache" +msgstr "Cài đặt wordpress với LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1032 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 +#: websiteFunctions/templates/websiteFunctions/website.html:1032 +msgid "Wordpress with LSCache" +msgstr "Wordpress với LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1040 +#: emailMarketing/templates/emailMarketing/website.html:1043 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 +#: websiteFunctions/templates/websiteFunctions/website.html:1040 +#: websiteFunctions/templates/websiteFunctions/website.html:1043 +msgid "Install Joomla with LSCache" +msgstr "Cài đặt Joomla với LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1044 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 +#: websiteFunctions/templates/websiteFunctions/website.html:1044 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1052 +#: emailMarketing/templates/emailMarketing/website.html:1055 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:1052 +#: websiteFunctions/templates/websiteFunctions/website.html:1055 +msgid "Attach Git with this website!" +msgstr "Đính kèm Git với trang web này!" + +#: emailMarketing/templates/emailMarketing/website.html:1056 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 +#: websiteFunctions/templates/websiteFunctions/website.html:1056 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: emailMarketing/templates/emailMarketing/website.html:1068 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 +#: websiteFunctions/templates/websiteFunctions/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/website.html:1068 +msgid "Install Prestashop" +msgstr "Cài đặt Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1069 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 +#: websiteFunctions/templates/websiteFunctions/website.html:1069 +msgid "Prestashop" +msgstr "Prestashop" + #: emailPremium/templates/emailPremium/SpamAssassin.html:3 #: firewall/templates/firewall/spamassassin.html:3 msgid "SpamAssassin - CyberPanel" @@ -1777,7 +2782,8 @@ msgstr "SpamAssassin chưa được cài đặt " #: emailPremium/templates/emailPremium/SpamAssassin.html:31 #: firewall/templates/firewall/csf.html:30 -#: firewall/templates/firewall/modSecurity.html:31 +#: firewall/templates/firewall/modSecurity.html:37 +#: firewall/templates/firewall/modSecurity.html:234 #: firewall/templates/firewall/modSecurityRules.html:72 #: firewall/templates/firewall/modSecurityRulesPacks.html:30 #: firewall/templates/firewall/spamassassin.html:31 @@ -1786,7 +2792,8 @@ msgstr "Cài đặt ngay." #: emailPremium/templates/emailPremium/SpamAssassin.html:43 #: firewall/templates/firewall/csf.html:42 -#: firewall/templates/firewall/modSecurity.html:43 +#: firewall/templates/firewall/modSecurity.html:50 +#: firewall/templates/firewall/modSecurity.html:247 #: firewall/templates/firewall/spamassassin.html:43 msgid "Failed to start installation, Error message: " msgstr "Không thể bắt đầu cài đặt, Lỗi: " @@ -1795,8 +2802,10 @@ msgstr "Không thể bắt đầu cài đặt, Lỗi: " #: emailPremium/templates/emailPremium/SpamAssassin.html:134 #: emailPremium/templates/emailPremium/policyServer.html:60 #: firewall/templates/firewall/csf.html:46 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:168 +#: firewall/templates/firewall/modSecurity.html:56 +#: firewall/templates/firewall/modSecurity.html:186 +#: firewall/templates/firewall/modSecurity.html:252 +#: firewall/templates/firewall/modSecurity.html:374 #: firewall/templates/firewall/modSecurityRules.html:53 #: firewall/templates/firewall/modSecurityRulesPacks.html:88 #: firewall/templates/firewall/secureSSH.html:87 @@ -1815,7 +2824,8 @@ msgstr "Không thể kết nối. Vui lòng tải lại trang này." #: emailPremium/templates/emailPremium/SpamAssassin.html:51 #: firewall/templates/firewall/csf.html:50 -#: firewall/templates/firewall/modSecurity.html:51 +#: firewall/templates/firewall/modSecurity.html:60 +#: firewall/templates/firewall/modSecurity.html:256 #: firewall/templates/firewall/spamassassin.html:51 msgid "Installation failed." msgstr "Cài đặt thất bại." @@ -1830,7 +2840,8 @@ msgstr "Mùa đông đến rồi, SpamAssassin cũng vậy." #: emailPremium/templates/emailPremium/SpamAssassin.html:114 #: emailPremium/templates/emailPremium/policyServer.html:40 -#: firewall/templates/firewall/modSecurity.html:148 +#: firewall/templates/firewall/modSecurity.html:166 +#: firewall/templates/firewall/modSecurity.html:354 #: firewall/templates/firewall/spamassassin.html:157 #: manageServices/templates/manageServices/managePostfix.html:42 #: manageServices/templates/manageServices/managePowerDNS.html:42 @@ -1868,15 +2879,6 @@ msgstr "Sử dụng tài nguyên tên miền" msgid "Limits are being Applied!" msgstr "Giới hạn đang được áp dụng!" -#: 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:60 -#: tuning/templates/tuning/phpTuning.html:91 -msgid "Disable" -msgstr "Tắt" - #: emailPremium/templates/emailPremium/emailLimits.html:54 #: emailPremium/templates/emailPremium/emailLimits.html:160 #: emailPremium/templates/emailPremium/emailPage.html:56 @@ -1884,15 +2886,6 @@ msgstr "Tắt" msgid "Limits are not being applied!" msgstr "Giới hạn không được áp dụng!" -#: 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:62 -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Enable" -msgstr "Bật" - #: emailPremium/templates/emailPremium/emailLimits.html:58 #: emailPremium/templates/emailPremium/emailPage.html:66 #: filemanager/templates/filemanager/index.html:84 @@ -1975,35 +2968,11 @@ msgstr "Xóa Logs" msgid "Domains - CyberPanel" msgstr "Tên miền - CyberPanel" -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:275 -#: websiteFunctions/templates/websiteFunctions/website.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "List Domains" -msgstr "Danh sách tên miền" - #: emailPremium/templates/emailPremium/listDomains.html:15 msgid "On this page you manage emails limits for Domains/Email Addresses" msgstr "" "Trên trang này, bạn quản lý các giới hạn email cho Tên miền / Địa chỉ Email" -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:253 -msgid "Domains" -msgstr "Tên miền" - -#: emailPremium/templates/emailPremium/listDomains.html:29 -msgid "Email Policy Server is not enabled " -msgstr "Chính sách Email Máy chủ chưa được bật " - -#: emailPremium/templates/emailPremium/listDomains.html:32 -msgid "Enable Now." -msgstr "Bật ngay bây giờ." - #: emailPremium/templates/emailPremium/policyServer.html:3 msgid "Email Policy Server - CyberPanel" msgstr "Chính sách Email Máy chủ - CyberPanel" @@ -2157,11 +3126,6 @@ msgstr "Kéo thả tệp vào đây để tải lên." msgid "Progress" msgstr "Phát triển" -#: filemanager/templates/filemanager/index.html:216 -#: mailServer/templates/mailServer/emailForwarding.html:113 -msgid "Actions" -msgstr "Hành động" - #: filemanager/templates/filemanager/index.html:242 msgid "Remove" msgstr "Xóa bỏ" @@ -2247,20 +3211,6 @@ msgstr "Đã tạo tệp thành công." msgid "Confirm Deletion!" msgstr "Xác nhận xóa!" -#: filemanager/templates/filemanager/index.html:425 -msgid "Confirm" -msgstr "Xác nhận" - -#: filemanager/templates/filemanager/index.html:426 -#: filemanager/templates/filemanager/index.html:469 -#: filemanager/templates/filemanager/index.html:532 -#: filemanager/templates/filemanager/index.html:567 -#: filemanager/templates/filemanager/index.html:597 -#: filemanager/templates/filemanager/index.html:658 -#: websiteFunctions/templates/websiteFunctions/website.html:476 -msgid "Close" -msgstr "Đóng" - #: filemanager/templates/filemanager/index.html:449 msgid "List of files/folder!" msgstr "Danh sách tệp / thư mục!" @@ -2488,7 +3438,8 @@ msgid "Action failed. Error message:" msgstr "Không thành công. Lỗi:" #: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 +#: serverStatus/templates/serverStatus/litespeedStatus.html:86 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 msgid "Action successful." msgstr "Thành công." @@ -2516,47 +3467,56 @@ msgstr "Quản lý bảo mật của máy chủ trên trang web này." msgid "ModSecurity - CyberPanel" msgstr "ModSecurity - CyberPanel" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:211 msgid "ModSecurity Configurations!" msgstr "Cấu hình ModSecurity!" -#: firewall/templates/firewall/modSecurity.html:13 +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:215 #: firewall/templates/firewall/modSecurityRules.html:13 #: firewall/templates/firewall/modSecurityRulesPacks.html:13 msgid "ModSec Docs" msgstr "Tài liệu ModSec" -#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:217 msgid "On this page you can configure ModSecurity settings." msgstr "Trên trang này, bạn có thể cấu hình các thiết lập ModSecurity." -#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:223 msgid "ModSecurity" msgstr "ModSecurity" -#: firewall/templates/firewall/modSecurity.html:29 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:232 #: firewall/templates/firewall/modSecurityRules.html:70 #: firewall/templates/firewall/modSecurityRulesPacks.html:28 #: firewall/templates/firewall/spamassassin.html:29 msgid "ModSecurity is not installed " msgstr "ModSecurity chưa được cài đặt " -#: firewall/templates/firewall/modSecurity.html:55 +#: firewall/templates/firewall/modSecurity.html:64 +#: firewall/templates/firewall/modSecurity.html:260 #: firewall/templates/firewall/spamassassin.html:55 msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." msgstr "ModSecurity được cài đặt thành công, tải lại trang trong 3 giây .." -#: firewall/templates/firewall/modSecurity.html:66 +#: firewall/templates/firewall/modSecurity.html:76 +#: firewall/templates/firewall/modSecurity.html:272 #: firewall/templates/firewall/spamassassin.html:66 msgid "Winter is coming, but so is ModSecurity." msgstr "Mùa đông đang đến, nhưng đó là ModSecurity." -#: firewall/templates/firewall/modSecurity.html:160 +#: firewall/templates/firewall/modSecurity.html:177 +#: firewall/templates/firewall/modSecurity.html:365 #: firewall/templates/firewall/spamassassin.html:169 msgid "Failed to save ModSecurity configurations. Error message: " msgstr "Không thể lưu cấu hình ModSecurity. Lỗi: " -#: firewall/templates/firewall/modSecurity.html:164 +#: firewall/templates/firewall/modSecurity.html:182 +#: firewall/templates/firewall/modSecurity.html:370 #: firewall/templates/firewall/spamassassin.html:173 msgid "ModSecurity configurations successfully saved." msgstr "Cấu hình ModSecurity đã được lưu thành công." @@ -2669,15 +3629,6 @@ msgstr "Khóa" msgid "Add Key" msgstr "Thêm khóa" -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:343 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:402 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:630 -#: websiteFunctions/templates/websiteFunctions/website.html:689 -msgid "Save" -msgstr "Lưu" - #: firewall/templates/firewall/secureSSH.html:167 msgid "SSH Key Deleted" msgstr "Đã xóa khóa SSH" @@ -2963,17 +3914,6 @@ msgstr "Chỉnh sửa cấu hình PHP trên trang này." msgid "Advanced" msgstr "Nâng cao" -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:182 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:473 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:330 -#: websiteFunctions/templates/websiteFunctions/website.html:760 -msgid "Select PHP" -msgstr "Chọn PHP" - #: managePHP/templates/managePHP/editPHPConfig.html:67 msgid "display_errors" msgstr "display_errors" @@ -3037,6 +3977,7 @@ msgstr "Cài đặt / gỡ bỏ gói mở rộng php trên trang này." #: managePHP/templates/managePHP/installExtensions.html:19 #: tuning/templates/tuning/phpTuning.html:19 +#: tuning/templates/tuning/phpTuning.html:155 msgid "Select PHP Version" msgstr "Chọn phiên bản PHP" @@ -3063,18 +4004,9 @@ msgstr "Cài đặt" msgid "Uninstall" msgstr "Gỡ cài đặt" -#: managePHP/templates/managePHP/installExtensions.html:94 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:160 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:139 -#: websiteFunctions/templates/websiteFunctions/website.html:422 -msgid "Go Back" -msgstr "Quay lại" - #: managePHP/templates/managePHP/installExtensions.html:105 -#: tuning/templates/tuning/phpTuning.html:111 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:254 #: userManagment/templates/userManagment/modifyUser.html:96 msgid "Cannot fetch details. Error message:" msgstr "Không thể tìm nạp chi tiết. Lỗi:" @@ -3335,14 +4267,6 @@ msgstr "Phiên bản mới nhất" msgid "Access Logs - CyberPanel" msgstr "Logs truy cập - CyberPanel" -#: serverLogs/templates/serverLogs/accessLogs.html:17 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:27 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:127 -msgid "Access Logs" -msgstr "Logs truy cập" - #: serverLogs/templates/serverLogs/accessLogs.html:18 msgid "Access Logs for main web server." msgstr "Logs truy cập vào máy chủ." @@ -3452,38 +4376,46 @@ msgstr "Xem trạng thái LiteSpeed ​​và các tệp nhật ký." msgid "LiteSpeed Status - CyberPanel" msgstr "Trạng thái LiteSpeed ​​- CyberPanel" -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:15 +#: serverStatus/templates/serverStatus/litespeedStatus.html:204 msgid "LiteSpeed Status:" msgstr "Trạng thái LiteSpeed:" -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:205 msgid "" "On this page you can get information regarding your LiteSpeed processes." msgstr "" "Trên trang này, bạn có thể nhận thông tin về các quy trình LiteSpeed ​​của " "mình." -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 +#: serverStatus/templates/serverStatus/litespeedStatus.html:31 +#: serverStatus/templates/serverStatus/litespeedStatus.html:218 msgid "LiteSpeed Processes" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:225 msgid "Process ID" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 +#: serverStatus/templates/serverStatus/litespeedStatus.html:50 +#: serverStatus/templates/serverStatus/litespeedStatus.html:237 msgid "Main Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 +#: serverStatus/templates/serverStatus/litespeedStatus.html:53 +#: serverStatus/templates/serverStatus/litespeedStatus.html:240 msgid "lscgid Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 +#: serverStatus/templates/serverStatus/litespeedStatus.html:56 +#: serverStatus/templates/serverStatus/litespeedStatus.html:243 msgid "Worker Process" msgstr "" -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:66 +#: serverStatus/templates/serverStatus/litespeedStatus.html:253 msgid "" "Could not fetch details, either LiteSpeed is not running or some error " "occurred, please see CyberPanel Main log file." @@ -3492,21 +4424,75 @@ msgstr "" "ra, vui lòng xem tệp Log chính CyberPanel." #: serverStatus/templates/serverStatus/litespeedStatus.html:72 +#: serverStatus/templates/serverStatus/litespeedStatus.html:259 msgid "Reboot Litespeed" msgstr "Khởi động lại Litespeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 +#: serverStatus/templates/serverStatus/litespeedStatus.html:78 +#: serverStatus/templates/serverStatus/litespeedStatus.html:265 msgid "Stop LiteSpeed" msgstr "Dừng LiteSpeed" -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 +#: serverStatus/templates/serverStatus/litespeedStatus.html:91 +#: serverStatus/templates/serverStatus/litespeedStatus.html:278 msgid "Error Occurred. See CyberPanel main log file." msgstr "Đã xảy ra lỗi. Xem Log chính CyberPanel." -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 +#: serverStatus/templates/serverStatus/litespeedStatus.html:96 +#: serverStatus/templates/serverStatus/litespeedStatus.html:283 msgid "Could not connect to server." msgstr "Không thể kết nối tới máy chủ." +#: serverStatus/templates/serverStatus/litespeedStatus.html:140 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:151 +msgid "License Key" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:178 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Quản lý tập tin" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:304 +#: serverStatus/templates/serverStatus/litespeedStatus.html:307 +#: serverStatus/templates/serverStatus/litespeedStatus.html:308 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Trạng thái Dịch vụ" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:314 +#: serverStatus/templates/serverStatus/litespeedStatus.html:317 +#: serverStatus/templates/serverStatus/litespeedStatus.html:318 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Thay đổi giới hạn" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Tập tin mới" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:357 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Thay đổi" + #: serverStatus/templates/serverStatus/services.html:3 msgid "Services - CyberPanel" msgstr "Dịch vụ - CyberPanel" @@ -3550,7 +4536,8 @@ msgid "Tuning Details" msgstr "Chi tiết điều chỉnh" #: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:49 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:191 msgid "Max Connections" msgstr "Kết nối tối đa" @@ -3575,7 +4562,8 @@ msgid "Enable GZIP Compression" msgstr "Bật tính năng nén GZIP" #: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:236 msgid "Currently:" msgstr "Hiện tại:" @@ -3604,50 +4592,62 @@ msgid "PHP Tuning - CyberPanel" msgstr "Điều chỉnh PHP - CyberPanel" #: 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 "Đặt cách mỗi phiên bản PHP hoạt động trong máy chủ của bạn tại đây." -#: tuning/templates/tuning/phpTuning.html:42 +#: tuning/templates/tuning/phpTuning.html:45 +#: tuning/templates/tuning/phpTuning.html:184 msgid "Initial Request Timeout (secs)" msgstr "Thời gian chờ yêu cầu đầu tiên (giây)" -#: tuning/templates/tuning/phpTuning.html:57 +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:199 msgid "Memory Soft Limit" msgstr "Giới hạn bộ nhớ mềm" -#: tuning/templates/tuning/phpTuning.html:64 +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:206 msgid "Memory Hard Limit" msgstr "Giới hạn bộ nhớ cứng" -#: tuning/templates/tuning/phpTuning.html:72 +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:214 msgid "Process Soft Limit" msgstr "Quy trình giới hạn mềm" -#: tuning/templates/tuning/phpTuning.html:79 +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:221 msgid "Process Hard Limit" msgstr "Quy trình giới hạn cứng" -#: tuning/templates/tuning/phpTuning.html:87 +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:229 msgid "Persistent Connection" msgstr "Kết nối liên tục" -#: tuning/templates/tuning/phpTuning.html:102 +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:245 msgid "Tune PHP" msgstr "Điều chỉnh PHP" -#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:258 msgid "Cannot tune. Error message:" msgstr "Không thể điều chỉnh. Lỗi:" -#: tuning/templates/tuning/phpTuning.html:120 +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:263 msgid "Details Successfully fetched." msgstr "Chi tiết được tìm nạp thành công." -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:267 msgid "PHP for " msgstr "PHP cho " -#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:268 msgid "Successfully tuned." msgstr "Đã điều chỉnh thành công." @@ -3813,12 +4813,6 @@ msgstr "Email không hợp lệ" msgid "Websites Limit" msgstr "Giới hạn trang web" -#: userManagment/templates/userManagment/createUser.html:81 -#: userManagment/templates/userManagment/userProfile.html:42 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:71 -msgid "Username" -msgstr "Tên người dùng" - #: userManagment/templates/userManagment/createUser.html:101 #: userManagment/templates/userManagment/index.html:40 #: userManagment/templates/userManagment/index.html:42 @@ -3946,52 +4940,14 @@ msgstr "(0 = Không giới hạn)" msgid "Application Installer - CyberPanel" msgstr "Trình cài đặt ứng dụng - CyberPanel" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:659 -#: websiteFunctions/templates/websiteFunctions/website.html:948 -msgid "Application Installer" -msgstr "Trình cài đặt ứng dụng" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 msgid "One-click application install." msgstr "Cài đặt ứng dụng nhanh." -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:668 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:671 -#: websiteFunctions/templates/websiteFunctions/website.html:957 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -msgid "Install wordpress with LSCache" -msgstr "Cài đặt wordpress với LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:672 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Wordpress with LSCache" -msgstr "Wordpress với LSCache" - #: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 msgid "Install Joomla with(?) LSCache" msgstr "Cài đặt Joomla với (?) LSCache" -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:680 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:683 -#: websiteFunctions/templates/websiteFunctions/website.html:969 -#: websiteFunctions/templates/websiteFunctions/website.html:972 -msgid "Install Joomla with LSCache" -msgstr "Cài đặt Joomla với LSCache" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:684 -#: websiteFunctions/templates/websiteFunctions/website.html:973 -msgid "Joomla" -msgstr "Joomla" - #: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 msgid "Create New Website - CyberPanel" msgstr "Tạo trang web mới - CyberPanel" @@ -4019,22 +4975,6 @@ msgstr "Chọn người sở hữu" msgid "Do not enter WWW, it will be auto created!" msgstr "Không nhập WWW, nó sẽ được tạo tự động!" -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:325 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "Tên miền không hợp lệ (Lưu ý: Bạn không cần thêm 'http' hoặc 'https')" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:85 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Additional Features" -msgstr "Tính năng bổ sung" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:144 -#: websiteFunctions/templates/websiteFunctions/website.html:406 -msgid "Website succesfully created." -msgstr "Trang web được tạo thành công." - #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 msgid "Delete Website - CyberPanel" msgstr "Xóa trang web - CyberPanel" @@ -4089,11 +5029,6 @@ msgstr "Alias" msgid "File System Path" msgstr "Đường dẫn hệ thống tệp" -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:515 -msgid "Issue" -msgstr "Sự cố" - #: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 msgid "Domain Aliases not found." msgstr "Không tìm thấy Domain Aliases." @@ -4170,13 +5105,6 @@ msgstr "Mật khẩu đăng nhập" msgid "Database Prefix" msgstr "Tiền tố cơ sở dữ liệu" -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:321 -msgid "Path" -msgstr "Đường dẫn" - #: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 #: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 @@ -4221,266 +5149,6 @@ msgstr "Cài đặt WordPress với LSCache." msgid "Blog Title" msgstr "Tiêu đề Blog" -#: websiteFunctions/templates/websiteFunctions/launchChild.html:13 -#: websiteFunctions/templates/websiteFunctions/website.html:13 -msgid "Preview" -msgstr "Xem trước" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:14 -msgid "All functions related to a particular site." -msgstr "Tất cả các tính năng liên quan đến một trang web cụ thể." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:25 -#: websiteFunctions/templates/websiteFunctions/website.html:25 -msgid "Resource Usage" -msgstr "Sử dụng tài nguyên" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:36 -#: websiteFunctions/templates/websiteFunctions/website.html:36 -msgid "Resource" -msgstr "Nguồn" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:38 -#: websiteFunctions/templates/websiteFunctions/website.html:38 -msgid "Allowed" -msgstr "Được phép" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:60 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:87 -#: websiteFunctions/templates/websiteFunctions/website.html:60 -#: websiteFunctions/templates/websiteFunctions/website.html:87 -msgid "Bandwidth Usage" -msgstr "Sử dụng băng thông" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:126 -#: websiteFunctions/templates/websiteFunctions/website.html:123 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Load Access Logs" -msgstr "Tải Logs truy cập" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:134 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:134 -#: websiteFunctions/templates/websiteFunctions/website.html:137 -msgid "Load Error Logs" -msgstr "Lỗi tải Logs" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:149 -#: websiteFunctions/templates/websiteFunctions/website.html:149 -msgid "Logs Fetched" -msgstr "Tải thành công Logs" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "Không thể tìm nạp Logs, xem tệp nhật ký thông qua command line. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:175 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:214 -#: websiteFunctions/templates/websiteFunctions/website.html:175 -#: websiteFunctions/templates/websiteFunctions/website.html:214 -msgid "Next" -msgstr "Kế tiếp" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:215 -#: websiteFunctions/templates/websiteFunctions/website.html:176 -#: websiteFunctions/templates/websiteFunctions/website.html:215 -msgid "Previous" -msgstr "Trước" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:253 -#: websiteFunctions/templates/websiteFunctions/website.html:540 -msgid "Configurations" -msgstr "Cấu hình" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:262 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:265 -#: websiteFunctions/templates/websiteFunctions/website.html:549 -#: websiteFunctions/templates/websiteFunctions/website.html:552 -msgid "Edit vHost Main Configurations" -msgstr "Chỉnh sửa cấu hình chính của vHost" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:266 -#: websiteFunctions/templates/websiteFunctions/website.html:553 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:274 -#: websiteFunctions/templates/websiteFunctions/website.html:561 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Thêm Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:564 -msgid "Rewrite Rules (.htaccess)" -msgstr "Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:278 -#: websiteFunctions/templates/websiteFunctions/website.html:565 -msgid "Rewrite Rules" -msgstr "Rewrite Rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:286 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Add Your Own SSL" -msgstr "Thêm SSL của riêng bạn" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:290 -#: websiteFunctions/templates/websiteFunctions/website.html:577 -msgid "Add SSL" -msgstr "Thêm SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:298 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/website.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:588 -msgid "Change PHP Version" -msgstr "Thay đổi phiên bản PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:302 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:498 -#: websiteFunctions/templates/websiteFunctions/website.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:785 -msgid "Change PHP" -msgstr "Thay đổi PHP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:314 -#: websiteFunctions/templates/websiteFunctions/website.html:601 -msgid "SSL Saved" -msgstr "Đã lưu SSL" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:319 -#: websiteFunctions/templates/websiteFunctions/website.html:606 -msgid "Could not save SSL. Error message:" -msgstr "Không thể lưu SSL. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:655 -msgid "Current configuration in the file fetched." -msgstr "Cấu hình hiện tại đã được tìm nạp." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:386 -#: websiteFunctions/templates/websiteFunctions/website.html:660 -#: websiteFunctions/templates/websiteFunctions/website.html:673 -msgid "Could not fetch current configuration. Error message:" -msgstr "Không thể tìm nạp cấu hình hiện tại. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:382 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:669 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Configurations saved." -msgstr "Đã lưu cấu hình." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:420 -#: websiteFunctions/templates/websiteFunctions/website.html:707 -msgid "Current rewrite rules in the file fetched." -msgstr "Rewrite Rules hiện tại đã được tìm nạp." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:425 -#: websiteFunctions/templates/websiteFunctions/website.html:712 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Không thể tìm nạp Rewrite Rules hiện tại. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:438 -#: websiteFunctions/templates/websiteFunctions/website.html:725 -msgid "Could not save rewrite rules. Error message:" -msgstr "Không thể Rewrite Rules. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:454 -#: websiteFunctions/templates/websiteFunctions/website.html:741 -msgid "Save Rewrite Rules" -msgstr "Lưu Rewrite Rules" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:509 -#: websiteFunctions/templates/websiteFunctions/website.html:796 -msgid "Failed to change PHP version. Error message:" -msgstr "Không thể thay đổi phiên bản PHP. Lỗi:" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:513 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -msgid "PHP successfully changed for: " -msgstr "PHP đã được thay đổi cho: " - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:826 -msgid "Files" -msgstr "Tập tin" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:546 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:550 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#: websiteFunctions/templates/websiteFunctions/website.html:837 -#: websiteFunctions/templates/websiteFunctions/website.html:838 -msgid "File Manager" -msgstr "Quản lý tập tin" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:557 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:598 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -#: websiteFunctions/templates/websiteFunctions/website.html:848 -#: websiteFunctions/templates/websiteFunctions/website.html:886 -msgid "open_basedir Protection" -msgstr "open_basedir Protection" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:561 -#: websiteFunctions/templates/websiteFunctions/website.html:849 -msgid "open_basedir" -msgstr "open_basedir" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/website.html:861 -msgid "Create FTP Acct" -msgstr "Tạo FTP Acct" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/website.html:873 -msgid "Delete FTP Acct" -msgstr "Xóa acct FTP" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:620 -#: websiteFunctions/templates/websiteFunctions/website.html:908 -msgid "Apply Changes" -msgstr "Áp dụng các thay đổi" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Changes successfully saved." -msgstr "Đã lưu các thay đổi thành công." - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:692 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:981 -#: websiteFunctions/templates/websiteFunctions/website.html:984 -msgid "Attach Git with this website!" -msgstr "Đính kèm Git với trang web này!" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:696 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -msgid "Git" -msgstr "Git" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:705 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:708 -#: websiteFunctions/templates/websiteFunctions/website.html:994 -#: websiteFunctions/templates/websiteFunctions/website.html:997 -msgid "Install Prestashop" -msgstr "Cài đặt Prestashop" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:709 -#: websiteFunctions/templates/websiteFunctions/website.html:998 -msgid "Prestashop" -msgstr "Prestashop" - #: websiteFunctions/templates/websiteFunctions/listCron.html:3 msgid "Cron Management - CyberPanel" msgstr "Quản lý Cron - CyberPanel" @@ -4738,55 +5406,6 @@ msgstr "Trang Web " msgid "Successfully " msgstr "Thành công " -#: websiteFunctions/templates/websiteFunctions/website.html:261 -#: websiteFunctions/templates/websiteFunctions/website.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:265 -msgid "Add Domains" -msgstr "Thêm tên miền" - -#: websiteFunctions/templates/websiteFunctions/website.html:282 -#: websiteFunctions/templates/websiteFunctions/website.html:285 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -msgid "Domain Alias" -msgstr "Domain Alias" - -#: websiteFunctions/templates/websiteFunctions/website.html:293 -#: websiteFunctions/templates/websiteFunctions/website.html:296 -msgid "Add new Cron Job" -msgstr "Thêm Cron Job mới" - -#: websiteFunctions/templates/websiteFunctions/website.html:297 -msgid "Cron Jobs" -msgstr "Cron Jobs" - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "This path is relative to: " -msgstr "Đường dẫn này dẫn đến: " - -#: websiteFunctions/templates/websiteFunctions/website.html:323 -msgid "Leave empty to set default." -msgstr "Để trống để đặt mặc định." - -#: websiteFunctions/templates/websiteFunctions/website.html:380 -msgid "Create Domain" -msgstr "Tạo tên miền" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "PHP Version Changed to:" -msgstr "Phiên bản PHP đã thay đổi thành:" - -#: websiteFunctions/templates/websiteFunctions/website.html:445 -msgid "Deleted:" -msgstr "Đã xóa:" - -#: websiteFunctions/templates/websiteFunctions/website.html:449 -msgid "SSL Issued:" -msgstr "Đã cấp SSL:" - -#: websiteFunctions/templates/websiteFunctions/website.html:453 -msgid "Changes applied successfully." -msgstr "Đã áp dụng thay đổi thành công." - #~ msgid "CPU Status" #~ msgstr "Trạng thái CPU" diff --git a/plogical/CyberCPLogFileWriter.py b/plogical/CyberCPLogFileWriter.py index 2ff68a41d..15f991e94 100644 --- a/plogical/CyberCPLogFileWriter.py +++ b/plogical/CyberCPLogFileWriter.py @@ -39,9 +39,12 @@ class CyberCPLogFileWriter: return "File was empty" @staticmethod - def statusWriter(tempStatusPath, mesg): + def statusWriter(tempStatusPath, mesg, append = None): try: - statusFile = open(tempStatusPath, 'a') + if append == None: + statusFile = open(tempStatusPath, 'w') + else: + statusFile = open(tempStatusPath, 'a') statusFile.writelines(mesg) statusFile.close() except BaseException, msg: diff --git a/plogical/applicationInstaller.py b/plogical/applicationInstaller.py index 5e756f774..48f4626e3 100644 --- a/plogical/applicationInstaller.py +++ b/plogical/applicationInstaller.py @@ -59,6 +59,37 @@ class ApplicationInstaller(multi.Thread): except BaseException, msg: logging.writeToFile( str(msg) + ' [ApplicationInstaller.installWPCLI]') + def dataLossCheck(self, finalPath, tempStatusPath): + + dirFiles = os.listdir(finalPath) + + if len(dirFiles) == 1: + if dirFiles[0] == ".well-known" or dirFiles[0] == 'index.html': + return 1 + else: + statusFile = open(tempStatusPath, 'w') + statusFile.writelines( + "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") + statusFile.close() + return 0 + elif len(dirFiles) == 2: + if ".well-known" in dirFiles and "index.html" in dirFiles: + return 1 + else: + statusFile = open(tempStatusPath, 'w') + statusFile.writelines( + "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") + statusFile.close() + return 0 + elif len(dirFiles) == 0: + return 1 + else: + statusFile = open(tempStatusPath, 'w') + statusFile.writelines( + "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") + statusFile.close() + return 0 + def installGit(self): try: if os.path.exists("/etc/lsb-release"): @@ -208,26 +239,9 @@ class ApplicationInstaller(multi.Thread): ## checking for directories/files - dirFiles = os.listdir(finalPath) - - if len(dirFiles) == 1: - if dirFiles[0] == ".well-known": - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines("Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() - return 0 - elif len(dirFiles) == 0: - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines( - "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() + if self.dataLossCheck(finalPath, tempStatusPath) == 0: return 0 - #### statusFile = open(tempStatusPath, 'w') @@ -396,23 +410,7 @@ class ApplicationInstaller(multi.Thread): ## checking for directories/files - dirFiles = os.listdir(finalPath) - - if len(dirFiles) == 1: - if dirFiles[0] == ".well-known": - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines("Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() - return 0 - elif len(dirFiles) == 0: - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines( - "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() + if self.dataLossCheck(finalPath, tempStatusPath) == 0: return 0 #### @@ -564,23 +562,7 @@ class ApplicationInstaller(multi.Thread): ## checking for directories/files - dirFiles = os.listdir(finalPath) - - if len(dirFiles) == 1: - if dirFiles[0] == ".well-known": - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines("Target directory should be empty before attaching GIT, otherwise data loss could occur." + " [404]") - statusFile.close() - return 0 - elif len(dirFiles) == 0: - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines( - "Target directory should be empty before attaching GIT, otherwise data loss could occur." + " [404]") - statusFile.close() + if self.dataLossCheck(finalPath, tempStatusPath) == 0: return 0 #### @@ -737,23 +719,7 @@ class ApplicationInstaller(multi.Thread): ## checking for directories/files - dirFiles = os.listdir(finalPath) - - if len(dirFiles) == 1: - if dirFiles[0] == ".well-known": - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines("Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() - return 0 - elif len(dirFiles) == 0: - pass - else: - statusFile = open(tempStatusPath, 'w') - statusFile.writelines( - "Target directory should be empty before installation, otherwise data loss could occur." + " [404]") - statusFile.close() + if self.dataLossCheck(finalPath, tempStatusPath) == 0: return 0 ## Get Joomla diff --git a/plogical/processUtilities.py b/plogical/processUtilities.py index a53a2b77e..750ba2612 100644 --- a/plogical/processUtilities.py +++ b/plogical/processUtilities.py @@ -82,6 +82,12 @@ class ProcessUtilities: @staticmethod def killLiteSpeed(): + try: + command = 'sudo systemctl stop lsws' + ProcessUtilities.executioner(command) + except: + pass + pids = ProcessUtilities.getLitespeedProcessNumber() if pids !=0: for items in pids: diff --git a/plogical/virtualHostUtilities.py b/plogical/virtualHostUtilities.py index a790edba5..6b0420d7e 100644 --- a/plogical/virtualHostUtilities.py +++ b/plogical/virtualHostUtilities.py @@ -25,7 +25,7 @@ from dnsUtilities import DNS from vhost import vhost from applicationInstaller import ApplicationInstaller from acl import ACLManager - +from processUtilities import ProcessUtilities ## If you want justice, you have come to the wrong place. @@ -429,22 +429,25 @@ class virtualHostUtilities: destPrivKey = "/usr/local/lscp/key.pem" destCert = "/usr/local/lscp/cert.pem" + pathToStoreSSLFullChain = '/etc/letsencrypt/live/' + virtualHost + '/fullchain.pem' + pathToStoreSSLPrivKey = '/etc/letsencrypt/live/' + virtualHost + '/privkey.pem' + ## removing old certs for lscpd if os.path.exists(destPrivKey): os.remove(destPrivKey) if os.path.exists(destCert): os.remove(destCert) + + adminEmail = "email@" + virtualHost - retValues = sslUtilities.issueSSLForDomain(virtualHost, adminEmail, path) + if not os.path.exists(pathToStoreSSLFullChain): + retValues = sslUtilities.issueSSLForDomain(virtualHost, adminEmail, path) - if retValues[0] == 0: - print "0," + str(retValues[1]) - return 0, retValues[1] - - pathToStoreSSLFullChain = '/etc/letsencrypt/live/' + virtualHost + '/fullchain.pem' - pathToStoreSSLPrivKey = '/etc/letsencrypt/live/' + virtualHost + '/privkey.pem' + if retValues[0] == 0: + print "0," + str(retValues[1]) + return 0, retValues[1] shutil.copy(pathToStoreSSLPrivKey, destPrivKey) shutil.copy(pathToStoreSSLFullChain, destCert) @@ -469,12 +472,13 @@ class virtualHostUtilities: srcFullChain = '/etc/letsencrypt/live/' + virtualHost + '/fullchain.pem' srcPrivKey = '/etc/letsencrypt/live/' + virtualHost + '/privkey.pem' - adminEmail = "email@" + virtualHost - retValues = sslUtilities.issueSSLForDomain(virtualHost, adminEmail, path) + if not os.path.exists(srcFullChain): + adminEmail = "email@" + virtualHost + retValues = sslUtilities.issueSSLForDomain(virtualHost, adminEmail, path) - if retValues[0] == 0: - print "0," + str(retValues[1]) - return 0, retValues[1] + if retValues[0] == 0: + print "0," + str(retValues[1]) + return 0, retValues[1] ## MailServer specific functions @@ -567,34 +571,54 @@ class virtualHostUtilities: print "0, This domain already exists as vHost or Alias." return + if ProcessUtilities.decideServer() == ProcessUtilities.OLS: + confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") + data = open(confPath, 'r').readlines() + writeToFile = open(confPath, 'w') + listenerTrueCheck = 0 - confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") - data = open(confPath, 'r').readlines() - writeToFile = open(confPath, 'w') - listenerTrueCheck = 0 + for items in data: + if items.find("listener") > -1 and items.find("Default") > -1: + listenerTrueCheck = 1 + if items.find(' ' + masterDomain) > -1 and items.find('map') > -1 and listenerTrueCheck == 1: + data = filter(None, items.split(" ")) + if data[1] == masterDomain: + writeToFile.writelines(items.rstrip('\n') + ", " + aliasDomain + "\n") + listenerTrueCheck = 0 + else: + writeToFile.writelines(items) - for items in data: - if items.find("listener") > -1 and items.find("Default") > -1: - listenerTrueCheck = 1 - if items.find(' ' + masterDomain) > -1 and items.find('map') > -1 and listenerTrueCheck == 1: - data = filter(None, items.split(" ")) - if data[1] == masterDomain: - writeToFile.writelines(items.rstrip('\n') + ", " + aliasDomain + "\n") - listenerTrueCheck = 0 - else: - writeToFile.writelines(items) + writeToFile.close() + else: + completePathToConf = virtualHostUtilities.Server_root + '/conf/vhosts/' + masterDomain + '/vhost.conf' + data = open(completePathToConf, 'r').readlines() - writeToFile.close() + writeToFile = open(completePathToConf, 'w') + + for items in data: + if items.find('ServerAlias') > -1: + items = items.strip('\n') + writeToFile.writelines(items + " " + aliasDomain + "\n") + else: + writeToFile.writelines(items) + + writeToFile.close() installUtilities.installUtilities.reStartLiteSpeed() if ssl == 1: retValues = sslUtilities.issueSSLForDomain(masterDomain, administratorEmail, sslPath, aliasDomain) - if retValues[0] == 0: - print "0," + str(retValues[1]) - return + if ProcessUtilities.decideServer() == ProcessUtilities.OLS: + if retValues[0] == 0: + print "0," + str(retValues[1]) + return + else: + vhost.createAliasSSLMap(confPath, masterDomain, aliasDomain) else: - vhost.createAliasSSLMap(confPath, masterDomain, aliasDomain) + retValues = sslUtilities.issueSSLForDomain(masterDomain, administratorEmail, sslPath, aliasDomain) + if retValues[0] == 0: + print "0," + str(retValues[1]) + return website = Websites.objects.get(domain=masterDomain) @@ -611,19 +635,22 @@ class virtualHostUtilities: def issueAliasSSL(masterDomain, aliasDomain, sslPath, administratorEmail): try: - confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") - retValues = sslUtilities.issueSSLForDomain(masterDomain, administratorEmail, sslPath, aliasDomain) - if retValues[0] == 0: - print "0," + str(retValues[1]) - return + if ProcessUtilities.decideServer() == ProcessUtilities.OLS: + confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") + if retValues[0] == 0: + print "0," + str(retValues[1]) + return + else: + vhost.createAliasSSLMap(confPath, masterDomain, aliasDomain) else: - vhost.createAliasSSLMap(confPath, masterDomain, aliasDomain) + if retValues[0] == 0: + print "0," + str(retValues[1]) + return print "1,None" - except BaseException, msg: logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [issueAliasSSL]") @@ -631,104 +658,178 @@ class virtualHostUtilities: @staticmethod def deleteAlias(masterDomain, aliasDomain): - try: + if ProcessUtilities.decideServer() == ProcessUtilities.OLS: + try: - confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") + confPath = os.path.join(virtualHostUtilities.Server_root, "conf/httpd_config.conf") - data = open(confPath, 'r').readlines() - writeToFile = open(confPath, 'w') - aliases = [] + data = open(confPath, 'r').readlines() + writeToFile = open(confPath, 'w') + aliases = [] - for items in data: - if items.find(masterDomain) > -1 and items.find('map') > -1: - data = filter(None, items.split(" ")) - if data[1] == masterDomain: - length = len(data) - for i in range(3, length): - currentAlias = data[i].rstrip(',').strip('\n') - if currentAlias != aliasDomain: - aliases.append(currentAlias) + for items in data: + if items.find(masterDomain) > -1 and items.find('map') > -1: + data = filter(None, items.split(" ")) + if data[1] == masterDomain: + length = len(data) + for i in range(3, length): + currentAlias = data[i].rstrip(',').strip('\n') + if currentAlias != aliasDomain: + aliases.append(currentAlias) - aliasString = "" + aliasString = "" - for alias in aliases: - aliasString = ", " + alias + for alias in aliases: + aliasString = ", " + alias + + writeToFile.writelines( + ' map ' + masterDomain + " " + masterDomain + aliasString + "\n") + aliases = [] + aliasString = "" + else: + writeToFile.writelines(items) - writeToFile.writelines( - ' map ' + masterDomain + " " + masterDomain + aliasString + "\n") - aliases = [] - aliasString = "" else: writeToFile.writelines(items) - else: - writeToFile.writelines(items) + writeToFile.close() + installUtilities.installUtilities.reStartLiteSpeed() - writeToFile.close() - installUtilities.installUtilities.reStartLiteSpeed() + delAlias = aliasDomains.objects.get(aliasDomain=aliasDomain) + delAlias.delete() - delAlias = aliasDomains.objects.get(aliasDomain=aliasDomain) - delAlias.delete() + print "1,None" + except BaseException, msg: + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [deleteAlias]") + print "0," + str(msg) + else: + try: - print "1,None" + completePathToConf = virtualHostUtilities.Server_root + '/conf/vhosts/' + masterDomain + '/vhost.conf' + data = open(completePathToConf, 'r').readlines() + writeToFile = open(completePathToConf, 'w') - except BaseException, msg: - logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [deleteAlias]") - print "0," + str(msg) + for items in data: + if items.find('ServerAlias') > -1: + writeToFile.writelines(items.replace(' ' + aliasDomain, '')) + else: + writeToFile.writelines(items) + + writeToFile.close() + installUtilities.installUtilities.reStartLiteSpeed() + + alias = aliasDomains.objects.get(aliasDomain=aliasDomain) + alias.delete() + + print "1,None" + except BaseException, msg: + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [deleteAlias]") + print "0," + str(msg) @staticmethod def changeOpenBasedir(domainName, openBasedirValue): - try: + if ProcessUtilities.decideServer() == ProcessUtilities.OLS: + try: + confPath = virtualHostUtilities.Server_root + "/conf/vhosts/" + domainName + completePathToConfigFile = confPath + "/vhost.conf" - confPath = virtualHostUtilities.Server_root + "/conf/vhosts/" + domainName - completePathToConfigFile = confPath + "/vhost.conf" - - data = open(completePathToConfigFile, 'r').readlines() + data = open(completePathToConfigFile, 'r').readlines() - if openBasedirValue == 'Disable': - writeToFile = open(completePathToConfigFile, 'w') - for items in data: - if items.find('php_admin_value') > -1: - continue - writeToFile.writelines(items) - writeToFile.close() - else: - - ## Check if phpini already active - - fileManagerCheck = 0 - - writeToFile = open(completePathToConfigFile, 'w') - for items in data: - - if items.find('context /.filemanager') > -1: - writeToFile.writelines(items) - fileManagerCheck = 1 - continue - - if items.find('phpIniOverride') > -1: - writeToFile.writelines(items) - if fileManagerCheck == 1: - writeToFile.writelines('php_admin_value open_basedir "/tmp:/usr/local/lsws/Example/html/FileManager:$VH_ROOT"\n') - fileManagerCheck = 0 + if openBasedirValue == 'Disable': + writeToFile = open(completePathToConfigFile, 'w') + for items in data: + if items.find('php_admin_value') > -1: continue + writeToFile.writelines(items) + writeToFile.close() + else: + + ## Check if phpini already active + + fileManagerCheck = 0 + + writeToFile = open(completePathToConfigFile, 'w') + for items in data: + + if items.find('context /.filemanager') > -1: + writeToFile.writelines(items) + fileManagerCheck = 1 + continue + + if items.find('phpIniOverride') > -1: + writeToFile.writelines(items) + if fileManagerCheck == 1: + writeToFile.writelines('php_admin_value open_basedir "/tmp:/usr/local/lsws/Example/html/FileManager:$VH_ROOT"\n') + fileManagerCheck = 0 + continue + else: + writeToFile.writelines('php_admin_value open_basedir "/tmp:$VH_ROOT"\n') + continue + + writeToFile.writelines(items) + + writeToFile.close() + + installUtilities.installUtilities.reStartLiteSpeed() + print "1,None" + except BaseException, msg: + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [changeOpenBasedir]") + print "0," + str(msg) + else: + try: + confPath = virtualHostUtilities.Server_root + "/conf/vhosts/" + domainName + completePathToConfigFile = confPath + "/vhost.conf" + + data = open(completePathToConfigFile, 'r').readlines() + + if openBasedirValue == 'Disable': + writeToFile = open(completePathToConfigFile, 'w') + for items in data: + if items.find('open_basedir') > -1: + continue + writeToFile.writelines(items) + writeToFile.close() + else: + + ## Check if phpini already active + path = '' + + try: + childDomain = ChildDomains.objects.get(domain=domainName) + path = childDomain.path + except: + path = '/home/' + domainName + '/public_html' + + activate = 0 + writeToFile = open(completePathToConfigFile, 'w') + for items in data: + if items.find('CustomLog ') > -1: + activate = 1 + writeToFile.writelines(items) + continue + + if activate == 1: + activate = 0 + if items.find('open_basedir') > -1: + writeToFile.writelines(items) + continue + else: + writeToFile.writelines( + ' php_admin_value open_basedir /usr/local/lsws/FileManager:/tmp:' + path + '\n') + writeToFile.writelines(items) + continue else: - writeToFile.writelines('php_admin_value open_basedir "/tmp:$VH_ROOT"\n') - continue + writeToFile.writelines(items) - writeToFile.writelines(items) + writeToFile.close() - writeToFile.close() - - installUtilities.installUtilities.reStartLiteSpeed() - print "1,None" - - - except BaseException, msg: - logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [changeOpenBasedir]") - print "0," + str(msg) + installUtilities.installUtilities.reStartLiteSpeed() + print "1,None" + except BaseException, msg: + logging.CyberCPLogFileWriter.writeToFile(str(msg) + " [changeOpenBasedir]") + print "0," + str(msg) @staticmethod def saveSSL(virtualHost, keyPath, certPath): diff --git a/plogical/website.py b/plogical/website.py index e35f3c6d3..6eb595bd7 100644 --- a/plogical/website.py +++ b/plogical/website.py @@ -965,8 +965,9 @@ class WebsiteManager: json_data = json.dumps(data_ret) return HttpResponse(json_data) - def getWebsiteCron(self, userID = None, data = None): + def getWebsiteCron(self, userID=None, data=None): try: + currentACL = ACLManager.loadedACL(userID) admin = Administrator.objects.get(pk=userID) self.domain = data['domain'] @@ -976,7 +977,6 @@ class WebsiteManager: else: return ACLManager.loadErrorJson('getWebsiteCron', 0) - website = Websites.objects.get(domain=self.domain) if Websites.objects.filter(domain=self.domain).exists(): @@ -999,8 +999,8 @@ class WebsiteManager: crons = [] try: - f = subprocess.check_output(["sudo", "cat", cronPath]) - print f + # f = subprocess.check_output(["sudo", "cat", cronPath]) + f = subprocess.check_output(["sudo", "crontab", "-u", website.externalApp, "-l"]) except subprocess.CalledProcessError as error: dic = {'getWebsiteCron': 0, 'error_message': 'Unable to access Cron file'} json_data = json.dumps(dic) @@ -1009,8 +1009,6 @@ class WebsiteManager: for line in f.split("\n"): if line: split = line.split(" ", 5) - print line - print split if len(split) == 6: counter += 1 crons.append({"line": counter, @@ -1021,8 +1019,6 @@ class WebsiteManager: "weekday": split[4], "command": split[5]}) - print json.dumps(crons) - data_ret = {'getWebsiteCron': 1, "user": website.externalApp, "crons": crons} final_json = json.dumps(data_ret) return HttpResponse(final_json) @@ -1032,7 +1028,7 @@ class WebsiteManager: json_data = json.dumps(dic) return HttpResponse(json_data) - def getCronbyLine(self, userID = None, data = None): + def getCronbyLine(self, userID=None, data=None): try: currentACL = ACLManager.loadedACL(userID) @@ -1046,7 +1042,6 @@ class WebsiteManager: else: return ACLManager.loadErrorJson('getWebsiteCron', 0) - if Websites.objects.filter(domain=self.domain).exists(): pass else: @@ -1061,7 +1056,8 @@ class WebsiteManager: crons = [] try: - f = subprocess.check_output(["sudo", "cat", cronPath]) + # f = subprocess.check_output(["sudo", "cat", cronPath]) + f = subprocess.check_output(["sudo", "/usr/bin/crontab", "-u", website.externalApp, "-l"]) print f except subprocess.CalledProcessError as error: dic = {'getWebsiteCron': 0, 'error_message': 'Unable to access Cron file'} @@ -1101,7 +1097,7 @@ class WebsiteManager: json_data = json.dumps(dic) return HttpResponse(json_data) - def saveCronChanges(self, userID = None, data = None): + def saveCronChanges(self, userID=None, data=None): try: currentACL = ACLManager.loadedACL(userID) @@ -1124,17 +1120,20 @@ class WebsiteManager: website = Websites.objects.get(domain=self.domain) - cronPath = "/var/spool/cron/" + website.externalApp tempPath = "/home/cyberpanel/" + website.externalApp + str(randint(10000, 99999)) + ".cron.tmp" finalCron = "%s %s %s %s %s %s" % (minute, hour, monthday, month, weekday, command) - o = subprocess.call(['sudo', 'cp', cronPath, tempPath]) - if o is not 0: - data_ret = {'addNewCron': 0, 'error_message': 'Unable to copy to temporary files'} + output = subprocess.check_output(["sudo", "/usr/bin/crontab", "-u", website.externalApp, "-l"]) + + if "no crontab for" in output: + data_ret = {'addNewCron': 0, 'error_message': 'crontab file does not exists for user'} final_json = json.dumps(data_ret) return HttpResponse(final_json) + with open(tempPath, "w+") as file: + file.write(output) + # Confirming that directory is read/writable o = subprocess.call(['sudo', 'chown', 'cyberpanel:cyberpanel', tempPath]) if o is not 0: @@ -1170,7 +1169,7 @@ class WebsiteManager: json_data = json.dumps(dic) return HttpResponse(json_data) - def remCronbyLine(self, userID = None, data = None): + def remCronbyLine(self, userID=None, data=None): try: currentACL = ACLManager.loadedACL(userID) admin = Administrator.objects.get(pk=userID) @@ -1186,23 +1185,17 @@ class WebsiteManager: line -= 1 website = Websites.objects.get(domain=self.domain) - cronPath = "/var/spool/cron/" + website.externalApp - cmd = 'sudo test -e ' + cronPath + ' && echo Exists' - output = os.popen(cmd).read() + output = subprocess.check_output(["sudo", "/usr/bin/crontab", "-u", website.externalApp, "-l"]) - if "Exists" not in output: - data_ret = {'remCronbyLine': 0, 'error_message': 'No Cron exists for this user'} + if "no crontab for" in output: + data_ret = {'addNewCron': 0, 'error_message': 'No Cron exists for this user'} final_json = json.dumps(data_ret) return HttpResponse(final_json) - cronPath = "/var/spool/cron/" + website.externalApp tempPath = "/home/cyberpanel/" + website.externalApp + str(randint(10000, 99999)) + ".cron.tmp" - o = subprocess.call(['sudo', 'cp', cronPath, tempPath]) - if o is not 0: - data_ret = {'addNewCron': 0, 'error_message': 'Unable to copy to temporary files'} - final_json = json.dumps(data_ret) - return HttpResponse(final_json) + with open(tempPath, "w+") as file: + file.write(output) # Confirming that directory is read/writable o = subprocess.call(['sudo', 'chown', 'cyberpanel:cyberpanel', tempPath]) @@ -1239,7 +1232,7 @@ class WebsiteManager: json_data = json.dumps(dic) return HttpResponse(json_data) - def addNewCron(self, userID = None, data = None): + def addNewCron(self, userID=None, data=None): try: currentACL = ACLManager.loadedACL(userID) @@ -1260,38 +1253,25 @@ class WebsiteManager: website = Websites.objects.get(domain=self.domain) - cronPath = "/var/spool/cron/" + website.externalApp - cmd = 'sudo test -e ' + cronPath + ' && echo Exists' - output = os.popen(cmd).read() + output = subprocess.check_output(["sudo", "/usr/bin/crontab", "-u", website.externalApp, "-l"]) - if "Exists" not in output: + if "no crontab for" in output: echo = subprocess.Popen(('echo'), stdout=subprocess.PIPE) output = subprocess.call(('sudo', 'crontab', '-u', website.externalApp, '-'), stdin=echo.stdout) echo.wait() echo.stdout.close() - # Confirmation - o = subprocess.call(["sudo", "cp", "/dev/null", cronPath]) - cronPath = "/var/spool/cron/" + website.externalApp + if "no crontab for" in output: + data_ret = {'addNewCron': 0, 'error_message': 'Unable to initialise crontab file for user'} + final_json = json.dumps(data_ret) + return HttpResponse(final_json) + tempPath = "/home/cyberpanel/" + website.externalApp + str(randint(10000, 99999)) + ".cron.tmp" finalCron = "%s %s %s %s %s %s" % (minute, hour, monthday, month, weekday, command) - o = subprocess.call(['sudo', 'cp', cronPath, tempPath]) - if o is not 0: - data_ret = {'addNewCron': 0, 'error_message': 'Unable to copy to temporary files'} - final_json = json.dumps(data_ret) - return HttpResponse(final_json) - - # Confirming that directory is read/writable - o = subprocess.call(['sudo', 'chown', 'cyberpanel:cyberpanel', tempPath]) - if o is not 0: - data_ret = {'addNewCron': 0, 'error_message': 'Error Changing Permissions'} - final_json = json.dumps(data_ret) - return HttpResponse(final_json) - with open(tempPath, "a") as file: - file.write(finalCron + "\n") + file.write(output + finalCron + "\n") output = subprocess.call(["sudo", "/usr/bin/crontab", "-u", website.externalApp, tempPath]) diff --git a/serverStatus/serverStatusUtil.py b/serverStatus/serverStatusUtil.py index 41da83b0c..a6391d5b6 100644 --- a/serverStatus/serverStatusUtil.py +++ b/serverStatus/serverStatusUtil.py @@ -166,7 +166,7 @@ class ServerStatusUtil: return 0 if os.path.exists('/etc/letsencrypt/live/' + virtualHostName): - sslUtilities.installSSLForDomain(virtualHostUtilities, website.adminEmail) + sslUtilities.installSSLForDomain(virtualHostName, website.adminEmail) vhostPath = vhost.Server_root + "/conf/vhosts" FNULL = open(os.devnull, 'w') @@ -222,10 +222,24 @@ class ServerStatusUtil: allWebsites = Websites.objects.all() for website in allWebsites: logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "Building vhost conf for:" + website.domain + ".\n") - ServerStatusUtil.createWebsite(website) + "Building vhost conf for: " + website.domain + ".\n", 1) + if ServerStatusUtil.createWebsite(website) == 0: + return 0 + + childs = website.childdomains_set.all() + for child in childs: + if ServerStatusUtil.createDomain(child) == 0: + return 0 + + aliases = website.aliasdomains_set.all() + + for alias in aliases: + aliasDomain = alias.aliasDomain + alias.delete() + virtualHostUtilities.createAlias(website.domain, aliasDomain, 0, '/home', website.adminEmail, website.admin) + logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "vhost conf successfully built for:" + website.domain + ".\n") + "vhost conf successfully built for: " + website.domain + ".\n", 1) except BaseException, msg: logging.CyberCPLogFileWriter.writeToFile(str(msg)) return 0 @@ -238,7 +252,7 @@ class ServerStatusUtil: logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath,"Starting conversion process..\n") logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "Removing OpenLiteSpeed..\n") + "Removing OpenLiteSpeed..\n", 1) ## Try to stop current LiteSpeed Process @@ -247,7 +261,7 @@ class ServerStatusUtil: if os.path.exists('/usr/local/lsws'): command = 'tar -zcvf /usr/local/olsBackup.tar.gz /usr/local/lsws' if ServerStatusUtil.executioner(command, FNULL) == 0: - logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to create backup of current LSWS. [404]") + logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to create backup of current LSWS. [404]", 1) ServerStatusUtil.recover() return 0 @@ -262,43 +276,41 @@ class ServerStatusUtil: pass logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "OpenLiteSpeed removed.\n") + "OpenLiteSpeed removed.\n", 1) logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "Installing LiteSpeed Enterprise Web Server ..\n") + "Installing LiteSpeed Enterprise Web Server ..\n", 1) if ServerStatusUtil.installLiteSpeed(licenseKey, statusFile) == 0: - logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to install LiteSpeed. [404]") + logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to install LiteSpeed. [404]", 1) ServerStatusUtil.recover() return 0 logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "LiteSpeed Enterprise Web Server installed.\n") + "LiteSpeed Enterprise Web Server installed.\n", 1) if ServerStatusUtil.setupFileManager(statusFile) == 0: - logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to set up File Manager. [404]") + logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, "Failed to set up File Manager. [404]", 1) ServerStatusUtil.recover() return 0 logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "Rebuilding vhost conf..\n") + "Rebuilding vhost conf..\n", 1) ServerStatusUtil.rebuildvConf() logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath, - "vhost conf successfully built.\n") + "vhost conf successfully built.\n", 1) - logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath,"Successfully switched to LITESPEED ENTERPRISE WEB SERVER. [200]\n") + logging.CyberCPLogFileWriter.statusWriter(ServerStatusUtil.lswsInstallStatusPath,"Successfully switched to LITESPEED ENTERPRISE WEB SERVER. [200]\n", 1) except BaseException, msg: logging.CyberCPLogFileWriter.writeToFile(str(msg)) ServerStatusUtil.recover() - - def main(): parser = argparse.ArgumentParser(description='Server Status Util.')