From f16b49bc85da775fef9918ec7fc7ac79be012743 Mon Sep 17 00:00:00 2001 From: WhatTheServer Date: Tue, 1 Jun 2021 17:58:07 -0400 Subject: [PATCH 01/31] Update fixperms.sh set user:nobody for public_html --- CPScripts/fixperms.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CPScripts/fixperms.sh b/CPScripts/fixperms.sh index 37c2f5da2..e1ceefdac 100644 --- a/CPScripts/fixperms.sh +++ b/CPScripts/fixperms.sh @@ -194,7 +194,7 @@ fixperms_cyberpanel () { echo "Fixing public_html...." tput sgr0 #Fix perms of public_html itself - chown "$verbose" "$account":"$account" "$HOMEDIR"/public_html + chown "$verbose" "$account":nobody "$HOMEDIR"/public_html chmod "$verbose" 755 "$HOMEDIR"/public_html tput bold From 86dee0fa5db500df7bd5c411f0fa013e9e370e7f Mon Sep 17 00:00:00 2001 From: Joe Regan WebProJoe Date: Tue, 1 Jun 2021 16:59:20 -0500 Subject: [PATCH 02/31] Daily Inc Backups should happen at midnight, not every 12 hours. --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index 46e596624..170c0e5c3 100755 --- a/install/install.py +++ b/install/install.py @@ -1714,7 +1714,7 @@ imap_folder_list_limit = 0 0 2 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/upgradeCritical.py >/dev/null 2>&1 0 2 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/renew.py >/dev/null 2>&1 7 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null -0 12 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Daily +0 0 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Daily 0 0 * * 0 /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Weekly */3 * * * * if ! find /home/*/public_html/ -maxdepth 2 -type f -newer /usr/local/lsws/cgid -name '.htaccess' -exec false {} +; then /usr/local/lsws/bin/lswsctrl restart; fi """ From f4ac678bba16455556cc50b35ecf72ee685a531b Mon Sep 17 00:00:00 2001 From: Michael Ramsey Date: Wed, 2 Jun 2021 08:40:41 -0400 Subject: [PATCH 03/31] Update upgrade to look for 12noon and set to midnight for daily backups --- plogical/upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/upgrade.py b/plogical/upgrade.py index 2ace0c409..7188546ca 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -2399,7 +2399,7 @@ vmail 0 2 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/upgradeCritical.py >/dev/null 2>&1 0 2 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/renew.py >/dev/null 2>&1 7 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null -0 12 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Daily +0 0 * * * /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Daily 0 0 * * 0 /usr/local/CyberCP/bin/python /usr/local/CyberCP/IncBackups/IncScheduler.py Weekly """ writeToFile = open(cronPath, 'w') From b9083e3e7a3e04ba9f7494b79e405a73e8b40fb7 Mon Sep 17 00:00:00 2001 From: Michael Ramsey Date: Tue, 8 Jun 2021 17:55:46 -0400 Subject: [PATCH 04/31] Add desktop OS detection to installer and also missing file --- cyberpanel.sh | 10 ++ install/filesPermsUtilities.py | 190 ++++++++++++++++++++++++++++++++ plogical/filesPermsUtilities.py | 0 3 files changed, 200 insertions(+) create mode 100644 install/filesPermsUtilities.py create mode 100644 plogical/filesPermsUtilities.py diff --git a/cyberpanel.sh b/cyberpanel.sh index 683b1540a..0a100ccb5 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -238,6 +238,16 @@ if [[ ! -f /etc/os-release ]] ; then exit fi +# Reference: https://unix.stackexchange.com/questions/116539/how-to-detect-the-desktop-environment-in-a-bash-script +if [ -z "$XDG_CURRENT_DESKTOP" ]; then + echo "Desktop OS not detected. Proceeding" +else + echo "$XDG_CURRENT_DESKTOP defined appears to be a desktop OS. Bailing as CyberPanel is incompatible." + echo -e "\nCyberPanel is supported on server OS types only. Such as Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x and CloudLinux 7.x...\n" + exit +fi + + if ! uname -m | grep -q 64 ; then echo -e "x64 system is required...\n" exit diff --git a/install/filesPermsUtilities.py b/install/filesPermsUtilities.py new file mode 100644 index 000000000..07261326b --- /dev/null +++ b/install/filesPermsUtilities.py @@ -0,0 +1,190 @@ +import os +import shutil +import pathlib +import stat + + +def mkdir_p(path, exist_ok=True): + """ + Creates the directory and paths leading up to it like unix mkdir -p . + Defaults to exist_ok so if it exists were not throwing fatal errors + https://docs.python.org/3.7/library/os.html#os.makedirs + """ + if not os.path.exists(path): + print('creating directory: ' + path) + os.makedirs(path, exist_ok) + + +def chmod_digit(file_path, perms): + """ + Helper function to chmod like you would in unix without having to preface 0o or converting to octal yourself. + Credits: https://stackoverflow.com/a/60052847/1621381 + """ + try: + os.chmod(file_path, int(str(perms), base=8)) + except: + print(f'Could not chmod : {file_path} to {perms}') + pass + + +def touch(filepath: str, exist_ok=True): + """ + Touches a file like unix `touch somefile` would. + """ + try: + pathlib.Path(filepath).touch(exist_ok) + except FileExistsError: + print('Could touch : ' + filepath) + pass + + +def symlink(src, dst): + """ + Symlink a path to another if the src exists. + """ + try: + if os.access(src, os.R_OK): + os.symlink(src, dst) + except: + print(f'Could not symlink Source: {src} > Destination: {dst}') + pass + + +def chown(path, user, group=-1): + """ + Chown file/path to user/group provided. Passing -1 to user or group will leave it unchanged. + Useful if just changing user or group vs both. + """ + try: + shutil.chown(path, user, group) + except PermissionError: + print(f'Could not change permissions for: {path} to {user}:{group}') + pass + + +def recursive_chown(path, owner, group=-1): + """ + Recursively chown a path and contents to owner. + https://docs.python.org/3/library/shutil.html + """ + for dirpath, dirnames, filenames in os.walk(path): + try: + shutil.chown(dirpath, owner, group) + except PermissionError: + print('Could not change permissions for: ' + dirpath + ' to: ' + owner) + pass + for filename in filenames: + try: + shutil.chown(os.path.join(dirpath, filename), owner, group) + except PermissionError: + print('Could not change permissions for: ' + os.path.join(dirpath, filename) + ' to: ' + owner) + pass + + +def recursive_permissions(path, dir_mode=755, file_mode=644, topdir=True): + """ + Recursively chmod a path and contents to mode. + Defaults to chmod top level directory but can be optionally + toggled off when you want to chmod only contents of like a user's homedir vs homedir itself + https://docs.python.org/3.6/library/os.html#os.walk + """ + + # Here we are converting the integers to string and then to octal. + # so this function doesn't need to be called with 0o prefixed for the file and dir mode + dir_mode = int(str(dir_mode), base=8) + file_mode = int(str(file_mode), base=8) + + if topdir: + # Set chmod on top level path + try: + os.chmod(path, dir_mode) + except: + print('Could not chmod :' + path + ' to ' + str(dir_mode)) + for root, dirs, files in os.walk(path): + for d in dirs: + try: + os.chmod(os.path.join(root, d), dir_mode) + except: + print('Could not chmod :' + os.path.join(root, d) + ' to ' + str(dir_mode)) + pass + for f in files: + try: + os.chmod(os.path.join(root, f), file_mode) + except: + print('Could not chmod :' + path + ' to ' + str(file_mode)) + pass + + +# Left intentionally here for reference. +# Set recursive chown for a path +# recursive_chown(my_path, 'root', 'root') +# for changing group recursively without affecting user +# recursive_chown('/usr/local/lscp/cyberpanel/rainloop/data', -1, 'lscpd') + +# explicitly set permissions for directories/folders to 0755 and files to 0644 +# recursive_permissions(my_path, 755, 644) + +# Fix permissions and use default values +# recursive_permissions(my_path) +# ========================================================= +# Below is a helper class for getting and working with permissions +# Original credits to : https://github.com/keysemble/perfm + +def perm_octal_digit(rwx): + digit = 0 + if rwx[0] == 'r': + digit += 4 + if rwx[1] == 'w': + digit += 2 + if rwx[2] == 'x': + digit += 1 + return digit + + +class FilePerm: + def __init__(self, filepath): + filemode = stat.filemode(os.stat(filepath).st_mode) + permissions = [filemode[-9:][i:i + 3] for i in range(0, len(filemode[-9:]), 3)] + self.filepath = filepath + self.access_dict = dict(zip(['user', 'group', 'other'], [list(perm) for perm in permissions])) + + def mode(self): + mode = 0 + for shift, digit in enumerate(self.octal()[::-1]): + mode += digit << (shift * 3) + return mode + + def digits(self): + """Get the octal chmod equivalent value 755 in single string""" + return "".join(map(str, self.octal())) + + def octal(self): + """Get the octal value in a list [7, 5, 5]""" + return [perm_octal_digit(p) for p in self.access_dict.values()] + + def access_bits(self, access): + if access in self.access_dict.keys(): + r, w, x = self.access_dict[access] + return [r == 'r', w == 'w', x == 'x'] + + def update_bitwise(self, settings): + def perm_list(read=False, write=False, execute=False): + pl = ['-', '-', '-'] + if read: + pl[0] = 'r' + if write: + pl[1] = 'w' + if execute: + pl[2] = 'x' + return pl + + self.access_dict = dict( + [(access, perm_list(read=r, write=w, execute=x)) for access, [r, w, x] in settings.items()]) + os.chmod(self.filepath, self.mode()) + +# project_directory = os.path.abspath(os.path.dirname(sys.argv[0])) +# home_directory = os.path.expanduser('~') +# print(f'Path: {home_directory} Mode: {FilePerm(home_directory).mode()} Octal: {FilePerm(home_directory).octal()} ' +# f'Digits: {FilePerm(home_directory).digits()}') +# Example: Output +# Path: /home/cooluser Mode: 493 Octal: [7, 5, 5] Digits: 755 diff --git a/plogical/filesPermsUtilities.py b/plogical/filesPermsUtilities.py new file mode 100644 index 000000000..e69de29bb From 9b5069cf06bb0eb48f6cda001f7247674a3d8b05 Mon Sep 17 00:00:00 2001 From: WhatTheServer Date: Tue, 8 Jun 2021 18:06:15 -0400 Subject: [PATCH 05/31] Update cyberpanel.sh Add desktop Os detection and bail --- cyberpanel.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 0a100ccb5..47c428781 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -113,7 +113,7 @@ echo -e "\n${1}=${2}\n" >> /tmp/cyberpanel_debug.log Debug_Log2() { Check_Server_IP "$@" >/dev/null 2>&1 echo -e "\n${1}" >> /var/log/installLogs.txt -curl -d '{"ipAddress": "'"$Server_IP"'", "InstallCyberPanelStatus": "'"$1"'"}' -H "Content-Type: application/json" -X POST https://cloud.cyberpanel.net/servers/RecvData >/dev/null 2>&1 +curl --max-time 20 -d '{"ipAddress": "'"$Server_IP"'", "InstallCyberPanelStatus": "'"$1"'"}' -H "Content-Type: application/json" -X POST https://cloud.cyberpanel.net/servers/RecvData >/dev/null 2>&1 } Branch_Check() { @@ -474,7 +474,7 @@ else Admin_Pass="1234567" else if [[ ${#1} -lt 8 ]]; then - echo -e "\nPassword lenth less than 8 digital, please choose a more complicated password.\n" + echo -e "\nPassword length less than 8 digital, please choose a more complicated password.\n" exit fi Admin_Pass="${1}" @@ -732,7 +732,7 @@ elif [[ $Tmp_Input =~ ^(s|S) ]]; then exit fi if [[ ${#Tmp_Input} -lt 8 ]]; then - echo -e "\nPassword lenth less than 8 digital, please choose a more complicated password.\n" + echo -e "\nPassword length less than 8 digital, please choose a more complicated password.\n" exit fi Tmp_Input1=$Tmp_Input @@ -1004,7 +1004,7 @@ else update-locale LC_ALL="en_US.UTF-8" fi -Debug_Log2 "Installing required virtual enviroment,3" +Debug_Log2 "Installing required virtual environment,3" export LC_CTYPE=en_US.UTF-8 export LC_ALL=en_US.UTF-8 @@ -1051,7 +1051,7 @@ Debug_Log2 "Necessary components installed..,5" } Pre_Install_System_Tweak() { -Debug_Log2 "Setting up sytem tweak...,20" +Debug_Log2 "Setting up system tweak...,20" Line_Number=$(grep -n "127.0.0.1" /etc/hosts | cut -d: -f 1) My_Hostname=$(hostname) @@ -1211,8 +1211,8 @@ else fi if ./lshttpd -V |& grep "ERROR" || ./lshttpd -V |& grep "expire in 0 days" ; then - echo -e "\n\nIt apeears to have some issue with license , please check above result..." - Debug_Log2 "It appears to have some issue with LiteSpeed License, make sure you are using correct serial key. [404]" + echo -e "\n\nThere appears to be an issue with license , please check above result..." + Debug_Log2 "There appears to be an issue with LiteSpeed License, make sure you are using correct serial key. [404]" exit fi From d0f81a63f509b4c1f71d366ff36f0fe6a0277073 Mon Sep 17 00:00:00 2001 From: WhatTheServer Date: Tue, 8 Jun 2021 18:11:31 -0400 Subject: [PATCH 06/31] Update cyberpanel.sh --- cyberpanel.sh | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 47c428781..4400efb5d 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -1752,7 +1752,29 @@ if [[ "$Server_OS" = "CentOS" ]] ; then if [[ "$Server_OS_Version" = "7" ]] ; then #all centos 7 specific post change goes here - : + if ! yum list installed lsphp74-devel ; then + yum install -y lsphp74-devel + fi + if [[ ! -f /usr/local/lsws/lsphp74/lib64/php/modules/zip.so ]] ; then + if yum list installed libzip-devel >/dev/null 2>&1 ; then + yum remove -y libzip-devel + fi + yum install -y https://cyberpanel.sh/misc/libzip-0.11.2-6.el7.psychotic.x86_64.rpm + yum install -y https://cyberpanel.sh/misc/libzip-devel-0.11.2-6.el7.psychotic.x86_64.rpm + yum install lsphp74-devel + if [[ ! -d /usr/local/lsws/lsphp74/tmp ]]; then + mkdir /usr/local/lsws/lsphp74/tmp + fi + /usr/local/lsws/lsphp74/bin/pecl channel-update pecl.php.net + /usr/local/lsws/lsphp74/bin/pear config-set temp_dir /usr/local/lsws/lsphp74/tmp + if /usr/local/lsws/lsphp74/bin/pecl install zip ; then + echo "extension=zip.so" >/usr/local/lsws/lsphp74/etc/php.d/20-zip.ini + chmod 755 /usr/local/lsws/lsphp74/lib64/php/modules/zip.so + else + echo -e "\nlsphp74-zip compilation failed..." + fi + #fix compile lsphp74-zip on centos 7 + fi fi if [[ "$Server_OS_Version" = "8" ]] ; then From d2e02e3b131aafeb4ee329e2892b3ffe18e8e0bc Mon Sep 17 00:00:00 2001 From: qtwrk Date: Sat, 12 Jun 2021 00:50:57 +0200 Subject: [PATCH 07/31] Update install.py --- install/install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/install.py b/install/install.py index 170c0e5c3..661f4596d 100755 --- a/install/install.py +++ b/install/install.py @@ -58,6 +58,8 @@ def get_distro(): return cent8 if data.find('AlmaLinux release 8') > -1: return cent8 + if data.find('Rocky Linux release 8') > -1: + return cent8 else: logging.InstallLog.writeToFile("Can't find linux release file - fatal error") From dacb39c472623fe1cc86d674bad204f8ebfaeac9 Mon Sep 17 00:00:00 2001 From: qtwrk Date: Sat, 12 Jun 2021 01:00:15 +0200 Subject: [PATCH 08/31] Update cyberpanel.sh --- cyberpanel.sh | 54 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 4400efb5d..8d3e22c85 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -5,7 +5,7 @@ #set -u -#CyberPanel installer script for CentOS 7.X, CentOS 8.X, CloudLinux 7.X, Ubuntu 18.04, Ubuntu 20.04 , Ubuntu 20.10 and AlmaLinux 8.X +#CyberPanel installer script for CentOS 7.X, CentOS 8.X, CloudLinux 7.X, RockyLinux 8.X, Ubuntu 18.04, Ubuntu 20.04 , Ubuntu 20.10 and AlmaLinux 8.X #For whoever may edit this script, please follow : #Please use Pre_Install_xxx() and Post_Install_xxx() if you want to something respectively before or after the panel installation #and update below accordingly @@ -16,7 +16,7 @@ #Set_Default_Variables() ---> set some default variable for later use #Check_Root() ---> check for root #Check_Server_IP() ---> check for server IP and geolocation at country level -#Check_OS() ---> check system , support on centos7/8 ubutnu18/20 and cloudlinux 7 , 8 is untested. +#Check_OS() ---> check system , support on centos7/8, rockylinux 8.x , almalinux 8.x ubutnu18/20 and cloudlinux 7 , 8 is untested. #Check_Virtualization() ---> check for virtualizaon , #LXC not supported# , some edit needed on OVZ #Check_Panel() ---> check to make sure no other panel is installed #Check_Process() ---> check no other process like Apache is running @@ -174,7 +174,12 @@ Retry_Command() { # shellcheck disable=SC2034 for i in {1..50}; do - $1 && break || echo -e "\n$1 has failed for $i times\nWait for 3 seconds and try again...\n"; sleep 3; + if [[ "$i" = "50" ]] ; then + echo "command $1 failed for 50 times, exit..." + exit 2 + else + $1 && break || echo -e "\n$1 has failed for $i times\nWait for 3 seconds and try again...\n"; sleep 3; + fi done } @@ -261,10 +266,12 @@ elif grep -q -E "CloudLinux 7|CloudLinux 8" /etc/os-release ; then Server_OS="CloudLinux" elif grep -q -E "Ubuntu 18.04|Ubuntu 20.04|Ubuntu 20.10" /etc/os-release ; then Server_OS="Ubuntu" +elif grep -q -E "Rocky Linux" /etc/os-release ; then + Server_OS="RockyLinux" else echo -e "Unable to detect your system..." - echo -e "\nCyberPanel is supported on Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x and CloudLinux 7.x...\n" - Debug_Log2 "CyberPanel is supported on Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x and CloudLinux 7.x... [404]" + echo -e "\nCyberPanel is supported on Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x, RockyLinux 8.x, CloudLinux 7.x, CloudLinux 8.x...\n" + Debug_Log2 "CyberPanel is supported on Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x, RockyLinux 8.x, CloudLinux 7.x, CloudLinux 8.x... [404]" exit fi @@ -273,10 +280,10 @@ Server_OS_Version=$(grep VERSION_ID /etc/os-release | awk -F[=,] '{print $2}' | echo -e "System: $Server_OS $Server_OS_Version detected...\n" -if [[ $Server_OS = "CloudLinux" ]] || [[ "$Server_OS" = "AlmaLinux" ]] ; then +if [[ $Server_OS = "CloudLinux" ]] || [[ "$Server_OS" = "AlmaLinux" ]] || [[ "$Server_OS" = "RockyLinux" ]] ; then Server_OS="CentOS" #CloudLinux gives version id like 7.8 , 7.9 , so cut it to show first number only - #treat CL and Alma as CentOS + #treat CL , Rocky and Alma as CentOS fi if [[ "$Debug" = "On" ]] ; then @@ -426,7 +433,7 @@ echo -e "\nThis will install LiteSpeed Enterise , replace LICENSE_KEY to actual Check_Argument() { if [[ "$#" = "0" ]] || [[ "$#" = "1" && "$1" = "--debug" ]] || [[ "$#" = "1" && "$1" = "--mirror" ]]; then - echo -e "\nInitializing...\n" + echo -e "\nInitialized...\n" else if [[ $1 = "help" ]]; then Show_Help @@ -573,25 +580,20 @@ echo -e " CyberPanel Installer v$Panel_Version.$Panel_Build 1. Install CyberPanel. -2. Addons and Miscellaneous - -3. Exit. +2. Exit. " -read -r -p " Please enter the number[1-3]: " Input_Number +read -r -p " Please enter the number[1-2]: " Input_Number echo "" case "$Input_Number" in 1) Interactive_Mode_Set_Parameter ;; 2) - Interactive_Mode_Addon - ;; - 3) exit ;; *) - echo -e " Please enter the right number [1-3]\n" + echo -e " Please enter the right number [1-2]\n" exit ;; esac @@ -976,7 +978,7 @@ if [[ "$Server_OS" = "CentOS" ]] ; then yum -y groupinstall development Check_Return elif [[ "$Server_OS_Version" = "8" ]] ; then - dnf install -y zip wget strace net-tools curl which bc telnet htop libevent-devel gcc libattr-devel xz-devel mariadb-devel curl-devel git platform-python-devel tar socat python3 zip unzip bind-utils + dnf install -y libnsl zip wget strace net-tools curl which bc telnet htop libevent-devel gcc libattr-devel xz-devel mariadb-devel curl-devel git platform-python-devel tar socat python3 zip unzip bind-utils Check_Return dnf install -y gpgme-devel Check_Return @@ -985,6 +987,9 @@ if [[ "$Server_OS" = "CentOS" ]] ; then else apt update -y DEBIAN_FRONTEND=noninteractive apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" + if [[ "$Server_Provider" = "Alibaba Cloud" ]] ; then + apt install -y --allow-downgrades libgnutls30=3.6.13-2ubuntu1.3 + fi DEBIAN_FRONTEND=noninteracitve apt install -y dnsutils net-tools htop telnet libcurl4-gnutls-dev libgnutls28-dev libgcrypt20-dev libattr1 libattr1-dev liblzma-dev libgpgme-dev libmariadbclient-dev libcurl4-gnutls-dev libssl-dev nghttp2 libnghttp2-dev idn2 libidn2-dev libidn2-0-dev librtmp-dev libpsl-dev nettle-dev libgnutls28-dev libldap2-dev libgssapi-krb5-2 libk5crypto3 libkrb5-dev libcomerr2 libldap2-dev virtualenv git socat vim unzip zip Check_Return @@ -1078,7 +1083,13 @@ if [[ "$Server_OS" = "CentOS" ]] ; then fi #CentOS 7 specific change if [[ "$Server_OS_Version" = "8" ]] ; then - : + if grep -q -E "Rocky Linux" /etc/os-release ; then + if [[ "$Server_Country" = "CN" ]] ; then + sed -i 's|rpm -Uvh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el8.noarch.rpm|curl -o /etc/yum.repos.d/litespeed.repo https://cyberpanel.sh/litespeed/litespeed_cn.repo|g' install.py + else + sed -i 's|rpm -Uvh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el8.noarch.rpm|curl -o /etc/yum.repos.d/litespeed.repo https://cyberpanel.sh/litespeed/litespeed.repo|g' install.py + fi + fi fi #CentOS 8 specific change @@ -1103,6 +1114,12 @@ if ! grep -q "pid_max" /etc/rc.local 2>/dev/null ; then echo "echo 1000000 > /proc/sys/kernel/pid_max echo 1 > /sys/kernel/mm/ksm/run" >>/etc/rc.local chmod +x /etc/rc.local + fi + if grep -q "nf_conntrack_max" /etc/sysctl.conf ; then + sysctl -w net.netfilter.nf_conntrack_max=2097152 > /dev/null + sysctl -w net.nf_conntrack_max=2097152 > /dev/null + echo "net.netfilter.nf_conntrack_max=2097152" >> /etc/sysctl.conf + echo "net.nf_conntrack_max=2097152" >> /etc/sysctl.conf fi echo "fs.file-max = 65535" >>/etc/sysctl.conf sysctl -p >/dev/null @@ -1448,6 +1465,7 @@ fi if pgrep "redis" ; then echo -e "\n\nRedis installed and running..." + touch /home/cyberpanel/redis fi } From 0f96516492786d2283e9a5fb73d7d49464e176b0 Mon Sep 17 00:00:00 2001 From: qtwrk Date: Sat, 12 Jun 2021 01:01:54 +0200 Subject: [PATCH 09/31] Update cyberpanel.sh --- cyberpanel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 8d3e22c85..7c6a8afde 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -245,7 +245,7 @@ fi # Reference: https://unix.stackexchange.com/questions/116539/how-to-detect-the-desktop-environment-in-a-bash-script if [ -z "$XDG_CURRENT_DESKTOP" ]; then - echo "Desktop OS not detected. Proceeding" + echo -e "Desktop OS not detected. Proceeding\n" else echo "$XDG_CURRENT_DESKTOP defined appears to be a desktop OS. Bailing as CyberPanel is incompatible." echo -e "\nCyberPanel is supported on server OS types only. Such as Ubuntu 18.04 x86_64, Ubuntu 20.04 x86_64, Ubuntu 20.10 x86_64, CentOS 7.x, CentOS 8.x, AlmaLinux 8.x and CloudLinux 7.x...\n" From 01fbdaae0dc0e12f0bce6836de4a67113ea0b420 Mon Sep 17 00:00:00 2001 From: dampelz <59340295+dampelz@users.noreply.github.com> Date: Sun, 20 Jun 2021 19:02:46 +0300 Subject: [PATCH 10/31] Update django.po --- locale/ru/LC_MESSAGES/django.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index 31b5e4cd7..54d8e84ba 100755 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -65,7 +65,7 @@ msgstr "Создать пакет" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 msgid "Select Package" -msgstr "Вибрать пакет" +msgstr "Выбрать пакет" #: CLManager/templates/CLManager/createPackage.html:40 #: packages/templates/packages/createPackage.html:27 From c1aec3b2aacaa07fff6c9d05dbf32e83c3ac926a Mon Sep 17 00:00:00 2001 From: WhatTheServer Date: Sun, 20 Jun 2021 21:19:21 -0400 Subject: [PATCH 11/31] Update filesPermsUtilities.py --- plogical/filesPermsUtilities.py | 190 ++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) diff --git a/plogical/filesPermsUtilities.py b/plogical/filesPermsUtilities.py index e69de29bb..f1e5cdd70 100644 --- a/plogical/filesPermsUtilities.py +++ b/plogical/filesPermsUtilities.py @@ -0,0 +1,190 @@ +import os +import shutil +import pathlib +import stat + + +def mkdir_p(path, exist_ok=True): + """ + Creates the directory and paths leading up to it like unix mkdir -p . + Defaults to exist_ok so if it exists were not throwing fatal errors + https://docs.python.org/3.7/library/os.html#os.makedirs + """ + if not os.path.exists(path): + print('creating directory: ' + path) + os.makedirs(path, exist_ok) + + +def chmod_digit(file_path, perms): + """ + Helper function to chmod like you would in unix without having to preface 0o or converting to octal yourself. + Credits: https://stackoverflow.com/a/60052847/1621381 + """ + try: + os.chmod(file_path, int(str(perms), base=8)) + except: + print(f'Could not chmod : {file_path} to {perms}') + pass + + +def touch(filepath: str, exist_ok=True): + """ + Touches a file like unix `touch somefile` would. + """ + try: + pathlib.Path(filepath).touch(exist_ok) + except FileExistsError: + print('Could touch : ' + filepath) + pass + + +def symlink(src, dst): + """ + Symlink a path to another if the src exists. + """ + try: + if os.access(src, os.R_OK): + os.symlink(src, dst) + except: + print(f'Could not symlink Source: {src} > Destination: {dst}') + pass + + +def chown(path, user, group=-1): + """ + Chown file/path to user/group provided. Passing -1 to user or group will leave it unchanged. + Useful if just changing user or group vs both. + """ + try: + shutil.chown(path, user, group) + except PermissionError: + print(f'Could not change permissions for: {path} to {user}:{group}') + pass + + +def recursive_chown(path, owner, group=-1): + """ + Recursively chown a path and contents to owner. + https://docs.python.org/3/library/shutil.html + """ + for dirpath, dirnames, filenames in os.walk(path): + try: + shutil.chown(dirpath, owner, group) + except PermissionError: + print('Could not change permissions for: ' + dirpath + ' to: ' + owner) + pass + for filename in filenames: + try: + shutil.chown(os.path.join(dirpath, filename), owner, group) + except PermissionError: + print('Could not change permissions for: ' + os.path.join(dirpath, filename) + ' to: ' + owner) + pass + + +def recursive_permissions(path, dir_mode=755, file_mode=644, topdir=True): + """ + Recursively chmod a path and contents to mode. + Defaults to chmod top level directory but can be optionally + toggled off when you want to chmod only contents of like a user's homedir vs homedir itself + https://docs.python.org/3.6/library/os.html#os.walk + """ + + # Here we are converting the integers to string and then to octal. + # so this function doesn't need to be called with 0o prefixed for the file and dir mode + dir_mode = int(str(dir_mode), base=8) + file_mode = int(str(file_mode), base=8) + + if topdir: + # Set chmod on top level path + try: + os.chmod(path, dir_mode) + except: + print('Could not chmod :' + path + ' to ' + str(dir_mode)) + for root, dirs, files in os.walk(path): + for d in dirs: + try: + os.chmod(os.path.join(root, d), dir_mode) + except: + print('Could not chmod :' + os.path.join(root, d) + ' to ' + str(dir_mode)) + pass + for f in files: + try: + os.chmod(os.path.join(root, f), file_mode) + except: + print('Could not chmod :' + path + ' to ' + str(file_mode)) + pass + + +# Left intentionally here for reference. +# Set recursive chown for a path +# recursive_chown(my_path, 'root', 'root') +# for changing group recursively without affecting user +# recursive_chown('/usr/local/lscp/cyberpanel/rainloop/data', -1, 'lscpd') + +# explicitly set permissions for directories/folders to 0755 and files to 0644 +# recursive_permissions(my_path, 755, 644) + +# Fix permissions and use default values +# recursive_permissions(my_path) +# ========================================================= +# Below is a helper class for getting and working with permissions +# Original credits to : https://github.com/keysemble/perfm + +def perm_octal_digit(rwx): + digit = 0 + if rwx[0] == 'r': + digit += 4 + if rwx[1] == 'w': + digit += 2 + if rwx[2] == 'x': + digit += 1 + return digit + + +class FilePerm: + def __init__(self, filepath): + filemode = stat.filemode(os.stat(filepath).st_mode) + permissions = [filemode[-9:][i:i + 3] for i in range(0, len(filemode[-9:]), 3)] + self.filepath = filepath + self.access_dict = dict(zip(['user', 'group', 'other'], [list(perm) for perm in permissions])) + + def mode(self): + mode = 0 + for shift, digit in enumerate(self.octal()[::-1]): + mode += digit << (shift * 3) + return mode + + def digits(self): + """Get the octal chmod equivalent value 755 in single string""" + return "".join(map(str, self.octal())) + + def octal(self): + """Get the octal value in a list [7, 5, 5]""" + return [perm_octal_digit(p) for p in self.access_dict.values()] + + def access_bits(self, access): + if access in self.access_dict.keys(): + r, w, x = self.access_dict[access] + return [r == 'r', w == 'w', x == 'x'] + + def update_bitwise(self, settings): + def perm_list(read=False, write=False, execute=False): + pl = ['-', '-', '-'] + if read: + pl[0] = 'r' + if write: + pl[1] = 'w' + if execute: + pl[2] = 'x' + return pl + + self.access_dict = dict( + [(access, perm_list(read=r, write=w, execute=x)) for access, [r, w, x] in settings.items()]) + os.chmod(self.filepath, self.mode()) + +# project_directory = os.path.abspath(os.path.dirname(sys.argv[0])) +# home_directory = os.path.expanduser('~') +# print(f'Path: {home_directory} Mode: {FilePerm(home_directory).mode()} Octal: {FilePerm(home_directory).octal()} ' +# f'Digits: {FilePerm(home_directory).digits()}') +# Example: Output +# Path: /home/cooluser Mode: 493 Octal: [7, 5, 5] Digits: 755 From 8cf071f28ddfe6d6b43657f14ab7cc04337203a4 Mon Sep 17 00:00:00 2001 From: dampelz <59340295+dampelz@users.noreply.github.com> Date: Tue, 22 Jun 2021 20:47:35 +0000 Subject: [PATCH 12/31] Update websiteFunctions.js WWW to NON-WWW --- .../static/websiteFunctions/websiteFunctions.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/websiteFunctions/static/websiteFunctions/websiteFunctions.js b/websiteFunctions/static/websiteFunctions/websiteFunctions.js index 6a86b3fc6..1fa517a8b 100755 --- a/websiteFunctions/static/websiteFunctions/websiteFunctions.js +++ b/websiteFunctions/static/websiteFunctions/websiteFunctions.js @@ -2717,6 +2717,16 @@ RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] ### End CyberPanel Generated Rules. +`; + + const WWWToNonWWW = `### Rewrite Rules Added by CyberPanel Rewrite Rule Generator + +RewriteEngine On +RewriteCond %{HTTP_HOST} ^www\.(.*)$ +RewriteRule ^(.*)$ http://%1/$1 [L,R=301] + +### End CyberPanel Generated Rules. + `; const nonWWWToWWW = `### Rewrite Rules Added by CyberPanel Rewrite Rule Generator @@ -2736,6 +2746,9 @@ RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] } else if ($scope.rewriteTemplate === "Force NON-WWW -> WWW") { $scope.rewriteRules = nonWWWToWWW + $scope.rewriteRules; } + else if ($scope.rewriteTemplate === "Force WWW -> NON-WWW") { + $scope.rewriteRules = WWWToNonWWW + $scope.rewriteRules; + } }; From d0844206102190d7a7b68257ebde1f2a1cc1f881 Mon Sep 17 00:00:00 2001 From: dampelz <59340295+dampelz@users.noreply.github.com> Date: Tue, 22 Jun 2021 20:53:52 +0000 Subject: [PATCH 13/31] Update websiteFunctions.js WWW to NON-WWW --- static/websiteFunctions/websiteFunctions.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/websiteFunctions/websiteFunctions.js b/static/websiteFunctions/websiteFunctions.js index 6a86b3fc6..23eb183c0 100644 --- a/static/websiteFunctions/websiteFunctions.js +++ b/static/websiteFunctions/websiteFunctions.js @@ -2717,6 +2717,15 @@ RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] ### End CyberPanel Generated Rules. +`; + const WWWToNonWWW = `### Rewrite Rules Added by CyberPanel Rewrite Rule Generator + +RewriteEngine On +RewriteCond %{HTTP_HOST} ^www\.(.*)$ +RewriteRule ^(.*)$ http://%1/$1 [L,R=301] + +### End CyberPanel Generated Rules. + `; const nonWWWToWWW = `### Rewrite Rules Added by CyberPanel Rewrite Rule Generator @@ -2736,6 +2745,9 @@ RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] } else if ($scope.rewriteTemplate === "Force NON-WWW -> WWW") { $scope.rewriteRules = nonWWWToWWW + $scope.rewriteRules; } + else if ($scope.rewriteTemplate === "Force WWW -> NON-WWW") { + $scope.rewriteRules = WWWToNonWWW + $scope.rewriteRules; + } }; From 02c2213e3fcd9a177d247387970dc279a9c4e3a6 Mon Sep 17 00:00:00 2001 From: dampelz <59340295+dampelz@users.noreply.github.com> Date: Tue, 22 Jun 2021 20:57:04 +0000 Subject: [PATCH 14/31] Update website.html WWW to NON-WWW --- websiteFunctions/templates/websiteFunctions/website.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/websiteFunctions/templates/websiteFunctions/website.html b/websiteFunctions/templates/websiteFunctions/website.html index f908501f7..ecc6f37a7 100755 --- a/websiteFunctions/templates/websiteFunctions/website.html +++ b/websiteFunctions/templates/websiteFunctions/website.html @@ -692,6 +692,7 @@ @@ -1079,4 +1080,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %} From 9fc077db1c8b807c7ad7862a6d6fe2d2814cee5e Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 26 Jun 2021 09:45:34 +0200 Subject: [PATCH 15/31] Add files via upload --- locale/rs/LC_MESSAGES/django.mo | Bin 0 -> 77444 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 locale/rs/LC_MESSAGES/django.mo diff --git a/locale/rs/LC_MESSAGES/django.mo b/locale/rs/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..bf16539842b99177852fe10370163615979ee6e6 GIT binary patch literal 77444 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 Date: Sat, 26 Jun 2021 09:47:06 +0200 Subject: [PATCH 16/31] Create django.po --- locale/rs/LC_MESSAGES/django.po | 7164 +++++++++++++++++++++++++++++++ 1 file changed, 7164 insertions(+) create mode 100644 locale/rs/LC_MESSAGES/django.po diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po new file mode 100644 index 000000000..b6d977704 --- /dev/null +++ b/locale/rs/LC_MESSAGES/django.po @@ -0,0 +1,7164 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#: baseTemplate/templates/baseTemplate/index.html:219 +#: baseTemplate/templates/baseTemplate/index.html:272 +#: baseTemplate/templates/baseTemplate/index.html:279 +#: baseTemplate/templates/baseTemplate/index.html:286 +#: baseTemplate/templates/baseTemplate/index.html:293 +#: baseTemplate/templates/baseTemplate/index.html:300 +#: baseTemplate/templates/baseTemplate/index.html:307 +#: emailMarketing/templates/emailMarketing/sendEmails.html:93 +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-21 19:54+0500\n" +"PO-Revision-Date: 2018-10-09 15:48+0300\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.7.1\n" + +#: CLManager/templates/CLManager/createPackage.html:3 +#, fuzzy +#| msgid "Create Package - CyberPanel" +msgid "Create Cloud Linux Package - CyberPanel" +msgstr "Създай Пакет - CyberPanel" + +#: CLManager/templates/CLManager/createPackage.html:9 +#, fuzzy +#| msgid "Create Package" +msgid "Create CloudLinux Package." +msgstr "Създай Пакет" + +#: CLManager/templates/CLManager/createPackage.html:10 +msgid "" +"Each CloudLinux package have one associated (owner) CyberPanel package. " +"During website creation associated CloudLinux package will be assigned to " +"website user." +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:15 +#: CLManager/templates/CLManager/createPackage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:435 +#: baseTemplate/templates/baseTemplate/index.html:666 +#: packages/templates/packages/createPackage.html:13 +#: packages/templates/packages/createPackage.html:100 +#: packages/templates/packages/index.html:25 +#: packages/templates/packages/index.html:28 +#: userManagment/templates/userManagment/createACL.html:152 +#: userManagment/templates/userManagment/modifyACL.html:156 +msgid "Create Package" +msgstr "Създай Пакет" + +#: CLManager/templates/CLManager/createPackage.html:24 +#: packages/templates/packages/deletePackage.html:26 +#: packages/templates/packages/modifyPackage.html:24 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 +msgid "Select Package" +msgstr "Избери Пакет" + +#: CLManager/templates/CLManager/createPackage.html:40 +#: packages/templates/packages/createPackage.html:27 +msgid "Package Name" +msgstr "Име на Пакет" + +#: CLManager/templates/CLManager/createPackage.html:47 +#: CLManager/templates/CLManager/listPackages.html:87 +msgid "SPEED" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:56 +#: CLManager/templates/CLManager/listPackages.html:98 +msgid "VMEM" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:64 +#: CLManager/templates/CLManager/listPackages.html:109 +msgid "PMEM" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:73 +#: CLManager/templates/CLManager/listPackages.html:120 +msgid "IO" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:81 +#: CLManager/templates/CLManager/listPackages.html:131 +#: containerization/templates/containerization/websiteContainerLimit.html:52 +#: containerization/templates/containerization/websiteContainerLimit.html:99 +msgid "IOPS" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:89 +#: CLManager/templates/CLManager/listPackages.html:142 +msgid "EP" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:97 +#: CLManager/templates/CLManager/listPackages.html:153 +msgid "NPROC" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:105 +#: CLManager/templates/CLManager/listPackages.html:164 +msgid "INODES soft" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:113 +#: CLManager/templates/CLManager/listPackages.html:175 +msgid "INODES hard" +msgstr "" + +#: CLManager/templates/CLManager/listPackages.html:3 +#, fuzzy +#| msgid "Modify Package - CyberPanel" +msgid "Manage CloudLinux Packages - CyberPanel" +msgstr "Промени Пакет - CyberPanel" + +#: CLManager/templates/CLManager/listPackages.html:14 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage CloudLinux Packages" +msgstr "Manage Services" + +#: CLManager/templates/CLManager/listPackages.html:15 +msgid "Manage/Delete CloudLinux Packages." +msgstr "" + +#: CLManager/templates/CLManager/listPackages.html:76 +#: dns/templates/dns/addDeleteDNSRecords.html:74 +#: dns/templates/dns/addDeleteDNSRecords.html:97 +#: dns/templates/dns/addDeleteDNSRecords.html:121 +#: dns/templates/dns/addDeleteDNSRecords.html:144 +#: dns/templates/dns/addDeleteDNSRecords.html:172 +#: dns/templates/dns/addDeleteDNSRecords.html:196 +#: dns/templates/dns/addDeleteDNSRecords.html:220 +#: dns/templates/dns/addDeleteDNSRecords.html:244 +#: dns/templates/dns/addDeleteDNSRecords.html:268 +#: dns/templates/dns/addDeleteDNSRecords.html:295 +#: dns/templates/dns/addDeleteDNSRecords.html:328 +#: dockerManager/templates/dockerManager/runContainer.html:29 +#: filemanager/templates/filemanager/index.html:203 +#: firewall/templates/firewall/firewall.html:120 +#: packages/templates/packages/listPackages.html:84 +#: pluginHolder/templates/pluginHolder/plugins.html:28 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:262 +#: userManagment/templates/userManagment/listUsers.html:75 +msgid "Name" +msgstr "Име" + +#: CLManager/templates/CLManager/listPackages.html:205 +#: CLManager/templates/CLManager/listWebsites.html:86 +#: CLManager/templates/CLManager/monitorUsage.html:57 +#: containerization/templates/containerization/listWebsites.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:172 +#: emailPremium/templates/emailPremium/emailPage.html:179 +#: emailPremium/templates/emailPremium/listDomains.html:75 +#: pluginHolder/templates/pluginHolder/plugins.html:51 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 +msgid "Cannot list websites. Error message:" +msgstr "Страниците не са извлечени. Съобщение за грешка:" + +#: CLManager/templates/CLManager/listWebsites.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "CageFS - CyberPanel" +msgstr "SSL - CyberPanel" + +#: CLManager/templates/CLManager/listWebsites.html:14 +#: CLManager/templates/CLManager/monitorUsage.html:14 +#: baseTemplate/templates/baseTemplate/index.html:411 +#: containerization/templates/containerization/listWebsites.html:14 +#: websiteFunctions/templates/websiteFunctions/index.html:31 +#: websiteFunctions/templates/websiteFunctions/index.html:55 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 +msgid "List Websites" +msgstr "Преглед на Страници" + +#: CLManager/templates/CLManager/listWebsites.html:15 +msgid "Enable/Disable and view CageFS status for websites." +msgstr "" + +#: CLManager/templates/CLManager/listWebsites.html:28 +msgid "Default: " +msgstr "" + +#: CLManager/templates/CLManager/monitorUsage.html:3 +#, fuzzy +#| msgid "Modify User - CyberPanel" +msgid "Monitor Usage - CyberPanel" +msgstr "Промени Потребител - CyberPanel" + +#: CLManager/templates/CLManager/monitorUsage.html:15 +#, fuzzy +#| msgid "Attach git to your websites." +msgid "Monitor usage of your websites." +msgstr "Прикачи Git за тази страница." + +#: CLManager/templates/CLManager/monitorUsage.html:21 +#: baseTemplate/templates/baseTemplate/homePage.html:42 +#: baseTemplate/templates/baseTemplate/index.html:276 +#: baseTemplate/templates/baseTemplate/index.html:400 +#: baseTemplate/templates/baseTemplate/index.html:401 +#: baseTemplate/templates/baseTemplate/index.html:402 +#: containerization/templates/containerization/listWebsites.html:21 +msgid "Websites" +msgstr "Страница" + +#: CLManager/templates/CLManager/notAvailable.html:3 +#: containerization/templates/containerization/notAvailable.html:3 +#, fuzzy +#| msgid "Domain Aliases - CyberPanel" +msgid "Not available - CyberPanel" +msgstr "Паркирани Домейни - CyberPanel" + +#: CLManager/templates/CLManager/notAvailable.html:13 +#: containerization/templates/containerization/notAvailable.html:13 +msgid "Not available" +msgstr "" + +#: CLManager/templates/CLManager/notAvailable.html:14 +msgid "Either CageFS is not installed or you are not on CloudLinux OS." +msgstr "" + +#: CLManager/templates/CLManager/notAvailable.html:22 +msgid "CageFS is only available with CloudLinux OS. " +msgstr "" + +#: CLManager/templates/CLManager/notAvailable.html:24 +#: containerization/templates/containerization/notAvailable.html:24 +msgid " for conversion details." +msgstr "" + +#: CLManager/templates/CLManager/notAvailable.html:34 +#: containerization/templates/containerization/notAvailable.html:34 +#, fuzzy +#| msgid "Packages" +msgid "Install Packages" +msgstr "Пакети" + +#: CLManager/templates/CLManager/notAvailable.html:39 +msgid "CageFS is not installed on this server. Please proceed to installation." +msgstr "" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid " usage - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:14 +#: emailMarketing/templates/emailMarketing/website.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 +#: websiteFunctions/templates/websiteFunctions/website.html:43 +msgid "Usage" +msgstr "Използване" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:15 +msgid "View CPU, Memory and Disk usage for " +msgstr "" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:21 +#: containerization/templates/containerization/websiteContainerLimit.html:155 +#, fuzzy +#| msgid "CPU Usage" +msgid "CPU Usage of" +msgstr "CPU Използване" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:30 +#: containerization/templates/containerization/websiteContainerLimit.html:164 +#, fuzzy +#| msgid "Resource Usage" +msgid "Memory Usage of" +msgstr "Използвани ресурси" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:39 +#: containerization/templates/containerization/websiteContainerLimit.html:173 +#, fuzzy +#| msgid "Disk Usage" +msgid "Disk Usage of" +msgstr "Използван диск" + +#: CyberCP/settings.py:175 +msgid "English" +msgstr "Английски" + +#: CyberCP/settings.py:176 +msgid "Chinese" +msgstr "Китайски" + +#: CyberCP/settings.py:177 +msgid "Bulgarian" +msgstr "Български" + +#: CyberCP/settings.py:178 +msgid "Portuguese" +msgstr "Португалски" + +#: CyberCP/settings.py:179 +msgid "Japanese" +msgstr "Японски" + +#: CyberCP/settings.py:180 +msgid "Bosnian" +msgstr "Босненски" + +#: CyberCP/settings.py:181 +msgid "Greek" +msgstr "Гръцки" + +#: CyberCP/settings.py:182 +msgid "Russian" +msgstr "Руски" + +#: CyberCP/settings.py:183 +msgid "Turkish" +msgstr "Турски" + +#: CyberCP/settings.py:184 +msgid "Spanish" +msgstr "Испански" + +#: CyberCP/settings.py:185 +msgid "French" +msgstr "Френски" + +#: CyberCP/settings.py:186 +#, fuzzy +#| msgid "Policy" +msgid "Polish" +msgstr "Политика" + +#: CyberCP/settings.py:187 +#, fuzzy +#| msgid "Filename" +msgid "Vietnamese" +msgstr "Име" + +#: CyberCP/settings.py:188 +msgid "Italian" +msgstr "" + +#: CyberCP/settings.py:189 +msgid "Deutsch" +msgstr "" + +#: IncBackups/templates/IncBackups/backupSchedule.html:3 +#: backup/templates/backup/backupSchedule.html:3 +msgid "Schedule Back up - CyberPanel" +msgstr "Планирано Архивиране - CyberPanel" + +#: IncBackups/templates/IncBackups/backupSchedule.html:13 +#: IncBackups/templates/IncBackups/backupSchedule.html:23 +#: backup/templates/backup/backupSchedule.html:13 +#: backup/templates/backup/backupSchedule.html:23 +#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 +#: baseTemplate/templates/baseTemplate/index.html:578 +#: userManagment/templates/userManagment/createACL.html:381 +#: userManagment/templates/userManagment/modifyACL.html:385 +msgid "Schedule Back up" +msgstr "Планирано Архивиране " + +#: IncBackups/templates/IncBackups/backupSchedule.html:16 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 +#: backup/templates/backup/backupDestinations.html:14 +#: backup/templates/backup/backupSchedule.html:16 +#: backup/templates/backup/remoteBackups.html:14 +#: backup/templates/backup/remoteBackups.html:21 +msgid "Remote Backups" +msgstr "Отдалечени архиви" + +#: IncBackups/templates/IncBackups/backupSchedule.html:17 +#: backup/templates/backup/backupSchedule.html:17 +msgid "" +"On this page you can schedule Back ups to localhost or remote server (If you " +"have added one)." +msgstr "" +"От тази страница може да планирате архивите на локален или отдалечен сървър " +"(ако има добавен)." + +#: IncBackups/templates/IncBackups/backupSchedule.html:33 +#: backup/templates/backup/backupSchedule.html:33 +msgid "Select Destination" +msgstr "избери дестинация" + +#: IncBackups/templates/IncBackups/backupSchedule.html:44 +#: backup/templates/backup/backupSchedule.html:44 +msgid "Select Frequency" +msgstr "Избери кога" + +#: IncBackups/templates/IncBackups/backupSchedule.html:54 +#: IncBackups/templates/IncBackups/createBackup.html:56 +#, fuzzy +#| msgid "Git Management" +msgid "Backup Content" +msgstr "Git Мениджър" + +#: IncBackups/templates/IncBackups/backupSchedule.html:98 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 +#: backup/templates/backup/backupDestinations.html:55 +#: backup/templates/backup/backupSchedule.html:67 +#: baseTemplate/templates/baseTemplate/index.html:575 +msgid "Add Destination" +msgstr "Добави дестинация" + +#: IncBackups/templates/IncBackups/backupSchedule.html:112 +#: backup/templates/backup/remoteBackups.html:96 +msgid "Search Accounts.." +msgstr "Търси Акаунти" + +#: IncBackups/templates/IncBackups/backupSchedule.html:124 +msgid "Select sites to be included in this job" +msgstr "" + +#: IncBackups/templates/IncBackups/backupSchedule.html:150 +#: IncBackups/templates/IncBackups/createBackup.html:127 +#: backup/templates/backup/backup.html:102 +#: backup/templates/backup/backupDestinations.html:96 +#: backup/templates/backup/backupSchedule.html:102 +#: databases/templates/databases/listDataBases.html:104 +#: dns/templates/dns/addDeleteDNSRecords.html:326 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 +#: emailMarketing/templates/emailMarketing/manageLists.html:141 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 +#: firewall/templates/firewall/firewall.html:119 +#: firewall/templates/firewall/modSecurityRulesPacks.html:109 +#: ftp/templates/ftp/listFTPAccounts.html:122 +#: mailServer/templates/mailServer/emailForwarding.html:117 +#: managePHP/templates/managePHP/installExtensions.html:60 +msgid "ID" +msgstr "ID" + +#: IncBackups/templates/IncBackups/backupSchedule.html:151 +#: IncBackups/templates/IncBackups/createBackup.html:44 +#: IncBackups/templates/IncBackups/createBackup.html:164 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 +#: backup/templates/backup/backup.html:41 +#: backup/templates/backup/backupSchedule.html:103 +#: mailServer/templates/mailServer/emailForwarding.html:101 +#: mailServer/templates/mailServer/emailForwarding.html:119 +msgid "Destination" +msgstr "Дестинация" + +#: IncBackups/templates/IncBackups/backupSchedule.html:152 +#: backup/templates/backup/backupSchedule.html:104 +msgid "Frequency" +msgstr "Честота" + +#: IncBackups/templates/IncBackups/backupSchedule.html:153 +#: IncBackups/templates/IncBackups/createBackup.html:130 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 +#: backup/templates/backup/backup.html:107 +#: backup/templates/backup/backupDestinations.html:99 +#: backup/templates/backup/backupSchedule.html:105 +#: dns/templates/dns/addDeleteDNSRecords.html:332 +#: emailMarketing/templates/emailMarketing/manageLists.html:156 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 +#: emailMarketing/templates/emailMarketing/sendEmails.html:170 +#: emailMarketing/templates/emailMarketing/website.html:533 +#: filemanager/templates/filemanager/index.html:67 +#: filemanager/templates/filemanager/index.html:696 +#: firewall/templates/firewall/firewall.html:124 +#: firewall/templates/firewall/secureSSH.html:122 +#: mailServer/templates/mailServer/listEmails.html:78 +#: packages/templates/packages/listPackages.html:63 +#: userManagment/templates/userManagment/listUsers.html:54 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 +#: websiteFunctions/templates/websiteFunctions/listCron.html:65 +#: websiteFunctions/templates/websiteFunctions/website.html:497 +msgid "Delete" +msgstr "Изтрий" + +#: IncBackups/templates/IncBackups/createBackup.html:3 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Create Incremental Backup" +msgstr "Откажи Архив" + +#: IncBackups/templates/IncBackups/createBackup.html:13 +#: IncBackups/templates/IncBackups/createBackup.html:23 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 +#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 +#: backup/templates/backup/backup.html:21 +msgid "Back up Website" +msgstr "Архивирай Страница" + +#: IncBackups/templates/IncBackups/createBackup.html:15 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 +#: backup/templates/backup/backup.html:14 +#: backup/templates/backup/restore.html:14 +msgid "Backup Docs" +msgstr "Архив" + +#: IncBackups/templates/IncBackups/createBackup.html:17 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "This page can be used to create incremental backups for your websites." +msgstr "От тази страница може да направите архив на Вашите страници" + +#: IncBackups/templates/IncBackups/createBackup.html:33 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 +#: backup/templates/backup/backup.html:30 +#: databases/templates/databases/createDatabase.html:26 +#: databases/templates/databases/deleteDatabase.html:26 +#: databases/templates/databases/phpMyAdmin.html:26 +#: ftp/templates/ftp/createFTPAccount.html:42 +#: mailServer/templates/mailServer/changeEmailPassword.html:44 +#: mailServer/templates/mailServer/createEmailAccount.html:44 +#: mailServer/templates/mailServer/deleteEmailAccount.html:44 +#: mailServer/templates/mailServer/dkimManager.html:83 +#: mailServer/templates/mailServer/emailForwarding.html:38 +#: manageSSL/templates/manageSSL/manageSSL.html:29 +#: manageSSL/templates/manageSSL/sslForHostName.html:29 +#: manageSSL/templates/manageSSL/sslForMailServer.html:27 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/listCron.html:28 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 +msgid "Select Website" +msgstr "Избери Страница" + +#: IncBackups/templates/IncBackups/createBackup.html:113 +#: backup/templates/backup/backup.html:81 +#: baseTemplate/templates/baseTemplate/index.html:569 +#: baseTemplate/templates/baseTemplate/index.html:598 +#: userManagment/templates/userManagment/createACL.html:352 +#: userManagment/templates/userManagment/modifyACL.html:356 +msgid "Create Back up" +msgstr "Създай Архив" + +#: IncBackups/templates/IncBackups/createBackup.html:128 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 +#: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 +msgid "Date" +msgstr "Дата" + +#: IncBackups/templates/IncBackups/createBackup.html:129 +#: backup/templates/backup/index.html:46 +#: backup/templates/backup/restore.html:45 +msgid "Restore" +msgstr "Възстанови" + +#: IncBackups/templates/IncBackups/createBackup.html:161 +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: IncBackups/templates/IncBackups/createBackup.html:162 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 +msgid "Snapshot ID" +msgstr "" + +#: IncBackups/templates/IncBackups/createBackup.html:163 +#: dns/templates/dns/addDeleteDNSRecords.html:327 +#: pluginHolder/templates/pluginHolder/plugins.html:29 +msgid "Type" +msgstr "Вид" + +#: IncBackups/templates/IncBackups/createBackup.html:165 +#: websiteFunctions/templates/websiteFunctions/listCron.html:52 +msgid "Action" +msgstr "Действие" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:14 +msgid "Set up Back up Destinations" +msgstr "Постави дестинация за Архив" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 +#, fuzzy +#| msgid "Set up Back up Destinations" +msgid "Set up Incremental Back up Destinations" +msgstr "Постави дестинация за Архив" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" +msgstr "От тази страница може да настройте дестинацията за архивите (SFTP)" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 +#, fuzzy +#| msgid "Set up Back up Destinations" +msgid "Set up Back up Destinations." +msgstr "Постави дестинация за Архив" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 +#, fuzzy +#| msgid "Select Website" +msgid "Select Type" +msgstr "Избери Страница" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 +#: backup/templates/backup/backupDestinations.html:30 +#: backup/templates/backup/remoteBackups.html:29 +#: dns/templates/dns/addDeleteDNSRecords.html:82 +#: dns/templates/dns/createNameServer.html:55 +#: dns/templates/dns/createNameServer.html:71 +#: firewall/templates/firewall/firewall.html:122 +msgid "IP Address" +msgstr "IP Адрес" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 +#: backup/templates/backup/backupDestinations.html:38 +#: backup/templates/backup/remoteBackups.html:37 +#: databases/templates/databases/createDatabase.html:56 +#: databases/templates/databases/listDataBases.html:107 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 +#: ftp/templates/ftp/listFTPAccounts.html:126 +#: mailServer/templates/mailServer/changeEmailPassword.html:68 +#: mailServer/templates/mailServer/createEmailAccount.html:68 +#: mailServer/templates/mailServer/listEmails.html:113 +#: userManagment/templates/userManagment/createUser.html:83 +#: userManagment/templates/userManagment/modifyUser.html:62 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 +msgid "Password" +msgstr "Парола" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 +#: backup/templates/backup/backupDestinations.html:45 +#: dockerManager/templates/dockerManager/runContainer.html:74 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 +#: firewall/templates/firewall/firewall.html:123 +msgid "Port" +msgstr "Порт" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 +#: backup/templates/backup/backupDestinations.html:47 +msgid "Backup server SSH Port, leave empty for 22." +msgstr "Backup server SSH порт, оставете празни за 22." + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 +#: backup/templates/backup/backupDestinations.html:97 +msgid "IP" +msgstr "IP" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 +msgid "AWS_ACCESS_KEY_ID" +msgstr "" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 +msgid "AWS_SECRET_ACCESS_KEY" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Restore Remote Incremental Backups" +msgstr "Откажи Архив" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "" +"This page can be used to restore remote incremental backups for your " +"websites." +msgstr "От тази страница може да направите архив на Вашите страници" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 +msgid "Fetch Restore Points" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:330 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +msgid "Path" +msgstr "Път" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 +#: dockerManager/templates/dockerManager/viewContainer.html:108 +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:207 +#: mailServer/templates/mailServer/emailForwarding.html:120 +#: mailServer/templates/mailServer/listEmails.html:65 +#: packages/templates/packages/listPackages.html:41 +#: serverStatus/templates/serverStatus/topProcesses.html:201 +#: userManagment/templates/userManagment/listUsers.html:37 +msgid "Actions" +msgstr "Действия" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Terminal - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 +#: baseTemplate/templates/baseTemplate/index.html:641 +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Terminal" +msgstr "" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 +msgid "Web Terminal Docs" +msgstr "" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 +msgid "Execute your terminal commands." +msgstr "" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 +#: baseTemplate/templates/baseTemplate/index.html:643 +msgid "Web Terminal" +msgstr "" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 +msgid "Reboot SSH Server" +msgstr "" + +#: backup/templates/backup/backup.html:15 +msgid "This page can be used to Back up your websites" +msgstr "От тази страница може да направите архив на Вашите страници" + +#: backup/templates/backup/backup.html:44 +#: baseTemplate/templates/baseTemplate/homePage.html:12 +#: filemanager/templates/filemanager/index.html:135 +msgid "Home" +msgstr "Начало" + +#: backup/templates/backup/backup.html:60 +#: backup/templates/backup/restore.html:62 +#: filemanager/templates/filemanager/index.html:158 +msgid "File Name" +msgstr "Първо Име" + +#: backup/templates/backup/backup.html:61 +#: backup/templates/backup/backup.html:106 +#: backup/templates/backup/restore.html:63 +#: baseTemplate/templates/baseTemplate/homePage.html:132 +#: baseTemplate/templates/baseTemplate/index.html:311 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 +#: filemanager/templates/filemanager/index.html:206 +#: firewall/templates/firewall/firewall.html:35 +#: firewall/templates/firewall/modSecurityRulesPacks.html:112 +#: managePHP/templates/managePHP/installExtensions.html:64 +msgid "Status" +msgstr "Статус" + +#: backup/templates/backup/backup.html:66 +#: serverStatus/templates/serverStatus/topProcesses.html:52 +msgid "Running" +msgstr "Активен" + +#: backup/templates/backup/backup.html:88 +msgid "Cancel Backup" +msgstr "Откажи Архив" + +#: backup/templates/backup/backup.html:103 +msgid "File" +msgstr "Файл" + +#: backup/templates/backup/backup.html:105 +#: filemanager/templates/filemanager/index.html:204 +#: ftp/templates/ftp/listFTPAccounts.html:125 +msgid "Size" +msgstr "Размер" + +#: backup/templates/backup/backup.html:131 +msgid "Cannot delete website, Error message: " +msgstr "Страницата не може да бъде премахната. Съобщение за грешка:" + +#: backup/templates/backup/backup.html:135 +msgid "Successfully Deleted" +msgstr "Успешно изтрита" + +#: backup/templates/backup/backupDestinations.html:15 +msgid "On this page you can set up your Back up destinations. (SFTP)" +msgstr "От тази страница може да настройте дестинацията за архивите (SFTP)" + +#: backup/templates/backup/backupDestinations.html:21 +msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" +msgstr "Добави дестинация ( SSH порт трябва да бъде 22)" + +#: backup/templates/backup/backupDestinations.html:68 +#: backup/templates/backup/backupDestinations.html:72 +msgid "Connection to" +msgstr "Връзка към" + +#: backup/templates/backup/backupDestinations.html:68 +msgid "failed. Please delete and re-add. " +msgstr "неуспешно. Моля премахнете и добавете отново." + +#: backup/templates/backup/backupDestinations.html:72 +msgid "successful." +msgstr "успешно" + +#: backup/templates/backup/backupDestinations.html:76 +msgid "Cannot add destination. Error message:" +msgstr "Дестинацията не е добавена, защото:" + +#: backup/templates/backup/backupDestinations.html:80 +msgid "Destination Added." +msgstr "Дестинацията е добавена" + +#: backup/templates/backup/backupDestinations.html:84 +#: backup/templates/backup/backupSchedule.html:90 +#: backup/templates/backup/restore.html:95 +#: databases/templates/databases/createDatabase.html:98 +#: databases/templates/databases/deleteDatabase.html:69 +#: databases/templates/databases/phpMyAdmin.html:50 +#: dns/templates/dns/addDeleteDNSRecords.html:384 +#: dns/templates/dns/createDNSZone.html:70 +#: dns/templates/dns/createNameServer.html:102 +#: dns/templates/dns/deleteDNSZone.html:77 +#: dockerManager/templates/dockerManager/runContainer.html:185 +#: emailMarketing/templates/emailMarketing/website.html:161 +#: emailMarketing/templates/emailMarketing/website.html:420 +#: emailMarketing/templates/emailMarketing/website.html:471 +#: emailMarketing/templates/emailMarketing/website.html:633 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: emailMarketing/templates/emailMarketing/website.html:749 +#: emailMarketing/templates/emailMarketing/website.html:835 +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailPremium/templates/emailPremium/emailLimits.html:101 +#: emailPremium/templates/emailPremium/emailPage.html:119 +#: mailServer/templates/mailServer/changeEmailPassword.html:114 +#: mailServer/templates/mailServer/createEmailAccount.html:115 +#: mailServer/templates/mailServer/deleteEmailAccount.html:98 +#: mailServer/templates/mailServer/dkimManager.html:156 +#: mailServer/templates/mailServer/emailForwarding.html:83 +#: manageSSL/templates/manageSSL/manageSSL.html:60 +#: userManagment/templates/userManagment/createUser.html:137 +#: userManagment/templates/userManagment/modifyUser.html:121 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 +#: websiteFunctions/templates/websiteFunctions/website.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:383 +#: websiteFunctions/templates/websiteFunctions/website.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:581 +#: websiteFunctions/templates/websiteFunctions/website.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:778 +#: websiteFunctions/templates/websiteFunctions/website.html:884 +msgid "Could not connect to server. Please refresh this page." +msgstr "Връзката е неуспешна. Моля презаредете страницата." + +#: backup/templates/backup/backupDestinations.html:98 +#: backup/templates/backup/backupDestinations.html:106 +msgid "Check Connection" +msgstr "Провери връзката" + +#: backup/templates/backup/backupSchedule.html:54 +msgid "Local Path" +msgstr "" + +#: backup/templates/backup/backupSchedule.html:57 +msgid "Local directory where backups will be moved after creation." +msgstr "" + +#: backup/templates/backup/backupSchedule.html:82 +msgid "Cannot add schedule. Error message:" +msgstr "Планирането не е добавено. Съобщение за грешка: " + +#: backup/templates/backup/backupSchedule.html:86 +msgid "Schedule Added" +msgstr "Планирането е добавено" + +#: backup/templates/backup/index.html:3 +msgid "Back up Home - CyberPanel" +msgstr "Архив - CyberPanel" + +#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 +#: baseTemplate/templates/baseTemplate/homePage.html:95 +#: baseTemplate/templates/baseTemplate/homePage.html:97 +#: baseTemplate/templates/baseTemplate/index.html:561 +#: baseTemplate/templates/baseTemplate/index.html:563 +#: baseTemplate/templates/baseTemplate/index.html:616 +msgid "Back up" +msgstr "Архив" + +#: backup/templates/backup/index.html:14 +msgid "Back up and restore sites." +msgstr "Архивирай и възстанови сайтове." + +#: backup/templates/backup/index.html:19 +#: baseTemplate/templates/baseTemplate/homePage.html:23 +#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 +#: dockerManager/templates/dockerManager/index.html:21 +#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 +#: mailServer/templates/mailServer/index.html:19 +#: managePHP/templates/managePHP/index.html:18 +#: manageSSL/templates/manageSSL/index.html:20 +#: packages/templates/packages/index.html:19 +#: serverLogs/templates/serverLogs/index.html:19 +#: serverStatus/templates/serverStatus/index.html:19 +#: tuning/templates/tuning/index.html:18 +#: userManagment/templates/userManagment/index.html:19 +#: websiteFunctions/templates/websiteFunctions/index.html:21 +msgid "Available Functions" +msgstr "Налични Функции" + +#: backup/templates/backup/index.html:28 +msgid "Back up Site" +msgstr "Архивирай Страница" + +#: backup/templates/backup/index.html:44 +#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:601 +#: userManagment/templates/userManagment/createACL.html:361 +#: userManagment/templates/userManagment/modifyACL.html:365 +msgid "Restore Back up" +msgstr "Възстанови Архив" + +#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 +#, fuzzy +#| msgid "Add/Delete Destination" +msgid "Add/Delete Destinations" +msgstr "Добави/Премахни Дестинация" + +#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 +#: baseTemplate/templates/baseTemplate/index.html:581 +#: userManagment/templates/userManagment/createACL.html:391 +#: userManagment/templates/userManagment/modifyACL.html:395 +msgid "Remote Back ups" +msgstr "Отдалечени Архиви" + +#: backup/templates/backup/remoteBackups.html:3 +msgid "Transfer Websites from Remote Server - CyberPanel" +msgstr "Премести страница от отдалечен сървър - CyberPanel" + +#: backup/templates/backup/remoteBackups.html:14 +msgid "Remote Transfer" +msgstr "Отдалечен трансфер" + +#: backup/templates/backup/remoteBackups.html:15 +msgid "This feature can import website(s) from remote server" +msgstr "Тази функция може да постави страница/и от отдалечен сървър" + +#: backup/templates/backup/remoteBackups.html:46 +msgid "Fetch Accounts" +msgstr "Извлечи акаунти" + +#: backup/templates/backup/remoteBackups.html:55 +msgid "Start Transfer" +msgstr "Стартирай трансфер" + +#: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:324 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:928 +#: emailPremium/templates/emailPremium/emailLimits.html:75 +#: emailPremium/templates/emailPremium/emailPage.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:93 +#: filemanager/templates/filemanager/index.html:230 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:747 +#: websiteFunctions/templates/websiteFunctions/website.html:858 +msgid "Cancel" +msgstr "Откажи" + +#: backup/templates/backup/remoteBackups.html:72 +msgid "Could not connect, please refresh this page." +msgstr "Не можем да се свържем, моля презаредете страницата." + +#: backup/templates/backup/remoteBackups.html:76 +msgid "Accounts Successfully Fetched from remote server." +msgstr "Акаунтите са успешно извлечени от отдалечения сървър." + +#: backup/templates/backup/remoteBackups.html:80 +msgid "Backup Process successfully started." +msgstr "Процеса по архивиранее успешно стартиран." + +#: backup/templates/backup/remoteBackups.html:84 +msgid "Backup successfully cancelled." +msgstr "Архивирането е успешно спряно." + +#: backup/templates/backup/remoteBackups.html:107 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Website" +msgstr "Страница" + +#: backup/templates/backup/remoteBackups.html:108 +#: baseTemplate/templates/baseTemplate/homePage.html:143 +#: baseTemplate/templates/baseTemplate/index.html:768 +#: baseTemplate/templates/baseTemplate/index.html:770 +#: managePHP/templates/managePHP/installExtensions.html:61 +msgid "PHP" +msgstr "PHP" + +#: backup/templates/backup/remoteBackups.html:109 +#: packages/templates/packages/createPackage.html:112 +#: packages/templates/packages/deletePackage.html:60 +#: packages/templates/packages/listPackages.html:33 +#: packages/templates/packages/modifyPackage.html:125 +msgid "Package" +msgstr "Пакети" + +#: backup/templates/backup/remoteBackups.html:110 +#: baseTemplate/templates/baseTemplate/index.html:505 +#: baseTemplate/templates/baseTemplate/index.html:507 +#: mailServer/templates/mailServer/listEmails.html:101 +#: userManagment/templates/userManagment/createUser.html:45 +#: userManagment/templates/userManagment/modifyUser.html:54 +#: userManagment/templates/userManagment/userProfile.html:41 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 +msgid "Email" +msgstr "Email" + +#: backup/templates/backup/restore.html:3 +msgid "Restore Website - CyberPanel" +msgstr "Възстанови Страница - CyberPanel" + +#: backup/templates/backup/restore.html:14 +#: backup/templates/backup/restore.html:21 +msgid "Restore Website" +msgstr "Възстанови Страница" + +#: backup/templates/backup/restore.html:15 +msgid "" +"This page can be used to restore your websites, Back up should be generated " +"from CyberPanel Back up generation tool, it will detect all Back ups under " +"/home/backup." +msgstr "" +"От тази страница може да възстановявате Ваши страници. Архивите трябва да " +"бъдат генерирани от CyberPanel. Архивите автоматично са засечени от " +"/home/backup." + +#: backup/templates/backup/restore.html:30 +msgid "Select Back up" +msgstr "Избери Архив" + +#: backup/templates/backup/restore.html:61 +msgid "Condition" +msgstr "Състояние" + +#: backup/templates/backup/restore.html:86 +#: databases/templates/databases/deleteDatabase.html:60 +#: databases/templates/databases/listDataBases.html:54 +#: dockerManager/templates/dockerManager/listContainers.html:57 +#: dockerManager/templates/dockerManager/runContainer.html:176 +#: emailMarketing/templates/emailMarketing/website.html:411 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: firewall/templates/firewall/firewall.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:214 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:374 +#: websiteFunctions/templates/websiteFunctions/website.html:876 +msgid "Error message:" +msgstr "Съобщение за Грешка" + +#: backup/templates/backup/restore.html:90 +msgid "Site related to this Back up already exists." +msgstr "Страницата, която е в този архив е вече налична." + +#: baseTemplate/templates/baseTemplate/homePage.html:3 +msgid "Home - CyberPanel" +msgstr "Начало - CyberPanel" + +#: baseTemplate/templates/baseTemplate/homePage.html:13 +msgid "Use the tabs to navigate through the control panel." +msgstr "Използвай tab за навигация в контролния панел." + +#: baseTemplate/templates/baseTemplate/homePage.html:29 +#: userManagment/templates/userManagment/index.html:13 +msgid "User Functions" +msgstr "Функции на Потребителите" + +#: baseTemplate/templates/baseTemplate/homePage.html:31 +#: baseTemplate/templates/baseTemplate/index.html:361 +#: baseTemplate/templates/baseTemplate/index.html:362 +#: baseTemplate/templates/baseTemplate/index.html:363 +msgid "Users" +msgstr "Потребители" + +#: baseTemplate/templates/baseTemplate/homePage.html:40 +#: websiteFunctions/templates/websiteFunctions/index.html:13 +msgid "Website Functions" +msgstr "Функции на Страниците" + +#: baseTemplate/templates/baseTemplate/homePage.html:51 +msgid "Add/Modify Packages" +msgstr "Добави/Промени Пакет" + +#: baseTemplate/templates/baseTemplate/homePage.html:53 +#: baseTemplate/templates/baseTemplate/index.html:283 +#: baseTemplate/templates/baseTemplate/index.html:427 +#: baseTemplate/templates/baseTemplate/index.html:429 +#: packages/templates/packages/index.html:13 +msgid "Packages" +msgstr "Пакети" + +#: baseTemplate/templates/baseTemplate/homePage.html:62 +#: databases/templates/databases/index.html:12 +msgid "Database Functions" +msgstr "Функции на Бази от Данни" + +#: baseTemplate/templates/baseTemplate/homePage.html:64 +#: baseTemplate/templates/baseTemplate/index.html:452 +#: baseTemplate/templates/baseTemplate/index.html:453 +#: baseTemplate/templates/baseTemplate/index.html:454 +#: emailMarketing/templates/emailMarketing/website.html:51 +#: packages/templates/packages/createPackage.html:69 +#: packages/templates/packages/listPackages.html:37 +#: packages/templates/packages/listPackages.html:134 +#: packages/templates/packages/modifyPackage.html:73 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 +#: websiteFunctions/templates/websiteFunctions/website.html:54 +msgid "Databases" +msgstr "База от Данни" + +#: baseTemplate/templates/baseTemplate/homePage.html:73 +msgid "Control DNS" +msgstr "Контрол на DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:75 +#: baseTemplate/templates/baseTemplate/index.html:290 +#: baseTemplate/templates/baseTemplate/index.html:477 +#: baseTemplate/templates/baseTemplate/index.html:479 +msgid "DNS" +msgstr "DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:84 +#: ftp/templates/ftp/index.html:12 +msgid "FTP Functions" +msgstr "FTP Функции" + +#: baseTemplate/templates/baseTemplate/homePage.html:86 +#: baseTemplate/templates/baseTemplate/index.html:297 +#: baseTemplate/templates/baseTemplate/index.html:539 +#: baseTemplate/templates/baseTemplate/index.html:541 +#: emailMarketing/templates/emailMarketing/website.html:46 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 +#: websiteFunctions/templates/websiteFunctions/website.html:49 +msgid "FTP" +msgstr "FTP" + +#: baseTemplate/templates/baseTemplate/homePage.html:106 +#: baseTemplate/templates/baseTemplate/homePage.html:108 +#: mailServer/templates/mailServer/listEmails.html:64 +#: packages/templates/packages/createPackage.html:77 +#: packages/templates/packages/listPackages.html:143 +#: packages/templates/packages/modifyPackage.html:80 +msgid "Emails" +msgstr "Emails" + +#: baseTemplate/templates/baseTemplate/homePage.html:117 +#: baseTemplate/templates/baseTemplate/homePage.html:119 +#: baseTemplate/templates/baseTemplate/index.html:617 +#: baseTemplate/templates/baseTemplate/index.html:618 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 +msgid "SSL" +msgstr "SSL" + +#: baseTemplate/templates/baseTemplate/homePage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:743 +#: baseTemplate/templates/baseTemplate/index.html:745 +#: baseTemplate/templates/baseTemplate/index.html:787 +#: emailPremium/templates/emailPremium/policyServer.html:30 +#: serverStatus/templates/serverStatus/index.html:13 +msgid "Server Status" +msgstr "Сървър Статус" + +#: baseTemplate/templates/baseTemplate/homePage.html:141 +msgid "PHP Configurations" +msgstr "PHP Конфигурация" + +#: baseTemplate/templates/baseTemplate/homePage.html:152 +#: baseTemplate/templates/baseTemplate/homePage.html:154 +#: baseTemplate/templates/baseTemplate/index.html:789 +#: dockerManager/templates/dockerManager/viewContainer.html:174 +#: emailMarketing/templates/emailMarketing/website.html:117 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 +#: websiteFunctions/templates/websiteFunctions/website.html:106 +msgid "Logs" +msgstr "Логове" + +#: baseTemplate/templates/baseTemplate/homePage.html:163 +#: baseTemplate/templates/baseTemplate/homePage.html:165 +#: baseTemplate/templates/baseTemplate/index.html:811 +#: baseTemplate/templates/baseTemplate/index.html:813 +msgid "Security" +msgstr "Сигурност" + +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#, fuzzy +#| msgid "Resource" +msgid "Resources" +msgstr "Ресурси" + +#: baseTemplate/templates/baseTemplate/homePage.html:197 +#: baseTemplate/templates/baseTemplate/index.html:139 +#: dockerManager/templates/dockerManager/viewContainer.html:48 +msgid "CPU Usage" +msgstr "CPU Използване" + +#: baseTemplate/templates/baseTemplate/homePage.html:218 +#: baseTemplate/templates/baseTemplate/index.html:150 +msgid "Ram Usage" +msgstr "Използване на RAM" + +#: baseTemplate/templates/baseTemplate/homePage.html:239 +msgid "Disk Usage '/'" +msgstr "Зает Диск" + +#: baseTemplate/templates/baseTemplate/index.html:159 +#: emailMarketing/templates/emailMarketing/website.html:58 +#: emailMarketing/templates/emailMarketing/website.html:78 +#: userManagment/templates/userManagment/listUsers.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 +#: websiteFunctions/templates/websiteFunctions/website.html:59 +#: websiteFunctions/templates/websiteFunctions/website.html:77 +msgid "Disk Usage" +msgstr "Използван диск" + +#: baseTemplate/templates/baseTemplate/index.html:192 +#: baseTemplate/templates/baseTemplate/index.html:195 +#: baseTemplate/templates/baseTemplate/index.html:199 +msgid "CyberPanel" +msgstr "CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:197 +#: baseTemplate/templates/baseTemplate/index.html:201 +msgid "Web Hosting Control Panel" +msgstr "Уеб Хостинг Панел" + +#: baseTemplate/templates/baseTemplate/index.html:203 +msgid "Close sidebar" +msgstr "Затвори страничен бар" + +#: baseTemplate/templates/baseTemplate/index.html:209 +msgid "My Account" +msgstr "Моят Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:228 +msgid "Edit profile" +msgstr "Промени профил" + +#: baseTemplate/templates/baseTemplate/index.html:230 +#: baseTemplate/templates/baseTemplate/index.html:369 +#: userManagment/templates/userManagment/index.html:24 +#: userManagment/templates/userManagment/index.html:27 +msgid "View Profile" +msgstr "Преглед на профил" + +#: baseTemplate/templates/baseTemplate/index.html:237 +#: baseTemplate/templates/baseTemplate/index.html:319 +msgid "Logout" +msgstr "Излез" + +#: baseTemplate/templates/baseTemplate/index.html:249 +#: baseTemplate/templates/baseTemplate/index.html:254 +#: baseTemplate/templates/baseTemplate/index.html:259 +msgid "CPU Load Average" +msgstr "Средно CPU Натоварване" + +#: baseTemplate/templates/baseTemplate/index.html:265 +msgid "Dashboard Quick Menu" +msgstr "Бързо Меню" + +#: baseTemplate/templates/baseTemplate/index.html:304 +#: baseTemplate/templates/baseTemplate/index.html:725 +#: baseTemplate/templates/baseTemplate/index.html:727 +msgid "Tuning" +msgstr "Настройка" + +#: baseTemplate/templates/baseTemplate/index.html:332 +msgid "Overview" +msgstr "Преглед" + +#: baseTemplate/templates/baseTemplate/index.html:334 +#: baseTemplate/templates/baseTemplate/index.html:335 +msgid "Server IP Address" +msgstr "Сървърен IP Адрес" + +#: baseTemplate/templates/baseTemplate/index.html:339 +#: baseTemplate/templates/baseTemplate/index.html:341 +msgid "Dashboard" +msgstr "Начало" + +#: baseTemplate/templates/baseTemplate/index.html:344 +#: baseTemplate/templates/baseTemplate/index.html:346 +#: baseTemplate/templates/baseTemplate/index.html:348 +#: baseTemplate/templates/baseTemplate/versionManagment.html:10 +#: userManagment/templates/userManagment/createACL.html:47 +#: userManagment/templates/userManagment/createACL.html:52 +#: userManagment/templates/userManagment/modifyACL.html:51 +#: userManagment/templates/userManagment/modifyACL.html:56 +msgid "Version Management" +msgstr "Мениджър на Версия" + +#: baseTemplate/templates/baseTemplate/index.html:351 +#: baseTemplate/templates/baseTemplate/index.html:352 +#: baseTemplate/templates/baseTemplate/index.html:354 +#, fuzzy +#| msgid "Connection to" +msgid "Connect" +msgstr "Връзка към" + +#: baseTemplate/templates/baseTemplate/index.html:358 +msgid "Main" +msgstr "Главно" + +#: baseTemplate/templates/baseTemplate/index.html:372 +#: userManagment/templates/userManagment/createACL.html:64 +#: userManagment/templates/userManagment/createUser.html:12 +#: userManagment/templates/userManagment/modifyACL.html:68 +msgid "Create New User" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:375 +#: userManagment/templates/userManagment/createACL.html:73 +#: userManagment/templates/userManagment/index.html:36 +#: userManagment/templates/userManagment/index.html:39 +#: userManagment/templates/userManagment/listUsers.html:13 +#: userManagment/templates/userManagment/listUsers.html:19 +#: userManagment/templates/userManagment/modifyACL.html:77 +#, fuzzy +#| msgid "Login User" +msgid "List Users" +msgstr "Потребителско име" + +#: baseTemplate/templates/baseTemplate/index.html:378 +#: userManagment/templates/userManagment/index.html:61 +#: userManagment/templates/userManagment/index.html:64 +#: userManagment/templates/userManagment/modifyUser.html:12 +#: userManagment/templates/userManagment/modifyUser.html:102 +msgid "Modify User" +msgstr "Промени Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:380 +#: userManagment/templates/userManagment/createACL.html:82 +#: userManagment/templates/userManagment/modifyACL.html:86 +#: userManagment/templates/userManagment/resellerCenter.html:12 +#: userManagment/templates/userManagment/resellerCenter.html:19 +#, fuzzy +#| msgid "Reseller" +msgid "Reseller Center" +msgstr "Resseler" + +#: baseTemplate/templates/baseTemplate/index.html:383 +#: userManagment/templates/userManagment/createACL.html:12 +#, fuzzy +#| msgid "Create New User" +msgid "Create New ACL" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:386 +#: userManagment/templates/userManagment/deleteACL.html:12 +#: userManagment/templates/userManagment/deleteACL.html:40 +#, fuzzy +#| msgid "Delete" +msgid "Delete ACL" +msgstr "Изтрий" + +#: baseTemplate/templates/baseTemplate/index.html:389 +#, fuzzy +#| msgid "Modify User" +msgid "Modify ACL" +msgstr "Промени Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:392 +#: userManagment/templates/userManagment/apiAccess.html:13 +#: userManagment/templates/userManagment/apiAccess.html:20 +#, fuzzy +#| msgid "Access Log" +msgid "API Access" +msgstr "Access Лог" + +#: baseTemplate/templates/baseTemplate/index.html:408 +#: userManagment/templates/userManagment/createACL.html:112 +#: userManagment/templates/userManagment/modifyACL.html:116 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 +#: websiteFunctions/templates/websiteFunctions/index.html:43 +#: websiteFunctions/templates/websiteFunctions/index.html:45 +msgid "Create Website" +msgstr "Нова Страница" + +#: baseTemplate/templates/baseTemplate/index.html:414 +#: userManagment/templates/userManagment/createACL.html:121 +#: userManagment/templates/userManagment/modifyACL.html:125 +#: websiteFunctions/templates/websiteFunctions/index.html:67 +#: websiteFunctions/templates/websiteFunctions/index.html:69 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 +msgid "Modify Website" +msgstr "Промени Страница" + +#: baseTemplate/templates/baseTemplate/index.html:417 +#: websiteFunctions/templates/websiteFunctions/index.html:81 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 +msgid "Suspend/Unsuspend" +msgstr "Пусни/Спри" + +#: baseTemplate/templates/baseTemplate/index.html:420 +#: userManagment/templates/userManagment/createACL.html:139 +#: userManagment/templates/userManagment/deleteACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:143 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 +#: websiteFunctions/templates/websiteFunctions/index.html:90 +#: websiteFunctions/templates/websiteFunctions/index.html:92 +msgid "Delete Website" +msgstr "Изтрий Страница" + +#: baseTemplate/templates/baseTemplate/index.html:438 +#: baseTemplate/templates/baseTemplate/index.html:671 +#: packages/templates/packages/listPackages.html:13 +#: packages/templates/packages/listPackages.html:19 +#: userManagment/templates/userManagment/createACL.html:161 +#: userManagment/templates/userManagment/modifyACL.html:165 +#, fuzzy +#| msgid "Packages" +msgid "List Packages" +msgstr "Пакети" + +#: baseTemplate/templates/baseTemplate/index.html:441 +#: packages/templates/packages/deletePackage.html:12 +#: packages/templates/packages/deletePackage.html:18 +#: packages/templates/packages/deletePackage.html:39 +#: packages/templates/packages/index.html:38 +#: packages/templates/packages/index.html:41 +#: userManagment/templates/userManagment/createACL.html:170 +#: userManagment/templates/userManagment/modifyACL.html:174 +msgid "Delete Package" +msgstr "Изтрий Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:444 +#: packages/templates/packages/index.html:51 +#: packages/templates/packages/index.html:54 +#: packages/templates/packages/modifyPackage.html:9 +#: packages/templates/packages/modifyPackage.html:15 +#: packages/templates/packages/modifyPackage.html:108 +#: userManagment/templates/userManagment/createACL.html:179 +#: userManagment/templates/userManagment/modifyACL.html:183 +msgid "Modify Package" +msgstr "Промени Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:460 +#: databases/templates/databases/createDatabase.html:12 +#: databases/templates/databases/createDatabase.html:19 +#: databases/templates/databases/createDatabase.html:79 +#: databases/templates/databases/index.html:25 +#: databases/templates/databases/index.html:27 +#: databases/templates/databases/phpMyAdmin.html:12 +#: databases/templates/databases/phpMyAdmin.html:19 +#: userManagment/templates/userManagment/createACL.html:191 +#: userManagment/templates/userManagment/modifyACL.html:195 +msgid "Create Database" +msgstr "Нова База от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:463 +#: databases/templates/databases/deleteDatabase.html:12 +#: databases/templates/databases/deleteDatabase.html:19 +#: databases/templates/databases/deleteDatabase.html:51 +#: databases/templates/databases/index.html:37 +#: databases/templates/databases/index.html:39 +#: userManagment/templates/userManagment/createACL.html:200 +#: userManagment/templates/userManagment/modifyACL.html:204 +msgid "Delete Database" +msgstr "Изтрий База от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:466 +#: databases/templates/databases/index.html:48 +#: databases/templates/databases/index.html:50 +#: databases/templates/databases/listDataBases.html:13 +#: databases/templates/databases/listDataBases.html:19 +#: userManagment/templates/userManagment/createACL.html:209 +#: userManagment/templates/userManagment/modifyACL.html:213 +msgid "List Databases" +msgstr "Преглед на Бази от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:468 +#: baseTemplate/templates/baseTemplate/index.html:469 +#: databases/templates/databases/index.html:59 +#: databases/templates/databases/index.html:61 +msgid "PHPMYAdmin" +msgstr "PhpMyAdmin" + +#: baseTemplate/templates/baseTemplate/index.html:485 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 +#: dns/templates/dns/index.html:74 +#: userManagment/templates/userManagment/createACL.html:221 +#: userManagment/templates/userManagment/modifyACL.html:225 +msgid "Create Nameserver" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:488 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Configure Default Nameservers" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:488 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Config Default Nameservers" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:491 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 +#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 +#: dns/templates/dns/index.html:86 +msgid "Create DNS Zone" +msgstr "Създай DNS Зона" + +#: baseTemplate/templates/baseTemplate/index.html:494 +#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 +#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 +#: dns/templates/dns/index.html:98 +#: userManagment/templates/userManagment/createACL.html:239 +#: userManagment/templates/userManagment/modifyACL.html:243 +msgid "Delete Zone" +msgstr "Изтрий Зона" + +#: baseTemplate/templates/baseTemplate/index.html:497 +msgid "Add/Delete Records" +msgstr "Добави/Премахни Записи" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:12 +#: mailServer/templates/mailServer/createEmailAccount.html:19 +msgid "Create Email Account" +msgstr "Създай Email Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:98 +#: mailServer/templates/mailServer/index.html:25 +#: mailServer/templates/mailServer/index.html:28 +#: userManagment/templates/userManagment/createACL.html:262 +#: userManagment/templates/userManagment/modifyACL.html:266 +msgid "Create Email" +msgstr "Създай Email" + +#: baseTemplate/templates/baseTemplate/index.html:516 +#: userManagment/templates/userManagment/createACL.html:271 +#: userManagment/templates/userManagment/modifyACL.html:275 +#, fuzzy +#| msgid "List Domains" +msgid "List Emails" +msgstr "Списък с Домейн" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:12 +#: mailServer/templates/mailServer/deleteEmailAccount.html:19 +msgid "Delete Email Account" +msgstr "Изтрий Email Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:73 +#: mailServer/templates/mailServer/index.html:38 +#: mailServer/templates/mailServer/index.html:41 +#: userManagment/templates/userManagment/createACL.html:280 +#: userManagment/templates/userManagment/modifyACL.html:284 +msgid "Delete Email" +msgstr "Изтрий Email" + +#: baseTemplate/templates/baseTemplate/index.html:522 +#: userManagment/templates/userManagment/createACL.html:289 +#: userManagment/templates/userManagment/modifyACL.html:293 +msgid "Email Forwarding" +msgstr "Email пренасочване" + +#: baseTemplate/templates/baseTemplate/index.html:525 +#: databases/templates/databases/listDataBases.html:90 +#: ftp/templates/ftp/listFTPAccounts.html:108 +#: mailServer/templates/mailServer/changeEmailPassword.html:97 +#: mailServer/templates/mailServer/index.html:51 +#: mailServer/templates/mailServer/index.html:54 +#: mailServer/templates/mailServer/listEmails.html:76 +msgid "Change Password" +msgstr "Промени Парола" + +#: baseTemplate/templates/baseTemplate/index.html:528 +#: mailServer/templates/mailServer/dkimManager.html:13 +#: mailServer/templates/mailServer/dkimManager.html:22 +#: mailServer/templates/mailServer/dkimManager.html:75 +#: userManagment/templates/userManagment/createACL.html:309 +#: userManagment/templates/userManagment/modifyACL.html:313 +msgid "DKIM Manager" +msgstr "DKIM Мениджър" + +#: baseTemplate/templates/baseTemplate/index.html:530 +#: baseTemplate/templates/baseTemplate/index.html:531 +msgid "Access Webmail" +msgstr "Webmail" + +#: baseTemplate/templates/baseTemplate/index.html:547 +#: emailMarketing/templates/emailMarketing/website.html:886 +#: emailMarketing/templates/emailMarketing/website.html:889 +#: ftp/templates/ftp/createFTPAccount.html:12 +#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 +#: ftp/templates/ftp/index.html:26 +#: userManagment/templates/userManagment/createACL.html:322 +#: userManagment/templates/userManagment/modifyACL.html:326 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 +#: websiteFunctions/templates/websiteFunctions/website.html:821 +#: websiteFunctions/templates/websiteFunctions/website.html:824 +msgid "Create FTP Account" +msgstr "Създай FTP Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:550 +#: emailMarketing/templates/emailMarketing/website.html:898 +#: emailMarketing/templates/emailMarketing/website.html:901 +#: ftp/templates/ftp/deleteFTPAccount.html:12 +#: ftp/templates/ftp/deleteFTPAccount.html:18 +#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 +#: ftp/templates/ftp/index.html:37 +#: userManagment/templates/userManagment/createACL.html:331 +#: userManagment/templates/userManagment/modifyACL.html:335 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 +#: websiteFunctions/templates/websiteFunctions/website.html:830 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +msgid "Delete FTP Account" +msgstr "Изтрий FTP Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:553 +#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 +#: ftp/templates/ftp/listFTPAccounts.html:13 +#: ftp/templates/ftp/listFTPAccounts.html:19 +#: userManagment/templates/userManagment/createACL.html:340 +#: userManagment/templates/userManagment/modifyACL.html:344 +msgid "List FTP Accounts" +msgstr "Преглед FTP Акаунти" + +#: baseTemplate/templates/baseTemplate/index.html:575 +#: userManagment/templates/userManagment/createACL.html:370 +#: userManagment/templates/userManagment/modifyACL.html:374 +msgid "Add/Delete Destination" +msgstr "Добави/Премахни Дестинация" + +#: baseTemplate/templates/baseTemplate/index.html:590 +msgid "Incremental Back up - Beta" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:592 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Incremental Back up" +msgstr "Откажи Архив" + +#: baseTemplate/templates/baseTemplate/index.html:598 +#, fuzzy +#| msgid "Restore Back up" +msgid "Create/Restore Back up" +msgstr "Възстанови Архив" + +#: baseTemplate/templates/baseTemplate/index.html:601 +#, fuzzy +#| msgid "Add/Delete Destination" +msgid "Add/Remove Destinations" +msgstr "Добави/Премахни Дестинация" + +#: baseTemplate/templates/baseTemplate/index.html:604 +#, fuzzy +#| msgid "Schedule Back up" +msgid "Schedule Back ups" +msgstr "Планирано Архивиране " + +#: baseTemplate/templates/baseTemplate/index.html:607 +#, fuzzy +#| msgid "Transfer Websites from Remote Server - CyberPanel" +msgid "Restore from Remote Server" +msgstr "Премести страница от отдалечен сървър - CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:607 +#, fuzzy +#| msgid "Restore Website" +msgid "Restore from Remote" +msgstr "Възстанови Страница" + +#: baseTemplate/templates/baseTemplate/index.html:624 +#: manageSSL/templates/manageSSL/index.html:29 +#: manageSSL/templates/manageSSL/index.html:31 +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/manageSSL.html:20 +#: userManagment/templates/userManagment/createACL.html:404 +#: userManagment/templates/userManagment/modifyACL.html:408 +msgid "Manage SSL" +msgstr "Нов SSL" + +#: baseTemplate/templates/baseTemplate/index.html:627 +#: manageSSL/templates/manageSSL/index.html:45 +#: manageSSL/templates/manageSSL/index.html:47 +#: userManagment/templates/userManagment/createACL.html:413 +#: userManagment/templates/userManagment/modifyACL.html:417 +msgid "Hostname SSL" +msgstr "Hostname SSL" + +#: baseTemplate/templates/baseTemplate/index.html:630 +#: manageSSL/templates/manageSSL/index.html:60 +#: manageSSL/templates/manageSSL/index.html:62 +#: userManagment/templates/userManagment/createACL.html:422 +#: userManagment/templates/userManagment/modifyACL.html:426 +msgid "MailServer SSL" +msgstr "MailServer SSL" + +#: baseTemplate/templates/baseTemplate/index.html:637 +msgid "Server" +msgstr "Сървър" + +#: baseTemplate/templates/baseTemplate/index.html:644 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:688 +#: baseTemplate/templates/baseTemplate/index.html:705 +#: baseTemplate/templates/baseTemplate/index.html:846 +msgid "NEW" +msgstr "НОВ" + +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Web Based Terminal" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:657 +#: baseTemplate/templates/baseTemplate/index.html:659 +msgid "CloudLinux" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:666 +#, fuzzy +#| msgid "Create Package" +msgid "Create Cloud Linux Package" +msgstr "Създай Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:671 +msgid "List Cloud Linux Package" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:676 +#, fuzzy +#| msgid "Attach git to your websites." +msgid "Monitor Usage of your Websites" +msgstr "Прикачи Git за тази страница." + +#: baseTemplate/templates/baseTemplate/index.html:676 +#, fuzzy +#| msgid "Resource Usage" +msgid "Monitor Usage" +msgstr "Използвани ресурси" + +#: baseTemplate/templates/baseTemplate/index.html:685 +#: baseTemplate/templates/baseTemplate/index.html:687 +#, fuzzy +#| msgid "Configurations" +msgid "Containerization" +msgstr "Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:694 +#, fuzzy +#| msgid "Create Website" +msgid "Create Website Limits" +msgstr "Нова Страница" + +#: baseTemplate/templates/baseTemplate/index.html:694 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Limits" +msgstr "Паркирай Домейн" + +#: baseTemplate/templates/baseTemplate/index.html:702 +msgid "Docker" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:704 +#, fuzzy +#| msgid "DKIM Manager" +msgid "Docker Manager" +msgstr "DKIM Мениджър" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage Docker Images" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#: dockerManager/templates/dockerManager/index.html:49 +#: dockerManager/templates/dockerManager/index.html:51 +#: dockerManager/templates/dockerManager/manageImages.html:14 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Images" +msgstr "Промени Email Парола" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage Docker Containers" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#: dockerManager/templates/dockerManager/index.html:29 +#: dockerManager/templates/dockerManager/index.html:31 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage Containers" +msgstr "Управлявай Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:717 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Create New Docker Container" +msgstr "Създай Потребител - CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:717 +#, fuzzy +#| msgid "Create New User" +msgid "Create New Container" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:733 +#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 +#: tuning/templates/tuning/liteSpeedTuning.html:12 +msgid "LiteSpeed Tuning" +msgstr "LiteSpeed Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:736 +#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 +#: tuning/templates/tuning/phpTuning.html:13 +#: tuning/templates/tuning/phpTuning.html:149 +msgid "PHP Tuning" +msgstr "PHP Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:751 +#: serverStatus/templates/serverStatus/topProcesses.html:14 +#: serverStatus/templates/serverStatus/topProcesses.html:179 +#, fuzzy +#| msgid "LiteSpeed Processes" +msgid "Top Processes" +msgstr "LiteSpeed Processes" + +#: baseTemplate/templates/baseTemplate/index.html:754 +#: serverStatus/templates/serverStatus/index.html:25 +#: serverStatus/templates/serverStatus/index.html:28 +msgid "LiteSpeed Status" +msgstr "LiteSpeed Статус" + +#: baseTemplate/templates/baseTemplate/index.html:757 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 +#: serverStatus/templates/serverStatus/index.html:38 +msgid "CyberPanel Main Log File" +msgstr "Главен CyberPanel Лог" + +#: baseTemplate/templates/baseTemplate/index.html:760 +msgid "Services Status" +msgstr "Сървър Статус" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/installExtensions.html:13 +msgid "Install PHP Extensions" +msgstr "Инсталирай PHP Модул" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/index.html:24 +#: managePHP/templates/managePHP/index.html:26 +msgid "Install Extensions" +msgstr "Инсталирай Модул" + +#: baseTemplate/templates/baseTemplate/index.html:779 +#: managePHP/templates/managePHP/index.html:35 +#: managePHP/templates/managePHP/index.html:37 +msgid "Edit PHP Configs" +msgstr "Промени PHP Config" + +#: baseTemplate/templates/baseTemplate/index.html:795 +msgid "Access Log" +msgstr "Access Лог" + +#: baseTemplate/templates/baseTemplate/index.html:797 +#: emailMarketing/templates/emailMarketing/website.html:139 +#: serverLogs/templates/serverLogs/errorLogs.html:13 +#: serverLogs/templates/serverLogs/index.html:37 +#: serverLogs/templates/serverLogs/index.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Error Logs" +msgstr "Error Логове" + +#: baseTemplate/templates/baseTemplate/index.html:799 +#: emailPremium/templates/emailPremium/emailPage.html:144 +#: serverLogs/templates/serverLogs/emailLogs.html:14 +#: serverLogs/templates/serverLogs/index.html:49 +#: serverLogs/templates/serverLogs/index.html:52 +msgid "Email Logs" +msgstr "Email Логове" + +#: baseTemplate/templates/baseTemplate/index.html:799 +msgid "Email Log" +msgstr "Email Лог" + +#: baseTemplate/templates/baseTemplate/index.html:801 +#: serverLogs/templates/serverLogs/ftplogs.html:13 +#: serverLogs/templates/serverLogs/index.html:61 +#: serverLogs/templates/serverLogs/index.html:64 +msgid "FTP Logs" +msgstr "FTP Логове" + +#: baseTemplate/templates/baseTemplate/index.html:803 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 +msgid "ModSecurity Audit Logs" +msgstr "ModSecurity Audit логове" + +#: baseTemplate/templates/baseTemplate/index.html:803 +msgid "ModSec Audit Logs" +msgstr "ModSec Audit логове" + +#: baseTemplate/templates/baseTemplate/index.html:819 +msgid "Firewall Home" +msgstr "Защитна Стена" + +#: baseTemplate/templates/baseTemplate/index.html:819 +#: firewall/templates/firewall/csf.html:119 +#: firewall/templates/firewall/index.html:25 +#: firewall/templates/firewall/index.html:27 +msgid "Firewall" +msgstr "Защитна Стена" + +#: baseTemplate/templates/baseTemplate/index.html:821 +#: firewall/templates/firewall/index.html:36 +#: firewall/templates/firewall/index.html:38 +#: firewall/templates/firewall/secureSSH.html:13 +#: firewall/templates/firewall/secureSSH.html:20 +msgid "Secure SSH" +msgstr "Сигурен SSH" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:58 +msgid "ModSecurity Configurations" +msgstr "Редактирай ModSecurity Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:60 +msgid "ModSecurity Conf" +msgstr "ModSecurity Conf" + +#: baseTemplate/templates/baseTemplate/index.html:826 +#: firewall/templates/firewall/index.html:69 +#: firewall/templates/firewall/index.html:71 +#: firewall/templates/firewall/modSecurityRules.html:20 +msgid "ModSecurity Rules" +msgstr "ModSecurity Rules" + +#: baseTemplate/templates/baseTemplate/index.html:829 +#: firewall/templates/firewall/index.html:80 +#: firewall/templates/firewall/index.html:82 +msgid "ModSecurity Rules Packs" +msgstr "ModSecurity Rules Packs" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/index.html:47 +msgid "ConfigServer Security & Firewall (CSF)" +msgstr "ConfigServer Security & Firewall (CSF)" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/csf.html:21 +#: firewall/templates/firewall/csf.html:86 +#: firewall/templates/firewall/csf.html:95 +#: firewall/templates/firewall/index.html:49 +msgid "CSF" +msgstr "CSF" + +#: baseTemplate/templates/baseTemplate/index.html:835 +#, fuzzy +#| msgid "Configurations" +msgid "CageFS Configurations" +msgstr "Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:843 +#: baseTemplate/templates/baseTemplate/index.html:845 +msgid "Mail Settings" +msgstr "Mail Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:852 +#: emailPremium/templates/emailPremium/policyServer.html:20 +msgid "Email Policy Server" +msgstr "Email Policy Server" + +#: baseTemplate/templates/baseTemplate/index.html:855 +msgid "Email Limits" +msgstr "Email Лимити" + +#: baseTemplate/templates/baseTemplate/index.html:858 +msgid "SpamAssassin Configurations" +msgstr "SpamAssassin Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:858 +#: emailPremium/templates/emailPremium/SpamAssassin.html:25 +#: firewall/templates/firewall/spamassassin.html:20 +msgid "SpamAssassin" +msgstr "SpamAssassin" + +#: baseTemplate/templates/baseTemplate/index.html:861 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:978 +#: websiteFunctions/templates/websiteFunctions/website.html:909 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Email пренасочване" + +#: baseTemplate/templates/baseTemplate/index.html:869 +#: baseTemplate/templates/baseTemplate/index.html:871 +msgid "Manage Services" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:877 +#: manageServices/templates/manageServices/managePowerDNS.html:25 +msgid "Manage PowerDNS" +msgstr "Управлявай PowerDNS" + +#: baseTemplate/templates/baseTemplate/index.html:880 +#: manageServices/templates/manageServices/managePostfix.html:22 +msgid "Manage Postfix" +msgstr "Управлявай Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:883 +msgid "Manage FTP" +msgstr "Управлявай FTP" + +#: baseTemplate/templates/baseTemplate/index.html:890 +#: baseTemplate/templates/baseTemplate/index.html:892 +#: pluginHolder/templates/pluginHolder/plugins.html:14 +#: pluginHolder/templates/pluginHolder/plugins.html:21 +msgid "Plugins" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:898 +#, fuzzy +#| msgid "Install Extensions" +msgid "Installed Plugins" +msgstr "Инсталирай Модул" + +#: baseTemplate/templates/baseTemplate/index.html:898 +#, fuzzy +#| msgid "Install" +msgid "Installed" +msgstr "Инсталирай" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:3 +msgid "Version Management - CyberPanel" +msgstr "Мениджър на Версия - CyberPanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:11 +msgid "" +"On this page you can manage versions and or upgrade to latest version of " +"CyberPanel" +msgstr "" +"От тази страница може да променяте версията на панела, както и да извършвате " +"upgrade до последната версия на CyberPanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:25 +msgid "Current Version" +msgstr "Сегашна Версия" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:33 +msgid "Build" +msgstr "Билд" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:42 +msgid "Latest Version" +msgstr "Последна Версия" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:50 +msgid "Latest Build" +msgstr "Последен Билд" + +#: containerization/templates/containerization/listWebsites.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Limits - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: containerization/templates/containerization/listWebsites.html:15 +msgid "Launch and set limits for the websites." +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:14 +msgid "CyberPanel Ent is required for Containerization." +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:22 +msgid "Containerization is only available on CyberPanel Ent. " +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:39 +msgid "" +"Required packages are not installed on this server. Please proceed to " +"installation." +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid " limits - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: containerization/templates/containerization/websiteContainerLimit.html:14 +#, fuzzy +#| msgid "Disk Usage" +msgid "Limits/Usage" +msgstr "Използван диск" + +#: containerization/templates/containerization/websiteContainerLimit.html:16 +msgid "Set limits and view usage for " +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:25 +msgid "" +"Limits are not being inforced, click Edit Limits to inforace the limits." +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:33 +msgid "Limit" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:34 +#: dns/templates/dns/addDeleteDNSRecords.html:330 +msgid "Value" +msgstr "Валута" + +#: containerization/templates/containerization/websiteContainerLimit.html:40 +#: containerization/templates/containerization/websiteContainerLimit.html:77 +#, fuzzy +#| msgid "CPU Usage" +msgid "CPU Percentage" +msgstr "CPU Използване" + +#: containerization/templates/containerization/websiteContainerLimit.html:44 +#: serverStatus/templates/serverStatus/topProcesses.html:131 +msgid "Memory" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:48 +#: containerization/templates/containerization/websiteContainerLimit.html:91 +msgid "I/O" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:56 +#: containerization/templates/containerization/websiteContainerLimit.html:107 +msgid "Network Speed" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:84 +#, fuzzy +#| msgid "Memory Soft Limit" +msgid "Memory Limit" +msgstr "Memory Soft Limit" + +#: databases/templates/databases/createDatabase.html:3 +msgid "Create New Database - CyberPanel" +msgstr "Създай нова База от Данни - CyberPanel" + +#: databases/templates/databases/createDatabase.html:13 +#: databases/templates/databases/phpMyAdmin.html:13 +msgid "Create a new database on this page." +msgstr "Създай нова база от данни от тази страница." + +#: databases/templates/databases/createDatabase.html:40 +#: databases/templates/databases/listDataBases.html:105 +msgid "Database Name" +msgstr "Име на База от Данни" + +#: databases/templates/databases/createDatabase.html:48 +#: firewall/templates/firewall/secureSSH.html:120 +#: ftp/templates/ftp/createFTPAccount.html:57 +#: ftp/templates/ftp/listFTPAccounts.html:123 +#: mailServer/templates/mailServer/createEmailAccount.html:59 +msgid "User Name" +msgstr "Потребителско Име" + +#: databases/templates/databases/createDatabase.html:61 +#: databases/templates/databases/listDataBases.html:74 +#: ftp/templates/ftp/createFTPAccount.html:73 +#: ftp/templates/ftp/listFTPAccounts.html:92 +#: mailServer/templates/mailServer/changeEmailPassword.html:74 +#: mailServer/templates/mailServer/createEmailAccount.html:74 +#: userManagment/templates/userManagment/createUser.html:90 +#: userManagment/templates/userManagment/modifyUser.html:68 +#, fuzzy +#| msgid "Generate Now" +msgid "Generate" +msgstr "Генерирай сега" + +#: databases/templates/databases/createDatabase.html:66 +#: databases/templates/databases/listDataBases.html:77 +#: ftp/templates/ftp/createFTPAccount.html:78 +#: ftp/templates/ftp/listFTPAccounts.html:96 +#: mailServer/templates/mailServer/changeEmailPassword.html:79 +#: mailServer/templates/mailServer/createEmailAccount.html:79 +#: userManagment/templates/userManagment/createUser.html:95 +#: userManagment/templates/userManagment/modifyUser.html:73 +#, fuzzy +#| msgid "Change Password" +msgid "Generated Password" +msgstr "Промени Парола" + +#: databases/templates/databases/createDatabase.html:71 +#: databases/templates/databases/listDataBases.html:84 +#: ftp/templates/ftp/createFTPAccount.html:85 +#: ftp/templates/ftp/listFTPAccounts.html:103 +#: mailServer/templates/mailServer/changeEmailPassword.html:86 +#: mailServer/templates/mailServer/createEmailAccount.html:86 +#: userManagment/templates/userManagment/createUser.html:101 +#: userManagment/templates/userManagment/modifyUser.html:79 +#, fuzzy +#| msgid "User" +msgid "Use" +msgstr "Потребител" + +#: databases/templates/databases/createDatabase.html:89 +#: databases/templates/databases/phpMyAdmin.html:41 +msgid "Cannot create database. Error message:" +msgstr "Базата от Данни не е създадена, защото:" + +#: databases/templates/databases/createDatabase.html:93 +#: databases/templates/databases/phpMyAdmin.html:45 +msgid "Database created successfully." +msgstr "Базата от Данни е създадена успешно." + +#: databases/templates/databases/deleteDatabase.html:3 +msgid "Delete Database - CyberPanel" +msgstr "Премахни База от Данни - CyberPanel" + +#: databases/templates/databases/deleteDatabase.html:13 +msgid "Delete an existing database on this page." +msgstr "Премахни налична база от данни." + +#: databases/templates/databases/deleteDatabase.html:38 +msgid "Select Database" +msgstr "Избери База от Данни" + +#: databases/templates/databases/deleteDatabase.html:64 +msgid "Database deleted successfully." +msgstr "Базата от Данни е успешно премахната." + +#: databases/templates/databases/index.html:3 +msgid "Database Functions - CyberPanel" +msgstr "Бази от Данни - CyberPanel" + +#: databases/templates/databases/index.html:13 +msgid "Create, edit and delete databases on this page." +msgstr "Създай, редактирай базите от данни." + +#: databases/templates/databases/listDataBases.html:3 +msgid "List Databases - CyberPanel" +msgstr "Бази от Данни - CyberPanel" + +#: databases/templates/databases/listDataBases.html:14 +msgid "List Databases or change their passwords." +msgstr "Списък на базите от данни или промени техните пароли." + +#: databases/templates/databases/listDataBases.html:26 +#: dns/templates/dns/addDeleteDNSRecords.html:42 +#: ftp/templates/ftp/deleteFTPAccount.html:39 +#: ftp/templates/ftp/listFTPAccounts.html:42 +#: mailServer/templates/mailServer/listEmails.html:43 +#: tuning/templates/tuning/phpTuning.html:30 +msgid "Select Domain" +msgstr "Избери Домейн" + +#: databases/templates/databases/listDataBases.html:44 +#: dns/templates/dns/addDeleteDNSRecords.html:367 +#: ftp/templates/ftp/listFTPAccounts.html:61 +msgid "Records successfully fetched for" +msgstr "Записите са успешно извлечени за" + +#: databases/templates/databases/listDataBases.html:49 +msgid "Password changed for: " +msgstr "Паролата е променена за" + +#: databases/templates/databases/listDataBases.html:53 +msgid "Cannot change password for " +msgstr "Невъзмона промяна на паролата за" + +#: databases/templates/databases/listDataBases.html:59 +#: firewall/templates/firewall/firewall.html:161 +#: ftp/templates/ftp/listFTPAccounts.html:76 +msgid "Could Not Connect to server. Please refresh this page" +msgstr "Действието не е изпълнение. Моля презаредете страницата." + +#: databases/templates/databases/listDataBases.html:106 +msgid "Database User" +msgstr "Потребител за база от данни" + +#: databases/templates/databases/listDataBases.html:117 +#: ftp/templates/ftp/listFTPAccounts.html:139 +msgid "Change" +msgstr "Промени" + +#: databases/templates/databases/phpMyAdmin.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "phpMyAdmin - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:3 +msgid "Add/Modify DNS Records - CyberPanel" +msgstr "Добави/Промени DNS записи - CyberPanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +msgid "Add/Modify DNS Zone" +msgstr "Добави/Промени DNS записи" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +#: dns/templates/dns/configureDefaultNameServers.html:12 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/deleteDNSZone.html:12 +msgid "DNS Docs" +msgstr "DNS Документация" + +#: dns/templates/dns/addDeleteDNSRecords.html:14 +msgid "" +"On this page you can add/modify dns records for domains whose dns zone is " +"already created." +msgstr "" +"От тази страница може да добавяте или променяте dns записи за домейните " +"чиито dns зони са вече създадени." + +#: dns/templates/dns/addDeleteDNSRecords.html:19 +msgid "Add Records" +msgstr "Добави записи" + +#: dns/templates/dns/addDeleteDNSRecords.html:27 +#: dns/templates/dns/configureDefaultNameServers.html:24 +#: dns/templates/dns/createDNSZone.html:24 +#: dns/templates/dns/createNameServer.html:24 +#: dns/templates/dns/deleteDNSZone.html:25 +msgid "PowerDNS is disabled." +msgstr "PowerDNS е спрян" + +#: dns/templates/dns/addDeleteDNSRecords.html:29 +#: dns/templates/dns/configureDefaultNameServers.html:26 +#: dns/templates/dns/createDNSZone.html:26 +#: dns/templates/dns/createNameServer.html:26 +#: dns/templates/dns/deleteDNSZone.html:27 +#: ftp/templates/ftp/createFTPAccount.html:29 +#: ftp/templates/ftp/deleteFTPAccount.html:27 +#: ftp/templates/ftp/listFTPAccounts.html:29 +#: mailServer/templates/mailServer/changeEmailPassword.html:30 +#: mailServer/templates/mailServer/createEmailAccount.html:30 +#: mailServer/templates/mailServer/deleteEmailAccount.html:30 +#: mailServer/templates/mailServer/emailForwarding.html:28 +#: mailServer/templates/mailServer/listEmails.html:30 +msgid "Enable Now" +msgstr "Позволи" + +#: dns/templates/dns/addDeleteDNSRecords.html:78 +#: dns/templates/dns/addDeleteDNSRecords.html:101 +#: dns/templates/dns/addDeleteDNSRecords.html:125 +#: dns/templates/dns/addDeleteDNSRecords.html:148 +#: dns/templates/dns/addDeleteDNSRecords.html:176 +#: dns/templates/dns/addDeleteDNSRecords.html:200 +#: dns/templates/dns/addDeleteDNSRecords.html:224 +#: dns/templates/dns/addDeleteDNSRecords.html:248 +#: dns/templates/dns/addDeleteDNSRecords.html:272 +#: dns/templates/dns/addDeleteDNSRecords.html:298 +#: dns/templates/dns/addDeleteDNSRecords.html:329 +msgid "TTL" +msgstr "TTL" + +#: dns/templates/dns/addDeleteDNSRecords.html:88 +#: dns/templates/dns/addDeleteDNSRecords.html:111 +#: dns/templates/dns/addDeleteDNSRecords.html:135 +#: dns/templates/dns/addDeleteDNSRecords.html:162 +#: dns/templates/dns/addDeleteDNSRecords.html:187 +#: dns/templates/dns/addDeleteDNSRecords.html:211 +#: dns/templates/dns/addDeleteDNSRecords.html:235 +#: dns/templates/dns/addDeleteDNSRecords.html:259 +#: dns/templates/dns/addDeleteDNSRecords.html:287 +#: dns/templates/dns/addDeleteDNSRecords.html:304 +#: firewall/templates/firewall/firewall.html:104 +msgid "Add" +msgstr "Добави" + +#: dns/templates/dns/addDeleteDNSRecords.html:105 +msgid "IPV6 Address" +msgstr "IPV6 Адрес" + +#: dns/templates/dns/addDeleteDNSRecords.html:129 +#: dns/templates/dns/addDeleteDNSRecords.html:156 +#: dns/templates/dns/createDNSZone.html:38 +#: dns/templates/dns/createNameServer.html:36 +#: emailMarketing/templates/emailMarketing/website.html:318 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 +#: websiteFunctions/templates/websiteFunctions/website.html:280 +msgid "Domain Name" +msgstr "Домейн Име" + +#: dns/templates/dns/addDeleteDNSRecords.html:152 +#: dns/templates/dns/addDeleteDNSRecords.html:331 +msgid "Priority" +msgstr "Приоритет" + +#: dns/templates/dns/addDeleteDNSRecords.html:181 +msgid "Policy" +msgstr "Политика" + +#: dns/templates/dns/addDeleteDNSRecords.html:205 +msgid "Text" +msgstr "Текст" + +#: dns/templates/dns/addDeleteDNSRecords.html:229 +msgid "SOA Value" +msgstr "SOA стойност" + +#: dns/templates/dns/addDeleteDNSRecords.html:253 +msgid "Name server" +msgstr "Name server" + +#: dns/templates/dns/addDeleteDNSRecords.html:276 +msgid "Prioirty" +msgstr "Приоритет" + +#: dns/templates/dns/addDeleteDNSRecords.html:281 +msgid "Content" +msgstr "Стойност" + +#: dns/templates/dns/addDeleteDNSRecords.html:359 +msgid "Cannot fetch records. Error message:" +msgstr "Записите не са извлечени, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:363 +msgid "Cannot add record. Error message: " +msgstr "Записа не е добавен, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:371 +msgid "Record Successfully Deleted" +msgstr "Записа е успешно премахнат" + +#: dns/templates/dns/addDeleteDNSRecords.html:375 +msgid "Cannot delete record. Error message:" +msgstr "Записа не е премахнат, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:379 +msgid "Record Successfully Added." +msgstr "Записа е успешно добавен." + +#: dns/templates/dns/configureDefaultNameServers.html:3 +#, fuzzy +#| msgid "Create Nameserver - CyberPanel" +msgid "Configure Default Nameserver - CyberPanel" +msgstr "Създай Nameserver - CyberPanel" + +#: dns/templates/dns/configureDefaultNameServers.html:12 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Configure Default Nameserver" +msgstr "Създай Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:13 +#: dns/templates/dns/createNameServer.html:13 +msgid "" +"You can use this page to setup nameservers using which people on the " +"internet can resolve websites hosted on this server." +msgstr "От тази страница може да добавяте NameServers." + +#: dns/templates/dns/configureDefaultNameServers.html:18 +#: dns/templates/dns/createDNSZone.html:18 +#: dns/templates/dns/createNameServer.html:18 +#: userManagment/templates/userManagment/modifyUser.html:19 +msgid "Details" +msgstr "Детайли" + +#: dns/templates/dns/configureDefaultNameServers.html:36 +#: dns/templates/dns/createNameServer.html:46 +msgid "First Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:45 +#, fuzzy +#| msgid "Second Nameserver (Back up)" +msgid "Second Nameserver" +msgstr "Втори Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:52 +#, fuzzy +#| msgid "First Nameserver" +msgid "Third Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:59 +#, fuzzy +#| msgid "First Nameserver" +msgid "Forth Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:68 +#: emailMarketing/templates/emailMarketing/website.html:656 +#: emailMarketing/templates/emailMarketing/website.html:716 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:654 +msgid "Save" +msgstr "Запази" + +#: dns/templates/dns/createDNSZone.html:3 +msgid "Create DNS Zone - CyberPanel" +msgstr "Създай DNS Зона - CyberPanel" + +#: dns/templates/dns/createDNSZone.html:13 +msgid "" +"This page is used to create DNS zone, to edit dns zone you can visit Modify " +"DNS Zone Page." +msgstr "" +"Тази страница се използва за създаването на DNS зони. За редакция " +"използвайте страницата за редакция на DNS зони." + +#: dns/templates/dns/createDNSZone.html:61 +msgid "Cannot create DNS Zone. Error message:" +msgstr "DNS зоната не е създадена, защото:" + +#: dns/templates/dns/createDNSZone.html:65 +msgid "DNS Zone for domain:" +msgstr "DNS Зона за домейн:" + +#: dns/templates/dns/createNameServer.html:3 +msgid "Create Nameserver - CyberPanel" +msgstr "Създай Nameserver - CyberPanel" + +#: dns/templates/dns/createNameServer.html:62 +msgid "Second Nameserver (Back up)" +msgstr "Втори Nameserver" + +#: dns/templates/dns/createNameServer.html:89 +msgid "Nameserver cannot be created. Error message:" +msgstr "Nameserver не са създадени. Съобшение за грешка:" + +#: dns/templates/dns/createNameServer.html:93 +msgid "The following nameservers were successfully created:" +msgstr "Следните Nameserver са успешно създадени:" + +#: dns/templates/dns/deleteDNSZone.html:3 +msgid "Delete DNS Zone - CyberPanel" +msgstr "Премахни DNS Зона - CyberPanel" + +#: dns/templates/dns/deleteDNSZone.html:12 +#: dns/templates/dns/deleteDNSZone.html:18 +#: userManagment/templates/userManagment/createACL.html:230 +#: userManagment/templates/userManagment/modifyACL.html:234 +msgid "Delete DNS Zone" +msgstr "Премахни DNS Зона" + +#: dns/templates/dns/deleteDNSZone.html:13 +msgid "" +"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " +"all its related records as well." +msgstr "" +"От тази страница може да премахвате DNS зони. Премахването на зона ще " +"премахне и всички свързани с нея записи." + +#: dns/templates/dns/deleteDNSZone.html:37 +msgid "Select Zone" +msgstr "Избери Зона" + +#: dns/templates/dns/deleteDNSZone.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 +#: ftp/templates/ftp/deleteFTPAccount.html:73 +#: mailServer/templates/mailServer/deleteEmailAccount.html:82 +#: packages/templates/packages/deletePackage.html:47 +#: userManagment/templates/userManagment/deleteACL.html:49 +#: userManagment/templates/userManagment/deleteUser.html:51 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 +msgid "Are you sure?" +msgstr "Сирен ли си?" + +#: dns/templates/dns/deleteDNSZone.html:69 +msgid "Cannot delete zone. Error message: " +msgstr "Зоната не е премахната. Съобщение за грешка:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "Zone for domain:" +msgstr "Зона за домейн:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "is successfully erased." +msgstr "е успешно заличено." + +#: dns/templates/dns/index.html:3 +msgid "DNS Functions - CyberPanel" +msgstr "DNS Функции - CyberPanel" + +#: dns/templates/dns/index.html:12 +msgid "DNS Functions" +msgstr "DNS Функции" + +#: dns/templates/dns/index.html:13 +msgid "Create, edit and delete DNS zones on this page." +msgstr "Създавай, редактирай или премахвай DNS зони от тази страница." + +#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 +msgid "Add Delete Records" +msgstr "Добави Премахни Записи" + +#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 +msgid "Add Delete/Records" +msgstr "Добави Премахни/Записи" + +#: dockerManager/templates/dockerManager/images.html:3 +#: dockerManager/templates/dockerManager/manageImages.html:3 +#, fuzzy +#| msgid "Cron Management - CyberPanel" +msgid "Docker Manage Images - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/images.html:14 +#: dockerManager/templates/dockerManager/index.html:39 +#, fuzzy +#| msgid "Create new folder!" +msgid "Create new container" +msgstr "Създай нова директория!" + +#: dockerManager/templates/dockerManager/images.html:15 +msgid "Search new images and manage existing ones" +msgstr "" + +#: dockerManager/templates/dockerManager/images.html:22 +msgid "Locally Available Images" +msgstr "" + +#: dockerManager/templates/dockerManager/images.html:48 +#, fuzzy +#| msgid "Create FTP" +msgid "Create" +msgstr "Създай FTP" + +#: dockerManager/templates/dockerManager/index.html:3 +#, fuzzy +#| msgid "Cron Management - CyberPanel" +msgid "Docker Container Management - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/index.html:13 +#, fuzzy +#| msgid "Version Management" +msgid "Docker Container Management" +msgstr "Мениджър на Версия" + +#: dockerManager/templates/dockerManager/index.html:41 +#, fuzzy +#| msgid "Select Owner" +msgid "New Container" +msgstr "Избери Собственик" + +#: dockerManager/templates/dockerManager/install.html:3 +#, fuzzy +#| msgid "Install Joomla - CyberPanel" +msgid "Install Docker - CyberPanel" +msgstr "Инсталирай Joomla - CyberPanel" + +#: dockerManager/templates/dockerManager/install.html:12 +#: dockerManager/templates/dockerManager/install.html:18 +#, fuzzy +#| msgid "Install Now" +msgid "Install Docker" +msgstr "Инсталирай" + +#: dockerManager/templates/dockerManager/install.html:26 +msgid "" +"Unable to connect to docker daemon, please try restarting docker from " +"service page" +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:28 +msgid "You do not have sufficient permissions to access this page" +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:32 +msgid "" +"Docker is currently not installed on this server. To manage containers, you " +"must first install it." +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:53 +msgid "" +"You do not have permissions to install Docker. Please contact your system " +"administrator" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Containers List - CyberPanel" +msgstr "Създай Email акаунт - CyberPanel" + +#: dockerManager/templates/dockerManager/listContainers.html:14 +#, fuzzy +#| msgid "List Domains" +msgid "List Containers" +msgstr "Списък с Домейн" + +#: dockerManager/templates/dockerManager/listContainers.html:17 +msgid "Manage containers on server" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:23 +msgid "Containers" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "Unlisted Containers" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "" +"Containers listed below were either not created through panel or were not " +"saved to database properly" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:148 +#: dockerManager/templates/dockerManager/runContainer.html:52 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 +msgid "Select Owner" +msgstr "Избери Собственик" + +#: dockerManager/templates/dockerManager/manageImages.html:17 +#, fuzzy +#| msgid "On this page you can configure ModSecurity settings." +msgid "On this page you can manage docker images." +msgstr "От тази страница може да настройте ModSecurity" + +#: dockerManager/templates/dockerManager/manageImages.html:65 +#: dockerManager/templates/dockerManager/manageImages.html:66 +msgid "Images" +msgstr "" + +#: dockerManager/templates/dockerManager/manageImages.html:67 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete unused images" +msgstr "Изтрий Страница" + +#: dockerManager/templates/dockerManager/manageImages.html:95 +msgid "Official image" +msgstr "" + +#: dockerManager/templates/dockerManager/manageImages.html:104 +msgid "Pull" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:3 +#, fuzzy +#| msgid "File Manager - CyberPanel" +msgid "Run new container - CyberPanel" +msgstr "Файл Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/runContainer.html:12 +msgid "Run Container" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:13 +msgid "Modify parameters for your new container" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:20 +#, fuzzy +#| msgid "Tuning Details" +msgid "Container Details" +msgstr "Детайли за Настройки" + +#: dockerManager/templates/dockerManager/runContainer.html:36 +#: dockerManager/templates/dockerManager/viewContainer.html:70 +msgid "Image" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:44 +msgid "Tag" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:64 +#: dockerManager/templates/dockerManager/viewContainer.html:206 +#, fuzzy +#| msgid "memory_limit" +msgid "Memory limit" +msgstr "memory_limit" + +#: dockerManager/templates/dockerManager/runContainer.html:104 +#: dockerManager/templates/dockerManager/viewContainer.html:250 +msgid "ENV" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:125 +#: dockerManager/templates/dockerManager/viewContainer.html:283 +msgid "Map Volumes" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:153 +#: dockerManager/templates/dockerManager/viewContainer.html:310 +#, fuzzy +#| msgid "Add Key" +msgid "Add field" +msgstr "Добави Ключ" + +#: dockerManager/templates/dockerManager/runContainer.html:161 +#, fuzzy +#| msgid "Create Domain" +msgid "Create Container" +msgstr "Създай Домейн" + +#: dockerManager/templates/dockerManager/runContainer.html:180 +#, fuzzy +#| msgid "is successfully created." +msgid "Container succesfully created." +msgstr "е успешно създаден." + +#: dockerManager/templates/dockerManager/runContainer.html:196 +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:431 +#: managePHP/templates/managePHP/installExtensions.html:103 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 +#: websiteFunctions/templates/websiteFunctions/website.html:394 +msgid "Go Back" +msgstr "Назад" + +#: dockerManager/templates/dockerManager/viewContainer.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Container Home - CyberPanel" +msgstr "Начало - CyberPanel" + +#: dockerManager/templates/dockerManager/viewContainer.html:14 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage Container" +msgstr "Управлявай Postfix" + +#: dockerManager/templates/dockerManager/viewContainer.html:15 +#, fuzzy +#| msgid "Currently:" +msgid "Currently managing: " +msgstr "В момента" + +#: dockerManager/templates/dockerManager/viewContainer.html:24 +msgid "Container Information" +msgstr "" + +#: dockerManager/templates/dockerManager/viewContainer.html:37 +#, fuzzy +#| msgid "Resource Usage" +msgid "Memory Usage" +msgstr "Използвани ресурси" + +#: dockerManager/templates/dockerManager/viewContainer.html:68 +#, fuzzy +#| msgid "Control DNS" +msgid "Container ID" +msgstr "Контрол на DNS" + +#: dockerManager/templates/dockerManager/viewContainer.html:77 +#, fuzzy +#| msgid "Port" +msgid "Ports" +msgstr "Порт" + +#: dockerManager/templates/dockerManager/viewContainer.html:79 +#, fuzzy +#| msgid "Stop" +msgid "to" +msgstr "Спри" + +#: dockerManager/templates/dockerManager/viewContainer.html:227 +#, fuzzy +#| msgid "Configurations" +msgid "Confirmation" +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:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +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:33 +msgid "Enable Now." +msgstr "Позволи" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:76 +#: userManagment/templates/userManagment/listUsers.html:32 +#: userManagment/templates/userManagment/userProfile.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 +msgid "Username" +msgstr "Потребителско Име" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 +msgid "Email Marketing Enabled." +msgstr "" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:53 +#: emailPremium/templates/emailPremium/emailLimits.html:159 +#: emailPremium/templates/emailPremium/emailPage.html:55 +#: emailPremium/templates/emailPremium/emailPage.html:61 +#: emailPremium/templates/emailPremium/listDomains.html:62 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:234 +msgid "Disable" +msgstr "Забрани" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 +msgid "Email Marketing Disabled." +msgstr "" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:161 +#: emailPremium/templates/emailPremium/emailPage.html:57 +#: emailPremium/templates/emailPremium/emailPage.html:63 +#: emailPremium/templates/emailPremium/listDomains.html:64 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Enable" +msgstr "Позволи" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, 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:484 +#: filemanager/templates/filemanager/index.html:417 +#: filemanager/templates/filemanager/index.html:460 +#: filemanager/templates/filemanager/index.html:523 +#: filemanager/templates/filemanager/index.html:558 +#: filemanager/templates/filemanager/index.html:588 +#: filemanager/templates/filemanager/index.html:649 +#: websiteFunctions/templates/websiteFunctions/website.html:447 +msgid "Close" +msgstr "Затвори" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:416 +msgid "Confirm" +msgstr "Потвърди" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, 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/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 +#: userManagment/templates/userManagment/listUsers.html:36 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +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:1030 +#: emailMarketing/templates/emailMarketing/website.html:1033 +#: emailMarketing/templates/emailMarketing/website.html:1034 +#: websiteFunctions/templates/websiteFunctions/website.html:956 +#: websiteFunctions/templates/websiteFunctions/website.html:960 +#: websiteFunctions/templates/websiteFunctions/website.html:961 +#, 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 +#: websiteFunctions/templates/websiteFunctions/website.html:677 +#, 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: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:16 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 +#: websiteFunctions/templates/websiteFunctions/website.html:16 +msgid "Preview" +msgstr "Покажи" + +#: emailMarketing/templates/emailMarketing/website.html:17 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 +#: websiteFunctions/templates/websiteFunctions/website.html:17 +msgid "All functions related to a particular site." +msgstr "Всички функции, които са свързани с определена страница." + +#: emailMarketing/templates/emailMarketing/website.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:28 +msgid "Resource Usage" +msgstr "Използвани ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:39 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 +#: websiteFunctions/templates/websiteFunctions/website.html:42 +msgid "Resource" +msgstr "Ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:41 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 +#: websiteFunctions/templates/websiteFunctions/website.html:44 +msgid "Allowed" +msgstr "Позволено" + +#: emailMarketing/templates/emailMarketing/website.html:63 +#: emailMarketing/templates/emailMarketing/website.html:89 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 +#: websiteFunctions/templates/websiteFunctions/website.html:64 +#: websiteFunctions/templates/websiteFunctions/website.html:86 +msgid "Bandwidth Usage" +msgstr "Използван Трафик" + +#: emailMarketing/templates/emailMarketing/website.html:124 +#: emailMarketing/templates/emailMarketing/website.html:127 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:112 +#: websiteFunctions/templates/websiteFunctions/website.html:116 +msgid "Load Access Logs" +msgstr "Зареди Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:128 +#: serverLogs/templates/serverLogs/accessLogs.html:16 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 +#: websiteFunctions/templates/websiteFunctions/website.html:117 +msgid "Access Logs" +msgstr "Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:135 +#: emailMarketing/templates/emailMarketing/website.html:138 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:121 +#: websiteFunctions/templates/websiteFunctions/website.html:125 +msgid "Load Error Logs" +msgstr "Зареди Error Логове" + +#: emailMarketing/templates/emailMarketing/website.html:150 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 +#: websiteFunctions/templates/websiteFunctions/website.html:133 +msgid "Logs Fetched" +msgstr "Логовете са изтеглени" + +#: emailMarketing/templates/emailMarketing/website.html:155 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 +#: websiteFunctions/templates/websiteFunctions/website.html:136 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Лог файловете не са извлечени. Използвайте терминала за техния преглед. " +"Съобщение за грешка: " + +#: emailMarketing/templates/emailMarketing/website.html:179 +#: emailMarketing/templates/emailMarketing/website.html:221 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:199 +msgid "Next" +msgstr "Следваща" + +#: emailMarketing/templates/emailMarketing/website.html:181 +#: emailMarketing/templates/emailMarketing/website.html:223 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 +#: websiteFunctions/templates/websiteFunctions/website.html:156 +#: websiteFunctions/templates/websiteFunctions/website.html:201 +msgid "Previous" +msgstr "Минала" + +#: emailMarketing/templates/emailMarketing/website.html:254 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:36 +#: packages/templates/packages/listPackages.html:93 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:225 +msgid "Domains" +msgstr "Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:262 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: emailMarketing/templates/emailMarketing/website.html:266 +#: emailMarketing/templates/emailMarketing/website.html:267 +#: websiteFunctions/templates/websiteFunctions/website.html:230 +#: websiteFunctions/templates/websiteFunctions/website.html:233 +#: websiteFunctions/templates/websiteFunctions/website.html:234 +#: websiteFunctions/templates/websiteFunctions/website.html:235 +msgid "Add Domains" +msgstr "Добави Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:274 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:278 +#: emailMarketing/templates/emailMarketing/website.html:279 +#: emailMarketing/templates/emailMarketing/website.html:280 +#: emailMarketing/templates/emailMarketing/website.html:300 +#: emailMarketing/templates/emailMarketing/website.html:303 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:240 +#: websiteFunctions/templates/websiteFunctions/website.html:241 +#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:245 +#: websiteFunctions/templates/websiteFunctions/website.html:246 +#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:266 +msgid "List Domains" +msgstr "Списък с Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:286 +#: emailMarketing/templates/emailMarketing/website.html:287 +#: emailMarketing/templates/emailMarketing/website.html:290 +#: emailMarketing/templates/emailMarketing/website.html:291 +#: emailMarketing/templates/emailMarketing/website.html:292 +#: websiteFunctions/templates/websiteFunctions/website.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:252 +#: websiteFunctions/templates/websiteFunctions/website.html:255 +#: websiteFunctions/templates/websiteFunctions/website.html:256 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +msgid "Domain Alias" +msgstr "Domain Alias" + +#: emailMarketing/templates/emailMarketing/website.html:299 +#: emailMarketing/templates/emailMarketing/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:262 +#: websiteFunctions/templates/websiteFunctions/website.html:267 +msgid "Add new Cron Job" +msgstr "Добави нова Cron Job" + +#: emailMarketing/templates/emailMarketing/website.html:305 +#: websiteFunctions/templates/websiteFunctions/website.html:268 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "This path is relative to: " +msgstr "Този път е относим към: " + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "Leave empty to set default." +msgstr "Отсави празни за по-подразбиране" + +#: emailMarketing/templates/emailMarketing/website.html:336 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 +#: websiteFunctions/templates/websiteFunctions/website.html:299 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:341 +#: emailMarketing/templates/emailMarketing/website.html:794 +#: managePHP/templates/managePHP/editPHPConfig.html:49 +#: managePHP/templates/managePHP/editPHPConfig.html:177 +#: managePHP/templates/managePHP/installExtensions.html:29 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:737 +msgid "Select PHP" +msgstr "Избери PHP" + +#: emailMarketing/templates/emailMarketing/website.html:354 +#: packages/templates/packages/createPackage.html:84 +#: packages/templates/packages/modifyPackage.html:87 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 +#: websiteFunctions/templates/websiteFunctions/website.html:317 +msgid "Additional Features" +msgstr "Допълнителни функции" + +#: emailMarketing/templates/emailMarketing/website.html:388 +#: websiteFunctions/templates/websiteFunctions/website.html:351 +msgid "Create Domain" +msgstr "Създай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:415 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:378 +msgid "Website succesfully created." +msgstr "Сайтът е успешно създаден." + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:412 +msgid "PHP Version Changed to:" +msgstr "PHP Версията е променена на:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:416 +msgid "Deleted:" +msgstr "Изтрит:" + +#: emailMarketing/templates/emailMarketing/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:420 +msgid "SSL Issued:" +msgstr "SSL издаден за: " + +#: emailMarketing/templates/emailMarketing/website.html:461 +#: websiteFunctions/templates/websiteFunctions/website.html:424 +msgid "Changes applied successfully." +msgstr "Промените са запаметени успешно." + +#: emailMarketing/templates/emailMarketing/website.html:528 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:492 +msgid "Issue" +msgstr "Издаден" + +#: emailMarketing/templates/emailMarketing/website.html:558 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:520 +msgid "Configurations" +msgstr "Конфигурация" + +#: emailMarketing/templates/emailMarketing/website.html:568 +#: emailMarketing/templates/emailMarketing/website.html:572 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:526 +#: websiteFunctions/templates/websiteFunctions/website.html:530 +msgid "Edit vHost Main Configurations" +msgstr "Редактирай vHost Main Configurations" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:531 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:582 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:537 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Добави Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:586 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:541 +msgid "Rewrite Rules (.htaccess)" +msgstr "Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:587 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:542 +msgid "Rewrite Rules" +msgstr "Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:595 +#: emailMarketing/templates/emailMarketing/website.html:598 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 +#: websiteFunctions/templates/websiteFunctions/website.html:547 +#: websiteFunctions/templates/websiteFunctions/website.html:550 +msgid "Add Your Own SSL" +msgstr "Добави свой SSL" + +#: emailMarketing/templates/emailMarketing/website.html:599 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:551 +msgid "Add SSL" +msgstr "Добави SSL" + +#: emailMarketing/templates/emailMarketing/website.html:607 +#: emailMarketing/templates/emailMarketing/website.html:610 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 +#: websiteFunctions/templates/websiteFunctions/website.html:556 +#: websiteFunctions/templates/websiteFunctions/website.html:559 +msgid "Change PHP Version" +msgstr "Промени PHP Версия" + +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:815 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 +#: websiteFunctions/templates/websiteFunctions/website.html:560 +#: websiteFunctions/templates/websiteFunctions/website.html:758 +msgid "Change PHP" +msgstr "Промени PHP" + +#: emailMarketing/templates/emailMarketing/website.html:623 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 +#: websiteFunctions/templates/websiteFunctions/website.html:571 +msgid "SSL Saved" +msgstr "SSL Запазен" + +#: emailMarketing/templates/emailMarketing/website.html:628 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Could not save SSL. Error message:" +msgstr "SSL не е запазен, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:678 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:619 +msgid "Current configuration in the file fetched." +msgstr "Текущата конфигурация във файла е изтеглена" + +#: emailMarketing/templates/emailMarketing/website.html:683 +#: emailMarketing/templates/emailMarketing/website.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 +#: websiteFunctions/templates/websiteFunctions/website.html:623 +#: websiteFunctions/templates/websiteFunctions/website.html:636 +msgid "Could not fetch current configuration. Error message:" +msgstr "Текущата конфигурация не е изтеглена, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:693 +#: emailMarketing/templates/emailMarketing/website.html:753 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 +#: websiteFunctions/templates/websiteFunctions/website.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +msgid "Configurations saved." +msgstr "Конфигурацията е запазена." + +#: emailMarketing/templates/emailMarketing/website.html:734 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 +msgid "Current rewrite rules in the file fetched." +msgstr "Наличните rewrite rules са изтеглени." + +#: emailMarketing/templates/emailMarketing/website.html:743 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 +#: websiteFunctions/templates/websiteFunctions/website.html:690 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Наличните rewrite rules не са изтеглени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:757 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 +#: websiteFunctions/templates/websiteFunctions/website.html:703 +msgid "Could not save rewrite rules. Error message:" +msgstr "Новите rewrite rules не са запаметени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:776 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Save Rewrite Rules" +msgstr "Запази Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 +#: websiteFunctions/templates/websiteFunctions/website.html:768 +msgid "Failed to change PHP version. Error message:" +msgstr "PHP Версията не е променена. Съобщение за грешка:" + +#: emailMarketing/templates/emailMarketing/website.html:830 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 +#: websiteFunctions/templates/websiteFunctions/website.html:773 +msgid "PHP successfully changed for: " +msgstr "PHP е успешно сменена за:" + +#: emailMarketing/templates/emailMarketing/website.html:855 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 +#: websiteFunctions/templates/websiteFunctions/website.html:795 +msgid "Files" +msgstr "Файлове" + +#: emailMarketing/templates/emailMarketing/website.html:863 +#: emailMarketing/templates/emailMarketing/website.html:866 +#: emailMarketing/templates/emailMarketing/website.html:867 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#: websiteFunctions/templates/websiteFunctions/website.html:803 +#: websiteFunctions/templates/websiteFunctions/website.html:804 +msgid "File Manager" +msgstr "Файл Мениджър" + +#: emailMarketing/templates/emailMarketing/website.html:874 +#: emailMarketing/templates/emailMarketing/website.html:877 +#: emailMarketing/templates/emailMarketing/website.html:915 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:809 +#: websiteFunctions/templates/websiteFunctions/website.html:812 +#: websiteFunctions/templates/websiteFunctions/website.html:845 +msgid "open_basedir Protection" +msgstr "open_basedir Защита" + +#: emailMarketing/templates/emailMarketing/website.html:878 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 +#: websiteFunctions/templates/websiteFunctions/website.html:813 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:890 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Create FTP Acct" +msgstr "Създай FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:902 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:834 +msgid "Delete FTP Acct" +msgstr "Изтрий FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:939 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +msgid "Apply Changes" +msgstr "Запази промените" + +#: emailMarketing/templates/emailMarketing/website.html:951 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 +#: websiteFunctions/templates/websiteFunctions/website.html:880 +msgid "Changes successfully saved." +msgstr "Промените са успешно добавени." + +#: emailMarketing/templates/emailMarketing/website.html:986 +#: emailMarketing/templates/emailMarketing/website.html:989 +#: emailMarketing/templates/emailMarketing/website.html:990 +#: websiteFunctions/templates/websiteFunctions/website.html:915 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#: websiteFunctions/templates/websiteFunctions/website.html:920 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Паркирай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:997 +#: emailMarketing/templates/emailMarketing/website.html:1000 +#: emailMarketing/templates/emailMarketing/website.html:1001 +#: websiteFunctions/templates/websiteFunctions/website.html:925 +#: websiteFunctions/templates/websiteFunctions/website.html:929 +#: websiteFunctions/templates/websiteFunctions/website.html:930 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Нов SSL" + +#: emailMarketing/templates/emailMarketing/website.html:1008 +#: emailMarketing/templates/emailMarketing/website.html:1011 +#: emailMarketing/templates/emailMarketing/website.html:1012 +#: websiteFunctions/templates/websiteFunctions/website.html:935 +#: websiteFunctions/templates/websiteFunctions/website.html:939 +#: websiteFunctions/templates/websiteFunctions/website.html:940 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: emailMarketing/templates/emailMarketing/website.html:1022 +#: websiteFunctions/templates/websiteFunctions/website.html:945 +#: websiteFunctions/templates/websiteFunctions/website.html:950 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:1023 +#: websiteFunctions/templates/websiteFunctions/website.html:951 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:1050 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +msgid "Application Installer" +msgstr "Инсталатор на Приложения" + +#: emailMarketing/templates/emailMarketing/website.html:1061 +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 +#: websiteFunctions/templates/websiteFunctions/website.html:985 +#: websiteFunctions/templates/websiteFunctions/website.html:989 +msgid "Install wordpress with LSCache" +msgstr "Инсталирай Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1066 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +msgid "Wordpress with LSCache" +msgstr "Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1075 +#: emailMarketing/templates/emailMarketing/website.html:1079 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 +#: websiteFunctions/templates/websiteFunctions/website.html:996 +#: websiteFunctions/templates/websiteFunctions/website.html:1000 +msgid "Install Joomla with LSCache" +msgstr "Инсталирай Joomla с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1080 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 +#: websiteFunctions/templates/websiteFunctions/website.html:1001 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1089 +#: emailMarketing/templates/emailMarketing/website.html:1093 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 +#: websiteFunctions/templates/websiteFunctions/website.html:1007 +#: websiteFunctions/templates/websiteFunctions/website.html:1011 +msgid "Attach Git with this website!" +msgstr "Закачи Git към този уебсайт!" + +#: emailMarketing/templates/emailMarketing/website.html:1094 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 +#: websiteFunctions/templates/websiteFunctions/website.html:1012 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1103 +#: emailMarketing/templates/emailMarketing/website.html:1107 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 +#: websiteFunctions/templates/websiteFunctions/website.html:1018 +#: websiteFunctions/templates/websiteFunctions/website.html:1022 +msgid "Install Prestashop" +msgstr "Инсталирай Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1108 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 +#: websiteFunctions/templates/websiteFunctions/website.html:1023 +msgid "Prestashop" +msgstr "Prestashop" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:3 +#: firewall/templates/firewall/spamassassin.html:3 +msgid "SpamAssassin - CyberPanel" +msgstr "SpamAssassin - CyberPanel" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:13 +#: firewall/templates/firewall/spamassassin.html:13 +msgid "SpamAssassin Configurations!" +msgstr "SpamAssassin Конфигурация" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:17 +msgid "SpamAssassin Docs" +msgstr "SpamAssassin Документация" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:19 +#: firewall/templates/firewall/spamassassin.html:14 +msgid "On this page you can configure SpamAssassin settings." +msgstr "От тази страница може да настройте SpamAssassin." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:34 +msgid "SpamAssassin is not installed " +msgstr "SpamAssassin не е инсталиран" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:37 +#: firewall/templates/firewall/csf.html:31 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:231 +#: firewall/templates/firewall/modSecurityRules.html:73 +#: firewall/templates/firewall/modSecurityRulesPacks.html:31 +#: firewall/templates/firewall/spamassassin.html:31 +msgid "Install Now." +msgstr "Инсталирай" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:49 +#: firewall/templates/firewall/csf.html:43 +#: firewall/templates/firewall/modSecurity.html:47 +#: firewall/templates/firewall/modSecurity.html:244 +#: firewall/templates/firewall/spamassassin.html:43 +msgid "Failed to start installation, Error message: " +msgstr "Неуспешно стартиране на инсталацията. Съобщение за грешка:" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:54 +#: emailPremium/templates/emailPremium/SpamAssassin.html:146 +#: emailPremium/templates/emailPremium/policyServer.html:60 +#: firewall/templates/firewall/csf.html:47 +#: firewall/templates/firewall/modSecurity.html:53 +#: firewall/templates/firewall/modSecurity.html:183 +#: firewall/templates/firewall/modSecurity.html:249 +#: firewall/templates/firewall/modSecurity.html:371 +#: firewall/templates/firewall/modSecurityRules.html:53 +#: firewall/templates/firewall/modSecurityRulesPacks.html:88 +#: firewall/templates/firewall/secureSSH.html:87 +#: firewall/templates/firewall/secureSSH.html:172 +#: firewall/templates/firewall/spamassassin.html:47 +#: firewall/templates/firewall/spamassassin.html:177 +#: mailServer/templates/mailServer/dkimManager.html:44 +#: managePHP/templates/managePHP/editPHPConfig.html:157 +#: managePHP/templates/managePHP/editPHPConfig.html:223 +#: managePHP/templates/managePHP/installExtensions.html:124 +#: manageServices/templates/manageServices/managePostfix.html:59 +#: manageServices/templates/manageServices/managePowerDNS.html:130 +#: manageServices/templates/manageServices/managePureFtpd.html:59 +msgid "Could not connect. Please refresh this page." +msgstr "Не можем да се свържем, моля презаредете страницата." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:58 +#: firewall/templates/firewall/csf.html:51 +#: firewall/templates/firewall/modSecurity.html:57 +#: firewall/templates/firewall/modSecurity.html:253 +#: firewall/templates/firewall/spamassassin.html:51 +msgid "Installation failed." +msgstr "Инсталацията не завърши успешно." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:62 +msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." +msgstr "" +"SpamAssassin е успешно инсталиран. Страницата ще се презареди след 3 " +"секунди.." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:74 +msgid "Winter is coming, but so is SpamAssassin." +msgstr "Зимата идва ... както и SpamAssassin." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:126 +#: firewall/templates/firewall/modSecurity.html:163 +#: firewall/templates/firewall/modSecurity.html:351 +#: firewall/templates/firewall/spamassassin.html:157 +msgid "Save changes." +msgstr "Запази промените." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:137 +msgid "Failed to save SpamAssassin configurations. Error message: " +msgstr "Промените на SpamAssassin не са запазени. Съобщение за грешка :" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:142 +msgid "SpamAssassin configurations successfully saved." +msgstr "SpamAssassin конфигурация е успешно променена." + +#: emailPremium/templates/emailPremium/emailLimits.html:13 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: emailPremium/templates/emailPremium/policyServer.html:13 +#, fuzzy +#| msgid "Emai Limits Docs" +msgid "Email Limits Docs" +msgstr "Email лимити документация" + +#: emailPremium/templates/emailPremium/emailLimits.html:14 +msgid "View and change email limits for a domain name." +msgstr "Преглед и редакция на email лимити за домейн." + +#: emailPremium/templates/emailPremium/emailLimits.html:25 +msgid "Domain Resource Usage" +msgstr "Използвани ресурси" + +#: emailPremium/templates/emailPremium/emailLimits.html:52 +#: emailPremium/templates/emailPremium/emailLimits.html:158 +#: emailPremium/templates/emailPremium/emailPage.html:54 +#: emailPremium/templates/emailPremium/listDomains.html:61 +msgid "Limits are being Applied!" +msgstr "Лимитите са зададени!" + +#: emailPremium/templates/emailPremium/emailLimits.html:54 +#: emailPremium/templates/emailPremium/emailLimits.html:160 +#: emailPremium/templates/emailPremium/emailPage.html:56 +#: emailPremium/templates/emailPremium/listDomains.html:63 +msgid "Limits are not being applied!" +msgstr "Лимитите не са променени!" + +#: emailPremium/templates/emailPremium/emailLimits.html:58 +#: emailPremium/templates/emailPremium/emailPage.html:66 +#: filemanager/templates/filemanager/index.html:79 +#: filemanager/templates/filemanager/index.html:699 +#: packages/templates/packages/listPackages.html:60 +#: userManagment/templates/userManagment/listUsers.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:66 +msgid "Edit" +msgstr "Редакция" + +#: emailPremium/templates/emailPremium/emailLimits.html:70 +#: emailPremium/templates/emailPremium/emailPage.html:78 +msgid "Monthly Limit" +msgstr "Месечен лимит" + +#: emailPremium/templates/emailPremium/emailLimits.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:101 +msgid "Change Limits" +msgstr "Промени лимити" + +#: emailPremium/templates/emailPremium/emailLimits.html:93 +#: emailPremium/templates/emailPremium/emailPage.html:111 +msgid "Can not change limits. Error message:" +msgstr "Лимитите не са променени. Грешка:" + +#: emailPremium/templates/emailPremium/emailLimits.html:97 +msgid "Limits successfully changed, refreshing in 3 seconds." +msgstr "" +"Лимитите са успешно променени. Страницата ще се презареди след 3 секунди." + +#: emailPremium/templates/emailPremium/emailLimits.html:126 +#: emailPremium/templates/emailPremium/emailPage.html:25 +msgid "Email Resource Usage" +msgstr "Email използвани ресурси" + +#: emailPremium/templates/emailPremium/emailLimits.html:133 +msgid "Search Emails.." +msgstr "Търси Email..." + +#: emailPremium/templates/emailPremium/emailLimits.html:164 +#: emailPremium/templates/emailPremium/listDomains.html:67 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 +msgid "Manage" +msgstr "Управлявай" + +#: emailPremium/templates/emailPremium/emailPage.html:13 +msgid "Emai Limits Docs" +msgstr "Email лимити документация" + +#: emailPremium/templates/emailPremium/emailPage.html:14 +msgid "View and change limits for an Email Address." +msgstr "Прегледай и промени лимити за Email адрес." + +#: emailPremium/templates/emailPremium/emailPage.html:60 +msgid "Logging in ON!" +msgstr "Логването е включено!" + +#: emailPremium/templates/emailPremium/emailPage.html:62 +msgid "Logging is Off" +msgstr "Логването е спряно!" + +#: emailPremium/templates/emailPremium/emailPage.html:88 +msgid "Hourly Limit" +msgstr "Часови лимит" + +#: emailPremium/templates/emailPremium/emailPage.html:115 +msgid "Limits successfully changed." +msgstr "Лимитите са успешно променени." + +#: emailPremium/templates/emailPremium/emailPage.html:151 +msgid "Search Emails Logs.." +msgstr "Търси Emails логове." + +#: emailPremium/templates/emailPremium/emailPage.html:155 +msgid "Flush Logs" +msgstr "Опресни логове" + +#: emailPremium/templates/emailPremium/listDomains.html:3 +msgid "Domains - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: emailPremium/templates/emailPremium/listDomains.html:15 +msgid "On this page you manage emails limits for Domains/Email Addresses" +msgstr "От тази страница може да управлявате лимитите за Домейни/Email адреси." + +#: emailPremium/templates/emailPremium/policyServer.html:3 +msgid "Email Policy Server - CyberPanel" +msgstr "Email Policy Server - CyberPanel" + +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Policy Server Configurations!" +msgstr "Email Policy Server Конфигурация!" + +#: emailPremium/templates/emailPremium/policyServer.html:14 +msgid "Turn ON Email Policy Server to use Email Limits Feature. " +msgstr "Включете Email Policy Server за да използвате Лимитите за Emails." + +#: emailPremium/templates/emailPremium/policyServer.html:40 +#: manageServices/templates/manageServices/managePostfix.html:41 +#: manageServices/templates/manageServices/managePowerDNS.html:112 +#: manageServices/templates/manageServices/managePureFtpd.html:41 +#, fuzzy +#| msgid "Save changes." +msgid "Save changes" +msgstr "Запази промените." + +#: emailPremium/templates/emailPremium/policyServer.html:52 +#: firewall/templates/firewall/secureSSH.html:78 +#: mailServer/templates/mailServer/dkimManager.html:40 +#: managePHP/templates/managePHP/editPHPConfig.html:148 +#: manageServices/templates/manageServices/managePostfix.html:51 +#: manageServices/templates/manageServices/managePowerDNS.html:122 +#: manageServices/templates/manageServices/managePureFtpd.html:51 +msgid "Error message: " +msgstr "Error Съобщение" + +#: emailPremium/templates/emailPremium/policyServer.html:56 +#: manageServices/templates/manageServices/managePostfix.html:55 +#: manageServices/templates/manageServices/managePowerDNS.html:126 +#: manageServices/templates/manageServices/managePureFtpd.html:55 +msgid "Changes successfully applied." +msgstr "Промените са успешно въведени." + +#: filemanager/templates/filemanager/index.html:5 +msgid "File Manager - CyberPanel" +msgstr "Файл Мениджър - CyberPanel" + +#: filemanager/templates/filemanager/index.html:54 +msgid " File Manager" +msgstr "Файл Мениджър" + +#: filemanager/templates/filemanager/index.html:58 +#: filemanager/templates/filemanager/index.html:197 +#: filemanager/templates/filemanager/index.html:227 +msgid "Upload" +msgstr "Качи" + +#: filemanager/templates/filemanager/index.html:61 +msgid "New File" +msgstr "Нов файл" + +#: filemanager/templates/filemanager/index.html:64 +msgid "New Folder" +msgstr "Нова директория" + +#: filemanager/templates/filemanager/index.html:70 +#: filemanager/templates/filemanager/index.html:557 +#: filemanager/templates/filemanager/index.html:693 +msgid "Copy" +msgstr "копирай" + +#: filemanager/templates/filemanager/index.html:73 +#: filemanager/templates/filemanager/index.html:522 +#: filemanager/templates/filemanager/index.html:691 +msgid "Move" +msgstr "Премести" + +#: filemanager/templates/filemanager/index.html:76 +#: filemanager/templates/filemanager/index.html:587 +#: filemanager/templates/filemanager/index.html:694 +msgid "Rename" +msgstr "Преименувай" + +#: filemanager/templates/filemanager/index.html:82 +#: filemanager/templates/filemanager/index.html:432 +#: filemanager/templates/filemanager/index.html:459 +#: filemanager/templates/filemanager/index.html:697 +msgid "Compress" +msgstr "Компресирай" + +#: filemanager/templates/filemanager/index.html:85 +#: filemanager/templates/filemanager/index.html:487 +#: filemanager/templates/filemanager/index.html:698 +msgid "Extract" +msgstr "Разархивирай" + +#: filemanager/templates/filemanager/index.html:88 +msgid "Fix Permissions" +msgstr "Поправи права" + +#: filemanager/templates/filemanager/index.html:113 +msgid "Current Path" +msgstr "Текущ път" + +#: filemanager/templates/filemanager/index.html:138 +msgid "Back" +msgstr "Назад" + +#: filemanager/templates/filemanager/index.html:142 +#: serverLogs/templates/serverLogs/accessLogs.html:38 +#: serverLogs/templates/serverLogs/emailLogs.html:39 +#: serverLogs/templates/serverLogs/errorLogs.html:35 +#: serverLogs/templates/serverLogs/ftplogs.html:35 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 +#: websiteFunctions/templates/websiteFunctions/listCron.html:36 +msgid "Refresh" +msgstr "Презареди" + +#: filemanager/templates/filemanager/index.html:146 +msgid "Select All" +msgstr "Избери всички" + +#: filemanager/templates/filemanager/index.html:150 +msgid "UnSelect All" +msgstr "Деселектирайте всички" + +#: filemanager/templates/filemanager/index.html:159 +msgid "Size (KB)" +msgstr "Размер (KB)" + +#: filemanager/templates/filemanager/index.html:160 +msgid "Last Modified" +msgstr "Последна промяна" + +#: filemanager/templates/filemanager/index.html:161 +msgid "Permissions" +msgstr "Права" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload File" +msgstr "Качи файл" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload Limits" +msgstr "Ограничение за качване" + +#: filemanager/templates/filemanager/index.html:187 +msgid "Upload queue" +msgstr "Опашна на качване" + +#: filemanager/templates/filemanager/index.html:188 +msgid "Queue length:" +msgstr "Дължина на опашката: " + +#: filemanager/templates/filemanager/index.html:192 +msgid "Drop" +msgstr "Постави" + +#: filemanager/templates/filemanager/index.html:193 +msgid "Drop Files here to upload them." +msgstr "Постави файловете за качване тук." + +#: filemanager/templates/filemanager/index.html:205 +msgid "Progress" +msgstr "Прогрес" + +#: filemanager/templates/filemanager/index.html:233 +msgid "Remove" +msgstr "Премахни" + +#: filemanager/templates/filemanager/index.html:243 +msgid "Queue progress:" +msgstr "Прогрес на опашката:" + +#: filemanager/templates/filemanager/index.html:252 +msgid "can not be uploaded, Error message:" +msgstr "Настройките не са въведени, защото:" + +#: filemanager/templates/filemanager/index.html:256 +msgid "Upload all" +msgstr "Качи всички" + +#: filemanager/templates/filemanager/index.html:259 +msgid "Cancel all" +msgstr "Откажи всички" + +#: filemanager/templates/filemanager/index.html:262 +msgid "Remove all" +msgstr "Премахни всички" + +#: filemanager/templates/filemanager/index.html:298 +msgid "File Successfully saved." +msgstr "Файловете са успешно запазени." + +#: filemanager/templates/filemanager/index.html:305 +#: firewall/templates/firewall/secureSSH.html:68 +#: managePHP/templates/managePHP/editPHPConfig.html:138 +#: managePHP/templates/managePHP/editPHPConfig.html:205 +#: userManagment/templates/userManagment/apiAccess.html:53 +#: userManagment/templates/userManagment/modifyACL.html:436 +#: userManagment/templates/userManagment/resellerCenter.html:58 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 +msgid "Save Changes" +msgstr "Запази промените" + +#: filemanager/templates/filemanager/index.html:322 +msgid "Create new folder!" +msgstr "Създай нова директория!" + +#: filemanager/templates/filemanager/index.html:330 +msgid "New Folder Name" +msgstr "Име на директория" + +#: filemanager/templates/filemanager/index.html:332 +msgid "Folder will be created in your current directory" +msgstr "Директорията ще бъде създадена където се намирате в този момент" + +#: filemanager/templates/filemanager/index.html:334 +msgid "Create Folder" +msgstr "Създай директория" + +#: filemanager/templates/filemanager/index.html:347 +msgid "Folder Successfully created." +msgstr "Директорията е успешно създадена." + +#: filemanager/templates/filemanager/index.html:366 +msgid "Create new file!" +msgstr "Създай нов файл!" + +#: filemanager/templates/filemanager/index.html:374 +msgid "New File Name" +msgstr "Име на файл" + +#: filemanager/templates/filemanager/index.html:376 +msgid "" +"File will be created in your current directory, if it already exists it will " +"not overwirte." +msgstr "" +"Файловете ще бъдат създадени в текущата директория. Ако те вече съществуват " +"няма да бъдат презаписани." + +#: filemanager/templates/filemanager/index.html:378 +msgid "Create File" +msgstr "Създай файл" + +#: filemanager/templates/filemanager/index.html:391 +msgid "File Successfully created." +msgstr "Файлът е успешно създаден." + +#: filemanager/templates/filemanager/index.html:407 +msgid "Confirm Deletion!" +msgstr "Потвърди изтриването!" + +#: filemanager/templates/filemanager/index.html:440 +msgid "List of files/folder!" +msgstr "Списък на файлове/директории!" + +#: filemanager/templates/filemanager/index.html:444 +msgid "Compressed File Name" +msgstr "Име на компресирания файл" + +#: filemanager/templates/filemanager/index.html:446 +msgid "Enter without extension name!" +msgstr "Въведи без разширение!" + +#: filemanager/templates/filemanager/index.html:450 +msgid "Compression Type" +msgstr "Вид на компресия" + +#: filemanager/templates/filemanager/index.html:475 +msgid "Extracting" +msgstr "Разархивиране" + +#: filemanager/templates/filemanager/index.html:483 +msgid "Extract in" +msgstr "Разархивиране в" + +#: filemanager/templates/filemanager/index.html:485 +msgid "You can enter . to extract in current directory!" +msgstr "Може да въведете . за да разархивирате в текущата директория!" + +#: filemanager/templates/filemanager/index.html:503 +msgid "Move Files" +msgstr "Премести файлове" + +#: filemanager/templates/filemanager/index.html:511 +#: filemanager/templates/filemanager/index.html:546 +msgid "List of files/folders!" +msgstr "Списък на файлове/директории!" + +#: filemanager/templates/filemanager/index.html:515 +msgid "Move to" +msgstr "Премести в" + +#: filemanager/templates/filemanager/index.html:517 +msgid "Enter a path to move your files!" +msgstr "Въведи път за да преместиш файловете!" + +#: filemanager/templates/filemanager/index.html:538 +msgid "Copy Files" +msgstr "Копирай файлове" + +#: filemanager/templates/filemanager/index.html:550 +msgid "Copy to" +msgstr "Копирай в" + +#: filemanager/templates/filemanager/index.html:552 +msgid "Enter a path to copy your files to!" +msgstr "Въведи път, за да се копират файловете!" + +#: filemanager/templates/filemanager/index.html:572 +msgid "Renaming" +msgstr "Преименуване" + +#: filemanager/templates/filemanager/index.html:580 +msgid "New Name" +msgstr "Ново име" + +#: filemanager/templates/filemanager/index.html:582 +msgid "Enter new name of file!" +msgstr "Въведи ново име за файл!" + +#: filemanager/templates/filemanager/index.html:602 +msgid "Changing permissions for" +msgstr "Промени права за" + +#: filemanager/templates/filemanager/index.html:611 +msgid "Mode" +msgstr "Вид" + +#: filemanager/templates/filemanager/index.html:612 +#: serverStatus/templates/serverStatus/topProcesses.html:193 +msgid "User" +msgstr "Потребител" + +#: filemanager/templates/filemanager/index.html:613 +msgid "Group" +msgstr "Група" + +#: filemanager/templates/filemanager/index.html:614 +msgid "World" +msgstr "Всички" + +#: filemanager/templates/filemanager/index.html:619 +msgid "Read" +msgstr "Четене" + +#: filemanager/templates/filemanager/index.html:625 +msgid "Write" +msgstr "Запис" + +#: filemanager/templates/filemanager/index.html:631 +msgid "Execute" +msgstr "Изпълнение" + +#: filemanager/templates/filemanager/index.html:647 +#: filemanager/templates/filemanager/index.html:695 +msgid "Change Permissions" +msgstr "Промени права" + +#: filemanager/templates/filemanager/index.html:648 +msgid "Change Recursively" +msgstr "Рекурсивна промяна" + +#: filemanager/templates/filemanager/index.html:692 +msgid "Download" +msgstr "" + +#: firewall/templates/firewall/csf.html:3 +msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" +msgstr "CSF (ConfigServer Security and Firewall) - CyberPanel" + +#: firewall/templates/firewall/csf.html:13 +msgid "CSF (ConfigServer Security and Firewall)!" +msgstr "CSF (ConfigServer Security and Firewall)!" + +#: firewall/templates/firewall/csf.html:14 +msgid "" +"On this page you can configure CSF (ConfigServer Security and Firewall) " +"settings." +msgstr "" +"От тази страница може да променяте настройките на CSF (ConfigServer Security " +"and Firewall)." + +#: firewall/templates/firewall/csf.html:28 +msgid "CSF is not installed " +msgstr "CSF не е инсталиран" + +#: firewall/templates/firewall/csf.html:55 +msgid "CSF successfully installed, refreshing page in 3 seconds.." +msgstr "CSF е успешно инсталиран. Страницата ще се презареди след 3 секунди.." + +#: firewall/templates/firewall/csf.html:66 +msgid "In winter we must protect each other.." +msgstr "В зимата трябва да се защитаваме ние.." + +#: firewall/templates/firewall/csf.html:90 +msgid "General" +msgstr "Общ" + +#: firewall/templates/firewall/csf.html:100 +msgid "LFD" +msgstr "LFD" + +#: firewall/templates/firewall/csf.html:109 +msgid "Remove CSF" +msgstr "Премахни CSF" + +#: firewall/templates/firewall/csf.html:112 +msgid "Completely Remove CSF" +msgstr "Надяло премахни CSF" + +#: firewall/templates/firewall/csf.html:126 +msgid "Testing Mode" +msgstr "Тестов мод" + +#: firewall/templates/firewall/csf.html:133 +msgid "TCP IN Ports" +msgstr "TCP IN Портове" + +#: firewall/templates/firewall/csf.html:143 +msgid "TCP Out Ports" +msgstr "TCP Out Портове" + +#: firewall/templates/firewall/csf.html:153 +msgid "UDP In Ports" +msgstr "UDP In Портове" + +#: firewall/templates/firewall/csf.html:163 +msgid "UDP Out Ports" +msgstr "UDP Out Портове" + +#: firewall/templates/firewall/csf.html:181 +msgid "Allow IP" +msgstr "Позволи IP" + +#: firewall/templates/firewall/csf.html:191 +msgid "Block IP Address" +msgstr "Блокирай IP Адрес" + +#: firewall/templates/firewall/csf.html:203 +msgid "Coming Soon." +msgstr "Скоро." + +#: firewall/templates/firewall/firewall.html:3 +msgid "Firewall - CyberPanel" +msgstr "Защитна Стена - CyberPanel" + +#: firewall/templates/firewall/firewall.html:13 +msgid "Add/Delete Firewall Rules" +msgstr "Добави/Премахни Firewall правила" + +#: firewall/templates/firewall/firewall.html:14 +msgid "" +"On this page you can add/delete firewall rules. (By default all ports are " +"blocked, except mentioned below)" +msgstr "" +"От тази страница може да добавяте/премахвате Firewall правила. По-" +"подразбиране всички, освен посочените по-долу са забранени." + +#: firewall/templates/firewall/firewall.html:19 +msgid "Add/Delete Rules" +msgstr "Добави/Премахни Правила" + +#: firewall/templates/firewall/firewall.html:56 +msgid "Action failed. Error message:" +msgstr "Действието не е изпълнено, защото:" + +#: firewall/templates/firewall/firewall.html:61 +#: serverStatus/templates/serverStatus/litespeedStatus.html:82 +#: serverStatus/templates/serverStatus/litespeedStatus.html:305 +msgid "Action successful." +msgstr "Действието е успешно изпълнено." + +#: firewall/templates/firewall/firewall.html:121 +msgid "Protocol" +msgstr "Протокол" + +#: firewall/templates/firewall/firewall.html:157 +msgid "Rule successfully added." +msgstr "Правилата са успешно добавени." + +#: firewall/templates/firewall/index.html:3 +msgid "Security - CyberPanel" +msgstr "Защита - CyberPanel" + +#: firewall/templates/firewall/index.html:12 +msgid "Security Functions" +msgstr "Функции на Защитата" + +#: firewall/templates/firewall/index.html:13 +msgid "Manage the security of the server on this page." +msgstr "Управлявайте сигурността на сървъра от тази страница." + +#: firewall/templates/firewall/modSecurity.html:3 +msgid "ModSecurity - CyberPanel" +msgstr "ModSecurity - CyberPanel" + +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:208 +msgid "ModSecurity Configurations!" +msgstr "ModSecurity Конфигурация!" + +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:212 +#: firewall/templates/firewall/modSecurityRules.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +msgid "ModSec Docs" +msgstr "ModSec Документация" + +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:214 +msgid "On this page you can configure ModSecurity settings." +msgstr "От тази страница може да настройте ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:220 +msgid "ModSecurity" +msgstr "ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:32 +#: firewall/templates/firewall/modSecurity.html:229 +#: firewall/templates/firewall/modSecurityRules.html:70 +#: firewall/templates/firewall/modSecurityRulesPacks.html:28 +#: firewall/templates/firewall/spamassassin.html:29 +msgid "ModSecurity is not installed " +msgstr "ModSecurity не е инсталиран" + +#: firewall/templates/firewall/modSecurity.html:61 +#: firewall/templates/firewall/modSecurity.html:257 +#: firewall/templates/firewall/spamassassin.html:55 +msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." +msgstr "" +"ModSecurity е успешно инсталиран. Страницата ще се презареди след 3 секунди.." + +#: firewall/templates/firewall/modSecurity.html:73 +#: firewall/templates/firewall/modSecurity.html:269 +#: firewall/templates/firewall/spamassassin.html:66 +msgid "Winter is coming, but so is ModSecurity." +msgstr "Зимата идва ... както и ModSecurity." + +#: firewall/templates/firewall/modSecurity.html:174 +#: firewall/templates/firewall/modSecurity.html:362 +#: firewall/templates/firewall/spamassassin.html:169 +msgid "Failed to save ModSecurity configurations. Error message: " +msgstr "Промените не са запазени. Съобщение са грешка:" + +#: firewall/templates/firewall/modSecurity.html:179 +#: firewall/templates/firewall/modSecurity.html:367 +#: firewall/templates/firewall/spamassassin.html:173 +msgid "ModSecurity configurations successfully saved." +msgstr "ModSecurity конфигурация е успешно обновлена." + +#: firewall/templates/firewall/modSecurityRules.html:3 +msgid "ModSecurity Rules - CyberPanel" +msgstr "ModSecurity Правила - CyberPanel" + +#: firewall/templates/firewall/modSecurityRules.html:13 +msgid "ModSecurity Rules!" +msgstr "ModSecurity Правила!" + +#: firewall/templates/firewall/modSecurityRules.html:14 +msgid "On this page you can add/delete ModSecurity rules." +msgstr "От тази страница може да добавяте/премахвате ModSecurity правила." + +#: firewall/templates/firewall/modSecurityRules.html:42 +msgid "Save Rules!" +msgstr "Запази правила!" + +#: firewall/templates/firewall/modSecurityRules.html:49 +msgid "ModSecurity Rules Saved" +msgstr "ModSecurity правила са запазени" + +#: firewall/templates/firewall/modSecurityRules.html:58 +msgid "Could not save rules, Error message: " +msgstr "Промените не са запазени. Съобщение за грешка:" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:3 +msgid "ModSecurity Rules Packs - CyberPanel" +msgstr "ModSecurity Rules Packs - CyberPanel" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:20 +msgid "ModSecurity Rules Packages!" +msgstr "ModSecurity Rules Packages!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:14 +msgid "Install/Un-install ModSecurity rules packages." +msgstr "Инсталирай/Премахни ModSecurity Rules Packages!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:60 +#: firewall/templates/firewall/modSecurityRulesPacks.html:71 +msgid "Configure" +msgstr "Конфигурация" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:84 +#: firewall/templates/firewall/modSecurityRulesPacks.html:96 +msgid "Operation successful." +msgstr "Действието е успешно изпълнено." + +#: firewall/templates/firewall/modSecurityRulesPacks.html:92 +msgid "Operation failed, Error message: " +msgstr "Действието не е изпълнено, защото:" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:110 +msgid "Supplier" +msgstr "Източник" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:111 +msgid "Filename" +msgstr "Име" + +#: firewall/templates/firewall/secureSSH.html:3 +msgid "Secure SSH - CyberPanel" +msgstr "Secure SSH - CyberPanel" + +#: firewall/templates/firewall/secureSSH.html:13 +msgid "SSH Docs" +msgstr "SSH Документация" + +#: firewall/templates/firewall/secureSSH.html:14 +msgid "Secure or harden SSH Configurations." +msgstr "Подсигури SSH от тази страница." + +#: firewall/templates/firewall/secureSSH.html:28 +#: managePHP/templates/managePHP/editPHPConfig.html:29 +msgid "Basic" +msgstr "Базови" + +#: firewall/templates/firewall/secureSSH.html:34 +msgid "SSH Keys" +msgstr "SSH Ключ" + +#: firewall/templates/firewall/secureSSH.html:47 +msgid "SSH Port" +msgstr "SSH Порт" + +#: firewall/templates/firewall/secureSSH.html:56 +msgid "Permit Root Login" +msgstr "Позволи Root Достъп" + +#: firewall/templates/firewall/secureSSH.html:60 +msgid "" +"Before disabling root login, make sure you have another account with sudo " +"priviliges on server." +msgstr "" +"Преди да забраните root достъпа се уверете, че имате друг потребител със " +"sudo права." + +#: firewall/templates/firewall/secureSSH.html:82 +msgid "SSH Configurations Saved." +msgstr "SSH Конфигурацията е запаметена." + +#: firewall/templates/firewall/secureSSH.html:121 +msgid "Key" +msgstr "Ключ" + +#: firewall/templates/firewall/secureSSH.html:150 +msgid "Add Key" +msgstr "Добави Ключ" + +#: firewall/templates/firewall/secureSSH.html:167 +msgid "SSH Key Deleted" +msgstr "SSH Ключа е премахнат" + +#: ftp/templates/ftp/createFTPAccount.html:3 +msgid "Create FTP Account - CyberPanel" +msgstr "Създай FTP Акаунт - CyberPanel" + +#: ftp/templates/ftp/createFTPAccount.html:13 +msgid "" +"Select the website from list, and its home directory will be set as the path " +"to ftp account." +msgstr "" +"Изберете домейн от списъка и неговата home директория ще бъде поставена за " +"FTP акаунта." + +#: ftp/templates/ftp/createFTPAccount.html:26 +#: ftp/templates/ftp/deleteFTPAccount.html:25 +#: ftp/templates/ftp/listFTPAccounts.html:26 +msgid "PureFTPD is disabled." +msgstr "PureFTPD е спрян." + +#: ftp/templates/ftp/createFTPAccount.html:67 +msgid "FTP Password" +msgstr "FTP Парола" + +#: ftp/templates/ftp/createFTPAccount.html:90 +msgid "Path (Relative)" +msgstr "Път (Относителен)" + +#: ftp/templates/ftp/createFTPAccount.html:92 +msgid "Leave empty to select default home directory." +msgstr "Оставете празно за home директория." + +#: ftp/templates/ftp/createFTPAccount.html:105 +msgid "Create FTP" +msgstr "Създай FTP" + +#: ftp/templates/ftp/createFTPAccount.html:113 +msgid "Cannot create FTP account. Error message:" +msgstr "Дейстиете не е извършено. Съобщение за грешка: " + +#: ftp/templates/ftp/createFTPAccount.html:118 +#: ftp/templates/ftp/createFTPAccount.html:122 +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid "FTP Account with username:" +msgstr "FTP Акаунт с Име:" + +#: ftp/templates/ftp/createFTPAccount.html:119 +#: ftp/templates/ftp/createFTPAccount.html:123 +#: userManagment/templates/userManagment/createUser.html:129 +msgid "is successfully created." +msgstr "е успешно създаден." + +#: ftp/templates/ftp/deleteFTPAccount.html:3 +msgid "Delete FTP Account - CyberPanel" +msgstr "Премахни FTP Акаунт - CyberPanel" + +#: ftp/templates/ftp/deleteFTPAccount.html:13 +msgid "Select domain and delete its related FTP accounts." +msgstr "Избери домейн и премахни свързаните FTP акаунти." + +#: ftp/templates/ftp/deleteFTPAccount.html:52 +msgid "Select FTP Account" +msgstr "Избери FTP Акаунт" + +#: ftp/templates/ftp/deleteFTPAccount.html:83 +msgid "Cannot delete account. Error message:" +msgstr "Акаунта не е премахнат. Съобщение за грешка:" + +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid " is successfully deleted." +msgstr "е успешно изтрит" + +#: ftp/templates/ftp/deleteFTPAccount.html:91 +#: userManagment/templates/userManagment/deleteUser.html:70 +msgid "Could not connect to the server. Please refresh this page." +msgstr "Връзката със сървъра прекъсна. Моля презаредете страницата." + +#: ftp/templates/ftp/index.html:3 +msgid "FTP Functions - CyberPanel" +msgstr "FTP Функции - CyberPanel" + +#: ftp/templates/ftp/index.html:13 +msgid "Delete and create FTP accounts on this page." +msgstr "Създай или премахни FTP акаунт от тази страница." + +#: ftp/templates/ftp/listFTPAccounts.html:3 +msgid "List FTP Accounts - CyberPanel" +msgstr "FTP Акаунти - CyberPanel" + +#: ftp/templates/ftp/listFTPAccounts.html:14 +msgid "List FTP Accounts or change their passwords." +msgstr "Преглед на FTP акаунти или промяна на паролите им." + +#: ftp/templates/ftp/listFTPAccounts.html:66 +msgid "Password changed for" +msgstr "Паролата е променена за" + +#: ftp/templates/ftp/listFTPAccounts.html:70 +msgid "" +"Cannot change password for {$ ftpUsername $}. Error message:" +msgstr "" +"Паролата за {$ ftpUsername $} не е променена. Съобщение за " +"грешка:" + +#: ftp/templates/ftp/listFTPAccounts.html:124 +msgid "Directory" +msgstr "Директория" + +#: mailServer/templates/mailServer/changeEmailPassword.html:3 +msgid "Change Email Password - CyberPanel" +msgstr "Промени Email Парола - CyberPanel" + +#: mailServer/templates/mailServer/changeEmailPassword.html:12 +#: mailServer/templates/mailServer/changeEmailPassword.html:19 +#: userManagment/templates/userManagment/createACL.html:299 +#: userManagment/templates/userManagment/modifyACL.html:303 +msgid "Change Email Password" +msgstr "Промени Email Парола" + +#: mailServer/templates/mailServer/changeEmailPassword.html:13 +msgid "Select a website from the list, to change its password." +msgstr "Изберете домейн от списъка за който да бъде променена паролата." + +#: mailServer/templates/mailServer/changeEmailPassword.html:27 +#: mailServer/templates/mailServer/createEmailAccount.html:27 +#: mailServer/templates/mailServer/deleteEmailAccount.html:27 +#: mailServer/templates/mailServer/emailForwarding.html:26 +#: mailServer/templates/mailServer/listEmails.html:27 +msgid "Postfix is disabled." +msgstr "Postfix е спрян" + +#: mailServer/templates/mailServer/changeEmailPassword.html:58 +#: mailServer/templates/mailServer/deleteEmailAccount.html:58 +#: mailServer/templates/mailServer/emailForwarding.html:52 +msgid "Select Email" +msgstr "Избери Email" + +#: mailServer/templates/mailServer/changeEmailPassword.html:106 +#: mailServer/templates/mailServer/deleteEmailAccount.html:90 +msgid "Cannot delete email account. Error message:" +msgstr "Действието не е извършено. Съобщение за грешка:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:111 +msgid "Password successfully changed for :" +msgstr "Паролата е успешно променена за:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:118 +#: mailServer/templates/mailServer/deleteEmailAccount.html:102 +msgid "Currently no email accounts exist for this domain." +msgstr "Към момента няма email акаунти за този домейн." + +#: mailServer/templates/mailServer/createEmailAccount.html:3 +msgid "Create Email Account - CyberPanel" +msgstr "Създай Email акаунт - CyberPanel" + +#: mailServer/templates/mailServer/createEmailAccount.html:13 +msgid "Select a website from the list, to create an email account." +msgstr "Избери за коя страница искате да създадете email акаунт." + +#: mailServer/templates/mailServer/createEmailAccount.html:106 +msgid "Cannot create email account. Error message:" +msgstr "Email акаунта не е създаден, защото:" + +#: mailServer/templates/mailServer/createEmailAccount.html:111 +msgid "Email with id :" +msgstr "Email с id:" + +#: mailServer/templates/mailServer/createEmailAccount.html:112 +msgid " is successfully created." +msgstr "е успешно създаден." + +#: mailServer/templates/mailServer/deleteEmailAccount.html:3 +msgid "Delete Email Account - CyberPanel" +msgstr "Премахни Email Акаунт - CyberPanel" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:13 +msgid "Select a website from the list, to delete an email account." +msgstr "Изберете домейн от списъка за който да премахнете email акаунт." + +#: mailServer/templates/mailServer/deleteEmailAccount.html:95 +msgid "Email with id : {$ deletedID $} is successfully deleted." +msgstr "Email с id : {$ deletedID $} е успешно премахнато." + +#: mailServer/templates/mailServer/dkimManager.html:3 +msgid "DKIM Manager - CyberPanel" +msgstr "DKIM Мениджър - CyberPanel" + +#: mailServer/templates/mailServer/dkimManager.html:13 +msgid "DKIM Docs" +msgstr "DKIM Документация" + +#: mailServer/templates/mailServer/dkimManager.html:14 +msgid "This page can be used to generate and view DKIM keys for Domains" +msgstr "" +"От тази страница може да генерирате и преглеждате DKIM ключове за домейните." + +#: mailServer/templates/mailServer/dkimManager.html:27 +msgid "OpenDKIM is not installed. " +msgstr "OpenDKIM не е инсталиран." + +#: mailServer/templates/mailServer/dkimManager.html:28 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 +msgid "Install Now" +msgstr "Инсталирай" + +#: mailServer/templates/mailServer/dkimManager.html:48 +msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." +msgstr "" +"OpenDKIM е успешно инсталиран. Страницата ще се презареди след 3 секунди..." + +#: mailServer/templates/mailServer/dkimManager.html:97 +msgid "Keys not available for this domain." +msgstr "Ключовете не са позволени за този домейн." + +#: mailServer/templates/mailServer/dkimManager.html:98 +msgid "Generate Now" +msgstr "Генерирай сега" + +#: mailServer/templates/mailServer/dkimManager.html:110 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 +msgid "Domain" +msgstr "Домейн" + +#: mailServer/templates/mailServer/dkimManager.html:111 +msgid "Private Key" +msgstr "Личен ключ" + +#: mailServer/templates/mailServer/dkimManager.html:112 +msgid "Public Key" +msgstr "Публичен ключ" + +#: mailServer/templates/mailServer/emailForwarding.html:3 +msgid "Setup Email Forwarding - CyberPanel" +msgstr "Email пренасочване - CyberPanel" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +#: mailServer/templates/mailServer/emailForwarding.html:19 +msgid "Setup Email Forwarding" +msgstr "Email пренасочване" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +msgid "Forwarding Docs" +msgstr "Email пренасочване Документация" + +#: mailServer/templates/mailServer/emailForwarding.html:13 +msgid "This page help you setup email forwarding for your emails." +msgstr "От тази страница може да създадете Email пренасочвания." + +#: mailServer/templates/mailServer/emailForwarding.html:61 +#, fuzzy +#| msgid "Forwarding Docs" +msgid "Forwarding Options" +msgstr "Email пренасочване Документация" + +#: mailServer/templates/mailServer/emailForwarding.html:97 +#: mailServer/templates/mailServer/emailForwarding.html:118 +msgid "Source" +msgstr "източник" + +#: mailServer/templates/mailServer/emailForwarding.html:101 +msgid "or path to the program" +msgstr "" + +#: mailServer/templates/mailServer/emailForwarding.html:106 +msgid "Forward Email" +msgstr "Пренасочи Email" + +#: mailServer/templates/mailServer/index.html:3 +msgid "Mail Functions - CyberPanel" +msgstr "Mail Функции - CyberPanel" + +#: mailServer/templates/mailServer/index.html:12 +msgid "Mail Functions" +msgstr "Mail Функции" + +#: mailServer/templates/mailServer/index.html:13 +msgid "Manage email accounts on this page." +msgstr "Управлявайте email акаунтите от тази страница." + +#: mailServer/templates/mailServer/listEmails.html:3 +#, fuzzy +#| msgid "List FTP Accounts - CyberPanel" +msgid "List Email Accounts - CyberPanel" +msgstr "FTP Акаунти - CyberPanel" + +#: mailServer/templates/mailServer/listEmails.html:13 +#: mailServer/templates/mailServer/listEmails.html:19 +#, fuzzy +#| msgid "List FTP Accounts" +msgid "List Email Accounts" +msgstr "Преглед FTP Акаунти" + +#: mailServer/templates/mailServer/listEmails.html:14 +#, fuzzy +#| msgid "List FTP Accounts or change their passwords." +msgid "List Emails Accounts. Change their passwords or delete them." +msgstr "Преглед на FTP акаунти или промяна на паролите им." + +#: managePHP/templates/managePHP/editPHPConfig.html:3 +msgid "Edit PHP Configurations - CyberPanel" +msgstr "Редактирай PHP Конфигурация - CyberPanel" + +#: managePHP/templates/managePHP/editPHPConfig.html:14 +#: managePHP/templates/managePHP/editPHPConfig.html:21 +msgid "Edit PHP Configurations" +msgstr "Редактирай PHP Конфигурация" + +#: managePHP/templates/managePHP/editPHPConfig.html:15 +msgid "Edit PHP Configurations on this page." +msgstr "Редактирай PHP конфигурация от тази страница." + +#: managePHP/templates/managePHP/editPHPConfig.html:36 +msgid "Advanced" +msgstr "За Напреднали" + +#: managePHP/templates/managePHP/editPHPConfig.html:65 +msgid "display_errors" +msgstr "display_errors" + +#: managePHP/templates/managePHP/editPHPConfig.html:72 +msgid "file_uploads" +msgstr "file_uploads" + +#: managePHP/templates/managePHP/editPHPConfig.html:80 +msgid "allow_url_fopen" +msgstr "allow_url_fopen" + +#: managePHP/templates/managePHP/editPHPConfig.html:88 +msgid "allow_url_include" +msgstr "allow_url_include" + +#: managePHP/templates/managePHP/editPHPConfig.html:96 +msgid "memory_limit" +msgstr "memory_limit" + +#: managePHP/templates/managePHP/editPHPConfig.html:103 +msgid "max_execution_time" +msgstr "max_execution_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:111 +msgid "upload_max_filesize" +msgstr "upload_max_filesize" + +#: managePHP/templates/managePHP/editPHPConfig.html:119 +msgid "post_max_size" +msgstr "post_max_size" + +#: managePHP/templates/managePHP/editPHPConfig.html:126 +msgid "max_input_time" +msgstr "max_input_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:218 +msgid "PHP Configs Saved." +msgstr "PHP Configs са запазени." + +#: managePHP/templates/managePHP/index.html:3 +msgid "Manage PHP Installations - CyberPanel" +msgstr "Управление на PHP - CyberPanel" + +#: managePHP/templates/managePHP/index.html:12 +msgid "Manage PHP Installations" +msgstr "Управление на PHP " + +#: managePHP/templates/managePHP/index.html:13 +msgid "Edit your PHP Configurations to suit your needs." +msgstr "Редактирайте PHP конфигурацията според нуждите Ви." + +#: managePHP/templates/managePHP/installExtensions.html:3 +msgid "Install PHP Extensions - CyberPanel" +msgstr "Инсталирай PHP модули - CyberPanel" + +#: managePHP/templates/managePHP/installExtensions.html:14 +msgid "Install/uninstall php extensions on this page." +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 Версия" + +#: managePHP/templates/managePHP/installExtensions.html:47 +msgid "Search Extensions.." +msgstr "Търси разширение.." + +#: managePHP/templates/managePHP/installExtensions.html:62 +msgid "Extension Name" +msgstr "Име на разширение" + +#: managePHP/templates/managePHP/installExtensions.html:63 +#: pluginHolder/templates/pluginHolder/plugins.html:30 +msgid "Description" +msgstr "Описание" + +#: managePHP/templates/managePHP/installExtensions.html:65 +#: managePHP/templates/managePHP/installExtensions.html:81 +msgid "Install" +msgstr "Инсталирай" + +#: managePHP/templates/managePHP/installExtensions.html:66 +#: managePHP/templates/managePHP/installExtensions.html:86 +msgid "Uninstall" +msgstr "Де-Инсталирай" + +#: managePHP/templates/managePHP/installExtensions.html:115 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:255 +#: userManagment/templates/userManagment/modifyUser.html:126 +msgid "Cannot fetch details. Error message:" +msgstr "Детайлите не са извлечени, защото:" + +#: managePHP/templates/managePHP/installExtensions.html:119 +msgid "Cannot perform operation. Error message:" +msgstr "Операцията не е изпълнена, защото:" + +#: manageSSL/templates/manageSSL/index.html:3 +msgid "SSL Functions - CyberPanel" +msgstr "SSL Функции - CyberPanel" + +#: manageSSL/templates/manageSSL/index.html:13 +msgid "SSL Functions" +msgstr "SSL Функции" + +#: manageSSL/templates/manageSSL/index.html:14 +msgid "Issue Let’s Encrypt SSLs for websites and hostname." +msgstr "Издаване на Let’s Encrypt SSLs за сайтове и hostname." + +#: manageSSL/templates/manageSSL/manageSSL.html:3 +msgid "Manage SSL - CyberPanel" +msgstr "SSL - CyberPanel" + +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +msgid "SSL Docs" +msgstr "SSL Документация" + +#: manageSSL/templates/manageSSL/manageSSL.html:14 +msgid "" +"This page can be used to issue Let’s Encrypt SSL for existing websites on " +"server." +msgstr "" +"От тази страница може да издавате Let’s Encrypt SSL сертификати за Вашите " +"сайтове." + +#: manageSSL/templates/manageSSL/manageSSL.html:42 +#: manageSSL/templates/manageSSL/sslForHostName.html:42 +#: manageSSL/templates/manageSSL/sslForMailServer.html:40 +msgid "Issue SSL" +msgstr "Издаване на SSL" + +#: manageSSL/templates/manageSSL/manageSSL.html:52 +#: manageSSL/templates/manageSSL/sslForHostName.html:52 +#: manageSSL/templates/manageSSL/sslForMailServer.html:50 +msgid "Cannot issue SSL. Error message:" +msgstr "Сертификата не е издаден. Съобщение за грешка: " + +#: manageSSL/templates/manageSSL/manageSSL.html:56 +msgid "SSL Issued for" +msgstr "SSL издаден за" + +#: manageSSL/templates/manageSSL/sslForHostName.html:3 +msgid "Issue SSL For Hostname - CyberPanel" +msgstr "Издай SSL за Hostname - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:20 +msgid "Issue SSL For Hostname" +msgstr "Издай SSL за Hostname" + +#: manageSSL/templates/manageSSL/sslForHostName.html:14 +msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." +msgstr "" +"Let’s Encrypt SSL за hostname за да достъпвате CyberPanel през валиден https " +"адрес." + +#: manageSSL/templates/manageSSL/sslForHostName.html:56 +#: manageSSL/templates/manageSSL/sslForHostName.html:60 +msgid "SSL Issued. You can now access CyberPanel at:" +msgstr "Сертификата е издаден! Вече може да достъпвате CyberPanel чрез: " + +#: manageSSL/templates/manageSSL/sslForMailServer.html:3 +msgid "Issue SSL For MailServer - CyberPanel" +msgstr "Издай SSL за Mail сървъра - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:20 +msgid "Issue SSL For MailServer" +msgstr "Издай SSL за Mail сървъра" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:14 +msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." +msgstr "Let’s Encrypt SSL за Mail сървър (Postfix/Dovecot)." + +#: manageSSL/templates/manageSSL/sslForMailServer.html:54 +msgid "SSL Issued, your mail server now uses Lets Encrypt!" +msgstr "" +"SSL сертификата е издаден. Mail сървъра Ви вече използва Lets Encrypt!" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:58 +msgid "Could not connect to server, please refresh this page." +msgstr "Не можем да се свържем със сървъра, моля презаредете страницата." + +#: manageServices/templates/manageServices/managePostfix.html:3 +msgid "Manage Email Server (Postfix) - CyberPanel" +msgstr "Управление на Email сървър (Postfix) - Cyberpanel" + +#: manageServices/templates/manageServices/managePostfix.html:13 +msgid "Manage Email Server (Postfix)!" +msgstr "Управление на Email сървър (Postfix)!" + +#: manageServices/templates/manageServices/managePostfix.html:13 +#: manageServices/templates/manageServices/managePowerDNS.html:16 +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Services Docs" +msgstr "Допълнителна документация" + +#: manageServices/templates/manageServices/managePostfix.html:14 +msgid "Enable or disable Email services. " +msgstr "Позволи или забрани Email сървъра." + +#: manageServices/templates/manageServices/managePostfix.html:79 +#: manageServices/templates/manageServices/managePowerDNS.html:149 +#: manageServices/templates/manageServices/managePureFtpd.html:79 +msgid "Only administrator can manage services." +msgstr "Само Администраторите могат да управляват сървайсес." + +#: manageServices/templates/manageServices/managePowerDNS.html:3 +msgid "Manage PowerDNS - CyberPanel" +msgstr "Управление на PowerDNS - CyberPanel" + +#: manageServices/templates/manageServices/managePowerDNS.html:13 +msgid "Manage PowerDNS!" +msgstr "Управление на PowerDNS" + +#: manageServices/templates/manageServices/managePowerDNS.html:17 +msgid "Enable or disable DNS services. " +msgstr "Позволи или забрани DNS сървър." + +#: manageServices/templates/manageServices/managePowerDNS.html:42 +#, fuzzy +#| msgid "Security Functions" +msgid "Select Function Mode" +msgstr "Функции на Защитата" + +#: manageServices/templates/manageServices/managePowerDNS.html:53 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:60 +#, fuzzy +#| msgid "MailServer SSL" +msgid "Master Server IP" +msgstr "MailServer SSL" + +#: manageServices/templates/manageServices/managePowerDNS.html:67 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server 1" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:74 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server IP" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:81 +msgid "Slave Server 2 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:88 +msgid "Slave Server IP 2 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:95 +msgid "Slave Server 3 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:102 +msgid "Slave Server IP 3 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePureFtpd.html:3 +msgid "Manage FTP Server (Pure FTPD) - CyberPanel" +msgstr "Управление на FTP сървър (Pure FTPD) - CyberPanel" + +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Manage FTP Server (Pure FTPD)!" +msgstr "Управление на FTP сървър (Pure FTPD)!" + +#: manageServices/templates/manageServices/managePureFtpd.html:14 +msgid "Enable or disable FTP services. " +msgstr "Позволи или забрани FTP сървър." + +#: manageServices/templates/manageServices/managePureFtpd.html:22 +msgid "Manage PureFTPD" +msgstr "Управлявай PureFTPD" + +#: packages/templates/packages/createPackage.html:3 +msgid "Create Package - CyberPanel" +msgstr "Създай Пакет - CyberPanel" + +#: packages/templates/packages/createPackage.html:14 +#: packages/templates/packages/deletePackage.html:13 +#: packages/templates/packages/index.html:14 +#: packages/templates/packages/modifyPackage.html:10 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 +msgid "" +"Packages define resources for your websites, you need to add package before " +"creating a website." +msgstr "Пакетите дефинират ресурсите, които сайтовете могат да използват." + +#: packages/templates/packages/createPackage.html:19 +msgid "Package Details" +msgstr "Детайли за Пакет" + +#: packages/templates/packages/createPackage.html:41 +#: packages/templates/packages/listPackages.html:98 +#: packages/templates/packages/modifyPackage.html:44 +msgid "(0 = Unlimited)" +msgstr "( 0 = Без Лимит )" + +#: packages/templates/packages/createPackage.html:45 +#: packages/templates/packages/listPackages.html:104 +#: packages/templates/packages/modifyPackage.html:49 +msgid "Disk Space" +msgstr "Дисково Място" + +#: packages/templates/packages/createPackage.html:49 +#: packages/templates/packages/createPackage.html:57 +#: packages/templates/packages/listPackages.html:109 +#: packages/templates/packages/listPackages.html:119 +#: packages/templates/packages/modifyPackage.html:53 +#: packages/templates/packages/modifyPackage.html:61 +msgid "MB (0 = Unlimited)" +msgstr "MB (0 = Без лимит)" + +#: packages/templates/packages/createPackage.html:53 +#: packages/templates/packages/listPackages.html:35 +#: packages/templates/packages/listPackages.html:114 +#: packages/templates/packages/modifyPackage.html:57 +msgid "Bandwidth" +msgstr "Трафик" + +#: packages/templates/packages/createPackage.html:62 +#: packages/templates/packages/listPackages.html:125 +#: packages/templates/packages/modifyPackage.html:66 +msgid "FTP Accounts" +msgstr "FTP Акаунти" + +#: packages/templates/packages/createPackage.html:108 +msgid "Cannot create package. Error message:" +msgstr "Пакета не е създаден, защото:" + +#: packages/templates/packages/createPackage.html:113 +msgid "Successfully Created" +msgstr "Успешно е създаден" + +#: packages/templates/packages/deletePackage.html:3 +msgid "Delete Package - CyberPanel" +msgstr "Изтрий пакет - CyberPanel" + +#: packages/templates/packages/deletePackage.html:56 +msgid "Cannot delete package. Error message:" +msgstr "Пакета не може да бъде премахнат, защото:" + +#: packages/templates/packages/deletePackage.html:60 +#, fuzzy +#| msgid " Successfully Deleted" +msgid " Successfully Deleted." +msgstr "Успешно е премахнато" + +#: packages/templates/packages/index.html:3 +msgid "Packages - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: packages/templates/packages/listPackages.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid "List Packages - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: packages/templates/packages/listPackages.html:14 +msgid "List Packages and delete or edit them." +msgstr "" + +#: packages/templates/packages/listPackages.html:34 +#, fuzzy +#| msgid "Disk Space" +msgid "Diskspace" +msgstr "Дисково Място" + +#: packages/templates/packages/listPackages.html:36 +#, fuzzy +#| msgid "Create Email Account" +msgid "Email Accounts" +msgstr "Създай Email Акаунт" + +#: packages/templates/packages/listPackages.html:38 +msgid "FTPs" +msgstr "" + +#: packages/templates/packages/listPackages.html:39 +#, fuzzy +#| msgid "Add Domains" +msgid "Child Domains" +msgstr "Добави Домейни" + +#: packages/templates/packages/listPackages.html:40 +msgid "Allow FQDN as Childs" +msgstr "" + +#: packages/templates/packages/listPackages.html:152 +#, fuzzy +#| msgid "Additional Features" +msgid "Additional" +msgstr "Допълнителни функции" + +#: packages/templates/packages/modifyPackage.html:3 +msgid "Modify Package - CyberPanel" +msgstr "Промени Пакет - CyberPanel" + +#: packages/templates/packages/modifyPackage.html:117 +msgid "Cannot fetch package details. Error message:" +msgstr "Детайлите за пакета не са извлечени, защото:" + +#: packages/templates/packages/modifyPackage.html:121 +msgid "Package Details Successfully Fetched" +msgstr "Детайлите за пакета са успешно извлечени" + +#: packages/templates/packages/modifyPackage.html:125 +msgid "Successfully Modified" +msgstr "Успешно Променено" + +#: pluginHolder/templates/pluginHolder/plugins.html:15 +#, fuzzy +#| msgid "List Databases - CyberPanel" +msgid "List of installed plugins on your CyberPanel." +msgstr "Бази от Данни - CyberPanel" + +#: pluginHolder/templates/pluginHolder/plugins.html:31 +#, fuzzy +#| msgid "Latest Version" +msgid "Version" +msgstr "Последна Версия" + +#: serverLogs/templates/serverLogs/accessLogs.html:3 +msgid "Access Logs - CyberPanel" +msgstr "Access Логове - CyberPanel" + +#: serverLogs/templates/serverLogs/accessLogs.html:17 +msgid "Access Logs for main web server." +msgstr "Access логове за главния web сървър" + +#: serverLogs/templates/serverLogs/accessLogs.html:24 +#: serverLogs/templates/serverLogs/emailLogs.html:23 +#: serverLogs/templates/serverLogs/errorLogs.html:21 +#: serverLogs/templates/serverLogs/ftplogs.html:21 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 +msgid "Last 50 Lines" +msgstr "Последните 50 реда" + +#: serverLogs/templates/serverLogs/accessLogs.html:41 +#: serverLogs/templates/serverLogs/emailLogs.html:42 +#: serverLogs/templates/serverLogs/errorLogs.html:38 +#: serverLogs/templates/serverLogs/ftplogs.html:38 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 +msgid "Clear Logs" +msgstr "Почисти логове" + +#: serverLogs/templates/serverLogs/accessLogs.html:47 +#: serverLogs/templates/serverLogs/emailLogs.html:49 +#: serverLogs/templates/serverLogs/errorLogs.html:45 +#: serverLogs/templates/serverLogs/ftplogs.html:44 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 +msgid "Last 50 Lines Fetched" +msgstr "Последните 50 реда са извлечени" + +#: serverLogs/templates/serverLogs/accessLogs.html:52 +#: serverLogs/templates/serverLogs/emailLogs.html:54 +#: serverLogs/templates/serverLogs/errorLogs.html:50 +#: serverLogs/templates/serverLogs/ftplogs.html:49 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 +msgid "Could not fetch logs. Use the command line to view the log file." +msgstr "" +"Логовете не могат да бъдат показани. Използвайте терминала за прегледа им." + +#: serverLogs/templates/serverLogs/emailLogs.html:3 +#: serverLogs/templates/serverLogs/errorLogs.html:3 +msgid "Error Logs - CyberPanel" +msgstr "Error логове - CyberPanel" + +#: serverLogs/templates/serverLogs/emailLogs.html:15 +msgid "Email Logs for main web server." +msgstr "Email логове за главния web сървър" + +#: serverLogs/templates/serverLogs/errorLogs.html:14 +msgid "Error Logs for main web server." +msgstr "Error логове за главния web сървър" + +#: serverLogs/templates/serverLogs/ftplogs.html:3 +msgid "FTP Logs - CyberPanel" +msgstr "FTP Логове - CyberPanel" + +#: serverLogs/templates/serverLogs/ftplogs.html:14 +msgid "FTP Logs for main web server." +msgstr "FTP логове за главния web сървър" + +#: serverLogs/templates/serverLogs/index.html:3 +msgid "Server Logs - CyberPanel" +msgstr "Сървърни Логове - Cyberpanel" + +#: serverLogs/templates/serverLogs/index.html:13 +msgid "Server Logs" +msgstr "Сървърни Логове" + +#: serverLogs/templates/serverLogs/index.html:14 +msgid "" +"These are the logs from main server, to see logs for your website navigate " +"to: Websites -> List Websites -> Select Website -> View Logs." +msgstr "Това са логовете на главния сървър." + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 +msgid "ModSecurity Audit Logs - CyberPanel" +msgstr "ModSecurity Audit логове - CyberPanel" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 +msgid "ModSecurity Audit logs" +msgstr "ModSecurity Audit логове" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 +msgid "CyberPanel Main Log File - CyberPanel" +msgstr "Главен Лог на CyberPanel - CyberPanel" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 +msgid "" +"This log file corresponds to errors generated by CyberPanel for your domain " +"errors log you can look into /home/domain/logs." +msgstr "Това е лог файл относно грешки в CyberPanel." + +#: serverStatus/templates/serverStatus/index.html:3 +msgid "Server Status - CyberPanel" +msgstr "Сървър Статус - CyberPanel" + +#: serverStatus/templates/serverStatus/index.html:14 +msgid "View LiteSpeed status and log files." +msgstr "Виж LiteSpeed статус и логове." + +#: serverStatus/templates/serverStatus/index.html:41 +#, fuzzy +#| msgid "CyberPanel Main Log File" +msgid "CyberPanel Main Log" +msgstr "Главен CyberPanel Лог" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:3 +msgid "LiteSpeed Status - CyberPanel" +msgstr "LiteSpeed Статус - CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:14 +#: serverStatus/templates/serverStatus/litespeedStatus.html:221 +msgid "LiteSpeed Status:" +msgstr "LiteSpeed Статус" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:222 +msgid "" +"On this page you can get information regarding your LiteSpeed processes." +msgstr "" +"На тази страница може да разгледате информация за OpenLiteSpeed процесите" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:30 +#: serverStatus/templates/serverStatus/litespeedStatus.html:254 +msgid "LiteSpeed Processes" +msgstr "LiteSpeed Processes" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:37 +#: serverStatus/templates/serverStatus/litespeedStatus.html:261 +msgid "Process ID" +msgstr "Process ID" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:49 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 +msgid "Main Process" +msgstr "Main Процес" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:52 +#: serverStatus/templates/serverStatus/litespeedStatus.html:276 +msgid "lscgid Process" +msgstr "lscgid Процес" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:55 +#: serverStatus/templates/serverStatus/litespeedStatus.html:279 +msgid "Worker Process" +msgstr "Worker Process" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:291 +msgid "Reboot Litespeed" +msgstr "Рестартирай LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:73 +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +msgid "Stop LiteSpeed" +msgstr "Спри LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:87 +#: serverStatus/templates/serverStatus/litespeedStatus.html:310 +msgid "Error Occurred. See CyberPanel main log file." +msgstr "Възникна проблем. Прегледайте главния лог на CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:92 +#: serverStatus/templates/serverStatus/litespeedStatus.html:315 +msgid "Could not connect to server." +msgstr "Няма връзка със сървъра." + +#: serverStatus/templates/serverStatus/litespeedStatus.html:138 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:149 +#, fuzzy +#| msgid "LiteSpeed Processes" +msgid "LiteSpeed Serial No. (License Key)" +msgstr "LiteSpeed Processes" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:160 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Get 15 Days Trial" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:175 +msgid "" +"Note: If you select 15 days trial there is no need to enter the serial key, " +"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " +"have not used trial already." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:193 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:329 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Файл Мениджър" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:336 +#: serverStatus/templates/serverStatus/litespeedStatus.html:340 +#: serverStatus/templates/serverStatus/litespeedStatus.html:341 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Сървър Статус" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#: serverStatus/templates/serverStatus/litespeedStatus.html:350 +#: serverStatus/templates/serverStatus/litespeedStatus.html:351 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Промени лимити" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:378 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Нов файл" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:388 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Промени" + +#: serverStatus/templates/serverStatus/services.html:3 +msgid "Services - CyberPanel" +msgstr "Services - CyberPanel" + +#: serverStatus/templates/serverStatus/services.html:25 +msgid "Show stats for services and actions (Start, Stop, Restart)" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid "Top Processes - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: serverStatus/templates/serverStatus/topProcesses.html:16 +msgid "List of top processes on your server. (Refresh every 3 seconds)" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:27 +msgid "Cores" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:28 +#, fuzzy +#| msgid "New Name" +msgid "Model Name" +msgstr "Ново име" + +#: serverStatus/templates/serverStatus/topProcesses.html:29 +msgid "CPU Mhz" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:30 +#, fuzzy +#| msgid "Cache Size in memory" +msgid "Cache Size" +msgstr "Cache Size in memory" + +#: serverStatus/templates/serverStatus/topProcesses.html:51 +#, fuzzy +#| msgid "Process ID" +msgid "Processes" +msgstr "Process ID" + +#: serverStatus/templates/serverStatus/topProcesses.html:53 +msgid "Sleeping" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:54 +#, fuzzy +#| msgid "Stop" +msgid "Stopped" +msgstr "Спри" + +#: serverStatus/templates/serverStatus/topProcesses.html:55 +msgid "Zombie" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:80 +#, fuzzy +#| msgid "CPU Load Average" +msgid "CPU Load" +msgstr "Средно CPU Натоварване" + +#: serverStatus/templates/serverStatus/topProcesses.html:81 +msgid "1 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:82 +msgid "5 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:83 +msgid "15 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:104 +msgid "I/O Wait" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:105 +msgid "Idle Time" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:106 +msgid "HW Interrupts" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:107 +msgid "Softirqs" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:132 +#: serverStatus/templates/serverStatus/topProcesses.html:156 +msgid "Free" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:133 +#: serverStatus/templates/serverStatus/topProcesses.html:157 +msgid "Used" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:134 +#: serverStatus/templates/serverStatus/topProcesses.html:158 +msgid "buff/cache" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:155 +msgid "SWAP" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:192 +#, fuzzy +#| msgid "ID" +msgid "PID" +msgstr "ID" + +#: serverStatus/templates/serverStatus/topProcesses.html:194 +msgid "VIRT" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:195 +msgid "RES" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:196 +#, fuzzy +#| msgid "Status" +msgid "State" +msgstr "Статус" + +#: serverStatus/templates/serverStatus/topProcesses.html:197 +#, python-format +msgid "%%CPU" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:198 +#, python-format +msgid "%%MEM" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:199 +msgid "Time" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:200 +#: websiteFunctions/templates/websiteFunctions/listCron.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:126 +msgid "Command" +msgstr "Команда" + +#: tuning/templates/tuning/index.html:3 +msgid "Server Tuning - CyberPanel" +msgstr "Server Tuning - CyberPanel" + +#: tuning/templates/tuning/index.html:12 +msgid "Server Tuning" +msgstr "Оптимизация на Сървър" + +#: tuning/templates/tuning/index.html:13 +msgid "" +"On this page you can set runing parameters for your webserver depending on " +"your hardware." +msgstr "" +"От тази страница може да променяте настройките на уеб сървъра според Вашия " +"hardware." + +#: tuning/templates/tuning/liteSpeedTuning.html:3 +msgid "LiteSpeed Tuning - CyberPanel" +msgstr "LiteSpeed Настройки - CyberPanel" + +#: tuning/templates/tuning/liteSpeedTuning.html:13 +msgid "" +"You can use this page to tweak your server according to your website " +"requirments." +msgstr "" +"Може да използвате тази страница за настройка на сървъра Ви според " +"изискванията на сайта Ви." + +#: tuning/templates/tuning/liteSpeedTuning.html:18 +msgid "Tuning Details" +msgstr "Детайли за Настройки" + +#: tuning/templates/tuning/liteSpeedTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:192 +msgid "Max Connections" +msgstr "Max Connections" + +#: tuning/templates/tuning/liteSpeedTuning.html:36 +msgid "Max SSL Connections" +msgstr "Max SSL Connections" + +#: tuning/templates/tuning/liteSpeedTuning.html:44 +msgid "Connection Timeout" +msgstr "Connection Timeout" + +#: tuning/templates/tuning/liteSpeedTuning.html:52 +msgid "Keep Alive Timeout" +msgstr "Keep Alive Timeout" + +#: tuning/templates/tuning/liteSpeedTuning.html:60 +msgid "Cache Size in memory" +msgstr "Cache Size in memory" + +#: tuning/templates/tuning/liteSpeedTuning.html:67 +msgid "Enable GZIP Compression" +msgstr "Включи GZIP Компресия" + +#: tuning/templates/tuning/liteSpeedTuning.html:74 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:237 +msgid "Currently:" +msgstr "В момента" + +#: tuning/templates/tuning/liteSpeedTuning.html:82 +msgid "Tune Web Server" +msgstr "Настрой Web Сървър" + +#: tuning/templates/tuning/liteSpeedTuning.html:92 +msgid "" +"Cannot fetch Current Value, but you can still submit new changes, error " +"reported from server:" +msgstr "" +"Действащата валута не е извлечена, но все пак може да я променяте. " +"Съобщението за грешка: " + +#: tuning/templates/tuning/liteSpeedTuning.html:96 +msgid "Cannot save details, Error Message: " +msgstr "Детайлите не са запазени. Съобщение за грешка: " + +#: tuning/templates/tuning/liteSpeedTuning.html:101 +msgid "Web Server Successfully tuned." +msgstr "Уеб сървъра е успешно оптимизиран." + +#: tuning/templates/tuning/phpTuning.html:3 +msgid "PHP Tuning - CyberPanel" +msgstr "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:45 +#: tuning/templates/tuning/phpTuning.html:185 +msgid "Initial Request Timeout (secs)" +msgstr "Initial Request Timeout (secs)" + +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:200 +msgid "Memory Soft Limit" +msgstr "Memory Soft Limit" + +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:207 +msgid "Memory Hard Limit" +msgstr "Memory Hard Limit" + +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:215 +msgid "Process Soft Limit" +msgstr "Process Soft Limit" + +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:222 +msgid "Process Hard Limit" +msgstr "Process Hard Limit" + +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:230 +msgid "Persistent Connection" +msgstr "Persistent Connection" + +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:246 +msgid "Tune PHP" +msgstr "Настрой PHP" + +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:259 +msgid "Cannot tune. Error message:" +msgstr "Настройките не са въведени, защото:" + +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:264 +msgid "Details Successfully fetched." +msgstr "Детайлите са успешно извлечени." + +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:268 +msgid "PHP for " +msgstr "PHP Версия за" + +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:269 +msgid "Successfully tuned." +msgstr "Успешно настроен" + +#: userManagment/templates/userManagment/apiAccess.html:3 +#, fuzzy +#| msgid "Access Logs - CyberPanel" +msgid "API Access for User - CyberPanel" +msgstr "Access Логове - CyberPanel" + +#: userManagment/templates/userManagment/apiAccess.html:14 +msgid "" +"Allow/Remove API access for account, this effects Cloud Platform Connection " +"and Third Party Modules." +msgstr "" + +#: userManagment/templates/userManagment/apiAccess.html:29 +#: userManagment/templates/userManagment/changeUserACL.html:28 +#: userManagment/templates/userManagment/deleteUser.html:29 +#: userManagment/templates/userManagment/resellerCenter.html:25 +msgid "Select User" +msgstr "Избери Потребител" + +#: userManagment/templates/userManagment/apiAccess.html:40 +#, fuzzy +#| msgid "Access Log" +msgid "Access" +msgstr "Access Лог" + +#: userManagment/templates/userManagment/changeUserACL.html:3 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Change User ACL - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/changeUserACL.html:12 +#: userManagment/templates/userManagment/changeUserACL.html:19 +#: userManagment/templates/userManagment/createACL.html:100 +#: userManagment/templates/userManagment/modifyACL.html:104 +#, fuzzy +#| msgid "Create User" +msgid "Change User ACL" +msgstr "Създай Потребител" + +#: userManagment/templates/userManagment/changeUserACL.html:13 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "This page can be used to change ACL for CyberPanel users." +msgstr "От тази страница може да направите архив на Вашите страници" + +#: userManagment/templates/userManagment/changeUserACL.html:39 +#: userManagment/templates/userManagment/createUser.html:56 +#: userManagment/templates/userManagment/deleteACL.html:26 +#: userManagment/templates/userManagment/listUsers.html:99 +#: userManagment/templates/userManagment/modifyACL.html:28 +#, fuzzy +#| msgid "Select All" +msgid "Select ACL" +msgstr "Избери всички" + +#: userManagment/templates/userManagment/changeUserACL.html:55 +#, fuzzy +#| msgid "Change" +msgid "Change ACL" +msgstr "Промени" + +#: userManagment/templates/userManagment/createACL.html:3 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Create new ACL - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/createACL.html:13 +msgid "" +"Create new Access Control defination, that specifies what CyberPanel users " +"can do." +msgstr "" + +#: userManagment/templates/userManagment/createACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:19 +#, fuzzy +#| msgid "Details" +msgid "ACL Details" +msgstr "Детайли" + +#: userManagment/templates/userManagment/createACL.html:26 +#, fuzzy +#| msgid "Last Name" +msgid "ACL Name" +msgstr "Фанилия" + +#: userManagment/templates/userManagment/createACL.html:40 +#: userManagment/templates/userManagment/modifyACL.html:44 +#, fuzzy +#| msgid "Admin" +msgid "Make Admin" +msgstr "Admin" + +#: userManagment/templates/userManagment/createACL.html:59 +#: userManagment/templates/userManagment/modifyACL.html:63 +#, fuzzy +#| msgid "Cron Management" +msgid "User Management" +msgstr "Cron Мениджър" + +#: userManagment/templates/userManagment/createACL.html:91 +#: userManagment/templates/userManagment/deleteUser.html:13 +#: userManagment/templates/userManagment/deleteUser.html:20 +#: userManagment/templates/userManagment/deleteUser.html:42 +#: userManagment/templates/userManagment/index.html:78 +#: userManagment/templates/userManagment/index.html:81 +#: userManagment/templates/userManagment/modifyACL.html:95 +msgid "Delete User" +msgstr "Изтрий Потребител" + +#: userManagment/templates/userManagment/createACL.html:107 +#: userManagment/templates/userManagment/modifyACL.html:111 +#, fuzzy +#| msgid "Git Management" +msgid "Website Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:130 +#: userManagment/templates/userManagment/modifyACL.html:134 +#, fuzzy +#| msgid "Suspend/Unsuspend Website" +msgid "Suspend Website" +msgstr "Пусни/Спри Страница" + +#: userManagment/templates/userManagment/createACL.html:147 +#: userManagment/templates/userManagment/modifyACL.html:151 +#, fuzzy +#| msgid "Package Name" +msgid "Package Management" +msgstr "Име на Пакет" + +#: userManagment/templates/userManagment/createACL.html:186 +#: userManagment/templates/userManagment/modifyACL.html:190 +#, fuzzy +#| msgid "Database Name" +msgid "Database Management" +msgstr "Име на База от Данни" + +#: userManagment/templates/userManagment/createACL.html:216 +#: userManagment/templates/userManagment/modifyACL.html:220 +#, fuzzy +#| msgid "Git Management" +msgid "DNS Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:249 +#: userManagment/templates/userManagment/modifyACL.html:253 +#, fuzzy +#| msgid "Add/Delete Rules" +msgid "Add/Delete" +msgstr "Добави/Премахни Правила" + +#: userManagment/templates/userManagment/createACL.html:257 +#: userManagment/templates/userManagment/modifyACL.html:261 +#, fuzzy +#| msgid "Git Management" +msgid "Email Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:317 +#: userManagment/templates/userManagment/modifyACL.html:321 +#, fuzzy +#| msgid "Git Management" +msgid "FTP Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:347 +#: userManagment/templates/userManagment/modifyACL.html:351 +#, fuzzy +#| msgid "Git Management" +msgid "Backup Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:399 +#: userManagment/templates/userManagment/modifyACL.html:403 +#, fuzzy +#| msgid "Git Management" +msgid "SSL Management" +msgstr "Git Мениджър" + +#: userManagment/templates/userManagment/createACL.html:432 +#, fuzzy +#| msgid "Create Alias" +msgid "Create ACL" +msgstr "Паркирай Домейн" + +#: userManagment/templates/userManagment/createUser.html:3 +msgid "Create New User - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/createUser.html:13 +msgid "Create root, reseller or normal users on this page." +msgstr "Създай root, reseller или нормален потребител от тази страница." + +#: userManagment/templates/userManagment/createUser.html:19 +msgid "User Details" +msgstr "Детайли" + +#: userManagment/templates/userManagment/createUser.html:25 +#: userManagment/templates/userManagment/modifyUser.html:39 +#: userManagment/templates/userManagment/userProfile.html:24 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 +msgid "First Name" +msgstr "Име" + +#: userManagment/templates/userManagment/createUser.html:31 +msgid "First Name should contain only alphabetic characters." +msgstr "Името е необходимо да съдържа само букви" + +#: userManagment/templates/userManagment/createUser.html:35 +#: userManagment/templates/userManagment/modifyUser.html:46 +#: userManagment/templates/userManagment/userProfile.html:29 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 +msgid "Last Name" +msgstr "Фанилия" + +#: userManagment/templates/userManagment/createUser.html:41 +msgid "Last Name should contain only alphabetic characters." +msgstr "Фамилията е необходимо да съдържа само букви" + +#: userManagment/templates/userManagment/createUser.html:50 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 +msgid "Invalid Email" +msgstr "Невалиден Email" + +#: userManagment/templates/userManagment/createUser.html:68 +#: userManagment/templates/userManagment/listUsers.html:33 +#: userManagment/templates/userManagment/resellerCenter.html:48 +#: userManagment/templates/userManagment/userProfile.html:53 +msgid "Websites Limit" +msgstr "Лимити за страници" + +#: userManagment/templates/userManagment/createUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:85 +#, fuzzy +#| msgid "Security" +msgid "Security Level" +msgstr "Сигурност" + +#: userManagment/templates/userManagment/createUser.html:120 +#: userManagment/templates/userManagment/index.html:49 +#: userManagment/templates/userManagment/index.html:52 +msgid "Create User" +msgstr "Създай Потребител" + +#: userManagment/templates/userManagment/createUser.html:128 +#: userManagment/templates/userManagment/modifyUser.html:112 +msgid "Account with username:" +msgstr "Акаунт с Потребителско име:" + +#: userManagment/templates/userManagment/createUser.html:133 +msgid "Cannot create user. Error message:" +msgstr "Потребителя не е създаден. Съобщение за грешка:" + +#: userManagment/templates/userManagment/createUser.html:141 +msgid "" +"Length of first and last name combined should be less than or equal to 20 " +"characters" +msgstr "" +"Дължината на Първото и последното име комбинирано не трябва да превишава 20 " +"символа." + +#: userManagment/templates/userManagment/deleteACL.html:3 +#, fuzzy +#| msgid "Delete User - CyberPanel" +msgid "Delete ACL - CyberPanel" +msgstr "Премахни потребител - CyberPanel" + +#: userManagment/templates/userManagment/deleteACL.html:13 +#, fuzzy +#| msgid "This page can be used to suspend/unsuspend website." +msgid "This page can be used to delete ACL." +msgstr "От тази страница може да пускате или спирате страници." + +#: userManagment/templates/userManagment/deleteUser.html:3 +msgid "Delete User - CyberPanel" +msgstr "Премахни потребител - CyberPanel" + +#: userManagment/templates/userManagment/deleteUser.html:14 +msgid "Websites owned by this user will automatically transfer to the root." +msgstr "" +"Уеб страниците на този потребител ще бъдат автоматично прехвърлени към admin." + +#: userManagment/templates/userManagment/deleteUser.html:61 +msgid "Cannot delete user. Error message:" +msgstr "Потребителя не може да бъде премахнат. Съобщение за грешка: " + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid "User " +msgstr "Потребител" + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid " Successfully Deleted" +msgstr "Успешно е премахнато" + +#: userManagment/templates/userManagment/index.html:3 +msgid "User Functions - CyberPanel" +msgstr "Потребителски функции - CyberPanel" + +#: userManagment/templates/userManagment/index.html:14 +msgid "Create, edit and delete users on this page." +msgstr "Създавай, променяй или премахвайте потребители от тази страница." + +#: userManagment/templates/userManagment/listUsers.html:3 +#, fuzzy +#| msgid "List Databases - CyberPanel" +msgid "List Users - CyberPanel" +msgstr "Бази от Данни - CyberPanel" + +#: userManagment/templates/userManagment/listUsers.html:14 +msgid "List Users that you own." +msgstr "" + +#: userManagment/templates/userManagment/listUsers.html:35 +msgid "ACL" +msgstr "" + +#: userManagment/templates/userManagment/listUsers.html:84 +#: userManagment/templates/userManagment/resellerCenter.html:37 +#, fuzzy +#| msgid "Select Owner" +msgid "New Owner" +msgstr "Избери Собственик" + +#: userManagment/templates/userManagment/modifyACL.html:3 +#, fuzzy +#| msgid "Modify User - CyberPanel" +msgid "Modify an ACL - CyberPanel" +msgstr "Промени Потребител - CyberPanel" + +#: userManagment/templates/userManagment/modifyACL.html:12 +msgid "Modify an ACL" +msgstr "" + +#: userManagment/templates/userManagment/modifyACL.html:13 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can modify an existing ACL." +msgstr "От тази страница може да настройте SpamAssassin." + +#: userManagment/templates/userManagment/modifyUser.html:3 +msgid "Modify User - CyberPanel" +msgstr "Промени Потребител - CyberPanel" + +#: userManagment/templates/userManagment/modifyUser.html:13 +msgid "Modify existing user settings on this page." +msgstr "Променяйте настройките за съществуващ потребител от тази страница." + +#: userManagment/templates/userManagment/modifyUser.html:27 +msgid "Select Account" +msgstr "Избери Акаунт" + +#: userManagment/templates/userManagment/modifyUser.html:113 +msgid " is successfully modified." +msgstr "е успешно променен." + +#: userManagment/templates/userManagment/modifyUser.html:117 +msgid "Cannot modify user. Error message:" +msgstr "Потребителя не е променен. Съобщение за грешка:" + +#: userManagment/templates/userManagment/modifyUser.html:130 +msgid "Details fetched." +msgstr "Детайлите са изтеглени." + +#: userManagment/templates/userManagment/resellerCenter.html:3 +#, fuzzy +#| msgid "Restore Website - CyberPanel" +msgid "Reseller Center - CyberPanel" +msgstr "Възстанови Страница - CyberPanel" + +#: userManagment/templates/userManagment/resellerCenter.html:13 +msgid "Change owner of users and change websites limits." +msgstr "" + +#: userManagment/templates/userManagment/userProfile.html:3 +msgid "Account Details - CyberPanel" +msgstr "Детайли за Акаунт - CyberPanel" + +#: userManagment/templates/userManagment/userProfile.html:12 +#: userManagment/templates/userManagment/userProfile.html:18 +msgid "Account Details" +msgstr "Детайли за Акаунт" + +#: userManagment/templates/userManagment/userProfile.html:13 +msgid "List the account details for the currently logged in user." +msgstr "Преглед на акаунтите, които са влезнали в този момент." + +#: userManagment/templates/userManagment/userProfile.html:48 +#, fuzzy +#| msgid "Account Level" +msgid "Account ACL" +msgstr "Акаунт Левел" + +#: userManagment/templates/userManagment/userProfile.html:55 +msgid "( 0 = Unlimited )" +msgstr "( 0 = Без Лимит )" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 +msgid "Application Installer - CyberPanel" +msgstr "Инсталатор на Приложения - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 +msgid "One-click application install." +msgstr "Инсталатор на Приложения" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 +msgid "Install Joomla with(?) LSCache" +msgstr "Инсталирай Joomla(?) с LSCache" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 +msgid "Create New Website - CyberPanel" +msgstr "Добави нова страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/index.html:14 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 +msgid "" +"On this page you can launch, list, modify and delete websites from your " +"server." +msgstr "" +"От тази страница може да стартирате, преглеждате, променяте или премахвате " +"уеб сайтове на Вашия сървър." + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 +msgid "Website Details" +msgstr "Детайли за Страницата" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 +msgid "Do not enter WWW, it will be auto created!" +msgstr "НЕ въвеждайте www. То ще бъде автоматично създадено!" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 +msgid "Delete Website - CyberPanel" +msgstr "Премахни страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 +msgid "" +"This page can be used to delete website, once deleted it can not be " +"recovered." +msgstr "" +"От тази страница може да премахвате уеб сайтове. Веднъж премахнати те няма " +"как да бъдат възстановени." + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 +msgid "Cannot delete website, Error message: " +msgstr "Страницата не е премахната. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Successfully Deleted." +msgstr "Успешно е Изтрита." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 +msgid "Domain Aliases - CyberPanel" +msgstr "Паркирани Домейни - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 +msgid "Domain Aliases" +msgstr "Паркирани Домейни" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 +msgid "" +"With Domain Aliases you can visit example.com using example.net and view the " +"same content." +msgstr "" +"С паркирания домейн Вие може да заредите example.com като посетите example." +"net." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 +msgid "Create Alias" +msgstr "Паркирай Домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 +msgid "Master Domain" +msgstr "Главен домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 +msgid "Alias" +msgstr "Паркиран домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 +msgid "File System Path" +msgstr "Системен път" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 +msgid "Domain Aliases not found." +msgstr "Няма паркиран домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 +msgid "Alias Domain" +msgstr "Паркиран Домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 +msgid "" +"For SSL to work DNS of domain should point to server, otherwise self signed " +"SSL will be issued, you can add your own SSL later." +msgstr "" +"За да бъде издаден SSL домейн името трябва да бъде пренасочено към сървъра " +"Ви. В противен случай ще бъде издаден Self SSL. Винаги може да добавите Ваш " +"SSL по-късно." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 +msgid "Operation failed. Error message:" +msgstr "Действието не е изпълнено. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 +msgid "Alias successfully created. Refreshing page in 3 seconds..." +msgstr "" +"Домейна е успешно паркиран. Страницата ще се презареди след 3 секунди..." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 +msgid "Operation Successfull." +msgstr "Действието е успешно изпълнено." + +#: websiteFunctions/templates/websiteFunctions/index.html:3 +msgid "Website Functions - CyberPanel" +msgstr "Настройки на Страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/index.html:33 +#: websiteFunctions/templates/websiteFunctions/index.html:57 +#, fuzzy +#| msgid "List Websites" +msgid "List Website" +msgstr "Преглед на Страници" + +#: websiteFunctions/templates/websiteFunctions/index.html:79 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 +msgid "Suspend/Unsuspend Website" +msgstr "Пусни/Спри Страница" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 +msgid "Install Joomla - CyberPanel" +msgstr "Инсталирай Joomla - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 +msgid "Install Joomla" +msgstr "Инсталирай Joomla" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 +msgid "One-click Joomla Install!" +msgstr "Инсталирай Joomla!" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 +msgid "Installation Details" +msgstr "Детайли:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 +msgid "Site Name" +msgstr "Име на сайт" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 +msgid "Login User" +msgstr "Потребителско име" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 +msgid "Login Password" +msgstr "Парола" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 +msgid "Database Prefix" +msgstr "База от данни prefix" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 +msgid "Installation failed. Error message:" +msgstr "Инсталацията Не завърши, защото:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 +msgid "Installation successful. Visit:" +msgstr "Инсталацията завърши успешно. Посети: " + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 +#, fuzzy +#| msgid "Install PrestaShop - CyberPanel" +msgid "Install Magento - CyberPanel" +msgstr "Инсталирай PrestaShop -CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 +#: websiteFunctions/templates/websiteFunctions/website.html:1029 +#: websiteFunctions/templates/websiteFunctions/website.html:1033 +#, fuzzy +#| msgid "Packages" +msgid "Install Magento" +msgstr "Пакети" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 +#, fuzzy +#| msgid "One-click PrestaShop Install!" +msgid "One-click Magento Install!" +msgstr "Инсталирай PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 +#, fuzzy +#| msgid "Username" +msgid "Admin Username" +msgstr "Потребителско Име" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 +msgid "" +"does not work on OpenLiteSpeed. It is highly recommended to use this " +"installer with LiteSpeed Enterprise only." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 +msgid "Install PrestaShop - CyberPanel" +msgstr "Инсталирай PrestaShop -CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 +msgid "Install PrestaShop" +msgstr "Инсталирай PrestaShop" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 +msgid "One-click PrestaShop Install!" +msgstr "Инсталирай PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 +msgid "Shop Name" +msgstr "Име на магазин" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 +msgid "Install WordPress - CyberPanel" +msgstr "Wordpress с LSCache" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 +msgid "Install WordPress" +msgstr "Инсталирай WordPress" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 +msgid "Install WordPress with LSCache." +msgstr "Wordpress с LSCache" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 +msgid "Blog Title" +msgstr "Име на Блог" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 +msgid "Copy/Sync to Master" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 +#: websiteFunctions/templates/websiteFunctions/website.html:990 +msgid "WP + LSCache" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 +#: websiteFunctions/templates/websiteFunctions/website.html:1034 +msgid "Magento" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:3 +msgid "Cron Management - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +#: websiteFunctions/templates/websiteFunctions/listCron.html:19 +msgid "Cron Management" +msgstr "Cron Мениджър" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +msgid "Cron Docs" +msgstr "Cron документация" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:13 +msgid "Create, edit or delete your cron jobs from this page." +msgstr "Създай, редактирай или премахвайте cron задачи от тази страница." + +#: websiteFunctions/templates/websiteFunctions/listCron.html:37 +msgid "Add Cron" +msgstr "Добави Cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:46 +#: websiteFunctions/templates/websiteFunctions/listCron.html:95 +msgid "Minute" +msgstr "Минута" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:47 +#: websiteFunctions/templates/websiteFunctions/listCron.html:101 +msgid "Hour" +msgstr "Час" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:48 +msgid "Day of Month" +msgstr "Ден от месеца" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:49 +#: websiteFunctions/templates/websiteFunctions/listCron.html:113 +msgid "Month" +msgstr "Месец" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:50 +msgid "Day of Week" +msgstr "Ден от седмица" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:79 +msgid "Pre defined" +msgstr "Предварително дефинирано" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:82 +msgid "Every minute" +msgstr "Всяка минута" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:83 +msgid "Every 5 minutes" +msgstr "Всеки 5 минути" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:84 +msgid "Every 30 minutes" +msgstr "Всеки 30 минути" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:85 +msgid "Every hour" +msgstr "Всеки час" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:86 +msgid "Every day" +msgstr "Всеки ден" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:87 +msgid "Every week" +msgstr "Всяка седмица" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:88 +msgid "Every month" +msgstr "Всеки месец" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:89 +msgid "Every year" +msgstr "Всяка година" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:107 +msgid "Day of month" +msgstr "Ден от месеца" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:119 +msgid "Day of week" +msgstr "Ден от седмицата" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:135 +msgid "Save edits" +msgstr "Запази промените" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:142 +msgid "Add cron" +msgstr "Добави крон" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:152 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 +msgid "Cannot fetch website details. Error message:" +msgstr "Информацията за страницата не са обновени, защото:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:156 +msgid "Unable to add/save Cron. Error message:" +msgstr "Cron задачата не е добавена/променена. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:159 +msgid "Cron job saved" +msgstr "Cron задачата е запазена" + +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 +msgid "Websites Hosted - CyberPanel" +msgstr "Websites Hosted - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 +msgid "Modify Website - CyberPanel" +msgstr "Редактирай Страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 +msgid "Current Package:" +msgstr "Текущ Пакет" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 +msgid "Current Owner:" +msgstr "Текущ собственик:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 +msgid "Cannot modify website. Error message:" +msgstr "Страницата не може да бъде променена, защото:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 +msgid "Website Details Successfully fetched" +msgstr "Детайлите за страницата са изтеглени" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 +msgid "Git Management - CyberPanel" +msgstr "Git Мениджър - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 +msgid "Git Management" +msgstr "Git Мениджър" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 +msgid "Attach git to your websites." +msgstr "Прикачи Git за тази страница." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 +msgid "Attach Git" +msgstr "Прикачи Git" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 +msgid "Providers" +msgstr "Източници" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 +msgid "Deployment Key" +msgstr "Deployment ключ" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 +msgid "" +"Before attaching repo to your website, make sure to place your Development " +"key in your GIT repository." +msgstr "" +"Преди да прикачите хранилище за страницата Ви се уверете, че сте поставили " +"Вашия Development ключ във Вашето GIT хранилище." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 +msgid "Repository Name" +msgstr "Име на хранилището" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 +msgid "Branch" +msgstr "Разклонение" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 +msgid "Attach Now" +msgstr "Прикачи" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 +msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" +msgstr "" +"GIT е успешно прикачен. Страницата ще се презареди след 3 секунди ... Посети:" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 +msgid "Change Branch" +msgstr "Промени разклонение" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 +msgid "Detach Repo" +msgstr "Откачи хранилище" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 +msgid "Webhook URL" +msgstr "Webhook URL" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 +msgid "" +"Add this URL to Webhooks section of your Git respository, if you've used " +"hostname SSL then replace IP with your hostname. Otherwise use IP and " +"disable SSL check while configuring webhook. This will initiate a pull from " +"your resposity as soon as you commit some changes." +msgstr "" +"Добави този URL адрес към Webhooks секцията на Вашето Git хранилище. Ако сте " +"използвали hostname SSL тогава заменете IP адреса с hostname. В противен " +"случай използвайте IP и забранете SSL проверката при конфигурацията на " +"webhook." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 +msgid "Repo successfully detached, refreshing in 3 seconds.." +msgstr "" +"Хранилището е успешно откачено. Страницата ще се презареди след 3 секунди.." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 +msgid "Branch successfully changed." +msgstr "Разклонението е успешно променено." + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 +#, fuzzy +#| msgid "Git Management - CyberPanel" +msgid "Set up Staging Enviroment - CyberPanel" +msgstr "Git Мениджър - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 +msgid "Set up Staging Enviroment" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 +msgid "Set up staging enviroment for " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +msgid "" +". Any domain that you will choose here will be created as child-domain for " +"this master site." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 +msgid "Domain that you will enter below will be created as child-domain to " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 +msgid "." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 +#, fuzzy +#| msgid "Start" +msgid "Start Cloning" +msgstr "Стартирай" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "SSH and CageFS - CyberPanel" +msgstr "SSL - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 +#, fuzzy +#| msgid "SSH Docs" +msgid "SSH Access" +msgstr "SSH Документация" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid "Set up SSH access and enable/disable CageFS for " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid " CageFS require CloudLinux OS." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 +msgid "Set up SSH access for " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +#, fuzzy +#| msgid "SSL Issued for" +msgid "SSH user for " +msgstr "SSL издаден за" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid " is " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 +msgid "Suspend/Unsuspend Website - CyberPanel" +msgstr "Спри/Пусни Страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 +msgid "This page can be used to suspend/unsuspend website." +msgstr "От тази страница може да пускате или спирате страници." + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 +msgid "Suspend" +msgstr "Спри" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 +msgid "Un-Suspend" +msgstr "Пусни" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 +msgid "Cannot suspend website, Error message: " +msgstr "Страницата не е спряна, защото:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 +msgid "Cannot unsuspend website. Error message:" +msgstr "Страницата не е пусната, защото:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Website " +msgstr "Страница" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Successfully " +msgstr "Успешно" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 +#, fuzzy +#| msgid "DNS Functions - CyberPanel" +msgid "Sync to Master - CyberPanel" +msgstr "DNS Функции - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 +msgid "Sync your site to Master" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid "Right now you can only sync your child domains to master domains." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid " will be synced to " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "Sync " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +#, fuzzy +#| msgid "Stop" +msgid "to " +msgstr "Спри" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 +msgid "What to Sync" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 +msgid "Start Syncing" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/website.html:29 +msgid "Clone/Staging" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/website.html:30 +msgid "Set up SSH Access" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/website.html:665 +msgid "It is not required to modify rules if you are using OpenLiteSpeed." +msgstr "" + +#, fuzzy +#~| msgid "Last Name" +#~ msgid "List" +#~ msgstr "Фанилия" + +#~ msgid "" +#~ "Could not fetch details, either LiteSpeed is not running or some error " +#~ "occurred, please see CyberPanel Main log file." +#~ msgstr "" +#~ "Детайлите не са извлечени. OpenLiteSpeed или не е стартиран или има " +#~ "критична грешка. Разгледайте главния Cyberpanel лог за повече информация." + +#, fuzzy +#~| msgid "Schedule Back up" +#~ msgid "Achedule Back up" +#~ msgstr "Планирано Архивиране " + +#, fuzzy +#~| msgid "Modify User" +#~ msgid "Modify" +#~ msgstr "Промени Потребител" + +#~ msgid "Start" +#~ msgstr "Стартирай" + +#~ msgid "Reload" +#~ msgstr "Презареди" + +#~ msgid "CPU Status" +#~ msgstr "CPU Статус" + +#~ msgid "Fullscreen" +#~ msgstr "Пълен Екран" + +#~ msgid "System Status" +#~ msgstr "Статус" + +#~ msgid "Update started..." +#~ msgstr "Начало на актуализация" + +#~ msgid "Update finished..." +#~ msgstr "Актуализацията приключи" + +#~ msgid "Account Type" +#~ msgstr "Вид на акаунт" + +#~ msgid "User Accounts Limit" +#~ msgstr "Лимити за Потребителски акаунти" + +#~ msgid "Only Numbers" +#~ msgstr "Само Числа" + +#~ msgid "Username should be lowercase alphanumeric." +#~ msgstr "Потребителскоро име трябва да бъде само с малки букви." + +#~ msgid "Must contain one number and one special character." +#~ msgstr "Трябва да съдържа поне един номер и специален символ." + +#~ msgid "Cannot create website. Error message:" +#~ msgstr "Страницата не е създадена, защото:" + +#~ msgid "Website with domain" +#~ msgstr "Страница с домейн" + +#~ msgid " is Successfully Created" +#~ msgstr "е Успешно Създаден" + +#~ msgid "Installation successful. To complete the setup visit:" +#~ msgstr "Инсталацията завърши успешно. " + +#, fuzzy +#~| msgid "Password" +#~ msgid "Admin Password" +#~ msgstr "Парола" + +#, fuzzy +#~| msgid "Database Name" +#~ msgid "Database prefix" +#~ msgstr "Име на База от Данни" + +#~ msgid "Daily" +#~ msgstr "Дневно" + +#~ msgid "Weekly" +#~ msgstr "Седмично" + +#~ msgid "HTTP Statistics" +#~ msgstr "HTTP Статистика" + +#~ msgid "Available/Max Connections" +#~ msgstr "Налични/Максимални Връзки" + +#~ msgid "Available/Max SSL Connections" +#~ msgstr "Налични/Максимални SSL Връзки" + +#~ msgid "Requests Processing" +#~ msgstr "Обработвани заявки" + +#~ msgid "Total Requests" +#~ msgstr "Всички Заявки" + +#~ msgid "IPV6" +#~ msgstr "IPv6" + +#~ msgid "Normal User" +#~ msgstr "Нормален Потребител" + +#~ msgid "Edit Virtual Host Main Configurations" +#~ msgstr "Редактирай Virtual Host Main Configurations" + +#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." +#~ msgstr "" +#~ "Конфигурацията е запазена. Рестартирайте LiteSpeed, за да влезнат в сила " +#~ "промените." From 0445ca2dfe6eeff37962da5bdb1a11014602208e Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 26 Jun 2021 10:00:49 +0200 Subject: [PATCH 17/31] Update django.po --- locale/rs/LC_MESSAGES/django.po | 90 ++++++++++++++++----------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po index b6d977704..828500a72 100644 --- a/locale/rs/LC_MESSAGES/django.po +++ b/locale/rs/LC_MESSAGES/django.po @@ -29,13 +29,13 @@ msgstr "" #, fuzzy #| msgid "Create Package - CyberPanel" msgid "Create Cloud Linux Package - CyberPanel" -msgstr "Създай Пакет - CyberPanel" +msgstr "Направите Пакет - CyberPanel" #: CLManager/templates/CLManager/createPackage.html:9 #, fuzzy #| msgid "Create Package" msgid "Create CloudLinux Package." -msgstr "Създай Пакет" +msgstr "Направи Пакет" #: CLManager/templates/CLManager/createPackage.html:10 msgid "" @@ -55,7 +55,7 @@ msgstr "" #: userManagment/templates/userManagment/createACL.html:152 #: userManagment/templates/userManagment/modifyACL.html:156 msgid "Create Package" -msgstr "Създай Пакет" +msgstr "Направи Пакет" #: CLManager/templates/CLManager/createPackage.html:24 #: packages/templates/packages/deletePackage.html:26 @@ -63,12 +63,12 @@ msgstr "Създай Пакет" #: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 msgid "Select Package" -msgstr "Избери Пакет" +msgstr "Изабери Пакет" #: CLManager/templates/CLManager/createPackage.html:40 #: packages/templates/packages/createPackage.html:27 msgid "Package Name" -msgstr "Име на Пакет" +msgstr "Име Пакета" #: CLManager/templates/CLManager/createPackage.html:47 #: CLManager/templates/CLManager/listPackages.html:87 @@ -127,11 +127,11 @@ msgstr "Промени Пакет - CyberPanel" #, fuzzy #| msgid "Manage Services" msgid "Manage CloudLinux Packages" -msgstr "Manage Services" +msgstr "Управљање Пакетима" #: CLManager/templates/CLManager/listPackages.html:15 msgid "Manage/Delete CloudLinux Packages." -msgstr "" +msgstr "Управљање/Брисање Пакета" #: CLManager/templates/CLManager/listPackages.html:76 #: dns/templates/dns/addDeleteDNSRecords.html:74 @@ -166,7 +166,7 @@ msgstr "Име" #: pluginHolder/templates/pluginHolder/plugins.html:51 #: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 msgid "Cannot list websites. Error message:" -msgstr "Страниците не са извлечени. Съобщение за грешка:" +msgstr "Сајт се не приказује. Грешка:" #: CLManager/templates/CLManager/listWebsites.html:3 #, fuzzy @@ -182,11 +182,11 @@ msgstr "SSL - CyberPanel" #: websiteFunctions/templates/websiteFunctions/index.html:55 #: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 msgid "List Websites" -msgstr "Преглед на Страници" +msgstr "Листа Сајтова" #: CLManager/templates/CLManager/listWebsites.html:15 msgid "Enable/Disable and view CageFS status for websites." -msgstr "" +msgstr "Укључи/Искључи и прегледај CageFS статус за сајтове" #: CLManager/templates/CLManager/listWebsites.html:28 msgid "Default: " @@ -196,13 +196,13 @@ msgstr "" #, fuzzy #| msgid "Modify User - CyberPanel" msgid "Monitor Usage - CyberPanel" -msgstr "Промени Потребител - CyberPanel" +msgstr "Преглед Искоришћености - CyberPanel" #: CLManager/templates/CLManager/monitorUsage.html:15 #, fuzzy #| msgid "Attach git to your websites." msgid "Monitor usage of your websites." -msgstr "Прикачи Git за тази страница." +msgstr "Додајте git на ваш сајт." #: CLManager/templates/CLManager/monitorUsage.html:21 #: baseTemplate/templates/baseTemplate/homePage.html:42 @@ -212,7 +212,7 @@ msgstr "Прикачи Git за тази страница." #: baseTemplate/templates/baseTemplate/index.html:402 #: containerization/templates/containerization/listWebsites.html:21 msgid "Websites" -msgstr "Страница" +msgstr "Сајт" #: CLManager/templates/CLManager/notAvailable.html:3 #: containerization/templates/containerization/notAvailable.html:3 @@ -224,20 +224,20 @@ msgstr "Паркирани Домейни - CyberPanel" #: CLManager/templates/CLManager/notAvailable.html:13 #: containerization/templates/containerization/notAvailable.html:13 msgid "Not available" -msgstr "" +msgstr "Није доступно" #: CLManager/templates/CLManager/notAvailable.html:14 msgid "Either CageFS is not installed or you are not on CloudLinux OS." -msgstr "" +msgstr "CageFS није инсталиран или не користите CloudLinux OS." #: CLManager/templates/CLManager/notAvailable.html:22 msgid "CageFS is only available with CloudLinux OS. " -msgstr "" +msgstr "CageFS је доступан само уз CloudLinux OS." #: CLManager/templates/CLManager/notAvailable.html:24 #: containerization/templates/containerization/notAvailable.html:24 msgid " for conversion details." -msgstr "" +msgstr " за више детаља око преласка." #: CLManager/templates/CLManager/notAvailable.html:34 #: containerization/templates/containerization/notAvailable.html:34 @@ -248,7 +248,7 @@ msgstr "Пакети" #: CLManager/templates/CLManager/notAvailable.html:39 msgid "CageFS is not installed on this server. Please proceed to installation." -msgstr "" +msgstr "CageFS није инсталиран на овај сервер. Молимо вас наставите са инсталацијом." #: CLManager/templates/CLManager/websiteContainerLimit.html:3 #, fuzzy @@ -261,7 +261,7 @@ msgstr "Пакети - CyberPanel" #: websiteFunctions/templates/websiteFunctions/launchChild.html:43 #: websiteFunctions/templates/websiteFunctions/website.html:43 msgid "Usage" -msgstr "Използване" +msgstr "Искоришћеност" #: CLManager/templates/CLManager/websiteContainerLimit.html:15 msgid "View CPU, Memory and Disk usage for " @@ -272,33 +272,33 @@ msgstr "" #, fuzzy #| msgid "CPU Usage" msgid "CPU Usage of" -msgstr "CPU Използване" +msgstr "CPU Искоришћеност" #: CLManager/templates/CLManager/websiteContainerLimit.html:30 #: containerization/templates/containerization/websiteContainerLimit.html:164 #, fuzzy #| msgid "Resource Usage" msgid "Memory Usage of" -msgstr "Използвани ресурси" +msgstr "Потрошња Ресурса" #: CLManager/templates/CLManager/websiteContainerLimit.html:39 #: containerization/templates/containerization/websiteContainerLimit.html:173 #, fuzzy #| msgid "Disk Usage" msgid "Disk Usage of" -msgstr "Използван диск" +msgstr "Искоришћеност Диска" #: CyberCP/settings.py:175 msgid "English" -msgstr "Английски" +msgstr "Енглески" #: CyberCP/settings.py:176 msgid "Chinese" -msgstr "Китайски" +msgstr "Кинески" #: CyberCP/settings.py:177 msgid "Bulgarian" -msgstr "Български" +msgstr "Бугарски" #: CyberCP/settings.py:178 msgid "Portuguese" @@ -306,15 +306,15 @@ msgstr "Португалски" #: CyberCP/settings.py:179 msgid "Japanese" -msgstr "Японски" +msgstr "Јапански" #: CyberCP/settings.py:180 msgid "Bosnian" -msgstr "Босненски" +msgstr "Босански" #: CyberCP/settings.py:181 msgid "Greek" -msgstr "Гръцки" +msgstr "Грчки" #: CyberCP/settings.py:182 msgid "Russian" @@ -326,36 +326,36 @@ msgstr "Турски" #: CyberCP/settings.py:184 msgid "Spanish" -msgstr "Испански" +msgstr "Шпански" #: CyberCP/settings.py:185 msgid "French" -msgstr "Френски" +msgstr "франсуски" #: CyberCP/settings.py:186 #, fuzzy #| msgid "Policy" msgid "Polish" -msgstr "Политика" +msgstr "Пољски" #: CyberCP/settings.py:187 #, fuzzy #| msgid "Filename" msgid "Vietnamese" -msgstr "Име" +msgstr "Вијетнамски" #: CyberCP/settings.py:188 msgid "Italian" -msgstr "" +msgstr "Италијански" #: CyberCP/settings.py:189 msgid "Deutsch" -msgstr "" +msgstr "Немачки" #: IncBackups/templates/IncBackups/backupSchedule.html:3 #: backup/templates/backup/backupSchedule.html:3 msgid "Schedule Back up - CyberPanel" -msgstr "Планирано Архивиране - CyberPanel" +msgstr "Планирано Архивирање - CyberPanel" #: IncBackups/templates/IncBackups/backupSchedule.html:13 #: IncBackups/templates/IncBackups/backupSchedule.html:23 @@ -366,7 +366,7 @@ msgstr "Планирано Архивиране - CyberPanel" #: userManagment/templates/userManagment/createACL.html:381 #: userManagment/templates/userManagment/modifyACL.html:385 msgid "Schedule Back up" -msgstr "Планирано Архивиране " +msgstr "Заказивање Архивирања " #: IncBackups/templates/IncBackups/backupSchedule.html:16 #: IncBackups/templates/IncBackups/incrementalDestinations.html:18 @@ -375,7 +375,7 @@ msgstr "Планирано Архивиране " #: backup/templates/backup/remoteBackups.html:14 #: backup/templates/backup/remoteBackups.html:21 msgid "Remote Backups" -msgstr "Отдалечени архиви" +msgstr "Удаљена Архива" #: IncBackups/templates/IncBackups/backupSchedule.html:17 #: backup/templates/backup/backupSchedule.html:17 @@ -383,25 +383,25 @@ msgid "" "On this page you can schedule Back ups to localhost or remote server (If you " "have added one)." msgstr "" -"От тази страница може да планирате архивите на локален или отдалечен сървър " -"(ако има добавен)." +"На овој страници можете заказати Архивирање на овом или неком удљеном серверу " +"" #: IncBackups/templates/IncBackups/backupSchedule.html:33 #: backup/templates/backup/backupSchedule.html:33 msgid "Select Destination" -msgstr "избери дестинация" +msgstr "Изаберите Одредиште" #: IncBackups/templates/IncBackups/backupSchedule.html:44 #: backup/templates/backup/backupSchedule.html:44 msgid "Select Frequency" -msgstr "Избери кога" +msgstr "Изберите Учесталост" #: IncBackups/templates/IncBackups/backupSchedule.html:54 #: IncBackups/templates/IncBackups/createBackup.html:56 #, fuzzy #| msgid "Git Management" msgid "Backup Content" -msgstr "Git Мениджър" +msgstr "Git Употреба" #: IncBackups/templates/IncBackups/backupSchedule.html:98 #: IncBackups/templates/IncBackups/incrementalDestinations.html:72 @@ -410,16 +410,16 @@ msgstr "Git Мениджър" #: backup/templates/backup/backupSchedule.html:67 #: baseTemplate/templates/baseTemplate/index.html:575 msgid "Add Destination" -msgstr "Добави дестинация" +msgstr "Додај Одредиште" #: IncBackups/templates/IncBackups/backupSchedule.html:112 #: backup/templates/backup/remoteBackups.html:96 msgid "Search Accounts.." -msgstr "Търси Акаунти" +msgstr "Претражи Налоге.." #: IncBackups/templates/IncBackups/backupSchedule.html:124 msgid "Select sites to be included in this job" -msgstr "" +msgstr "Изаберите сајтове које желите укључити у ово архивирање" #: IncBackups/templates/IncBackups/backupSchedule.html:150 #: IncBackups/templates/IncBackups/createBackup.html:127 From f5dafce41ad222906d6f5f4e6383df66e694dfd1 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 26 Jun 2021 10:01:53 +0200 Subject: [PATCH 18/31] Update django.po --- locale/rs/LC_MESSAGES/django.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po index 828500a72..7ac8840e8 100644 --- a/locale/rs/LC_MESSAGES/django.po +++ b/locale/rs/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# CyberPanel Translation File. +# Copyright (C) 2017 LiteSpeedTech +# This file is distributed under the same license as the CyberPanel package. +# Stefan Pejcic , 2021. # #: baseTemplate/templates/baseTemplate/index.html:219 #: baseTemplate/templates/baseTemplate/index.html:272 From afeb2f81269ae497c85b00360b8cdfebe5ae1dff Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 26 Jun 2021 10:20:09 +0200 Subject: [PATCH 19/31] =?UTF-8?q?=D0=A1=D1=80=D0=BF=D1=81=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B5=D0=B2=D0=BE=D0=B4=20~1087=20=D0=BB=D0=B8?= =?UTF-8?q?=D0=BD=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Српски превод ~1087 лине --- locale/rs/LC_MESSAGES/django.po | 152 ++++++++++++++++---------------- 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po index 7ac8840e8..9d64fe9a8 100644 --- a/locale/rs/LC_MESSAGES/django.po +++ b/locale/rs/LC_MESSAGES/django.po @@ -448,12 +448,12 @@ msgstr "ID" #: mailServer/templates/mailServer/emailForwarding.html:101 #: mailServer/templates/mailServer/emailForwarding.html:119 msgid "Destination" -msgstr "Дестинация" +msgstr "Дестинациja" #: IncBackups/templates/IncBackups/backupSchedule.html:152 #: backup/templates/backup/backupSchedule.html:104 msgid "Frequency" -msgstr "Честота" +msgstr "Учесталост" #: IncBackups/templates/IncBackups/backupSchedule.html:153 #: IncBackups/templates/IncBackups/createBackup.html:130 @@ -479,13 +479,13 @@ msgstr "Честота" #: websiteFunctions/templates/websiteFunctions/listCron.html:65 #: websiteFunctions/templates/websiteFunctions/website.html:497 msgid "Delete" -msgstr "Изтрий" +msgstr "Обриши" #: IncBackups/templates/IncBackups/createBackup.html:3 #, fuzzy #| msgid "Cancel Backup" msgid "Create Incremental Backup" -msgstr "Откажи Архив" +msgstr "Откажи Архивирање" #: IncBackups/templates/IncBackups/createBackup.html:13 #: IncBackups/templates/IncBackups/createBackup.html:23 @@ -493,20 +493,20 @@ msgstr "Откажи Архив" #: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 #: backup/templates/backup/backup.html:21 msgid "Back up Website" -msgstr "Архивирай Страница" +msgstr "Архивирај Сајт" #: IncBackups/templates/IncBackups/createBackup.html:15 #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 #: backup/templates/backup/backup.html:14 #: backup/templates/backup/restore.html:14 msgid "Backup Docs" -msgstr "Архив" +msgstr "Документација о Архивирању" #: IncBackups/templates/IncBackups/createBackup.html:17 #, fuzzy #| msgid "This page can be used to Back up your websites" msgid "This page can be used to create incremental backups for your websites." -msgstr "От тази страница може да направите архив на Вашите страници" +msgstr "На овој страници можете направити Архиве ваших сајтова" #: IncBackups/templates/IncBackups/createBackup.html:33 #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 @@ -528,7 +528,7 @@ msgstr "От тази страница може да направите архи #: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 #: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 msgid "Select Website" -msgstr "Избери Страница" +msgstr "Избери Сајт" #: IncBackups/templates/IncBackups/createBackup.html:113 #: backup/templates/backup/backup.html:81 @@ -537,20 +537,20 @@ msgstr "Избери Страница" #: userManagment/templates/userManagment/createACL.html:352 #: userManagment/templates/userManagment/modifyACL.html:356 msgid "Create Back up" -msgstr "Създай Архив" +msgstr "Направи Архиву" #: IncBackups/templates/IncBackups/createBackup.html:128 #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 #: backup/templates/backup/backup.html:104 #: emailMarketing/templates/emailMarketing/sendEmails.html:152 msgid "Date" -msgstr "Дата" +msgstr "Датум" #: IncBackups/templates/IncBackups/createBackup.html:129 #: backup/templates/backup/index.html:46 #: backup/templates/backup/restore.html:45 msgid "Restore" -msgstr "Възстанови" +msgstr "Враћање података" #: IncBackups/templates/IncBackups/createBackup.html:161 #: emailMarketing/templates/emailMarketing/sendEmails.html:151 @@ -566,42 +566,42 @@ msgstr "" #: dns/templates/dns/addDeleteDNSRecords.html:327 #: pluginHolder/templates/pluginHolder/plugins.html:29 msgid "Type" -msgstr "Вид" +msgstr "Тип" #: IncBackups/templates/IncBackups/createBackup.html:165 #: websiteFunctions/templates/websiteFunctions/listCron.html:52 msgid "Action" -msgstr "Действие" +msgstr "Акција" #: IncBackups/templates/IncBackups/incrementalDestinations.html:3 #: backup/templates/backup/backupDestinations.html:3 #: backup/templates/backup/backupDestinations.html:14 msgid "Set up Back up Destinations" -msgstr "Постави дестинация за Архив" +msgstr "Постави одредиште за Архивирање" #: IncBackups/templates/IncBackups/incrementalDestinations.html:14 #, fuzzy #| msgid "Set up Back up Destinations" msgid "Set up Incremental Back up Destinations" -msgstr "Постави дестинация за Архив" +msgstr "Постави одредиште за Архивирање" #: IncBackups/templates/IncBackups/incrementalDestinations.html:20 #, fuzzy #| msgid "On this page you can set up your Back up destinations. (SFTP)" msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" -msgstr "От тази страница може да настройте дестинацията за архивите (SFTP)" +msgstr "На овој страни можете подесити одредиште за Архиве (SFTP)" #: IncBackups/templates/IncBackups/incrementalDestinations.html:26 #, fuzzy #| msgid "Set up Back up Destinations" msgid "Set up Back up Destinations." -msgstr "Постави дестинация за Архив" +msgstr "Постави одредиште за Архиве." #: IncBackups/templates/IncBackups/incrementalDestinations.html:35 #, fuzzy #| msgid "Select Website" msgid "Select Type" -msgstr "Избери Страница" +msgstr "Избери Сајт" #: IncBackups/templates/IncBackups/incrementalDestinations.html:47 #: backup/templates/backup/backupDestinations.html:30 @@ -611,7 +611,7 @@ msgstr "Избери Страница" #: dns/templates/dns/createNameServer.html:71 #: firewall/templates/firewall/firewall.html:122 msgid "IP Address" -msgstr "IP Адрес" +msgstr "IP Адреса" #: IncBackups/templates/IncBackups/incrementalDestinations.html:54 #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 @@ -630,7 +630,7 @@ msgstr "IP Адрес" #: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 #: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 msgid "Password" -msgstr "Парола" +msgstr "Лозинка" #: IncBackups/templates/IncBackups/incrementalDestinations.html:61 #: IncBackups/templates/IncBackups/incrementalDestinations.html:92 @@ -666,7 +666,7 @@ msgstr "" #, fuzzy #| msgid "Cancel Backup" msgid "Restore Remote Incremental Backups" -msgstr "Откажи Архив" +msgstr "Откажи Архивирање" #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 #, fuzzy @@ -674,8 +674,8 @@ msgstr "Откажи Архив" msgid "" "This page can be used to restore remote incremental backups for your " "websites." -msgstr "От тази страница може да направите архив на Вашите страници" - +msgstr "На овој страни можете вратити предашње стање из Архива за ваше " +"сајтове." #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 msgid "Fetch Restore Points" msgstr "" @@ -695,7 +695,7 @@ msgstr "" #: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 #: websiteFunctions/templates/websiteFunctions/website.html:293 msgid "Path" -msgstr "Път" +msgstr "Путања" #: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 #: dockerManager/templates/dockerManager/viewContainer.html:108 @@ -709,19 +709,19 @@ msgstr "Път" #: serverStatus/templates/serverStatus/topProcesses.html:201 #: userManagment/templates/userManagment/listUsers.html:37 msgid "Actions" -msgstr "Действия" +msgstr "Акције" #: WebTerminal/templates/WebTerminal/WebTerminal.html:3 #, fuzzy #| msgid "Domains - CyberPanel" msgid "Terminal - CyberPanel" -msgstr "Домейни - CyberPanel" +msgstr "Домени - CyberPanel" #: WebTerminal/templates/WebTerminal/WebTerminal.html:16 #: baseTemplate/templates/baseTemplate/index.html:641 #: baseTemplate/templates/baseTemplate/index.html:650 msgid "Terminal" -msgstr "" +msgstr "Терминал" #: WebTerminal/templates/WebTerminal/WebTerminal.html:18 msgid "Web Terminal Docs" @@ -729,16 +729,16 @@ msgstr "" #: WebTerminal/templates/WebTerminal/WebTerminal.html:19 msgid "Execute your terminal commands." -msgstr "" +msgstr "Изврши команде у терминалу." #: WebTerminal/templates/WebTerminal/WebTerminal.html:26 #: baseTemplate/templates/baseTemplate/index.html:643 msgid "Web Terminal" -msgstr "" +msgstr "Web Терминал" #: WebTerminal/templates/WebTerminal/WebTerminal.html:28 msgid "Reboot SSH Server" -msgstr "" +msgstr "Рестарт SSH Сервиса" #: backup/templates/backup/backup.html:15 msgid "This page can be used to Back up your websites" @@ -748,13 +748,13 @@ msgstr "От тази страница може да направите архи #: baseTemplate/templates/baseTemplate/homePage.html:12 #: filemanager/templates/filemanager/index.html:135 msgid "Home" -msgstr "Начало" +msgstr "Почетна" #: backup/templates/backup/backup.html:60 #: backup/templates/backup/restore.html:62 #: filemanager/templates/filemanager/index.html:158 msgid "File Name" -msgstr "Първо Име" +msgstr "Назив Фајла" #: backup/templates/backup/backup.html:61 #: backup/templates/backup/backup.html:106 @@ -772,46 +772,46 @@ msgstr "Статус" #: backup/templates/backup/backup.html:66 #: serverStatus/templates/serverStatus/topProcesses.html:52 msgid "Running" -msgstr "Активен" +msgstr "У току" #: backup/templates/backup/backup.html:88 msgid "Cancel Backup" -msgstr "Откажи Архив" +msgstr "Откажи Архивирање" #: backup/templates/backup/backup.html:103 msgid "File" -msgstr "Файл" +msgstr "Фајл" #: backup/templates/backup/backup.html:105 #: filemanager/templates/filemanager/index.html:204 #: ftp/templates/ftp/listFTPAccounts.html:125 msgid "Size" -msgstr "Размер" +msgstr "Величина" #: backup/templates/backup/backup.html:131 msgid "Cannot delete website, Error message: " -msgstr "Страницата не може да бъде премахната. Съобщение за грешка:" +msgstr "Сајт не може бити обрисан, Грешка: " #: backup/templates/backup/backup.html:135 msgid "Successfully Deleted" -msgstr "Успешно изтрита" +msgstr "Успешно Обрисано" #: backup/templates/backup/backupDestinations.html:15 msgid "On this page you can set up your Back up destinations. (SFTP)" -msgstr "От тази страница може да настройте дестинацията за архивите (SFTP)" +msgstr "На овој страници можете подесити локације за Архивирање (SFTP)" #: backup/templates/backup/backupDestinations.html:21 msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" -msgstr "Добави дестинация ( SSH порт трябва да бъде 22)" +msgstr "Постави дестинацију за архиве ( SSH порт треба бити 22)" #: backup/templates/backup/backupDestinations.html:68 #: backup/templates/backup/backupDestinations.html:72 msgid "Connection to" -msgstr "Връзка към" +msgstr "Повезивање на" #: backup/templates/backup/backupDestinations.html:68 msgid "failed. Please delete and re-add. " -msgstr "неуспешно. Моля премахнете и добавете отново." +msgstr "неуспешно. Молимо вас обришите и покушајте поново." #: backup/templates/backup/backupDestinations.html:72 msgid "successful." @@ -819,11 +819,11 @@ msgstr "успешно" #: backup/templates/backup/backupDestinations.html:76 msgid "Cannot add destination. Error message:" -msgstr "Дестинацията не е добавена, защото:" +msgstr "Дестинација није додата. Грешка:" #: backup/templates/backup/backupDestinations.html:80 msgid "Destination Added." -msgstr "Дестинацията е добавена" +msgstr "Дестинација је успешно додата" #: backup/templates/backup/backupDestinations.html:84 #: backup/templates/backup/backupSchedule.html:90 @@ -879,12 +879,12 @@ msgstr "Дестинацията е добавена" #: websiteFunctions/templates/websiteFunctions/website.html:778 #: websiteFunctions/templates/websiteFunctions/website.html:884 msgid "Could not connect to server. Please refresh this page." -msgstr "Връзката е неуспешна. Моля презаредете страницата." +msgstr "Неуспешно повезивање на сервер. Молимо вас освежите страницу." #: backup/templates/backup/backupDestinations.html:98 #: backup/templates/backup/backupDestinations.html:106 msgid "Check Connection" -msgstr "Провери връзката" +msgstr "Провери повезивање" #: backup/templates/backup/backupSchedule.html:54 msgid "Local Path" @@ -892,19 +892,19 @@ msgstr "" #: backup/templates/backup/backupSchedule.html:57 msgid "Local directory where backups will be moved after creation." -msgstr "" +msgstr "Локална путања на којој ће архиве бити смештене након прављења." #: backup/templates/backup/backupSchedule.html:82 msgid "Cannot add schedule. Error message:" -msgstr "Планирането не е добавено. Съобщение за грешка: " +msgstr "Заказивање није успело. Грешка: " #: backup/templates/backup/backupSchedule.html:86 msgid "Schedule Added" -msgstr "Планирането е добавено" +msgstr "Заказивање је успешно додато" #: backup/templates/backup/index.html:3 msgid "Back up Home - CyberPanel" -msgstr "Архив - CyberPanel" +msgstr "Архивирање - CyberPanel" #: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 #: baseTemplate/templates/baseTemplate/homePage.html:95 @@ -913,11 +913,11 @@ msgstr "Архив - CyberPanel" #: baseTemplate/templates/baseTemplate/index.html:563 #: baseTemplate/templates/baseTemplate/index.html:616 msgid "Back up" -msgstr "Архив" +msgstr "Архивирање" #: backup/templates/backup/index.html:14 msgid "Back up and restore sites." -msgstr "Архивирай и възстанови сайтове." +msgstr "Архивирање и враћање стања сајтова." #: backup/templates/backup/index.html:19 #: baseTemplate/templates/baseTemplate/homePage.html:23 @@ -934,11 +934,11 @@ msgstr "Архивирай и възстанови сайтове." #: userManagment/templates/userManagment/index.html:19 #: websiteFunctions/templates/websiteFunctions/index.html:21 msgid "Available Functions" -msgstr "Налични Функции" +msgstr "Доступне опције" #: backup/templates/backup/index.html:28 msgid "Back up Site" -msgstr "Архивирай Страница" +msgstr "Архивирање Сајта" #: backup/templates/backup/index.html:44 #: baseTemplate/templates/baseTemplate/index.html:572 @@ -946,40 +946,40 @@ msgstr "Архивирай Страница" #: userManagment/templates/userManagment/createACL.html:361 #: userManagment/templates/userManagment/modifyACL.html:365 msgid "Restore Back up" -msgstr "Възстанови Архив" +msgstr "Враћање стања Сајта" #: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 #, fuzzy #| msgid "Add/Delete Destination" msgid "Add/Delete Destinations" -msgstr "Добави/Премахни Дестинация" +msgstr "Додавање/Брисање Дестинација" #: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 #: baseTemplate/templates/baseTemplate/index.html:581 #: userManagment/templates/userManagment/createACL.html:391 #: userManagment/templates/userManagment/modifyACL.html:395 msgid "Remote Back ups" -msgstr "Отдалечени Архиви" +msgstr "Удаљене Архиве" #: backup/templates/backup/remoteBackups.html:3 msgid "Transfer Websites from Remote Server - CyberPanel" -msgstr "Премести страница от отдалечен сървър - CyberPanel" +msgstr "Пребацивање сајтова са удаљеног сервера - CyberPanel" #: backup/templates/backup/remoteBackups.html:14 msgid "Remote Transfer" -msgstr "Отдалечен трансфер" +msgstr "Удаљени Трансфер" #: backup/templates/backup/remoteBackups.html:15 msgid "This feature can import website(s) from remote server" -msgstr "Тази функция може да постави страница/и от отдалечен сървър" +msgstr "Ова опција вам омогућава увоз сајт(ова) са удањеног сервера" #: backup/templates/backup/remoteBackups.html:46 msgid "Fetch Accounts" -msgstr "Извлечи акаунти" +msgstr "Преузми Налоге" #: backup/templates/backup/remoteBackups.html:55 msgid "Start Transfer" -msgstr "Стартирай трансфер" +msgstr "Започни Трансфер" #: backup/templates/backup/remoteBackups.html:59 #: emailMarketing/templates/emailMarketing/website.html:324 @@ -999,24 +999,24 @@ msgstr "Откажи" #: backup/templates/backup/remoteBackups.html:72 msgid "Could not connect, please refresh this page." -msgstr "Не можем да се свържем, моля презаредете страницата." +msgstr "Повезивање неуспешно, молимо вас освежите страницу." #: backup/templates/backup/remoteBackups.html:76 msgid "Accounts Successfully Fetched from remote server." -msgstr "Акаунтите са успешно извлечени от отдалечения сървър." +msgstr "Налози су успешно преузети са удаљеног сервера." #: backup/templates/backup/remoteBackups.html:80 msgid "Backup Process successfully started." -msgstr "Процеса по архивиранее успешно стартиран." +msgstr "Процес Архивирања је успешно започет." #: backup/templates/backup/remoteBackups.html:84 msgid "Backup successfully cancelled." -msgstr "Архивирането е успешно спряно." +msgstr "Архивирање је обустављено." #: backup/templates/backup/remoteBackups.html:107 #: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 msgid "Website" -msgstr "Страница" +msgstr "Сајт" #: backup/templates/backup/remoteBackups.html:108 #: baseTemplate/templates/baseTemplate/homePage.html:143 @@ -1051,12 +1051,12 @@ msgstr "Email" #: backup/templates/backup/restore.html:3 msgid "Restore Website - CyberPanel" -msgstr "Възстанови Страница - CyberPanel" +msgstr "Враћање стања Сајта - CyberPanel" #: backup/templates/backup/restore.html:14 #: backup/templates/backup/restore.html:21 msgid "Restore Website" -msgstr "Възстанови Страница" +msgstr "Враћање стања Сајта" #: backup/templates/backup/restore.html:15 msgid "" @@ -1064,17 +1064,17 @@ msgid "" "from CyberPanel Back up generation tool, it will detect all Back ups under " "/home/backup." msgstr "" -"От тази страница може да възстановявате Ваши страници. Архивите трябва да " -"бъдат генерирани от CyberPanel. Архивите автоматично са засечени от " +"На овој страници можете вратити предашње стање сајтова, Архиве се генеришу " +"из CyberPanel алата за Архивирање, који детектује све архиве унутар фолдера " "/home/backup." #: backup/templates/backup/restore.html:30 msgid "Select Back up" -msgstr "Избери Архив" +msgstr "Избери Архиву" #: backup/templates/backup/restore.html:61 msgid "Condition" -msgstr "Състояние" +msgstr "Услов" #: backup/templates/backup/restore.html:86 #: databases/templates/databases/deleteDatabase.html:60 @@ -1093,15 +1093,15 @@ msgstr "Състояние" #: websiteFunctions/templates/websiteFunctions/website.html:374 #: websiteFunctions/templates/websiteFunctions/website.html:876 msgid "Error message:" -msgstr "Съобщение за Грешка" +msgstr "Грешка" #: backup/templates/backup/restore.html:90 msgid "Site related to this Back up already exists." -msgstr "Страницата, която е в този архив е вече налична." +msgstr "Сајт из ове архиве већ постоји." #: baseTemplate/templates/baseTemplate/homePage.html:3 msgid "Home - CyberPanel" -msgstr "Начало - CyberPanel" +msgstr "Почетна - CyberPanel" #: baseTemplate/templates/baseTemplate/homePage.html:13 msgid "Use the tabs to navigate through the control panel." From 6085cdd1504c45ddf63bec3f9d0bd8e157a4a134 Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:09:47 +0800 Subject: [PATCH 20/31] Delete cyberpanel.po --- locale/cn/LC_MESSAGES/cyberpanel.po | 2660 --------------------------- 1 file changed, 2660 deletions(-) delete mode 100755 locale/cn/LC_MESSAGES/cyberpanel.po diff --git a/locale/cn/LC_MESSAGES/cyberpanel.po b/locale/cn/LC_MESSAGES/cyberpanel.po deleted file mode 100755 index 2e1825cce..000000000 --- a/locale/cn/LC_MESSAGES/cyberpanel.po +++ /dev/null @@ -1,2660 +0,0 @@ -# CyberPanel Translation File. -# Copyright (C) 2017 LiteSpeedTech -# This file is distributed under the same license as the CyberPanel package. -# FIRST AUTHOR , 2017. -# -#: baseTemplate/templates/baseTemplate/index.html:211 -#: baseTemplate/templates/baseTemplate/index.html:301 -#: baseTemplate/templates/baseTemplate/index.html:356 -#: baseTemplate/templates/baseTemplate/index.html:362 -#: baseTemplate/templates/baseTemplate/index.html:368 -#: baseTemplate/templates/baseTemplate/index.html:374 -#: baseTemplate/templates/baseTemplate/index.html:380 -#: baseTemplate/templates/baseTemplate/index.html:386 -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: CyberPanel\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-10-22 13:33+0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: CyberCP/settings.py:167 -msgid "English" -msgstr "英语" - -#: CyberCP/settings.py:168 -msgid "Urdu" -msgstr "" - -#: CyberCP/settings.py:169 -msgid "Chinese" -msgstr "中文" - -#: CyberCP/settings.py:170 -msgid "Bulgarian" -msgstr "" - -#: CyberCP/settings.py:171 -msgid "Portuguese" -msgstr "" - -#: CyberCP/settings.py:172 -msgid "Japanese" -msgstr "" - -#: backup/templates/backup/backup.html:3 backup/templates/backup/backup.html:13 -#: backup/templates/backup/backup.html:20 -msgid "Back up Website" -msgstr "备份网站" - -#: backup/templates/backup/backup.html:14 -msgid "This page can be used to Back up your websites" -msgstr "这里是网站备份界面" - -#: backup/templates/backup/backup.html:29 -#: databases/templates/databases/createDatabase.html:28 -#: databases/templates/databases/deleteDatabase.html:28 -#: ftp/templates/ftp/createFTPAccount.html:28 -#: mailServer/templates/mailServer/changeEmailPassword.html:28 -#: mailServer/templates/mailServer/createEmailAccount.html:28 -#: mailServer/templates/mailServer/deleteEmailAccount.html:28 -#: manageSSL/templates/manageSSL/manageSSL.html:29 -#: manageSSL/templates/manageSSL/sslForHostName.html:29 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 -msgid "Select Website" -msgstr "选择网站" - -#: backup/templates/backup/backup.html:40 -#: backup/templates/backup/backupSchedule.html:90 -msgid "Destination" -msgstr "远程目录" - -#: backup/templates/backup/backup.html:43 -#: baseTemplate/templates/baseTemplate/homePage.html:12 -msgid "Home" -msgstr "主目录" - -#: backup/templates/backup/backup.html:59 -#: backup/templates/backup/restore.html:62 -msgid "File Name" -msgstr "文件名" - -#: backup/templates/backup/backup.html:60 -#: backup/templates/backup/backup.html:105 -#: backup/templates/backup/restore.html:63 -#: baseTemplate/templates/baseTemplate/index.html:390 -#: firewall/templates/firewall/firewall.html:36 -#: managePHP/templates/managePHP/installExtensions.html:65 -msgid "Status" -msgstr "状态" - -#: backup/templates/backup/backup.html:65 -msgid "Running" -msgstr "进行中" - -#: backup/templates/backup/backup.html:80 -#: baseTemplate/templates/baseTemplate/index.html:561 -msgid "Create Back up" -msgstr "创建备份" - -#: backup/templates/backup/backup.html:87 -#, fuzzy -#| msgid "Create Back up" -msgid "Cancel Backup" -msgstr "创建备份" - -#: backup/templates/backup/backup.html:101 -#: backup/templates/backup/backupDestinations.html:90 -#: backup/templates/backup/backupSchedule.html:89 -#: databases/templates/databases/listDataBases.html:86 -#: dns/templates/dns/addDeleteDNSRecords.html:129 -#: firewall/templates/firewall/firewall.html:127 -#: ftp/templates/ftp/listFTPAccounts.html:87 -#: managePHP/templates/managePHP/installExtensions.html:61 -msgid "ID" -msgstr "ID" - -#: backup/templates/backup/backup.html:102 -msgid "File" -msgstr "文件" - -#: backup/templates/backup/backup.html:103 -msgid "Date" -msgstr "日期" - -#: backup/templates/backup/backup.html:104 -#: ftp/templates/ftp/listFTPAccounts.html:90 -msgid "Size" -msgstr "大小" - -#: backup/templates/backup/backup.html:106 -#: backup/templates/backup/backupDestinations.html:93 -#: backup/templates/backup/backupSchedule.html:92 -#: dns/templates/dns/addDeleteDNSRecords.html:134 -#: firewall/templates/firewall/firewall.html:131 -#: firewall/templates/firewall/secureSSH.html:122 -msgid "Delete" -msgstr "删除" - -#: backup/templates/backup/backup.html:130 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: backup/templates/backup/backup.html:134 -msgid "Successfully Deleted" -msgstr "删除成功" - -#: backup/templates/backup/backupDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:14 -#: backup/templates/backup/backupDestinations.html:21 -msgid "Set up Back up Destinations" -msgstr "设置远程目录" - -#: backup/templates/backup/backupDestinations.html:15 -msgid "On this page you can set up your Back up destinations. (SFTP)" -msgstr "这里是远程备份页面(SFTP)" - -#: backup/templates/backup/backupDestinations.html:30 -#: dns/templates/dns/addDeleteDNSRecords.html:60 -#: dns/templates/dns/createNameServer.html:48 -#: dns/templates/dns/createNameServer.html:65 -msgid "IP Address" -msgstr "IP地址" - -#: backup/templates/backup/backupDestinations.html:38 -#: databases/templates/databases/createDatabase.html:58 -#: databases/templates/databases/listDataBases.html:89 -#: ftp/templates/ftp/listFTPAccounts.html:91 -#: mailServer/templates/mailServer/changeEmailPassword.html:52 -#: mailServer/templates/mailServer/createEmailAccount.html:51 -#: userManagment/templates/userManagment/createUser.html:123 -#: userManagment/templates/userManagment/modifyUser.html:107 -msgid "Password" -msgstr "密码" - -#: backup/templates/backup/backupDestinations.html:48 -#: backup/templates/backup/backupSchedule.html:54 -#: baseTemplate/templates/baseTemplate/index.html:563 -msgid "Add Destination" -msgstr "添加远程目录" - -#: backup/templates/backup/backupDestinations.html:62 -#: backup/templates/backup/backupDestinations.html:66 -msgid "Connection to" -msgstr "连接到" - -#: backup/templates/backup/backupDestinations.html:62 -msgid "failed. Please delete and re-add." -msgstr "失败, 请删除后重新添加" - -#: backup/templates/backup/backupDestinations.html:66 -msgid "successful." -msgstr "成功" - -#: backup/templates/backup/backupDestinations.html:70 -msgid "Cannot add destination. Error message:" -msgstr "无法添加远程目录, 错误信息: " - -#: backup/templates/backup/backupDestinations.html:74 -msgid "Destination Added." -msgstr "远程目录已添加" - -#: backup/templates/backup/backupDestinations.html:78 -#: backup/templates/backup/backupSchedule.html:77 -#: backup/templates/backup/restore.html:95 -#: databases/templates/databases/createDatabase.html:88 -#: databases/templates/databases/deleteDatabase.html:73 -#: dns/templates/dns/addDeleteDNSRecords.html:185 -#: dns/templates/dns/createDNSZone.html:60 -#: dns/templates/dns/createNameServer.html:100 -#: dns/templates/dns/deleteDNSZone.html:67 -#: mailServer/templates/mailServer/changeEmailPassword.html:80 -#: mailServer/templates/mailServer/createEmailAccount.html:79 -#: mailServer/templates/mailServer/deleteEmailAccount.html:79 -#: manageSSL/templates/manageSSL/manageSSL.html:60 -#: userManagment/templates/userManagment/createUser.html:162 -#: userManagment/templates/userManagment/modifyUser.html:139 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 -#: websiteFunctions/templates/websiteFunctions/website.html:157 -#: websiteFunctions/templates/websiteFunctions/website.html:284 -#: websiteFunctions/templates/websiteFunctions/website.html:339 -#: websiteFunctions/templates/websiteFunctions/website.html:394 -#: websiteFunctions/templates/websiteFunctions/website.html:542 -msgid "Could not connect to server. Please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面" - -#: backup/templates/backup/backupDestinations.html:91 -msgid "IP" -msgstr "IP地址" - -#: backup/templates/backup/backupDestinations.html:92 -#: backup/templates/backup/backupDestinations.html:100 -msgid "Check Connection" -msgstr "测试连接" - -#: backup/templates/backup/backupSchedule.html:3 -msgid "Schedule Back up - CyberPanel" -msgstr "备份计划 - Cyberpanel" - -#: backup/templates/backup/backupSchedule.html:13 -#: backup/templates/backup/backupSchedule.html:20 -#: baseTemplate/templates/baseTemplate/index.html:564 -msgid "Schedule Back up" -msgstr "备份计划" - -#: backup/templates/backup/backupSchedule.html:14 -msgid "" -"On this page you can schedule Back ups to localhost or remote server (If you " -"have added one)." -msgstr "" -"在此页面您可以设置计划任务备份到本地或远程目录 (如果您已经添加了一个远程目" -"录)." - -#: backup/templates/backup/backupSchedule.html:29 -msgid "Select Destination" -msgstr "选择远程目录" - -#: backup/templates/backup/backupSchedule.html:40 -msgid "Select Frequency" -msgstr "备份频率" - -#: backup/templates/backup/backupSchedule.html:43 -msgid "Daily" -msgstr "每日" - -#: backup/templates/backup/backupSchedule.html:44 -msgid "Weekly" -msgstr "每周" - -#: backup/templates/backup/backupSchedule.html:69 -msgid "Cannot add schedule. Error message:" -msgstr "无法添加计划任务, 错误信息: " - -#: backup/templates/backup/backupSchedule.html:73 -msgid "Schedule Added" -msgstr "计划任务已添加" - -#: backup/templates/backup/backupSchedule.html:91 -msgid "Frequency" -msgstr "频率" - -#: backup/templates/backup/index.html:3 -msgid "Back up Home - CyberPanel" -msgstr "备份 - CyberPanel" - -#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:29 -#: backup/templates/backup/index.html:45 -#: baseTemplate/templates/baseTemplate/homePage.html:266 -#: baseTemplate/templates/baseTemplate/homePage.html:269 -#: baseTemplate/templates/baseTemplate/index.html:554 -#: baseTemplate/templates/baseTemplate/index.html:556 -#: baseTemplate/templates/baseTemplate/index.html:572 -msgid "Back up" -msgstr "备份" - -#: backup/templates/backup/index.html:14 -msgid "Back up and restore sites." -msgstr "备份与还原网站" - -#: backup/templates/backup/index.html:19 -#: baseTemplate/templates/baseTemplate/homePage.html:164 -#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 -#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 -#: mailServer/templates/mailServer/index.html:19 -#: managePHP/templates/managePHP/index.html:18 -#: manageSSL/templates/manageSSL/index.html:20 -#: packages/templates/packages/index.html:19 -#: serverLogs/templates/serverLogs/index.html:19 -#: serverStatus/templates/serverStatus/index.html:19 -#: tuning/templates/tuning/index.html:18 -#: userManagment/templates/userManagment/index.html:20 -#: websiteFunctions/templates/websiteFunctions/index.html:20 -msgid "Available Functions" -msgstr "可用功能" - -#: backup/templates/backup/index.html:27 backup/templates/backup/index.html:43 -#, fuzzy -#| msgid "Back up Website" -msgid "Back up Site" -msgstr "备份网站" - -#: backup/templates/backup/index.html:55 -#: baseTemplate/templates/baseTemplate/index.html:562 -msgid "Restore Back up" -msgstr "还原备份" - -#: backup/templates/backup/index.html:57 -#: backup/templates/backup/restore.html:45 -msgid "Restore" -msgstr "还原" - -#: backup/templates/backup/restore.html:3 -msgid "Restore Website - CyberPanel" -msgstr "还原网站 - Cyberpanel" - -#: backup/templates/backup/restore.html:14 -#: backup/templates/backup/restore.html:21 -msgid "Restore Website" -msgstr "还原网站" - -#: backup/templates/backup/restore.html:15 -msgid "" -"This page can be used to restore your websites, Back up should be generated " -"from CyberPanel Back up generation tool, it will detect all Back ups under " -"/home/backup." -msgstr "" -"在此页面可以从备份中还原网站, 备份文件应当由CyberPanel备份工具创建 并且会自动" -"检测所有在/home/backup的备份" - -#: backup/templates/backup/restore.html:30 -msgid "Select Back up" -msgstr "选择备份" - -#: backup/templates/backup/restore.html:86 -#: databases/templates/databases/deleteDatabase.html:64 -#: firewall/templates/firewall/firewall.html:156 -#: managePHP/templates/managePHP/editPHPConfig.html:212 -msgid "Error message:" -msgstr "错误信息: " - -#: backup/templates/backup/restore.html:90 -msgid "Site related to this Back up already exists." -msgstr "网站相关备份已存在" - -#: baseTemplate/templates/baseTemplate/homePage.html:3 -msgid "Home - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/homePage.html:13 -msgid "Use the tabs to navigate through the control panel." -msgstr "通过标签页来浏览控制面板" - -#: baseTemplate/templates/baseTemplate/homePage.html:23 -#: websiteFunctions/templates/websiteFunctions/website.html:33 -msgid "Usage" -msgstr "使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:34 -#: baseTemplate/templates/baseTemplate/index.html:221 -msgid "CPU Usage" -msgstr "CPU使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:55 -#: baseTemplate/templates/baseTemplate/index.html:232 -msgid "Ram Usage" -msgstr "内存使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:74 -msgid "Disk Usage '/'" -msgstr "硬盘使用量 '/'" - -#: baseTemplate/templates/baseTemplate/homePage.html:98 -msgid "HTTP Statistics" -msgstr "HTTP统计" - -#: baseTemplate/templates/baseTemplate/homePage.html:107 -msgid "Available/Max Connections" -msgstr "可用/最大连接数" - -#: baseTemplate/templates/baseTemplate/homePage.html:118 -msgid "Available/Max SSL Connections" -msgstr "可用/最大SSL连接数" - -#: baseTemplate/templates/baseTemplate/homePage.html:127 -msgid "Requests Processing" -msgstr "当前请求数" - -#: baseTemplate/templates/baseTemplate/homePage.html:136 -msgid "Total Requests" -msgstr "总请求数" - -#: baseTemplate/templates/baseTemplate/homePage.html:173 -#: userManagment/templates/userManagment/index.html:13 -msgid "User Functions" -msgstr "用户功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:176 -#: baseTemplate/templates/baseTemplate/index.html:426 -#: baseTemplate/templates/baseTemplate/index.html:427 -#: baseTemplate/templates/baseTemplate/index.html:428 -msgid "Users" -msgstr "用户" - -#: baseTemplate/templates/baseTemplate/homePage.html:186 -#: websiteFunctions/templates/websiteFunctions/index.html:13 -msgid "Website Functions" -msgstr "网站功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:189 -#: baseTemplate/templates/baseTemplate/index.html:360 -#: baseTemplate/templates/baseTemplate/index.html:444 -#: baseTemplate/templates/baseTemplate/index.html:445 -#: baseTemplate/templates/baseTemplate/index.html:446 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 -msgid "Websites" -msgstr "网站" - -#: baseTemplate/templates/baseTemplate/homePage.html:199 -#, fuzzy -#| msgid "Modify Package" -msgid "Add/Modify Packages" -msgstr "修改套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:202 -#: baseTemplate/templates/baseTemplate/index.html:366 -#: baseTemplate/templates/baseTemplate/index.html:461 -#: baseTemplate/templates/baseTemplate/index.html:463 -#: packages/templates/packages/index.html:13 -msgid "Packages" -msgstr "套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:223 -#: databases/templates/databases/index.html:12 -msgid "Database Functions" -msgstr "数据库功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:226 -#: baseTemplate/templates/baseTemplate/index.html:477 -#: baseTemplate/templates/baseTemplate/index.html:478 -#: baseTemplate/templates/baseTemplate/index.html:479 -#: packages/templates/packages/createPackage.html:59 -#: packages/templates/packages/modifyPackage.html:63 -#: websiteFunctions/templates/websiteFunctions/website.html:44 -msgid "Databases" -msgstr "数据库" - -#: baseTemplate/templates/baseTemplate/homePage.html:235 -msgid "Control DNS" -msgstr "" - -#: baseTemplate/templates/baseTemplate/homePage.html:238 -#: baseTemplate/templates/baseTemplate/index.html:372 -#: baseTemplate/templates/baseTemplate/index.html:495 -#: baseTemplate/templates/baseTemplate/index.html:497 -msgid "DNS" -msgstr "DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:248 -#: ftp/templates/ftp/index.html:12 -msgid "FTP Functions" -msgstr "FTP功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:251 -#: baseTemplate/templates/baseTemplate/index.html:378 -#: baseTemplate/templates/baseTemplate/index.html:536 -#: baseTemplate/templates/baseTemplate/index.html:538 -#: websiteFunctions/templates/websiteFunctions/website.html:39 -msgid "FTP" -msgstr "FTP" - -#: baseTemplate/templates/baseTemplate/homePage.html:278 -#: baseTemplate/templates/baseTemplate/homePage.html:281 -#: packages/templates/packages/createPackage.html:67 -#: packages/templates/packages/modifyPackage.html:70 -msgid "Emails" -msgstr "Emails" - -#: baseTemplate/templates/baseTemplate/homePage.html:291 -#: baseTemplate/templates/baseTemplate/homePage.html:294 -#: tuning/templates/tuning/index.html:12 -msgid "Server Tuning" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/homePage.html:315 -#: baseTemplate/templates/baseTemplate/homePage.html:318 -#: baseTemplate/templates/baseTemplate/index.html:606 -#: baseTemplate/templates/baseTemplate/index.html:608 -#: baseTemplate/templates/baseTemplate/index.html:641 -#: serverStatus/templates/serverStatus/index.html:13 -msgid "Server Status" -msgstr "服务器状态" - -#: baseTemplate/templates/baseTemplate/homePage.html:328 -#, fuzzy -#| msgid "Edit PHP Configurations" -msgid "PHP Configurations" -msgstr "设置PHP参数" - -#: baseTemplate/templates/baseTemplate/homePage.html:331 -#: baseTemplate/templates/baseTemplate/index.html:625 -#: baseTemplate/templates/baseTemplate/index.html:627 -#: managePHP/templates/managePHP/installExtensions.html:62 -msgid "PHP" -msgstr "PHP" - -#: baseTemplate/templates/baseTemplate/homePage.html:340 -#: baseTemplate/templates/baseTemplate/homePage.html:343 -#: baseTemplate/templates/baseTemplate/index.html:643 -#: websiteFunctions/templates/websiteFunctions/website.html:113 -msgid "Logs" -msgstr "日志" - -#: baseTemplate/templates/baseTemplate/homePage.html:363 -#: baseTemplate/templates/baseTemplate/homePage.html:366 -#: baseTemplate/templates/baseTemplate/index.html:659 -#: baseTemplate/templates/baseTemplate/index.html:661 -msgid "Security" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/index.html:212 -msgid "CPU Status" -msgstr "CPU使用量" - -#: baseTemplate/templates/baseTemplate/index.html:241 -#: websiteFunctions/templates/websiteFunctions/website.html:51 -#: websiteFunctions/templates/websiteFunctions/website.html:72 -msgid "Disk Usage" -msgstr "硬盘使用量" - -#: baseTemplate/templates/baseTemplate/index.html:275 -#: baseTemplate/templates/baseTemplate/index.html:278 -#: baseTemplate/templates/baseTemplate/index.html:282 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "CyberPanel" -msgstr "主页 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/index.html:280 -#: baseTemplate/templates/baseTemplate/index.html:284 -msgid "Web Hosting Control Panel" -msgstr "Web Hosting控制面板" - -#: baseTemplate/templates/baseTemplate/index.html:286 -msgid "Close sidebar" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:292 -#, fuzzy -#| msgid "FTP Accounts" -msgid "My Account" -msgstr "FTP用户数量" - -#: baseTemplate/templates/baseTemplate/index.html:309 -msgid "Edit profile" -msgstr "编辑资料" - -#: baseTemplate/templates/baseTemplate/index.html:310 -#: baseTemplate/templates/baseTemplate/index.html:433 -#: userManagment/templates/userManagment/index.html:26 -#: userManagment/templates/userManagment/index.html:28 -msgid "View Profile" -msgstr "查看资料" - -#: baseTemplate/templates/baseTemplate/index.html:317 -#: baseTemplate/templates/baseTemplate/index.html:398 -msgid "Logout" -msgstr "登出" - -#: baseTemplate/templates/baseTemplate/index.html:328 -#: baseTemplate/templates/baseTemplate/index.html:332 -#: baseTemplate/templates/baseTemplate/index.html:336 -msgid "CPU Load Average" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:340 -msgid "Fullscreen" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:345 -#, fuzzy -#| msgid "Server Status" -msgid "System Status" -msgstr "服务器状态" - -#: baseTemplate/templates/baseTemplate/index.html:350 -#, fuzzy -#| msgid "Dashboard" -msgid "Dashboard Quick Menu" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:384 -#: baseTemplate/templates/baseTemplate/index.html:590 -#: baseTemplate/templates/baseTemplate/index.html:592 -msgid "Tuning" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:411 -msgid "Overview" -msgstr "概览" - -#: baseTemplate/templates/baseTemplate/index.html:413 -#: baseTemplate/templates/baseTemplate/index.html:415 -#: baseTemplate/templates/baseTemplate/index.html:417 -msgid "Dashboard" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:418 -#: baseTemplate/templates/baseTemplate/index.html:419 -#: baseTemplate/templates/baseTemplate/versionManagment.html:10 -msgid "Version Management" -msgstr "版本管理" - -#: baseTemplate/templates/baseTemplate/index.html:423 -msgid "Main" -msgstr "主要功能" - -#: baseTemplate/templates/baseTemplate/index.html:434 -#: userManagment/templates/userManagment/createUser.html:12 -msgid "Create New User" -msgstr "创建新用户" - -#: baseTemplate/templates/baseTemplate/index.html:435 -#: userManagment/templates/userManagment/index.html:52 -#: userManagment/templates/userManagment/index.html:54 -#: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:120 -msgid "Modify User" -msgstr "修改用户" - -#: baseTemplate/templates/baseTemplate/index.html:436 -#: userManagment/templates/userManagment/deleteUser.html:13 -#: userManagment/templates/userManagment/deleteUser.html:20 -#: userManagment/templates/userManagment/deleteUser.html:42 -#: userManagment/templates/userManagment/index.html:74 -#: userManagment/templates/userManagment/index.html:76 -msgid "Delete User" -msgstr "删除用户" - -#: baseTemplate/templates/baseTemplate/index.html:451 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:102 -#: websiteFunctions/templates/websiteFunctions/index.html:26 -#: websiteFunctions/templates/websiteFunctions/index.html:28 -msgid "Create Website" -msgstr "创建网站" - -#: baseTemplate/templates/baseTemplate/index.html:452 -#: websiteFunctions/templates/websiteFunctions/index.html:38 -#: websiteFunctions/templates/websiteFunctions/index.html:40 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:14 -msgid "List Websites" -msgstr "查看网站" - -#: baseTemplate/templates/baseTemplate/index.html:453 -#: websiteFunctions/templates/websiteFunctions/index.html:50 -#: websiteFunctions/templates/websiteFunctions/index.html:52 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:95 -msgid "Modify Website" -msgstr "修改网站" - -#: baseTemplate/templates/baseTemplate/index.html:454 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 -msgid "Suspend/Unsuspend" -msgstr "禁用/启用" - -#: baseTemplate/templates/baseTemplate/index.html:455 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 -#: websiteFunctions/templates/websiteFunctions/index.html:84 -#: websiteFunctions/templates/websiteFunctions/index.html:86 -msgid "Delete Website" -msgstr "删除网站" - -#: baseTemplate/templates/baseTemplate/index.html:468 -#: packages/templates/packages/createPackage.html:13 -#: packages/templates/packages/createPackage.html:76 -#: packages/templates/packages/index.html:25 -#: packages/templates/packages/index.html:27 -msgid "Create Package" -msgstr "创建套餐" - -#: baseTemplate/templates/baseTemplate/index.html:469 -#: packages/templates/packages/deletePackage.html:12 -#: packages/templates/packages/deletePackage.html:18 -#: packages/templates/packages/deletePackage.html:40 -#: packages/templates/packages/index.html:37 -#: packages/templates/packages/index.html:39 -msgid "Delete Package" -msgstr "删除套餐" - -#: baseTemplate/templates/baseTemplate/index.html:470 -#: packages/templates/packages/index.html:49 -#: packages/templates/packages/index.html:51 -#: packages/templates/packages/modifyPackage.html:9 -#: packages/templates/packages/modifyPackage.html:15 -#: packages/templates/packages/modifyPackage.html:85 -msgid "Modify Package" -msgstr "修改套餐" - -#: baseTemplate/templates/baseTemplate/index.html:484 -#: databases/templates/databases/createDatabase.html:12 -#: databases/templates/databases/createDatabase.html:19 -#: databases/templates/databases/createDatabase.html:68 -#: databases/templates/databases/index.html:25 -#: databases/templates/databases/index.html:27 -#: manageSSL/templates/manageSSL/index.html:26 -msgid "Create Database" -msgstr "创建数据库" - -#: baseTemplate/templates/baseTemplate/index.html:485 -#: databases/templates/databases/deleteDatabase.html:12 -#: databases/templates/databases/deleteDatabase.html:19 -#: databases/templates/databases/deleteDatabase.html:53 -#: databases/templates/databases/index.html:37 -#: databases/templates/databases/index.html:39 -#: manageSSL/templates/manageSSL/index.html:38 -msgid "Delete Database" -msgstr "删除数据库" - -#: baseTemplate/templates/baseTemplate/index.html:486 -#: databases/templates/databases/index.html:53 -#: databases/templates/databases/index.html:55 -#: databases/templates/databases/listDataBases.html:13 -#: databases/templates/databases/listDataBases.html:19 -msgid "List Databases" -msgstr "查看数据库" - -#: baseTemplate/templates/baseTemplate/index.html:487 -#: databases/templates/databases/index.html:65 -#: databases/templates/databases/index.html:67 -msgid "PHPMYAdmin" -msgstr "PHPMYADMIN" - -#: baseTemplate/templates/baseTemplate/index.html:502 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/createNameServer.html:76 dns/templates/dns/index.html:72 -#: dns/templates/dns/index.html:74 -msgid "Create Nameserver" -msgstr "创建名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:503 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createDNSZone.html:40 dns/templates/dns/index.html:29 -#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 -#: dns/templates/dns/index.html:86 -msgid "Create DNS Zone" -msgstr "创建DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:504 -#: dns/templates/dns/deleteDNSZone.html:40 dns/templates/dns/index.html:41 -#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 -#: dns/templates/dns/index.html:98 -msgid "Delete Zone" -msgstr "删除DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:505 -msgid "Add/Delete Records" -msgstr "添加/删除记录" - -#: baseTemplate/templates/baseTemplate/index.html:514 -#: baseTemplate/templates/baseTemplate/index.html:516 -#: userManagment/templates/userManagment/createUser.html:47 -#: userManagment/templates/userManagment/modifyUser.html:54 -#: userManagment/templates/userManagment/userProfile.html:50 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:60 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 -msgid "Email" -msgstr "Email" - -#: baseTemplate/templates/baseTemplate/index.html:521 -#: mailServer/templates/mailServer/createEmailAccount.html:12 -#: mailServer/templates/mailServer/createEmailAccount.html:19 -msgid "Create Email Account" -msgstr "创建Email用户" - -#: baseTemplate/templates/baseTemplate/index.html:521 -#: mailServer/templates/mailServer/createEmailAccount.html:64 -#: mailServer/templates/mailServer/index.html:25 -#: mailServer/templates/mailServer/index.html:27 -msgid "Create Email" -msgstr "创建Email" - -#: baseTemplate/templates/baseTemplate/index.html:522 -#: mailServer/templates/mailServer/deleteEmailAccount.html:12 -#: mailServer/templates/mailServer/deleteEmailAccount.html:19 -msgid "Delete Email Account" -msgstr "删除Email用户" - -#: baseTemplate/templates/baseTemplate/index.html:522 -#: mailServer/templates/mailServer/deleteEmailAccount.html:56 -#: mailServer/templates/mailServer/index.html:37 -#: mailServer/templates/mailServer/index.html:39 -msgid "Delete Email" -msgstr "删除Email" - -#: baseTemplate/templates/baseTemplate/index.html:523 -#: databases/templates/databases/listDataBases.html:72 -#: ftp/templates/ftp/listFTPAccounts.html:73 -#: mailServer/templates/mailServer/changeEmailPassword.html:64 -#: mailServer/templates/mailServer/index.html:49 -#: mailServer/templates/mailServer/index.html:51 -msgid "Change Password" -msgstr "修改Email" - -#: baseTemplate/templates/baseTemplate/index.html:524 -msgid "Access Webmail" -msgstr "进入Webmail" - -#: baseTemplate/templates/baseTemplate/index.html:543 -#: ftp/templates/ftp/createFTPAccount.html:12 -#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:25 -#: ftp/templates/ftp/index.html:27 -#: websiteFunctions/templates/websiteFunctions/website.html:461 -msgid "Create FTP Account" -msgstr "创建FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:544 -#: ftp/templates/ftp/deleteFTPAccount.html:12 -#: ftp/templates/ftp/deleteFTPAccount.html:18 -#: ftp/templates/ftp/deleteFTPAccount.html:52 ftp/templates/ftp/index.html:37 -#: ftp/templates/ftp/index.html:39 -#: websiteFunctions/templates/websiteFunctions/website.html:473 -msgid "Delete FTP Account" -msgstr "删除FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:545 -#: ftp/templates/ftp/index.html:49 ftp/templates/ftp/index.html:51 -#: ftp/templates/ftp/listFTPAccounts.html:13 -#: ftp/templates/ftp/listFTPAccounts.html:19 -msgid "List FTP Accounts" -msgstr "查看FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:563 -msgid "Add/Delete Destination" -msgstr "添加/删除远程目录" - -#: baseTemplate/templates/baseTemplate/index.html:573 -#: baseTemplate/templates/baseTemplate/index.html:574 -msgid "SSL" -msgstr "SSL" - -#: baseTemplate/templates/baseTemplate/index.html:579 -#: manageSSL/templates/manageSSL/index.html:28 -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/manageSSL.html:20 -msgid "Manage SSL" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:580 -#: manageSSL/templates/manageSSL/index.html:40 -msgid "Hostname SSL" -msgstr "面板SSL" - -#: baseTemplate/templates/baseTemplate/index.html:588 -msgid "Server" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:593 -msgid "NEW" -msgstr "新功能" - -#: baseTemplate/templates/baseTemplate/index.html:598 -#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 -#: tuning/templates/tuning/liteSpeedTuning.html:12 -msgid "LiteSpeed Tuning" -msgstr "LiteSpeed设置" - -#: baseTemplate/templates/baseTemplate/index.html:599 -#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 -#: tuning/templates/tuning/phpTuning.html:13 -msgid "PHP Tuning" -msgstr "PHP设置" - -#: baseTemplate/templates/baseTemplate/index.html:614 -#: serverStatus/templates/serverStatus/index.html:25 -#: serverStatus/templates/serverStatus/index.html:27 -msgid "LiteSpeed Status" -msgstr "LiteSpeed状态" - -#: baseTemplate/templates/baseTemplate/index.html:615 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:15 -#: serverStatus/templates/serverStatus/index.html:37 -#: serverStatus/templates/serverStatus/index.html:39 -msgid "CyberPanel Main Log File" -msgstr "Cybapenl主日志" - -#: baseTemplate/templates/baseTemplate/index.html:632 -#: managePHP/templates/managePHP/installExtensions.html:13 -msgid "Install PHP Extensions" -msgstr "安装PHP扩展" - -#: baseTemplate/templates/baseTemplate/index.html:632 -#: managePHP/templates/managePHP/index.html:24 -#: managePHP/templates/managePHP/index.html:26 -msgid "Install Extensions" -msgstr "安装扩展" - -#: baseTemplate/templates/baseTemplate/index.html:633 -#: managePHP/templates/managePHP/index.html:36 -#: managePHP/templates/managePHP/index.html:38 -msgid "Edit PHP Configs" -msgstr "编辑PHP配置" - -#: baseTemplate/templates/baseTemplate/index.html:648 -msgid "Access Log" -msgstr "访问日志" - -#: baseTemplate/templates/baseTemplate/index.html:649 -#: serverLogs/templates/serverLogs/errorLogs.html:14 -#: serverLogs/templates/serverLogs/index.html:37 -#: serverLogs/templates/serverLogs/index.html:39 -#: websiteFunctions/templates/websiteFunctions/website.html:133 -msgid "Error Logs" -msgstr "错误日志" - -#: baseTemplate/templates/baseTemplate/index.html:650 -#: serverLogs/templates/serverLogs/emailLogs.html:14 -#: serverLogs/templates/serverLogs/index.html:49 -#: serverLogs/templates/serverLogs/index.html:51 -msgid "Email Logs" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Email Log" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:651 -#: serverLogs/templates/serverLogs/ftplogs.html:14 -#: serverLogs/templates/serverLogs/index.html:61 -#: serverLogs/templates/serverLogs/index.html:63 -msgid "FTP Logs" -msgstr "FTP日志" - -#: baseTemplate/templates/baseTemplate/index.html:666 -#, fuzzy -#| msgid "Firewall" -msgid "Firewall Home" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:666 -#: firewall/templates/firewall/index.html:25 -#: firewall/templates/firewall/index.html:27 -msgid "Firewall" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:667 -#: firewall/templates/firewall/index.html:36 -#: firewall/templates/firewall/index.html:38 -#: firewall/templates/firewall/secureSSH.html:13 -#: firewall/templates/firewall/secureSSH.html:20 -msgid "Secure SSH" -msgstr "SSH加固" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:3 -msgid "Version Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:11 -msgid "" -"On this page you can manage versions and or upgrade to latest version of " -"CyberPanel" -msgstr "此页面可以查看并更新至CyberPanel最新版本 " - -#: baseTemplate/templates/baseTemplate/versionManagment.html:25 -msgid "Current Version" -msgstr "当前版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:33 -msgid "Build" -msgstr "编译" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:42 -msgid "Latest Version" -msgstr "最新版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:50 -msgid "Latest Build" -msgstr "最新编译" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:66 -#: firewall/templates/firewall/secureSSH.html:78 -#: managePHP/templates/managePHP/editPHPConfig.html:140 -msgid "Error message: " -msgstr "错误信息: " - -#: baseTemplate/templates/baseTemplate/versionManagment.html:70 -msgid "Update started..." -msgstr "开始更新..." - -#: baseTemplate/templates/baseTemplate/versionManagment.html:74 -msgid "Update finished..." -msgstr "更新完成..." - -#: baseTemplate/templates/baseTemplate/versionManagment.html:79 -#: firewall/templates/firewall/secureSSH.html:87 -#: firewall/templates/firewall/secureSSH.html:172 -#: managePHP/templates/managePHP/editPHPConfig.html:149 -#: managePHP/templates/managePHP/editPHPConfig.html:221 -#: managePHP/templates/managePHP/installExtensions.html:113 -msgid "Could not connect. Please refresh this page." -msgstr "无法连接, 请刷新此页面" - -#: databases/templates/databases/createDatabase.html:3 -msgid "Create New Database - CyberPanel" -msgstr "创建数据库 - CyberPanel" - -#: databases/templates/databases/createDatabase.html:13 -msgid "Create a new database on this page." -msgstr "在此页面创建数据库" - -#: databases/templates/databases/createDatabase.html:42 -#: databases/templates/databases/listDataBases.html:87 -msgid "Database Name" -msgstr "数据库名字" - -#: databases/templates/databases/createDatabase.html:50 -#: firewall/templates/firewall/secureSSH.html:120 -#: ftp/templates/ftp/createFTPAccount.html:43 -#: ftp/templates/ftp/listFTPAccounts.html:88 -#: mailServer/templates/mailServer/createEmailAccount.html:43 -msgid "User Name" -msgstr "用户名" - -#: databases/templates/databases/createDatabase.html:79 -msgid "Cannot create database. Error message:" -msgstr "无法创建数据库, 错误提示: " - -#: databases/templates/databases/createDatabase.html:83 -msgid "Database created successfully." -msgstr "成功创建数据库" - -#: databases/templates/databases/deleteDatabase.html:3 -msgid "Delete Database - CyberPanel" -msgstr "删除数据库 - CyberPanel" - -#: databases/templates/databases/deleteDatabase.html:13 -msgid "Delete an existing database on this page." -msgstr "在此页面删除已有数据库" - -#: databases/templates/databases/deleteDatabase.html:40 -msgid "Select Database" -msgstr "选择数据库" - -#: databases/templates/databases/deleteDatabase.html:68 -msgid "Database deleted successfully." -msgstr "成功删除数据库" - -#: databases/templates/databases/index.html:3 -msgid "Database Functions - CyberPanel" -msgstr "数据库功能 - CyberPanel" - -#: databases/templates/databases/index.html:13 -msgid "Create, edit and delete databases on this page." -msgstr "在此页面创建, 编辑和删除数据库" - -#: databases/templates/databases/listDataBases.html:3 -msgid "List Databases - CyberPanel" -msgstr "查看数据库 - CyberPanel" - -#: databases/templates/databases/listDataBases.html:14 -msgid "List Databases or change their passwords." -msgstr "查看数据库或修改密码" - -#: databases/templates/databases/listDataBases.html:28 -#: dns/templates/dns/addDeleteDNSRecords.html:28 -#: ftp/templates/ftp/deleteFTPAccount.html:27 -#: ftp/templates/ftp/listFTPAccounts.html:28 -msgid "Select Domain" -msgstr "选择域名" - -#: databases/templates/databases/listDataBases.html:46 -#: dns/templates/dns/addDeleteDNSRecords.html:168 -#: ftp/templates/ftp/listFTPAccounts.html:46 -msgid "Records successfully fetched for" -msgstr "成功读取记录" - -#: databases/templates/databases/listDataBases.html:53 -msgid "Cannot change password for " -msgstr "无法为修改密码 " - -#: databases/templates/databases/listDataBases.html:58 -#: firewall/templates/firewall/firewall.html:166 -#: ftp/templates/ftp/listFTPAccounts.html:59 -msgid "Could Not Connect to server. Please refresh this page" -msgstr "无法连接到服务器, 请刷新此页面" - -#: databases/templates/databases/listDataBases.html:88 -msgid "Database User" -msgstr "数据库用户" - -#: databases/templates/databases/listDataBases.html:97 -#: ftp/templates/ftp/listFTPAccounts.html:100 -msgid "Change" -msgstr "修改" - -#: dns/templates/dns/addDeleteDNSRecords.html:3 -msgid "Add/Modify DNS Records - CyberPanel" -msgstr "添加/删除DNS记录 - Cyberpanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -msgid "Add/Modify DNS Zone" -msgstr "添加/修改DNS区域" - -#: dns/templates/dns/addDeleteDNSRecords.html:14 -msgid "" -"On this page you can add/modify dns records for domains whose dns zone is " -"already created." -msgstr "此页面可以为已创建DNS区域的域名添加/编辑DNS记录 " - -#: dns/templates/dns/addDeleteDNSRecords.html:19 -msgid "Add Records" -msgstr "添加记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:53 -#: dns/templates/dns/addDeleteDNSRecords.html:131 -#: firewall/templates/firewall/firewall.html:128 -#: serverStatus/templates/serverStatus/litespeedStatus.html:40 -msgid "Name" -msgstr "名称" - -#: dns/templates/dns/addDeleteDNSRecords.html:69 -msgid "IPV6" -msgstr "" - -#: dns/templates/dns/addDeleteDNSRecords.html:78 -#: dns/templates/dns/addDeleteDNSRecords.html:133 -msgid "Priority" -msgstr "优先级" - -#: dns/templates/dns/addDeleteDNSRecords.html:87 -#: dns/templates/dns/createDNSZone.html:27 -#: dns/templates/dns/createNameServer.html:27 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:52 -msgid "Domain Name" -msgstr "域名" - -#: dns/templates/dns/addDeleteDNSRecords.html:95 -msgid "Policy" -msgstr "" - -#: dns/templates/dns/addDeleteDNSRecords.html:103 -msgid "Text" -msgstr "" - -#: dns/templates/dns/addDeleteDNSRecords.html:111 -#: firewall/templates/firewall/firewall.html:109 -msgid "Add" -msgstr "添加" - -#: dns/templates/dns/addDeleteDNSRecords.html:130 -msgid "Type" -msgstr "类型" - -#: dns/templates/dns/addDeleteDNSRecords.html:132 -msgid "Value" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:160 -msgid "Cannot fetch records. Error message:" -msgstr "无法获取记录, 错误信息: " - -#: dns/templates/dns/addDeleteDNSRecords.html:164 -msgid "Cannot add record. Error message: " -msgstr "无法添加记录, 错误信息: " - -#: dns/templates/dns/addDeleteDNSRecords.html:172 -msgid "Record Successfully Deleted" -msgstr "成功删除记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:176 -msgid "Cannot delete record. Error message:" -msgstr "无法删除记录, 错误信息:" - -#: dns/templates/dns/addDeleteDNSRecords.html:180 -msgid "Record Successfully Added." -msgstr "成功添加记录" - -#: dns/templates/dns/createDNSZone.html:3 -msgid "Create DNS Zone - CyberPanel" -msgstr "创建DNS区域 - CyberPanel" - -#: dns/templates/dns/createDNSZone.html:13 -msgid "" -"This page is used to create DNS zone, to edit dns zone you can visit Modify " -"DNS Zone Page." -msgstr "在此页面创建DNS区域, 您可以在编辑页面修改DNS区域 " - -#: dns/templates/dns/createDNSZone.html:18 -#: dns/templates/dns/createNameServer.html:18 -#: userManagment/templates/userManagment/modifyUser.html:19 -msgid "Details" -msgstr "详情" - -#: dns/templates/dns/createDNSZone.html:51 -msgid "Cannot create DNS Zone. Error message:" -msgstr "无法创建DNS区域, 错误信息: " - -#: dns/templates/dns/createDNSZone.html:55 -msgid "DNS Zone for domain:" -msgstr "域名DNS区域: " - -#: dns/templates/dns/createNameServer.html:3 -msgid "Create Nameserver - CyberPanel" -msgstr "创建名称服务器(NS) - CyberPanel" - -#: dns/templates/dns/createNameServer.html:13 -msgid "" -"You can use this page to setup nameservers using which people on the " -"internet can resolve websites hosted on this server." -msgstr "您可以在此页面创建名称服务器(NS)以解析您的域名 " - -#: dns/templates/dns/createNameServer.html:39 -msgid "First Nameserver" -msgstr "第一名称服务器" - -#: dns/templates/dns/createNameServer.html:55 -msgid "Second Nameserver (Back up)" -msgstr "第二名称服务器(备用)" - -#: dns/templates/dns/createNameServer.html:87 -msgid "Nameserver cannot be created. Error message:" -msgstr "名称服务器无法创建, 错误信息: " - -#: dns/templates/dns/createNameServer.html:91 -msgid "The following nameservers were successfully created:" -msgstr "以下名称服务器已成功创建: " - -#: dns/templates/dns/deleteDNSZone.html:3 -msgid "Delete DNS Zone - CyberPanel" -msgstr "删除DNS区域 - CyberPanel" - -#: dns/templates/dns/deleteDNSZone.html:12 -#: dns/templates/dns/deleteDNSZone.html:18 -msgid "Delete DNS Zone" -msgstr "删除DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:13 -msgid "" -"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " -"all its related records as well." -msgstr "此页面可以删除DNS区域, 删除DNS区域时所有相关的DNS记录也将会被删除 " - -#: dns/templates/dns/deleteDNSZone.html:27 -msgid "Select Zone" -msgstr "选择DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:49 -#: ftp/templates/ftp/deleteFTPAccount.html:61 -#: mailServer/templates/mailServer/deleteEmailAccount.html:64 -#: packages/templates/packages/deletePackage.html:49 -#: userManagment/templates/userManagment/deleteUser.html:51 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 -msgid "Are you sure?" -msgstr "您确定?" - -#: dns/templates/dns/deleteDNSZone.html:59 -msgid "Cannot delete zone. Error message: " -msgstr "无法删除DNS区域, 错误信息: " - -#: dns/templates/dns/deleteDNSZone.html:63 -msgid "Zone for domain:" -msgstr "DNS区域: " - -#: dns/templates/dns/deleteDNSZone.html:63 -msgid "is successfully erased." -msgstr "已成功删除" - -#: dns/templates/dns/index.html:3 -msgid "DNS Functions - CyberPanel" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:12 -msgid "DNS Functions" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:13 -msgid "Create, edit and delete DNS zones on this page." -msgstr "在此页面添加, 修改, 删除DNS区域" - -#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 -#, fuzzy -#| msgid "Add/Delete Records" -msgid "Add Delete Records" -msgstr "添加/删除记录" - -#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 -msgid "Add Delete/Records" -msgstr "添加/删除记录" - -#: firewall/templates/firewall/firewall.html:3 -msgid "Firewall - CyberPanel" -msgstr "防火墙 - CyberPanel" - -#: firewall/templates/firewall/firewall.html:13 -msgid "Add/Delete Firewall Rules" -msgstr "添加/删除防火墙规则" - -#: firewall/templates/firewall/firewall.html:14 -msgid "" -"On this page you can add/delete firewall rules. (By default all ports are " -"blocked, except mentioned below)" -msgstr "此页面可以添加/删除防火墙规则 (除以下端口外, 所有端口默认关闭) " - -#: firewall/templates/firewall/firewall.html:19 -msgid "Add/Delete Rules" -msgstr "添加/删除规则" - -#: firewall/templates/firewall/firewall.html:45 -msgid "Start" -msgstr "开始" - -#: firewall/templates/firewall/firewall.html:51 -msgid "Stop" -msgstr "停止" - -#: firewall/templates/firewall/firewall.html:58 -msgid "Reload" -msgstr "重载" - -#: firewall/templates/firewall/firewall.html:63 -msgid "Action failed. Error message:" -msgstr "操作失败, 错误信息: " - -#: firewall/templates/firewall/firewall.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:85 -msgid "Action successful." -msgstr "操作成功" - -#: firewall/templates/firewall/firewall.html:129 -msgid "Protocol" -msgstr "协议" - -#: firewall/templates/firewall/firewall.html:130 -msgid "Port" -msgstr "端口" - -#: firewall/templates/firewall/firewall.html:162 -msgid "Rule successfully added." -msgstr "成功添加规则" - -#: firewall/templates/firewall/index.html:3 -msgid "Security - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/index.html:12 -msgid "Security Functions" -msgstr "安全" - -#: firewall/templates/firewall/index.html:13 -msgid "Manage the security of the server on this page." -msgstr "在此页面管理服务器安全相关内容" - -#: firewall/templates/firewall/secureSSH.html:3 -msgid "Secure SSH - CyberPanel" -msgstr "SSH加固 - CyberPanel" - -#: firewall/templates/firewall/secureSSH.html:14 -#: managePHP/templates/managePHP/editPHPConfig.html:15 -msgid "Edit PHP Configurations on this page." -msgstr "在此页面设置PHP参数" - -#: firewall/templates/firewall/secureSSH.html:28 -#: managePHP/templates/managePHP/editPHPConfig.html:29 -msgid "Basic" -msgstr "基础" - -#: firewall/templates/firewall/secureSSH.html:34 -msgid "SSH Keys" -msgstr "SSH密钥" - -#: firewall/templates/firewall/secureSSH.html:47 -msgid "SSH Port" -msgstr "SSH端口" - -#: firewall/templates/firewall/secureSSH.html:56 -msgid "Permit Root Login" -msgstr "允许ROOT登陆" - -#: firewall/templates/firewall/secureSSH.html:60 -msgid "" -"Before disabling root login, make sure you have another account with sudo " -"priviliges on server." -msgstr "禁用ROOT登陆前,请确保您在服务器上拥有一个sudo权限的用户 " - -#: firewall/templates/firewall/secureSSH.html:68 -#: managePHP/templates/managePHP/editPHPConfig.html:130 -#: managePHP/templates/managePHP/editPHPConfig.html:203 -msgid "Save Changes" -msgstr "保存修改" - -#: firewall/templates/firewall/secureSSH.html:82 -msgid "SSH Configurations Saved." -msgstr "SSH设置已保存" - -#: firewall/templates/firewall/secureSSH.html:121 -msgid "Key" -msgstr "密钥" - -#: firewall/templates/firewall/secureSSH.html:150 -msgid "Add Key" -msgstr "添加密钥" - -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:303 -#: websiteFunctions/templates/websiteFunctions/website.html:363 -msgid "Save" -msgstr "保存" - -#: firewall/templates/firewall/secureSSH.html:167 -msgid "SSH Key Deleted" -msgstr "SSH密钥已删除" - -#: ftp/templates/ftp/createFTPAccount.html:3 -msgid "Create FTP Account - CyberPanel" -msgstr "创建FTP用户 - CyberPanel" - -#: ftp/templates/ftp/createFTPAccount.html:13 -msgid "" -"Select the website from list, and its home directory will be set as the path " -"to ftp account." -msgstr "在列表中选择一个网站, 它的根目录将会设为FTP的根目录 " - -#: ftp/templates/ftp/createFTPAccount.html:52 -msgid "FTP Password" -msgstr "FTP密码" - -#: ftp/templates/ftp/createFTPAccount.html:59 -msgid "Path (Relative)" -msgstr "相对路径" - -#: ftp/templates/ftp/createFTPAccount.html:61 -msgid "Leave empty to select default home directory." -msgstr "" - -#: ftp/templates/ftp/createFTPAccount.html:72 -msgid "Create FTP" -msgstr "创建FTP用户" - -#: ftp/templates/ftp/createFTPAccount.html:80 -msgid "Cannot create FTP account. Error message:" -msgstr "无法创建FTP用户, 错误信息: " - -#: ftp/templates/ftp/createFTPAccount.html:84 -#: ftp/templates/ftp/createFTPAccount.html:87 -#: ftp/templates/ftp/deleteFTPAccount.html:75 -msgid "FTP Account with username:" -msgstr "FTP用户: " - -#: ftp/templates/ftp/createFTPAccount.html:84 -#: ftp/templates/ftp/createFTPAccount.html:87 -#: userManagment/templates/userManagment/createUser.html:154 -msgid "is successfully created." -msgstr "已成功添加" - -#: ftp/templates/ftp/deleteFTPAccount.html:3 -msgid "Delete FTP Account - CyberPanel" -msgstr "删除FTP用户 - CyberPanel" - -#: ftp/templates/ftp/deleteFTPAccount.html:13 -msgid "Select domain and delete its related FTP accounts." -msgstr "选择域名并删除与之相关的FTP用户" - -#: ftp/templates/ftp/deleteFTPAccount.html:40 -msgid "Select FTP Account" -msgstr "选择FTP用户" - -#: ftp/templates/ftp/deleteFTPAccount.html:71 -msgid "Cannot delete account. Error message:" -msgstr "无法删除FTP账号, 错误信息: " - -#: ftp/templates/ftp/deleteFTPAccount.html:75 -msgid " is successfully deleted." -msgstr " 已成功删除" - -#: ftp/templates/ftp/deleteFTPAccount.html:79 -#: userManagment/templates/userManagment/deleteUser.html:70 -msgid "Could not connect to the server. Please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面" - -#: ftp/templates/ftp/index.html:3 -msgid "FTP Functions - CyberPanel" -msgstr "FTP功能 - CyberPanel" - -#: ftp/templates/ftp/index.html:13 -msgid "Delete and create FTP accounts on this page." -msgstr "在此页面添加, 编辑和删除FTP用户" - -#: ftp/templates/ftp/listFTPAccounts.html:3 -msgid "List FTP Accounts - CyberPanel" -msgstr "查看FTP用户 - CyberPanel" - -#: ftp/templates/ftp/listFTPAccounts.html:14 -msgid "List FTP Accounts or change their passwords." -msgstr "查看FTP用户或修改密码" - -#: ftp/templates/ftp/listFTPAccounts.html:50 -msgid "Password changed for" -msgstr "已为修改密码" - -#: ftp/templates/ftp/listFTPAccounts.html:54 -msgid "" -"Cannot change password for {$ ftpUsername $}. Error message:" -msgstr "无法修改 {$ ftpUsername $} 的密码, 错误信息:" - -#: ftp/templates/ftp/listFTPAccounts.html:89 -msgid "Directory" -msgstr "目录" - -#: mailServer/templates/mailServer/changeEmailPassword.html:3 -msgid "Change Email Password - CyberPanel" -msgstr "修改Email密码 - CyberPanel" - -#: mailServer/templates/mailServer/changeEmailPassword.html:12 -#: mailServer/templates/mailServer/changeEmailPassword.html:19 -msgid "Change Email Password" -msgstr "修改Email密码" - -#: mailServer/templates/mailServer/changeEmailPassword.html:13 -msgid "Select a website from the list, to change its password." -msgstr "在列表中选择并修改密码" - -#: mailServer/templates/mailServer/changeEmailPassword.html:42 -#: mailServer/templates/mailServer/deleteEmailAccount.html:42 -msgid "Select Email" -msgstr "选择Email" - -#: mailServer/templates/mailServer/changeEmailPassword.html:73 -#: mailServer/templates/mailServer/deleteEmailAccount.html:72 -msgid "Cannot delete email account. Error message:" -msgstr "无法删除Email用户, 错误信息: " - -#: mailServer/templates/mailServer/changeEmailPassword.html:77 -msgid "Password successfully changed for :" -msgstr "已成功为修改密码 :" - -#: mailServer/templates/mailServer/changeEmailPassword.html:84 -#: mailServer/templates/mailServer/deleteEmailAccount.html:83 -msgid "Currently no email accounts exist for this domain." -msgstr "目前此域名并没有Email" - -#: mailServer/templates/mailServer/createEmailAccount.html:3 -msgid "Create Email Account - CyberPanel" -msgstr "创建Email用户 - CyberPanel" - -#: mailServer/templates/mailServer/createEmailAccount.html:13 -msgid "Select a website from the list, to create an email account." -msgstr "请从列表中选择一个网站来创建Email用户" - -#: mailServer/templates/mailServer/createEmailAccount.html:72 -msgid "Cannot create email account. Error message:" -msgstr "无法创建Email用户, 错误信息: " - -#: mailServer/templates/mailServer/createEmailAccount.html:76 -msgid "Email with id :" -msgstr "Email ID" - -#: mailServer/templates/mailServer/createEmailAccount.html:76 -msgid " is successfully created." -msgstr " 已成功创建" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:3 -msgid "Delete Email Account - CyberPanel" -msgstr "删除Email用户 - CyberPanel" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:13 -msgid "Select a website from the list, to delete an email account." -msgstr "请从列表中选择一个网站来删除Email用户" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:76 -msgid "Email with id : {$ deletedID $} is successfully deleted." -msgstr "Email: {$ deletedID $} 已成功删除" - -#: mailServer/templates/mailServer/index.html:3 -msgid "Mail Functions - CyberPanel" -msgstr "邮件功能 - CyberPanel" - -#: mailServer/templates/mailServer/index.html:12 -msgid "Mail Functions" -msgstr "邮件功能" - -#: mailServer/templates/mailServer/index.html:13 -msgid "Manage email accounts on this page." -msgstr "在此页面管理Email用户" - -#: managePHP/templates/managePHP/editPHPConfig.html:3 -msgid "Edit PHP Configurations - CyberPanel" -msgstr "设置PHP参数 - CyberPanel" - -#: managePHP/templates/managePHP/editPHPConfig.html:14 -#: managePHP/templates/managePHP/editPHPConfig.html:21 -msgid "Edit PHP Configurations" -msgstr "设置PHP参数" - -#: managePHP/templates/managePHP/editPHPConfig.html:35 -msgid "Advanced" -msgstr "高级" - -#: managePHP/templates/managePHP/editPHPConfig.html:48 -#: managePHP/templates/managePHP/editPHPConfig.html:174 -#: managePHP/templates/managePHP/installExtensions.html:28 -#: tuning/templates/tuning/phpTuning.html:28 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:68 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -msgid "Select PHP" -msgstr "选择PHP版本" - -#: managePHP/templates/managePHP/editPHPConfig.html:66 -msgid "display_errors" -msgstr "display_errors" - -#: managePHP/templates/managePHP/editPHPConfig.html:73 -msgid "file_uploads" -msgstr "file_uploads" - -#: managePHP/templates/managePHP/editPHPConfig.html:81 -msgid "allow_url_fopen" -msgstr "allow_url_fopen" - -#: managePHP/templates/managePHP/editPHPConfig.html:89 -msgid "allow_url_include" -msgstr "allow_url_include" - -#: managePHP/templates/managePHP/editPHPConfig.html:97 -msgid "memory_limit" -msgstr "memory_limit" - -#: managePHP/templates/managePHP/editPHPConfig.html:104 -msgid "max_execution_time" -msgstr "max_execution_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:111 -msgid "upload_max_filesize" -msgstr "upload_max_filesize" - -#: managePHP/templates/managePHP/editPHPConfig.html:118 -msgid "max_input_time" -msgstr "max_input_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:144 -#: managePHP/templates/managePHP/editPHPConfig.html:216 -msgid "PHP Configs Saved." -msgstr "PHP参数已保存" - -#: managePHP/templates/managePHP/index.html:3 -msgid "Manage PHP Installations - CyberPanel" -msgstr "管理PHP - CyberPanel" - -#: managePHP/templates/managePHP/index.html:12 -msgid "Manage PHP Installations" -msgstr "管理PHP" - -#: managePHP/templates/managePHP/index.html:13 -msgid "Edit your PHP Configurations to suit your needs." -msgstr "调整PHP参数以满足您的需求" - -#: managePHP/templates/managePHP/installExtensions.html:3 -msgid "Install PHP Extensions - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: managePHP/templates/managePHP/installExtensions.html:14 -msgid "Install/uninstall php extensions on this page." -msgstr "在此页面安装/卸载PHP扩展" - -#: managePHP/templates/managePHP/installExtensions.html:19 -#: tuning/templates/tuning/phpTuning.html:19 -msgid "Select PHP Version" -msgstr "选择PHP版本" - -#: managePHP/templates/managePHP/installExtensions.html:48 -#, fuzzy -#| msgid "Install Extensions" -msgid "Search Extensions.." -msgstr "安装扩展" - -#: managePHP/templates/managePHP/installExtensions.html:63 -msgid "Extension Name" -msgstr "扩展名称" - -#: managePHP/templates/managePHP/installExtensions.html:64 -msgid "Description" -msgstr "描述" - -#: managePHP/templates/managePHP/installExtensions.html:66 -#: managePHP/templates/managePHP/installExtensions.html:77 -msgid "Install" -msgstr "安装" - -#: managePHP/templates/managePHP/installExtensions.html:67 -#: managePHP/templates/managePHP/installExtensions.html:78 -msgid "Uninstall" -msgstr "卸载" - -#: managePHP/templates/managePHP/installExtensions.html:93 -msgid "Go Back" -msgstr "返回" - -#: managePHP/templates/managePHP/installExtensions.html:104 -#: tuning/templates/tuning/phpTuning.html:114 -#: userManagment/templates/userManagment/modifyUser.html:144 -msgid "Cannot fetch details. Error message:" -msgstr "无法获取详情, 错误信息: " - -#: managePHP/templates/managePHP/installExtensions.html:108 -msgid "Cannot perform operation. Error message:" -msgstr "无法完成操作, 错误信息: " - -#: manageSSL/templates/manageSSL/index.html:3 -msgid "SSL Functions - CyberPanel" -msgstr "SSL功能 - CyberPanel" - -#: manageSSL/templates/manageSSL/index.html:13 -msgid "SSL Functions" -msgstr "SSL功能" - -#: manageSSL/templates/manageSSL/index.html:14 -msgid "Issue Let’s Encrypt SSLs for websites and hostname." -msgstr "为网站以及主机申请签发Let's Encrypt证书" - -#: manageSSL/templates/manageSSL/manageSSL.html:3 -msgid "Manage SSL - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: manageSSL/templates/manageSSL/manageSSL.html:14 -msgid "" -"This page can be used to issue Let’s Encrypt SSL for existing websites on " -"server." -msgstr "在此页面可以为已在服务器上创建的网站申请签发Let's Encrypt证书 " - -#: manageSSL/templates/manageSSL/manageSSL.html:42 -#: manageSSL/templates/manageSSL/sslForHostName.html:42 -msgid "Issue SSL" -msgstr "签发SSL证书" - -#: manageSSL/templates/manageSSL/manageSSL.html:52 -#: manageSSL/templates/manageSSL/sslForHostName.html:52 -msgid "Cannot issue SSL. Error message:" -msgstr "无法签发SSL证书, 错误信息: " - -#: manageSSL/templates/manageSSL/manageSSL.html:56 -msgid "SSL Issued for" -msgstr "已为签发证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:3 -msgid "Issue SSL For Hostname - CyberPanel" -msgstr "为面板主机签发SSL证书 - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:20 -msgid "Issue SSL For Hostname" -msgstr "为面板主机签发SSL证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:14 -msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." -msgstr "通过Let's Encrypt证书在已验证的HTTPS连接访问CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:56 -#: manageSSL/templates/manageSSL/sslForHostName.html:60 -msgid "SSL Issued. You can now access CyberPanel at:" -msgstr "SSL证书已签发, 您可以在此登陆CyberPanel: " - -#: packages/templates/packages/createPackage.html:3 -msgid "Create Package - CyberPanel" -msgstr "创建套餐 - CyberPanel" - -#: packages/templates/packages/createPackage.html:14 -#: packages/templates/packages/deletePackage.html:13 -#: packages/templates/packages/index.html:14 -#: packages/templates/packages/modifyPackage.html:10 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 -msgid "" -"Packages define resources for your websites, you need to add package before " -"creating a website." -msgstr "套餐规定了您的网站可以使用的资源量, 在创建网站前请先创建一个套餐 " - -#: packages/templates/packages/createPackage.html:19 -msgid "Package Details" -msgstr "套餐详情" - -#: packages/templates/packages/createPackage.html:26 -msgid "Package Name" -msgstr "套餐名称" - -#: packages/templates/packages/createPackage.html:35 -#: packages/templates/packages/modifyPackage.html:39 -msgid "Disk Space" -msgstr "硬盘空间" - -#: packages/templates/packages/createPackage.html:39 -#: packages/templates/packages/createPackage.html:47 -#: packages/templates/packages/modifyPackage.html:43 -#: packages/templates/packages/modifyPackage.html:51 -msgid "MB (0 = Unlimited)" -msgstr "MB (0为无限制)" - -#: packages/templates/packages/createPackage.html:43 -#: packages/templates/packages/modifyPackage.html:47 -msgid "Bandwidth" -msgstr "流量" - -#: packages/templates/packages/createPackage.html:52 -#: packages/templates/packages/modifyPackage.html:56 -msgid "FTP Accounts" -msgstr "FTP用户数量" - -#: packages/templates/packages/createPackage.html:87 -msgid "Cannot create package. Error message:" -msgstr "无法创建套餐, 错误信息: " - -#: packages/templates/packages/createPackage.html:91 -#: packages/templates/packages/deletePackage.html:63 -#: packages/templates/packages/modifyPackage.html:102 -msgid "Package" -msgstr "套餐" - -#: packages/templates/packages/createPackage.html:91 -msgid "Successfully Created" -msgstr "已成功创建" - -#: packages/templates/packages/deletePackage.html:3 -msgid "Delete Package - CyberPanel" -msgstr "删除套餐 - CyberPanel" - -#: packages/templates/packages/deletePackage.html:27 -#: packages/templates/packages/modifyPackage.html:24 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 -msgid "Select Package" -msgstr "选择套餐" - -#: packages/templates/packages/deletePackage.html:59 -msgid "Cannot delete package. Error message:" -msgstr "无法删除套餐, 错误信息: " - -#: packages/templates/packages/deletePackage.html:63 -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid " Successfully Deleted" -msgstr "已成功删除" - -#: packages/templates/packages/index.html:3 -msgid "Packages - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: packages/templates/packages/modifyPackage.html:3 -msgid "Modify Package - CyberPanel" -msgstr "修改套餐 - CyberPanel" - -#: packages/templates/packages/modifyPackage.html:94 -msgid "Cannot fetch package details. Error message:" -msgstr "无法获取套餐资料, 错误信息: " - -#: packages/templates/packages/modifyPackage.html:98 -msgid "Package Details Successfully Fetched" -msgstr "套餐详情成功读取" - -#: packages/templates/packages/modifyPackage.html:102 -msgid "Successfully Modified" -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/website.html:121 -msgid "Access Logs" -msgstr "访问日志" - -#: serverLogs/templates/serverLogs/accessLogs.html:18 -msgid "Access Logs for main web server." -msgstr "Web服务器日志" - -#: serverLogs/templates/serverLogs/accessLogs.html:26 -#: serverLogs/templates/serverLogs/emailLogs.html:23 -#: serverLogs/templates/serverLogs/errorLogs.html:23 -#: serverLogs/templates/serverLogs/ftplogs.html:23 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:24 -msgid "Last 50 Lines" -msgstr "最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:42 -#: serverLogs/templates/serverLogs/emailLogs.html:39 -#: serverLogs/templates/serverLogs/errorLogs.html:39 -#: serverLogs/templates/serverLogs/ftplogs.html:39 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:40 -msgid "Refresh" -msgstr "刷新" - -#: serverLogs/templates/serverLogs/accessLogs.html:49 -#: serverLogs/templates/serverLogs/emailLogs.html:46 -#: serverLogs/templates/serverLogs/errorLogs.html:46 -#: serverLogs/templates/serverLogs/ftplogs.html:46 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:47 -msgid "Last 50 Lines Fetched" -msgstr "成功获取最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:54 -#: serverLogs/templates/serverLogs/emailLogs.html:51 -#: serverLogs/templates/serverLogs/errorLogs.html:51 -#: serverLogs/templates/serverLogs/ftplogs.html:51 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:52 -msgid "Could not fetch logs. Use the command line to view the log file." -msgstr "无法获取日志, 请使用命令行模式查看日志" - -#: serverLogs/templates/serverLogs/emailLogs.html:3 -#: serverLogs/templates/serverLogs/errorLogs.html:3 -msgid "Error Logs - CyberPanel" -msgstr "错误日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/emailLogs.html:15 -msgid "Email Logs for main web server." -msgstr "主服务器Email日志" - -#: serverLogs/templates/serverLogs/errorLogs.html:15 -msgid "Error Logs for main web server." -msgstr "主服务器错误日志" - -#: serverLogs/templates/serverLogs/ftplogs.html:3 -msgid "FTP Logs - CyberPanel" -msgstr "FTP日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/ftplogs.html:15 -msgid "FTP Logs for main web server." -msgstr "主服务器FTP日志" - -#: serverLogs/templates/serverLogs/index.html:3 -msgid "Server Logs - CyberPanel" -msgstr "服务器日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/index.html:13 -msgid "Server Logs" -msgstr "服务器日志" - -#: serverLogs/templates/serverLogs/index.html:14 -msgid "" -"These are the logs from main server, to see logs for your website navigate " -"to: Websites -> List Websites -> Select Website -> View Logs." -msgstr "" -"此为主服务器日志,查看网站日志请前往 网站 -> 查看网站 -> 选择网站 -> 查看日志" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 -msgid "CyberPanel Main Log File - CyberPanel" -msgstr "Cyberpanel主日志 - CyberPanel" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:16 -msgid "" -"This log file corresponds to errors generated by CyberPanel for your domain " -"errors log you can look into /home/domain/logs." -msgstr "此日志是CyberPanel为您的域名记录的错误, 您可以在/home/domain/logs查看 " - -#: serverStatus/templates/serverStatus/index.html:3 -msgid "Server Status - CyberPanel" -msgstr "服务器状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/index.html:14 -msgid "View LiteSpeed status and log files." -msgstr "查看LiteSpeed状态与日志" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:3 -msgid "LiteSpeed Status - CyberPanel" -msgstr "LiteSpeed状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 -msgid "LiteSpeed Status:" -msgstr "LiteSpeed状态: " - -#: serverStatus/templates/serverStatus/litespeedStatus.html:17 -msgid "" -"On this page you can get information regarding your LiteSpeed processes." -msgstr "此页面可以查看LiteSpeed进程信息" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:32 -msgid "LiteSpeed Processes" -msgstr "LiteSpeed进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:39 -msgid "Process ID" -msgstr "进程ID" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:51 -msgid "Main Process" -msgstr "主进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:54 -msgid "lscgid Process" -msgstr "lscgid进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:57 -msgid "Worker Process" -msgstr "工作进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 -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 -#, fuzzy -#| msgid "Reboot LiteSpeed" -msgid "Reboot Litespeed" -msgstr "重启LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:77 -msgid "Stop LiteSpeed" -msgstr "停止LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:90 -msgid "Error Occurred. See CyberPanel main log file." -msgstr "发生错误, 请查看CyberPanel主日志" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:95 -msgid "Could not connect to server." -msgstr "无法连接到服务器" - -#: tuning/templates/tuning/index.html:3 -msgid "Server Tuning - CyberPanel" -msgstr "服务器设置 - CyberPanel" - -#: tuning/templates/tuning/index.html:13 -msgid "" -"On this page you can set runing parameters for your webserver depending on " -"your hardware." -msgstr "此页面您可以根据您的服务器硬件调整Web服务器参数 " - -#: tuning/templates/tuning/liteSpeedTuning.html:3 -msgid "LiteSpeed Tuning - CyberPanel" -msgstr "LiteSpeed设置 - CyberPanel" - -#: tuning/templates/tuning/liteSpeedTuning.html:13 -msgid "" -"You can use this page to tweak your server according to your website " -"requirments." -msgstr "此页面您可以根据您的网站要求调整服务器参数 " - -#: tuning/templates/tuning/liteSpeedTuning.html:18 -msgid "Tuning Details" -msgstr "设置详情" - -#: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:52 -msgid "Max Connections" -msgstr "最大连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:36 -msgid "Max SSL Connections" -msgstr "最大SSL连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:44 -msgid "Connection Timeout" -msgstr "连接超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:52 -msgid "Keep Alive Timeout" -msgstr "Kepp Alive超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:60 -msgid "Cache Size in memory" -msgstr "内存缓存大小" - -#: tuning/templates/tuning/liteSpeedTuning.html:67 -msgid "Enable GZIP Compression" -msgstr "开启GZIP压缩" - -#: tuning/templates/tuning/liteSpeedTuning.html:70 -#: tuning/templates/tuning/phpTuning.html:93 -msgid "Enable" -msgstr "开启" - -#: tuning/templates/tuning/liteSpeedTuning.html:71 -#: tuning/templates/tuning/phpTuning.html:94 -msgid "Disable" -msgstr "关闭" - -#: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:97 -#: userManagment/templates/userManagment/modifyUser.html:78 -msgid "Currently:" -msgstr "当前: " - -#: tuning/templates/tuning/liteSpeedTuning.html:82 -msgid "Tune Web Server" -msgstr "调整Web服务器" - -#: tuning/templates/tuning/liteSpeedTuning.html:93 -msgid "" -"Cannot fetch Current Value, but you can still submit new changes, error " -"reported from server:" -msgstr "" -"无法读取当前参数, 但是您可以继续提交修改,服务器错误消息: reported from " -"server:" - -#: tuning/templates/tuning/liteSpeedTuning.html:97 -msgid "Cannot save details, Error Message: " -msgstr "无法保存设置, 错误信息: " - -#: tuning/templates/tuning/liteSpeedTuning.html:102 -msgid "Web Server Successfully tuned." -msgstr "Web服务器设置成功保存" - -#: tuning/templates/tuning/phpTuning.html:3 -msgid "PHP Tuning - CyberPanel" -msgstr "PHP设置 - CyberPanel" - -#: tuning/templates/tuning/phpTuning.html:14 -msgid "Set how each version of PHP behaves in your server here." -msgstr "在此调整每个PHP版本" - -#: tuning/templates/tuning/phpTuning.html:45 -msgid "Initial Request Timeout (secs)" -msgstr "初始化请求超时 (秒)" - -#: tuning/templates/tuning/phpTuning.html:60 -msgid "Memory Soft Limit" -msgstr "内存软限制" - -#: tuning/templates/tuning/phpTuning.html:67 -msgid "Memory Hard Limit" -msgstr "内存硬限制" - -#: tuning/templates/tuning/phpTuning.html:75 -msgid "Process Soft Limit" -msgstr "进程软限制" - -#: tuning/templates/tuning/phpTuning.html:82 -msgid "Process Hard Limit" -msgstr "进程硬限制" - -#: tuning/templates/tuning/phpTuning.html:90 -msgid "Persistent Connection" -msgstr "数据库持久连接" - -#: tuning/templates/tuning/phpTuning.html:105 -msgid "Tune PHP" -msgstr "设置PHP" - -#: tuning/templates/tuning/phpTuning.html:118 -msgid "Cannot tune. Error message:" -msgstr "无法保存设置, 错误信息: " - -#: tuning/templates/tuning/phpTuning.html:123 -msgid "Details Successfully fetched." -msgstr "详情读取成功" - -#: tuning/templates/tuning/phpTuning.html:127 -msgid "PHP version " -msgstr "PHP版本" - -#: tuning/templates/tuning/phpTuning.html:127 -msgid "Successfully tuned." -msgstr "已成功保存" - -#: userManagment/templates/userManagment/createUser.html:3 -msgid "Create New User - CyberPanel" -msgstr "创建新用户 - CyberPanel" - -#: userManagment/templates/userManagment/createUser.html:13 -msgid "Create root, reseller or normal users on this page." -msgstr "在此页面创建管理员, 分销商以及普通用户" - -#: userManagment/templates/userManagment/createUser.html:19 -msgid "User Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/createUser.html:28 -#: userManagment/templates/userManagment/modifyUser.html:39 -#: userManagment/templates/userManagment/userProfile.html:25 -msgid "First Name" -msgstr "名" - -#: userManagment/templates/userManagment/createUser.html:32 -msgid "First Name should contain only alphabetic characters." -msgstr "名 中只能包含字母" - -#: userManagment/templates/userManagment/createUser.html:37 -#: userManagment/templates/userManagment/modifyUser.html:46 -#: userManagment/templates/userManagment/userProfile.html:33 -msgid "Last Name" -msgstr "姓" - -#: userManagment/templates/userManagment/createUser.html:41 -msgid "Last Name should contain only alphabetic characters." -msgstr "姓 中只能包含字母" - -#: userManagment/templates/userManagment/createUser.html:51 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:64 -msgid "Invalid Email" -msgstr "无效的Email" - -#: userManagment/templates/userManagment/createUser.html:64 -#: userManagment/templates/userManagment/createUser.html:76 -#: userManagment/templates/userManagment/modifyUser.html:69 -msgid "Account Type" -msgstr "用户类型" - -#: userManagment/templates/userManagment/createUser.html:67 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Reseller" -msgstr "分销商" - -#: userManagment/templates/userManagment/createUser.html:68 -#: userManagment/templates/userManagment/createUser.html:79 -#: userManagment/templates/userManagment/modifyUser.html:74 -msgid "Normal User" -msgstr "普通用户" - -#: userManagment/templates/userManagment/createUser.html:92 -#: userManagment/templates/userManagment/modifyUser.html:89 -#: userManagment/templates/userManagment/userProfile.html:67 -#: userManagment/templates/userManagment/userProfile.html:74 -msgid "User Accounts Limit" -msgstr "用户数量限制" - -#: userManagment/templates/userManagment/createUser.html:96 -#: userManagment/templates/userManagment/createUser.html:107 -msgid "Only Numbers" -msgstr "仅允许数字" - -#: userManagment/templates/userManagment/createUser.html:103 -#: userManagment/templates/userManagment/modifyUser.html:99 -#: userManagment/templates/userManagment/userProfile.html:82 -msgid "Websites Limit" -msgstr "网站数量限制" - -#: userManagment/templates/userManagment/createUser.html:113 -#: userManagment/templates/userManagment/userProfile.html:42 -msgid "Username" -msgstr "用户名" - -#: userManagment/templates/userManagment/createUser.html:117 -msgid "Username should be lowercase alphanumeric." -msgstr "用户名应当为小写字母" - -#: userManagment/templates/userManagment/createUser.html:127 -msgid "Must contain one number and one special character." -msgstr "必须一个数字和一个特殊符号" - -#: userManagment/templates/userManagment/createUser.html:143 -#: userManagment/templates/userManagment/index.html:40 -#: userManagment/templates/userManagment/index.html:42 -msgid "Create User" -msgstr "创建用户" - -#: userManagment/templates/userManagment/createUser.html:154 -#: userManagment/templates/userManagment/modifyUser.html:131 -msgid "Account with username:" -msgstr "用户名为: " - -#: userManagment/templates/userManagment/createUser.html:158 -msgid "Cannot create user. Error message:" -msgstr "无法创建用户, 错误信息: " - -#: userManagment/templates/userManagment/createUser.html:166 -msgid "" -"Length of first and last name combined should be less than or equal to 20 " -"characters" -msgstr "姓名总和的长度应该小于或等于20 " - -#: userManagment/templates/userManagment/deleteUser.html:3 -msgid "Delete User - CyberPanel" -msgstr "删除用户 - CyberPanel" - -#: userManagment/templates/userManagment/deleteUser.html:14 -msgid "Websites owned by this user will automatically transfer to the root." -msgstr "此用户拥有的网站将自动移动到根目录" - -#: userManagment/templates/userManagment/deleteUser.html:29 -msgid "Select User" -msgstr "选择用户" - -#: userManagment/templates/userManagment/deleteUser.html:61 -msgid "Cannot delete user. Error message:" -msgstr "无法删除用户, 错误信息: " - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid "User " -msgstr "用户" - -#: userManagment/templates/userManagment/index.html:3 -msgid "User Functions - CyberPanel" -msgstr "用户功能 - CyberPanel" - -#: userManagment/templates/userManagment/index.html:14 -msgid "Create, edit and delete users on this page." -msgstr "在此页面创建, 编辑和删除用户" - -#: userManagment/templates/userManagment/modifyUser.html:3 -msgid "Modify User - CyberPanel" -msgstr "编辑用户 - CyberPanel" - -#: userManagment/templates/userManagment/modifyUser.html:13 -msgid "Modify existing user settings on this page." -msgstr "在此页面编辑已存在用户" - -#: userManagment/templates/userManagment/modifyUser.html:26 -msgid "Select Account" -msgstr "选择用户" - -#: userManagment/templates/userManagment/modifyUser.html:72 -msgid "Admin" -msgstr "Admin" - -#: userManagment/templates/userManagment/modifyUser.html:131 -msgid " is successfully modified." -msgstr "已成功修改" - -#: userManagment/templates/userManagment/modifyUser.html:135 -msgid "Cannot modify user. Error message:" -msgstr "无法编辑用户, 错误信息: " - -#: userManagment/templates/userManagment/modifyUser.html:148 -msgid "Details fetched." -msgstr "详情已更新" - -#: userManagment/templates/userManagment/userProfile.html:3 -msgid "Account Details - CyberPanel" -msgstr "用户详情 - CyberPanel" - -#: userManagment/templates/userManagment/userProfile.html:12 -#: userManagment/templates/userManagment/userProfile.html:18 -msgid "Account Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/userProfile.html:13 -msgid "List the account details for the currently logged in user." -msgstr "查看当前用户详情" - -#: userManagment/templates/userManagment/userProfile.html:58 -msgid "Account Level" -msgstr "用户等级" - -#: userManagment/templates/userManagment/userProfile.html:69 -#: userManagment/templates/userManagment/userProfile.html:76 -#: userManagment/templates/userManagment/userProfile.html:84 -msgid "( 0 = Unlimited )" -msgstr "(0为无限制 )" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 -msgid "Create New Website - CyberPanel" -msgstr "创建新网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/index.html:14 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:15 -msgid "" -"On this page you can launch, list, modify and delete websites from your " -"server." -msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站 " - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 -msgid "Website Details" -msgstr "网站详情" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 -msgid "Select Owner" -msgstr "选择拥有者" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:56 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "无效域名(注意: 不需要添加http或https)" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:84 -msgid "Additional Features" -msgstr "额外功能" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:91 -msgid "" -"For SSL to work DNS of domain should point to server, otherwise self signed " -"SSL will be issued, you can add your own SSL later." -msgstr "" -"为确定SSL证书的正确签发,域名必须指向此服务器,否则将会签发自签名证书 您可以在" -"之后添加自有证书或重新申请签发Let's Encrypt证书" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:113 -msgid "Cannot create website. Error message:" -msgstr "无法创建网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -msgid "Website with domain" -msgstr "网站域名" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:117 -msgid " is Successfully Created" -msgstr " 已成功创建" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 -msgid "Delete Website - CyberPanel" -msgstr "删除网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 -msgid "" -"This page can be used to delete website, once deleted it can not be " -"recovered." -msgstr "在此页面可以删除网站,此操作不可逆 " - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Website" -msgstr "网站" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Successfully Deleted." -msgstr "成功删除" - -#: websiteFunctions/templates/websiteFunctions/index.html:3 -msgid "Website Functions - CyberPanel" -msgstr "网站功能 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/index.html:70 -#: websiteFunctions/templates/websiteFunctions/index.html:72 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 -msgid "Suspend/Unsuspend Website" -msgstr "禁用/启用网站" - -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 -msgid "Websites Hosted - CyberPanel" -msgstr "当前已创建的网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:51 -msgid "Cannot list websites. Error message:" -msgstr "无法查看网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 -msgid "Modify Website - CyberPanel" -msgstr "修改网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 -msgid "Current Package:" -msgstr "当前套餐: " - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 -msgid "Current Owner:" -msgstr "当前拥有者: " - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:104 -msgid "Cannot fetch website details. Error message:" -msgstr "无法更新网站详情, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:108 -msgid "Cannot modify website. Error message:" -msgstr "无法修改网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:112 -msgid "Website Details Successfully fetched" -msgstr "网站详情已成功更新" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 -msgid "Suspend/Unsuspend Website - CyberPanel" -msgstr "禁用/启用网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 -msgid "This page can be used to suspend/unsuspend website." -msgstr "此页面可以禁用/启用网站" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 -msgid "Suspend" -msgstr "禁用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 -msgid "Un-Suspend" -msgstr "启用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 -msgid "Cannot suspend website, Error message: " -msgstr "无法禁用网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 -msgid "Cannot unsuspend website. Error message:" -msgstr "无法启用网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Website " -msgstr "网站" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Successfully " -msgstr "成功" - -#: websiteFunctions/templates/websiteFunctions/website.html:15 -msgid "All functions related to a particular site." -msgstr "所有与网站相关的功能" - -#: websiteFunctions/templates/websiteFunctions/website.html:23 -msgid "Resource Usage" -msgstr "资源使用量" - -#: websiteFunctions/templates/websiteFunctions/website.html:32 -msgid "Resource" -msgstr "资源" - -#: websiteFunctions/templates/websiteFunctions/website.html:34 -msgid "Allowed" -msgstr "可用" - -#: websiteFunctions/templates/websiteFunctions/website.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:83 -msgid "Bandwidth Usage" -msgstr "流量使用量" - -#: websiteFunctions/templates/websiteFunctions/website.html:119 -#, fuzzy -#| msgid "Access Logs" -msgid "Load Access Logs" -msgstr "访问日志" - -#: websiteFunctions/templates/websiteFunctions/website.html:131 -#, fuzzy -#| msgid "Error Logs" -msgid "Load Error Logs" -msgstr "错误日志" - -#: websiteFunctions/templates/websiteFunctions/website.html:147 -msgid "Logs Fetched" -msgstr "日志读取成功" - -#: websiteFunctions/templates/websiteFunctions/website.html:152 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/website.html:173 -msgid "Next" -msgstr "下一个" - -#: websiteFunctions/templates/websiteFunctions/website.html:174 -msgid "Previous" -msgstr "上一个" - -#: websiteFunctions/templates/websiteFunctions/website.html:227 -msgid "Configurations" -msgstr "配置" - -#: websiteFunctions/templates/websiteFunctions/website.html:233 -#, fuzzy -#| msgid "Edit vHost Main Configurations" -msgid "Edit Virtual Host Main Configurations" -msgstr "编辑vHost主配置" - -#: websiteFunctions/templates/websiteFunctions/website.html:235 -msgid "Edit vHost Main Configurations" -msgstr "编辑vHost主配置" - -#: websiteFunctions/templates/websiteFunctions/website.html:245 -#: websiteFunctions/templates/websiteFunctions/website.html:247 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: websiteFunctions/templates/websiteFunctions/website.html:257 -#, fuzzy -#| msgid "Add SSL" -msgid "Add Your Own SSL" -msgstr "添加SSL证书" - -#: websiteFunctions/templates/websiteFunctions/website.html:259 -msgid "Add SSL" -msgstr "添加SSL证书" - -#: websiteFunctions/templates/websiteFunctions/website.html:274 -msgid "SSL Saved" -msgstr "SSL证书已保存" - -#: websiteFunctions/templates/websiteFunctions/website.html:279 -msgid "Could not save SSL. Error message:" -msgstr "无法保存SSL证书, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/website.html:329 -msgid "Current configuration in the file fetched." -msgstr "当前配置读取成功" - -#: websiteFunctions/templates/websiteFunctions/website.html:334 -#: websiteFunctions/templates/websiteFunctions/website.html:347 -msgid "Could not fetch current configuration. Error message:" -msgstr "无法读取当前配置, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/website.html:343 -#: websiteFunctions/templates/websiteFunctions/website.html:398 -msgid "Configuration saved. Restart LiteSpeed put them in effect." -msgstr "配置已保存, 重启LiteSpeed以生效" - -#: websiteFunctions/templates/websiteFunctions/website.html:384 -msgid "Current rewrite rules in the file fetched." -msgstr "当前Rewrite rules读取成功" - -#: websiteFunctions/templates/websiteFunctions/website.html:389 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "无法读取当前Rewrite rules, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/website.html:402 -msgid "Could not save rewrite rules. Error message:" -msgstr "无法保存Rewrite rules, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/website.html:418 -msgid "Save Rewrite Rules" -msgstr "保存Rewrite rules" - -#: websiteFunctions/templates/websiteFunctions/website.html:441 -msgid "Files" -msgstr "文件" - -#: websiteFunctions/templates/websiteFunctions/website.html:450 -msgid "File Manager" -msgstr "文件管理" - -#: websiteFunctions/templates/websiteFunctions/website.html:490 -msgid "Application Installer" -msgstr "应用安装器" - -#: websiteFunctions/templates/websiteFunctions/website.html:498 -msgid "Wordpress with LSCache" -msgstr "Wordpress和LS Cache" - -#: websiteFunctions/templates/websiteFunctions/website.html:510 -msgid "Path" -msgstr "路径" - -#: websiteFunctions/templates/websiteFunctions/website.html:532 -msgid "Installation failed. Error message:" -msgstr "安装失败, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/website.html:536 -msgid "Installation successful. To complete the setup visit:" -msgstr "安装成功, 请访问网站以完成设置" From fcee57d92c9f8f9b6e8b49cc94d75e26ed0cf050 Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:09:59 +0800 Subject: [PATCH 21/31] Delete cyberpanel.mo --- locale/cn/LC_MESSAGES/cyberpanel.mo | Bin 35625 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100755 locale/cn/LC_MESSAGES/cyberpanel.mo diff --git a/locale/cn/LC_MESSAGES/cyberpanel.mo b/locale/cn/LC_MESSAGES/cyberpanel.mo deleted file mode 100755 index eb73ee6ceb6735ce07a7064c5037c7d61284ded1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 35625 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

TX6|iJ%JUa^5cW=R~;hy(s_@Tyc!xM2& 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 Y`wC@^YafqW>-;}I9k)%n+*jlO2Oo*9Q2+n{ From f95dc9ead5cd258f8134683f5ea7eeb5d159f3a2 Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:10:12 +0800 Subject: [PATCH 22/31] Delete django.mo --- locale/cn/LC_MESSAGES/django.mo | Bin 36541 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100755 locale/cn/LC_MESSAGES/django.mo diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo deleted file mode 100755 index 5c0791781ef1aacfa4d072bddc8a29838cd53590..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 36541 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 Date: Sat, 26 Jun 2021 22:10:29 +0800 Subject: [PATCH 23/31] Delete django.po --- locale/cn/LC_MESSAGES/django.po | 7469 ------------------------------- 1 file changed, 7469 deletions(-) delete mode 100755 locale/cn/LC_MESSAGES/django.po diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po deleted file mode 100755 index 54671e2bd..000000000 --- a/locale/cn/LC_MESSAGES/django.po +++ /dev/null @@ -1,7469 +0,0 @@ -# CyberPanel Translation File. -# Copyright (C) 2017 LiteSpeedTech -# This file is distributed under the same license as the CyberPanel package. -# FIRST AUTHOR , 2017. -# -#: baseTemplate/templates/baseTemplate/index.html:219 -#: baseTemplate/templates/baseTemplate/index.html:272 -#: baseTemplate/templates/baseTemplate/index.html:279 -#: baseTemplate/templates/baseTemplate/index.html:286 -#: baseTemplate/templates/baseTemplate/index.html:293 -#: baseTemplate/templates/baseTemplate/index.html:300 -#: baseTemplate/templates/baseTemplate/index.html:307 -#: emailMarketing/templates/emailMarketing/sendEmails.html:93 -msgid "" -msgstr "" -"Project-Id-Version: CyberPanel\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-21 19:54+0500\n" -"PO-Revision-Date: 2017-10-29 19:32+0100\n" -"Last-Translator: \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" - -#: CLManager/templates/CLManager/createPackage.html:3 -#, fuzzy -#| msgid "Create Package - CyberPanel" -msgid "Create Cloud Linux Package - CyberPanel" -msgstr "创建套餐 - CyberPanel" - -#: CLManager/templates/CLManager/createPackage.html:9 -#, fuzzy -#| msgid "Create Package" -msgid "Create CloudLinux Package." -msgstr "创建套餐" - -#: CLManager/templates/CLManager/createPackage.html:10 -msgid "" -"Each CloudLinux package have one associated (owner) CyberPanel package. " -"During website creation associated CloudLinux package will be assigned to " -"website user." -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:15 -#: CLManager/templates/CLManager/createPackage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:435 -#: baseTemplate/templates/baseTemplate/index.html:666 -#: packages/templates/packages/createPackage.html:13 -#: packages/templates/packages/createPackage.html:100 -#: packages/templates/packages/index.html:25 -#: packages/templates/packages/index.html:28 -#: userManagment/templates/userManagment/createACL.html:152 -#: userManagment/templates/userManagment/modifyACL.html:156 -msgid "Create Package" -msgstr "创建套餐" - -#: CLManager/templates/CLManager/createPackage.html:24 -#: packages/templates/packages/deletePackage.html:26 -#: packages/templates/packages/modifyPackage.html:24 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 -msgid "Select Package" -msgstr "选择套餐" - -#: CLManager/templates/CLManager/createPackage.html:40 -#: packages/templates/packages/createPackage.html:27 -msgid "Package Name" -msgstr "套餐名称" - -#: CLManager/templates/CLManager/createPackage.html:47 -#: CLManager/templates/CLManager/listPackages.html:87 -msgid "SPEED" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:56 -#: CLManager/templates/CLManager/listPackages.html:98 -msgid "VMEM" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:64 -#: CLManager/templates/CLManager/listPackages.html:109 -msgid "PMEM" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:73 -#: CLManager/templates/CLManager/listPackages.html:120 -msgid "IO" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:81 -#: CLManager/templates/CLManager/listPackages.html:131 -#: containerization/templates/containerization/websiteContainerLimit.html:52 -#: containerization/templates/containerization/websiteContainerLimit.html:99 -msgid "IOPS" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:89 -#: CLManager/templates/CLManager/listPackages.html:142 -msgid "EP" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:97 -#: CLManager/templates/CLManager/listPackages.html:153 -msgid "NPROC" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:105 -#: CLManager/templates/CLManager/listPackages.html:164 -msgid "INODES soft" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:113 -#: CLManager/templates/CLManager/listPackages.html:175 -msgid "INODES hard" -msgstr "" - -#: CLManager/templates/CLManager/listPackages.html:3 -#, fuzzy -#| msgid "Modify Package - CyberPanel" -msgid "Manage CloudLinux Packages - CyberPanel" -msgstr "修改套餐 - CyberPanel" - -#: CLManager/templates/CLManager/listPackages.html:14 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage CloudLinux Packages" -msgstr "管理SSL" - -#: CLManager/templates/CLManager/listPackages.html:15 -msgid "Manage/Delete CloudLinux Packages." -msgstr "" - -#: CLManager/templates/CLManager/listPackages.html:76 -#: dns/templates/dns/addDeleteDNSRecords.html:74 -#: dns/templates/dns/addDeleteDNSRecords.html:97 -#: dns/templates/dns/addDeleteDNSRecords.html:121 -#: dns/templates/dns/addDeleteDNSRecords.html:144 -#: dns/templates/dns/addDeleteDNSRecords.html:172 -#: dns/templates/dns/addDeleteDNSRecords.html:196 -#: dns/templates/dns/addDeleteDNSRecords.html:220 -#: dns/templates/dns/addDeleteDNSRecords.html:244 -#: dns/templates/dns/addDeleteDNSRecords.html:268 -#: dns/templates/dns/addDeleteDNSRecords.html:295 -#: dns/templates/dns/addDeleteDNSRecords.html:328 -#: dockerManager/templates/dockerManager/runContainer.html:29 -#: filemanager/templates/filemanager/index.html:203 -#: firewall/templates/firewall/firewall.html:120 -#: packages/templates/packages/listPackages.html:84 -#: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:38 -#: serverStatus/templates/serverStatus/litespeedStatus.html:262 -#: userManagment/templates/userManagment/listUsers.html:75 -msgid "Name" -msgstr "名称" - -#: CLManager/templates/CLManager/listPackages.html:205 -#: CLManager/templates/CLManager/listWebsites.html:86 -#: CLManager/templates/CLManager/monitorUsage.html:57 -#: containerization/templates/containerization/listWebsites.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:172 -#: emailPremium/templates/emailPremium/emailPage.html:179 -#: emailPremium/templates/emailPremium/listDomains.html:75 -#: pluginHolder/templates/pluginHolder/plugins.html:51 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 -msgid "Cannot list websites. Error message:" -msgstr "无法查看网站, 错误信息:" - -#: CLManager/templates/CLManager/listWebsites.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "CageFS - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: CLManager/templates/CLManager/listWebsites.html:14 -#: CLManager/templates/CLManager/monitorUsage.html:14 -#: baseTemplate/templates/baseTemplate/index.html:411 -#: containerization/templates/containerization/listWebsites.html:14 -#: websiteFunctions/templates/websiteFunctions/index.html:31 -#: websiteFunctions/templates/websiteFunctions/index.html:55 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 -msgid "List Websites" -msgstr "查看网站" - -#: CLManager/templates/CLManager/listWebsites.html:15 -msgid "Enable/Disable and view CageFS status for websites." -msgstr "" - -#: CLManager/templates/CLManager/listWebsites.html:28 -msgid "Default: " -msgstr "" - -#: CLManager/templates/CLManager/monitorUsage.html:3 -#, fuzzy -#| msgid "Modify User - CyberPanel" -msgid "Monitor Usage - CyberPanel" -msgstr "编辑用户 - CyberPanel" - -#: CLManager/templates/CLManager/monitorUsage.html:15 -msgid "Monitor usage of your websites." -msgstr "" - -#: CLManager/templates/CLManager/monitorUsage.html:21 -#: baseTemplate/templates/baseTemplate/homePage.html:42 -#: baseTemplate/templates/baseTemplate/index.html:276 -#: baseTemplate/templates/baseTemplate/index.html:400 -#: baseTemplate/templates/baseTemplate/index.html:401 -#: baseTemplate/templates/baseTemplate/index.html:402 -#: containerization/templates/containerization/listWebsites.html:21 -msgid "Websites" -msgstr "网站" - -#: CLManager/templates/CLManager/notAvailable.html:3 -#: containerization/templates/containerization/notAvailable.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Not available - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: CLManager/templates/CLManager/notAvailable.html:13 -#: containerization/templates/containerization/notAvailable.html:13 -msgid "Not available" -msgstr "" - -#: CLManager/templates/CLManager/notAvailable.html:14 -msgid "Either CageFS is not installed or you are not on CloudLinux OS." -msgstr "" - -#: CLManager/templates/CLManager/notAvailable.html:22 -msgid "CageFS is only available with CloudLinux OS. " -msgstr "" - -#: CLManager/templates/CLManager/notAvailable.html:24 -#: containerization/templates/containerization/notAvailable.html:24 -msgid " for conversion details." -msgstr "" - -#: CLManager/templates/CLManager/notAvailable.html:34 -#: containerization/templates/containerization/notAvailable.html:34 -#, fuzzy -#| msgid "Packages" -msgid "Install Packages" -msgstr "套餐" - -#: CLManager/templates/CLManager/notAvailable.html:39 -msgid "CageFS is not installed on this server. Please proceed to installation." -msgstr "" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid " usage - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:14 -#: emailMarketing/templates/emailMarketing/website.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 -#: websiteFunctions/templates/websiteFunctions/website.html:43 -msgid "Usage" -msgstr "使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:15 -msgid "View CPU, Memory and Disk usage for " -msgstr "" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:21 -#: containerization/templates/containerization/websiteContainerLimit.html:155 -#, fuzzy -#| msgid "CPU Usage" -msgid "CPU Usage of" -msgstr "CPU使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:30 -#: containerization/templates/containerization/websiteContainerLimit.html:164 -#, fuzzy -#| msgid "Resource Usage" -msgid "Memory Usage of" -msgstr "资源使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:39 -#: containerization/templates/containerization/websiteContainerLimit.html:173 -#, fuzzy -#| msgid "Disk Usage" -msgid "Disk Usage of" -msgstr "硬盘使用量" - -#: CyberCP/settings.py:175 -msgid "English" -msgstr "英语" - -#: CyberCP/settings.py:176 -msgid "Chinese" -msgstr "中文" - -#: CyberCP/settings.py:177 -msgid "Bulgarian" -msgstr "保加利亚语" - -#: CyberCP/settings.py:178 -msgid "Portuguese" -msgstr "葡萄牙语" - -#: CyberCP/settings.py:179 -msgid "Japanese" -msgstr "日语" - -#: CyberCP/settings.py:180 -msgid "Bosnian" -msgstr "波斯尼亚语" - -#: CyberCP/settings.py:181 -msgid "Greek" -msgstr "" - -#: CyberCP/settings.py:182 -msgid "Russian" -msgstr "" - -#: CyberCP/settings.py:183 -msgid "Turkish" -msgstr "" - -#: CyberCP/settings.py:184 -msgid "Spanish" -msgstr "" - -#: CyberCP/settings.py:185 -msgid "French" -msgstr "" - -#: CyberCP/settings.py:186 -#, fuzzy -#| msgid "Policy" -msgid "Polish" -msgstr "政策" - -#: CyberCP/settings.py:187 -#, fuzzy -#| msgid "File Name" -msgid "Vietnamese" -msgstr "文件名" - -#: CyberCP/settings.py:188 -msgid "Italian" -msgstr "" - -#: CyberCP/settings.py:189 -msgid "Deutsch" -msgstr "" - -#: IncBackups/templates/IncBackups/backupSchedule.html:3 -#: backup/templates/backup/backupSchedule.html:3 -msgid "Schedule Back up - CyberPanel" -msgstr "备份计划 - Cyberpanel" - -#: IncBackups/templates/IncBackups/backupSchedule.html:13 -#: IncBackups/templates/IncBackups/backupSchedule.html:23 -#: backup/templates/backup/backupSchedule.html:13 -#: backup/templates/backup/backupSchedule.html:23 -#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 -#: baseTemplate/templates/baseTemplate/index.html:578 -#: userManagment/templates/userManagment/createACL.html:381 -#: userManagment/templates/userManagment/modifyACL.html:385 -msgid "Schedule Back up" -msgstr "备份计划" - -#: IncBackups/templates/IncBackups/backupSchedule.html:16 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 -#: backup/templates/backup/backupDestinations.html:14 -#: backup/templates/backup/backupSchedule.html:16 -#: backup/templates/backup/remoteBackups.html:14 -#: backup/templates/backup/remoteBackups.html:21 -msgid "Remote Backups" -msgstr "远程备份" - -#: IncBackups/templates/IncBackups/backupSchedule.html:17 -#: backup/templates/backup/backupSchedule.html:17 -msgid "" -"On this page you can schedule Back ups to localhost or remote server (If you " -"have added one)." -msgstr "" -"在此页面您可以设置计划任务备份到本地或远程目录 (如果您已经添加了一个远程目" -"录)." - -#: IncBackups/templates/IncBackups/backupSchedule.html:33 -#: backup/templates/backup/backupSchedule.html:33 -msgid "Select Destination" -msgstr "选择远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:44 -#: backup/templates/backup/backupSchedule.html:44 -msgid "Select Frequency" -msgstr "备份频率" - -#: IncBackups/templates/IncBackups/backupSchedule.html:54 -#: IncBackups/templates/IncBackups/createBackup.html:56 -#, fuzzy -#| msgid "Version Management" -msgid "Backup Content" -msgstr "版本管理" - -#: IncBackups/templates/IncBackups/backupSchedule.html:98 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 -#: backup/templates/backup/backupDestinations.html:55 -#: backup/templates/backup/backupSchedule.html:67 -#: baseTemplate/templates/baseTemplate/index.html:575 -msgid "Add Destination" -msgstr "添加远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:112 -#: backup/templates/backup/remoteBackups.html:96 -msgid "Search Accounts.." -msgstr "搜索用户..." - -#: IncBackups/templates/IncBackups/backupSchedule.html:124 -msgid "Select sites to be included in this job" -msgstr "" - -#: IncBackups/templates/IncBackups/backupSchedule.html:150 -#: IncBackups/templates/IncBackups/createBackup.html:127 -#: backup/templates/backup/backup.html:102 -#: backup/templates/backup/backupDestinations.html:96 -#: backup/templates/backup/backupSchedule.html:102 -#: databases/templates/databases/listDataBases.html:104 -#: dns/templates/dns/addDeleteDNSRecords.html:326 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 -#: emailMarketing/templates/emailMarketing/manageLists.html:141 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 -#: firewall/templates/firewall/firewall.html:119 -#: firewall/templates/firewall/modSecurityRulesPacks.html:109 -#: ftp/templates/ftp/listFTPAccounts.html:122 -#: mailServer/templates/mailServer/emailForwarding.html:117 -#: managePHP/templates/managePHP/installExtensions.html:60 -msgid "ID" -msgstr "ID" - -#: IncBackups/templates/IncBackups/backupSchedule.html:151 -#: IncBackups/templates/IncBackups/createBackup.html:44 -#: IncBackups/templates/IncBackups/createBackup.html:164 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 -#: backup/templates/backup/backup.html:41 -#: backup/templates/backup/backupSchedule.html:103 -#: mailServer/templates/mailServer/emailForwarding.html:101 -#: mailServer/templates/mailServer/emailForwarding.html:119 -msgid "Destination" -msgstr "远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:152 -#: backup/templates/backup/backupSchedule.html:104 -msgid "Frequency" -msgstr "频率" - -#: IncBackups/templates/IncBackups/backupSchedule.html:153 -#: IncBackups/templates/IncBackups/createBackup.html:130 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 -#: backup/templates/backup/backup.html:107 -#: backup/templates/backup/backupDestinations.html:99 -#: backup/templates/backup/backupSchedule.html:105 -#: dns/templates/dns/addDeleteDNSRecords.html:332 -#: emailMarketing/templates/emailMarketing/manageLists.html:156 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 -#: emailMarketing/templates/emailMarketing/sendEmails.html:170 -#: emailMarketing/templates/emailMarketing/website.html:533 -#: filemanager/templates/filemanager/index.html:67 -#: filemanager/templates/filemanager/index.html:696 -#: firewall/templates/firewall/firewall.html:124 -#: firewall/templates/firewall/secureSSH.html:122 -#: mailServer/templates/mailServer/listEmails.html:78 -#: packages/templates/packages/listPackages.html:63 -#: userManagment/templates/userManagment/listUsers.html:54 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 -#: websiteFunctions/templates/websiteFunctions/listCron.html:65 -#: websiteFunctions/templates/websiteFunctions/website.html:497 -msgid "Delete" -msgstr "删除" - -#: IncBackups/templates/IncBackups/createBackup.html:3 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Create Incremental Backup" -msgstr "取消备份" - -#: IncBackups/templates/IncBackups/createBackup.html:13 -#: IncBackups/templates/IncBackups/createBackup.html:23 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 -#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 -#: backup/templates/backup/backup.html:21 -msgid "Back up Website" -msgstr "备份网站" - -#: IncBackups/templates/IncBackups/createBackup.html:15 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 -#: backup/templates/backup/backup.html:14 -#: backup/templates/backup/restore.html:14 -#, fuzzy -#| msgid "Back up" -msgid "Backup Docs" -msgstr "备份" - -#: IncBackups/templates/IncBackups/createBackup.html:17 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "This page can be used to create incremental backups for your websites." -msgstr "这里是网站备份界面" - -#: IncBackups/templates/IncBackups/createBackup.html:33 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 -#: backup/templates/backup/backup.html:30 -#: databases/templates/databases/createDatabase.html:26 -#: databases/templates/databases/deleteDatabase.html:26 -#: databases/templates/databases/phpMyAdmin.html:26 -#: ftp/templates/ftp/createFTPAccount.html:42 -#: mailServer/templates/mailServer/changeEmailPassword.html:44 -#: mailServer/templates/mailServer/createEmailAccount.html:44 -#: mailServer/templates/mailServer/deleteEmailAccount.html:44 -#: mailServer/templates/mailServer/dkimManager.html:83 -#: mailServer/templates/mailServer/emailForwarding.html:38 -#: manageSSL/templates/manageSSL/manageSSL.html:29 -#: manageSSL/templates/manageSSL/sslForHostName.html:29 -#: manageSSL/templates/manageSSL/sslForMailServer.html:27 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/listCron.html:28 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 -msgid "Select Website" -msgstr "选择网站" - -#: IncBackups/templates/IncBackups/createBackup.html:113 -#: backup/templates/backup/backup.html:81 -#: baseTemplate/templates/baseTemplate/index.html:569 -#: baseTemplate/templates/baseTemplate/index.html:598 -#: userManagment/templates/userManagment/createACL.html:352 -#: userManagment/templates/userManagment/modifyACL.html:356 -msgid "Create Back up" -msgstr "创建备份" - -#: IncBackups/templates/IncBackups/createBackup.html:128 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 -#: backup/templates/backup/backup.html:104 -#: emailMarketing/templates/emailMarketing/sendEmails.html:152 -msgid "Date" -msgstr "日期" - -#: IncBackups/templates/IncBackups/createBackup.html:129 -#: backup/templates/backup/index.html:46 -#: backup/templates/backup/restore.html:45 -msgid "Restore" -msgstr "还原" - -#: IncBackups/templates/IncBackups/createBackup.html:161 -#: emailMarketing/templates/emailMarketing/sendEmails.html:151 -msgid "Job ID" -msgstr "" - -#: IncBackups/templates/IncBackups/createBackup.html:162 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 -msgid "Snapshot ID" -msgstr "" - -#: IncBackups/templates/IncBackups/createBackup.html:163 -#: dns/templates/dns/addDeleteDNSRecords.html:327 -#: pluginHolder/templates/pluginHolder/plugins.html:29 -msgid "Type" -msgstr "类型" - -#: IncBackups/templates/IncBackups/createBackup.html:165 -#: websiteFunctions/templates/websiteFunctions/listCron.html:52 -#, fuzzy -#| msgid "FTP Functions" -msgid "Action" -msgstr "FTP功能" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:14 -msgid "Set up Back up Destinations" -msgstr "设置远程目录" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 -#, fuzzy -#| msgid "Set up Back up Destinations" -msgid "Set up Incremental Back up Destinations" -msgstr "设置远程目录" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" -msgstr "这里是远程备份页面(SFTP)" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 -#, fuzzy -#| msgid "Set up Back up Destinations" -msgid "Set up Back up Destinations." -msgstr "设置远程目录" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 -#, fuzzy -#| msgid "Select Website" -msgid "Select Type" -msgstr "选择网站" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 -#: backup/templates/backup/backupDestinations.html:30 -#: backup/templates/backup/remoteBackups.html:29 -#: dns/templates/dns/addDeleteDNSRecords.html:82 -#: dns/templates/dns/createNameServer.html:55 -#: dns/templates/dns/createNameServer.html:71 -#: firewall/templates/firewall/firewall.html:122 -msgid "IP Address" -msgstr "IP地址" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 -#: backup/templates/backup/backupDestinations.html:38 -#: backup/templates/backup/remoteBackups.html:37 -#: databases/templates/databases/createDatabase.html:56 -#: databases/templates/databases/listDataBases.html:107 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 -#: ftp/templates/ftp/listFTPAccounts.html:126 -#: mailServer/templates/mailServer/changeEmailPassword.html:68 -#: mailServer/templates/mailServer/createEmailAccount.html:68 -#: mailServer/templates/mailServer/listEmails.html:113 -#: userManagment/templates/userManagment/createUser.html:83 -#: userManagment/templates/userManagment/modifyUser.html:62 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 -msgid "Password" -msgstr "密码" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 -#: backup/templates/backup/backupDestinations.html:45 -#: dockerManager/templates/dockerManager/runContainer.html:74 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 -#: firewall/templates/firewall/firewall.html:123 -msgid "Port" -msgstr "端口" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 -#: backup/templates/backup/backupDestinations.html:47 -msgid "Backup server SSH Port, leave empty for 22." -msgstr "" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 -#: backup/templates/backup/backupDestinations.html:97 -msgid "IP" -msgstr "IP地址" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 -msgid "AWS_ACCESS_KEY_ID" -msgstr "" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 -msgid "AWS_SECRET_ACCESS_KEY" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Restore Remote Incremental Backups" -msgstr "取消备份" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "" -"This page can be used to restore remote incremental backups for your " -"websites." -msgstr "这里是网站备份界面" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 -msgid "Fetch Restore Points" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 -msgid "Host" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 -#: emailMarketing/templates/emailMarketing/createEmailList.html:33 -#: emailMarketing/templates/emailMarketing/manageLists.html:74 -#: emailMarketing/templates/emailMarketing/website.html:330 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -msgid "Path" -msgstr "路径" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 -#: dockerManager/templates/dockerManager/viewContainer.html:108 -#: emailMarketing/templates/emailMarketing/manageLists.html:145 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 -#: emailMarketing/templates/emailMarketing/sendEmails.html:157 -#: filemanager/templates/filemanager/index.html:207 -#: mailServer/templates/mailServer/emailForwarding.html:120 -#: mailServer/templates/mailServer/listEmails.html:65 -#: packages/templates/packages/listPackages.html:41 -#: serverStatus/templates/serverStatus/topProcesses.html:201 -#: userManagment/templates/userManagment/listUsers.html:37 -#, fuzzy -#| msgid "FTP Functions" -msgid "Actions" -msgstr "FTP功能" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Terminal - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 -#: baseTemplate/templates/baseTemplate/index.html:641 -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Terminal" -msgstr "" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 -msgid "Web Terminal Docs" -msgstr "" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 -msgid "Execute your terminal commands." -msgstr "" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 -#: baseTemplate/templates/baseTemplate/index.html:643 -msgid "Web Terminal" -msgstr "" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 -msgid "Reboot SSH Server" -msgstr "" - -#: backup/templates/backup/backup.html:15 -msgid "This page can be used to Back up your websites" -msgstr "这里是网站备份界面" - -#: backup/templates/backup/backup.html:44 -#: baseTemplate/templates/baseTemplate/homePage.html:12 -#: filemanager/templates/filemanager/index.html:135 -msgid "Home" -msgstr "主目录" - -#: backup/templates/backup/backup.html:60 -#: backup/templates/backup/restore.html:62 -#: filemanager/templates/filemanager/index.html:158 -msgid "File Name" -msgstr "文件名" - -#: backup/templates/backup/backup.html:61 -#: backup/templates/backup/backup.html:106 -#: backup/templates/backup/restore.html:63 -#: baseTemplate/templates/baseTemplate/homePage.html:132 -#: baseTemplate/templates/baseTemplate/index.html:311 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 -#: filemanager/templates/filemanager/index.html:206 -#: firewall/templates/firewall/firewall.html:35 -#: firewall/templates/firewall/modSecurityRulesPacks.html:112 -#: managePHP/templates/managePHP/installExtensions.html:64 -msgid "Status" -msgstr "状态" - -#: backup/templates/backup/backup.html:66 -#: serverStatus/templates/serverStatus/topProcesses.html:52 -msgid "Running" -msgstr "进行中" - -#: backup/templates/backup/backup.html:88 -msgid "Cancel Backup" -msgstr "取消备份" - -#: backup/templates/backup/backup.html:103 -msgid "File" -msgstr "文件" - -#: backup/templates/backup/backup.html:105 -#: filemanager/templates/filemanager/index.html:204 -#: ftp/templates/ftp/listFTPAccounts.html:125 -msgid "Size" -msgstr "大小" - -#: backup/templates/backup/backup.html:131 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: backup/templates/backup/backup.html:135 -msgid "Successfully Deleted" -msgstr "删除成功" - -#: backup/templates/backup/backupDestinations.html:15 -msgid "On this page you can set up your Back up destinations. (SFTP)" -msgstr "这里是远程备份页面(SFTP)" - -#: backup/templates/backup/backupDestinations.html:21 -msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" -msgstr "" - -#: backup/templates/backup/backupDestinations.html:68 -#: backup/templates/backup/backupDestinations.html:72 -msgid "Connection to" -msgstr "连接到" - -#: backup/templates/backup/backupDestinations.html:68 -#, fuzzy -#| msgid "failed. Please delete and re-add." -msgid "failed. Please delete and re-add. " -msgstr "失败, 请删除后重新添加" - -#: backup/templates/backup/backupDestinations.html:72 -msgid "successful." -msgstr "成功" - -#: backup/templates/backup/backupDestinations.html:76 -msgid "Cannot add destination. Error message:" -msgstr "无法添加远程目录, 错误信息: " - -#: backup/templates/backup/backupDestinations.html:80 -msgid "Destination Added." -msgstr "远程目录已添加" - -#: backup/templates/backup/backupDestinations.html:84 -#: backup/templates/backup/backupSchedule.html:90 -#: backup/templates/backup/restore.html:95 -#: databases/templates/databases/createDatabase.html:98 -#: databases/templates/databases/deleteDatabase.html:69 -#: databases/templates/databases/phpMyAdmin.html:50 -#: dns/templates/dns/addDeleteDNSRecords.html:384 -#: dns/templates/dns/createDNSZone.html:70 -#: dns/templates/dns/createNameServer.html:102 -#: dns/templates/dns/deleteDNSZone.html:77 -#: dockerManager/templates/dockerManager/runContainer.html:185 -#: emailMarketing/templates/emailMarketing/website.html:161 -#: emailMarketing/templates/emailMarketing/website.html:420 -#: emailMarketing/templates/emailMarketing/website.html:471 -#: emailMarketing/templates/emailMarketing/website.html:633 -#: emailMarketing/templates/emailMarketing/website.html:689 -#: emailMarketing/templates/emailMarketing/website.html:749 -#: emailMarketing/templates/emailMarketing/website.html:835 -#: emailMarketing/templates/emailMarketing/website.html:955 -#: emailPremium/templates/emailPremium/emailLimits.html:101 -#: emailPremium/templates/emailPremium/emailPage.html:119 -#: mailServer/templates/mailServer/changeEmailPassword.html:114 -#: mailServer/templates/mailServer/createEmailAccount.html:115 -#: mailServer/templates/mailServer/deleteEmailAccount.html:98 -#: mailServer/templates/mailServer/dkimManager.html:156 -#: mailServer/templates/mailServer/emailForwarding.html:83 -#: manageSSL/templates/manageSSL/manageSSL.html:60 -#: userManagment/templates/userManagment/createUser.html:137 -#: userManagment/templates/userManagment/modifyUser.html:121 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 -#: websiteFunctions/templates/websiteFunctions/website.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:383 -#: websiteFunctions/templates/websiteFunctions/website.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:581 -#: websiteFunctions/templates/websiteFunctions/website.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:778 -#: websiteFunctions/templates/websiteFunctions/website.html:884 -msgid "Could not connect to server. Please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面" - -#: backup/templates/backup/backupDestinations.html:98 -#: backup/templates/backup/backupDestinations.html:106 -msgid "Check Connection" -msgstr "测试连接" - -#: backup/templates/backup/backupSchedule.html:54 -msgid "Local Path" -msgstr "" - -#: backup/templates/backup/backupSchedule.html:57 -msgid "Local directory where backups will be moved after creation." -msgstr "" - -#: backup/templates/backup/backupSchedule.html:82 -msgid "Cannot add schedule. Error message:" -msgstr "无法添加计划任务, 错误信息: " - -#: backup/templates/backup/backupSchedule.html:86 -msgid "Schedule Added" -msgstr "计划任务已添加" - -#: backup/templates/backup/index.html:3 -msgid "Back up Home - CyberPanel" -msgstr "备份 - CyberPanel" - -#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 -#: baseTemplate/templates/baseTemplate/homePage.html:95 -#: baseTemplate/templates/baseTemplate/homePage.html:97 -#: baseTemplate/templates/baseTemplate/index.html:561 -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:616 -msgid "Back up" -msgstr "备份" - -#: backup/templates/backup/index.html:14 -msgid "Back up and restore sites." -msgstr "备份与还原网站" - -#: backup/templates/backup/index.html:19 -#: baseTemplate/templates/baseTemplate/homePage.html:23 -#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 -#: dockerManager/templates/dockerManager/index.html:21 -#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 -#: mailServer/templates/mailServer/index.html:19 -#: managePHP/templates/managePHP/index.html:18 -#: manageSSL/templates/manageSSL/index.html:20 -#: packages/templates/packages/index.html:19 -#: serverLogs/templates/serverLogs/index.html:19 -#: serverStatus/templates/serverStatus/index.html:19 -#: tuning/templates/tuning/index.html:18 -#: userManagment/templates/userManagment/index.html:19 -#: websiteFunctions/templates/websiteFunctions/index.html:21 -msgid "Available Functions" -msgstr "可用功能" - -#: backup/templates/backup/index.html:28 -msgid "Back up Site" -msgstr "备份网站" - -#: backup/templates/backup/index.html:44 -#: baseTemplate/templates/baseTemplate/index.html:572 -#: baseTemplate/templates/baseTemplate/index.html:601 -#: userManagment/templates/userManagment/createACL.html:361 -#: userManagment/templates/userManagment/modifyACL.html:365 -msgid "Restore Back up" -msgstr "还原备份" - -#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 -#, fuzzy -#| msgid "Add/Delete Destination" -msgid "Add/Delete Destinations" -msgstr "添加/删除远程目录" - -#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 -#: baseTemplate/templates/baseTemplate/index.html:581 -#: userManagment/templates/userManagment/createACL.html:391 -#: userManagment/templates/userManagment/modifyACL.html:395 -#, fuzzy -#| msgid "Remote Backups" -msgid "Remote Back ups" -msgstr "远程备份" - -#: backup/templates/backup/remoteBackups.html:3 -msgid "Transfer Websites from Remote Server - CyberPanel" -msgstr "从远程服务器恢复网站 - CyberPanel" - -#: backup/templates/backup/remoteBackups.html:14 -#, fuzzy -#| msgid "Start Transfer" -msgid "Remote Transfer" -msgstr "开始迁移" - -#: backup/templates/backup/remoteBackups.html:15 -msgid "This feature can import website(s) from remote server" -msgstr "此功能可以从远程服务器导入网站" - -#: backup/templates/backup/remoteBackups.html:46 -msgid "Fetch Accounts" -msgstr "读取" - -#: backup/templates/backup/remoteBackups.html:55 -msgid "Start Transfer" -msgstr "开始迁移" - -#: backup/templates/backup/remoteBackups.html:59 -#: emailMarketing/templates/emailMarketing/website.html:324 -#: emailMarketing/templates/emailMarketing/website.html:804 -#: emailMarketing/templates/emailMarketing/website.html:928 -#: emailPremium/templates/emailPremium/emailLimits.html:75 -#: emailPremium/templates/emailPremium/emailPage.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:93 -#: filemanager/templates/filemanager/index.html:230 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#: websiteFunctions/templates/websiteFunctions/website.html:747 -#: websiteFunctions/templates/websiteFunctions/website.html:858 -msgid "Cancel" -msgstr "取消" - -#: backup/templates/backup/remoteBackups.html:72 -msgid "Could not connect, please refresh this page." -msgstr "无法连接, 请刷新此页面." - -#: backup/templates/backup/remoteBackups.html:76 -msgid "Accounts Successfully Fetched from remote server." -msgstr "成功读取记录." - -#: backup/templates/backup/remoteBackups.html:80 -msgid "Backup Process successfully started." -msgstr " 已成功创建." - -#: backup/templates/backup/remoteBackups.html:84 -msgid "Backup successfully cancelled." -msgstr "已成功添加." - -#: backup/templates/backup/remoteBackups.html:107 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Website" -msgstr "网站" - -#: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:143 -#: baseTemplate/templates/baseTemplate/index.html:768 -#: baseTemplate/templates/baseTemplate/index.html:770 -#: managePHP/templates/managePHP/installExtensions.html:61 -msgid "PHP" -msgstr "PHP" - -#: backup/templates/backup/remoteBackups.html:109 -#: packages/templates/packages/createPackage.html:112 -#: packages/templates/packages/deletePackage.html:60 -#: packages/templates/packages/listPackages.html:33 -#: packages/templates/packages/modifyPackage.html:125 -msgid "Package" -msgstr "套餐" - -#: backup/templates/backup/remoteBackups.html:110 -#: baseTemplate/templates/baseTemplate/index.html:505 -#: baseTemplate/templates/baseTemplate/index.html:507 -#: mailServer/templates/mailServer/listEmails.html:101 -#: userManagment/templates/userManagment/createUser.html:45 -#: userManagment/templates/userManagment/modifyUser.html:54 -#: userManagment/templates/userManagment/userProfile.html:41 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 -msgid "Email" -msgstr "Email" - -#: backup/templates/backup/restore.html:3 -msgid "Restore Website - CyberPanel" -msgstr "还原网站 - Cyberpanel" - -#: backup/templates/backup/restore.html:14 -#: backup/templates/backup/restore.html:21 -msgid "Restore Website" -msgstr "还原网站" - -#: backup/templates/backup/restore.html:15 -msgid "" -"This page can be used to restore your websites, Back up should be generated " -"from CyberPanel Back up generation tool, it will detect all Back ups under " -"/home/backup." -msgstr "" -"在此页面可以从备份中还原网站, 备份文件应当由CyberPanel备份工具创建 并且会自动" -"检测所有在/home/backup的备份" - -#: backup/templates/backup/restore.html:30 -msgid "Select Back up" -msgstr "选择备份" - -#: backup/templates/backup/restore.html:61 -#, fuzzy -#| msgid "Configurations" -msgid "Condition" -msgstr "配置" - -#: backup/templates/backup/restore.html:86 -#: databases/templates/databases/deleteDatabase.html:60 -#: databases/templates/databases/listDataBases.html:54 -#: dockerManager/templates/dockerManager/listContainers.html:57 -#: dockerManager/templates/dockerManager/runContainer.html:176 -#: emailMarketing/templates/emailMarketing/website.html:411 -#: emailMarketing/templates/emailMarketing/website.html:947 -#: firewall/templates/firewall/firewall.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:214 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 -#: websiteFunctions/templates/websiteFunctions/website.html:374 -#: websiteFunctions/templates/websiteFunctions/website.html:876 -msgid "Error message:" -msgstr "错误信息: " - -#: backup/templates/backup/restore.html:90 -msgid "Site related to this Back up already exists." -msgstr "网站相关备份已存在" - -#: baseTemplate/templates/baseTemplate/homePage.html:3 -msgid "Home - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/homePage.html:13 -msgid "Use the tabs to navigate through the control panel." -msgstr "通过标签页来浏览控制面板" - -#: baseTemplate/templates/baseTemplate/homePage.html:29 -#: userManagment/templates/userManagment/index.html:13 -msgid "User Functions" -msgstr "用户功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:31 -#: baseTemplate/templates/baseTemplate/index.html:361 -#: baseTemplate/templates/baseTemplate/index.html:362 -#: baseTemplate/templates/baseTemplate/index.html:363 -msgid "Users" -msgstr "用户" - -#: baseTemplate/templates/baseTemplate/homePage.html:40 -#: websiteFunctions/templates/websiteFunctions/index.html:13 -msgid "Website Functions" -msgstr "网站功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:51 -msgid "Add/Modify Packages" -msgstr "创建/修改套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:53 -#: baseTemplate/templates/baseTemplate/index.html:283 -#: baseTemplate/templates/baseTemplate/index.html:427 -#: baseTemplate/templates/baseTemplate/index.html:429 -#: packages/templates/packages/index.html:13 -msgid "Packages" -msgstr "套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:62 -#: databases/templates/databases/index.html:12 -msgid "Database Functions" -msgstr "数据库功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:64 -#: baseTemplate/templates/baseTemplate/index.html:452 -#: baseTemplate/templates/baseTemplate/index.html:453 -#: baseTemplate/templates/baseTemplate/index.html:454 -#: emailMarketing/templates/emailMarketing/website.html:51 -#: packages/templates/packages/createPackage.html:69 -#: packages/templates/packages/listPackages.html:37 -#: packages/templates/packages/listPackages.html:134 -#: packages/templates/packages/modifyPackage.html:73 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 -#: websiteFunctions/templates/websiteFunctions/website.html:54 -msgid "Databases" -msgstr "数据库" - -#: baseTemplate/templates/baseTemplate/homePage.html:73 -msgid "Control DNS" -msgstr "控制DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:75 -#: baseTemplate/templates/baseTemplate/index.html:290 -#: baseTemplate/templates/baseTemplate/index.html:477 -#: baseTemplate/templates/baseTemplate/index.html:479 -msgid "DNS" -msgstr "DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:84 -#: ftp/templates/ftp/index.html:12 -msgid "FTP Functions" -msgstr "FTP功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:86 -#: baseTemplate/templates/baseTemplate/index.html:297 -#: baseTemplate/templates/baseTemplate/index.html:539 -#: baseTemplate/templates/baseTemplate/index.html:541 -#: emailMarketing/templates/emailMarketing/website.html:46 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 -#: websiteFunctions/templates/websiteFunctions/website.html:49 -msgid "FTP" -msgstr "FTP" - -#: baseTemplate/templates/baseTemplate/homePage.html:106 -#: baseTemplate/templates/baseTemplate/homePage.html:108 -#: mailServer/templates/mailServer/listEmails.html:64 -#: packages/templates/packages/createPackage.html:77 -#: packages/templates/packages/listPackages.html:143 -#: packages/templates/packages/modifyPackage.html:80 -msgid "Emails" -msgstr "Emails" - -#: baseTemplate/templates/baseTemplate/homePage.html:117 -#: baseTemplate/templates/baseTemplate/homePage.html:119 -#: baseTemplate/templates/baseTemplate/index.html:617 -#: baseTemplate/templates/baseTemplate/index.html:618 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 -msgid "SSL" -msgstr "SSL" - -#: baseTemplate/templates/baseTemplate/homePage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:743 -#: baseTemplate/templates/baseTemplate/index.html:745 -#: baseTemplate/templates/baseTemplate/index.html:787 -#: emailPremium/templates/emailPremium/policyServer.html:30 -#: serverStatus/templates/serverStatus/index.html:13 -msgid "Server Status" -msgstr "服务器状态" - -#: baseTemplate/templates/baseTemplate/homePage.html:141 -msgid "PHP Configurations" -msgstr "设置PHP参数" - -#: baseTemplate/templates/baseTemplate/homePage.html:152 -#: baseTemplate/templates/baseTemplate/homePage.html:154 -#: baseTemplate/templates/baseTemplate/index.html:789 -#: dockerManager/templates/dockerManager/viewContainer.html:174 -#: emailMarketing/templates/emailMarketing/website.html:117 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 -#: websiteFunctions/templates/websiteFunctions/website.html:106 -msgid "Logs" -msgstr "日志" - -#: baseTemplate/templates/baseTemplate/homePage.html:163 -#: baseTemplate/templates/baseTemplate/homePage.html:165 -#: baseTemplate/templates/baseTemplate/index.html:811 -#: baseTemplate/templates/baseTemplate/index.html:813 -msgid "Security" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/homePage.html:188 -#, fuzzy -#| msgid "Resource" -msgid "Resources" -msgstr "资源" - -#: baseTemplate/templates/baseTemplate/homePage.html:197 -#: baseTemplate/templates/baseTemplate/index.html:139 -#: dockerManager/templates/dockerManager/viewContainer.html:48 -msgid "CPU Usage" -msgstr "CPU使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:218 -#: baseTemplate/templates/baseTemplate/index.html:150 -msgid "Ram Usage" -msgstr "内存使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:239 -msgid "Disk Usage '/'" -msgstr "硬盘使用量 '/'" - -#: baseTemplate/templates/baseTemplate/index.html:159 -#: emailMarketing/templates/emailMarketing/website.html:58 -#: emailMarketing/templates/emailMarketing/website.html:78 -#: userManagment/templates/userManagment/listUsers.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 -#: websiteFunctions/templates/websiteFunctions/website.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:77 -msgid "Disk Usage" -msgstr "硬盘使用量" - -#: baseTemplate/templates/baseTemplate/index.html:192 -#: baseTemplate/templates/baseTemplate/index.html:195 -#: baseTemplate/templates/baseTemplate/index.html:199 -msgid "CyberPanel" -msgstr "CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:197 -#: baseTemplate/templates/baseTemplate/index.html:201 -msgid "Web Hosting Control Panel" -msgstr "Web Hosting控制面板" - -#: baseTemplate/templates/baseTemplate/index.html:203 -msgid "Close sidebar" -msgstr "关闭侧边栏" - -#: baseTemplate/templates/baseTemplate/index.html:209 -msgid "My Account" -msgstr "我的账号" - -#: baseTemplate/templates/baseTemplate/index.html:228 -msgid "Edit profile" -msgstr "编辑资料" - -#: baseTemplate/templates/baseTemplate/index.html:230 -#: baseTemplate/templates/baseTemplate/index.html:369 -#: userManagment/templates/userManagment/index.html:24 -#: userManagment/templates/userManagment/index.html:27 -msgid "View Profile" -msgstr "查看资料" - -#: baseTemplate/templates/baseTemplate/index.html:237 -#: baseTemplate/templates/baseTemplate/index.html:319 -msgid "Logout" -msgstr "登出" - -#: baseTemplate/templates/baseTemplate/index.html:249 -#: baseTemplate/templates/baseTemplate/index.html:254 -#: baseTemplate/templates/baseTemplate/index.html:259 -msgid "CPU Load Average" -msgstr "CPU平均负载" - -#: baseTemplate/templates/baseTemplate/index.html:265 -msgid "Dashboard Quick Menu" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:304 -#: baseTemplate/templates/baseTemplate/index.html:725 -#: baseTemplate/templates/baseTemplate/index.html:727 -msgid "Tuning" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:332 -msgid "Overview" -msgstr "概览" - -#: baseTemplate/templates/baseTemplate/index.html:334 -#: baseTemplate/templates/baseTemplate/index.html:335 -#, fuzzy -#| msgid "IP Address" -msgid "Server IP Address" -msgstr "IP地址" - -#: baseTemplate/templates/baseTemplate/index.html:339 -#: baseTemplate/templates/baseTemplate/index.html:341 -msgid "Dashboard" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:344 -#: baseTemplate/templates/baseTemplate/index.html:346 -#: baseTemplate/templates/baseTemplate/index.html:348 -#: baseTemplate/templates/baseTemplate/versionManagment.html:10 -#: userManagment/templates/userManagment/createACL.html:47 -#: userManagment/templates/userManagment/createACL.html:52 -#: userManagment/templates/userManagment/modifyACL.html:51 -#: userManagment/templates/userManagment/modifyACL.html:56 -msgid "Version Management" -msgstr "版本管理" - -#: baseTemplate/templates/baseTemplate/index.html:351 -#: baseTemplate/templates/baseTemplate/index.html:352 -#: baseTemplate/templates/baseTemplate/index.html:354 -#, fuzzy -#| msgid "Connection to" -msgid "Connect" -msgstr "连接到" - -#: baseTemplate/templates/baseTemplate/index.html:358 -msgid "Main" -msgstr "主要功能" - -#: baseTemplate/templates/baseTemplate/index.html:372 -#: userManagment/templates/userManagment/createACL.html:64 -#: userManagment/templates/userManagment/createUser.html:12 -#: userManagment/templates/userManagment/modifyACL.html:68 -msgid "Create New User" -msgstr "创建新用户" - -#: baseTemplate/templates/baseTemplate/index.html:375 -#: userManagment/templates/userManagment/createACL.html:73 -#: userManagment/templates/userManagment/index.html:36 -#: userManagment/templates/userManagment/index.html:39 -#: userManagment/templates/userManagment/listUsers.html:13 -#: userManagment/templates/userManagment/listUsers.html:19 -#: userManagment/templates/userManagment/modifyACL.html:77 -#, fuzzy -#| msgid "Modify User" -msgid "List Users" -msgstr "修改用户" - -#: baseTemplate/templates/baseTemplate/index.html:378 -#: userManagment/templates/userManagment/index.html:61 -#: userManagment/templates/userManagment/index.html:64 -#: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:102 -msgid "Modify User" -msgstr "修改用户" - -#: baseTemplate/templates/baseTemplate/index.html:380 -#: userManagment/templates/userManagment/createACL.html:82 -#: userManagment/templates/userManagment/modifyACL.html:86 -#: userManagment/templates/userManagment/resellerCenter.html:12 -#: userManagment/templates/userManagment/resellerCenter.html:19 -#, fuzzy -#| msgid "Reseller" -msgid "Reseller Center" -msgstr "分销商" - -#: baseTemplate/templates/baseTemplate/index.html:383 -#: userManagment/templates/userManagment/createACL.html:12 -#, fuzzy -#| msgid "Create New User" -msgid "Create New ACL" -msgstr "创建新用户" - -#: baseTemplate/templates/baseTemplate/index.html:386 -#: userManagment/templates/userManagment/deleteACL.html:12 -#: userManagment/templates/userManagment/deleteACL.html:40 -#, fuzzy -#| msgid "Delete" -msgid "Delete ACL" -msgstr "删除" - -#: baseTemplate/templates/baseTemplate/index.html:389 -#, fuzzy -#| msgid "Modify User" -msgid "Modify ACL" -msgstr "修改用户" - -#: baseTemplate/templates/baseTemplate/index.html:392 -#: userManagment/templates/userManagment/apiAccess.html:13 -#: userManagment/templates/userManagment/apiAccess.html:20 -#, fuzzy -#| msgid "Access Log" -msgid "API Access" -msgstr "访问日志" - -#: baseTemplate/templates/baseTemplate/index.html:408 -#: userManagment/templates/userManagment/createACL.html:112 -#: userManagment/templates/userManagment/modifyACL.html:116 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 -#: websiteFunctions/templates/websiteFunctions/index.html:43 -#: websiteFunctions/templates/websiteFunctions/index.html:45 -msgid "Create Website" -msgstr "创建网站" - -#: baseTemplate/templates/baseTemplate/index.html:414 -#: userManagment/templates/userManagment/createACL.html:121 -#: userManagment/templates/userManagment/modifyACL.html:125 -#: websiteFunctions/templates/websiteFunctions/index.html:67 -#: websiteFunctions/templates/websiteFunctions/index.html:69 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 -msgid "Modify Website" -msgstr "修改网站" - -#: baseTemplate/templates/baseTemplate/index.html:417 -#: websiteFunctions/templates/websiteFunctions/index.html:81 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 -msgid "Suspend/Unsuspend" -msgstr "禁用/启用" - -#: baseTemplate/templates/baseTemplate/index.html:420 -#: userManagment/templates/userManagment/createACL.html:139 -#: userManagment/templates/userManagment/deleteACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:143 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 -#: websiteFunctions/templates/websiteFunctions/index.html:90 -#: websiteFunctions/templates/websiteFunctions/index.html:92 -msgid "Delete Website" -msgstr "删除网站" - -#: baseTemplate/templates/baseTemplate/index.html:438 -#: baseTemplate/templates/baseTemplate/index.html:671 -#: packages/templates/packages/listPackages.html:13 -#: packages/templates/packages/listPackages.html:19 -#: userManagment/templates/userManagment/createACL.html:161 -#: userManagment/templates/userManagment/modifyACL.html:165 -#, fuzzy -#| msgid "Packages" -msgid "List Packages" -msgstr "套餐" - -#: baseTemplate/templates/baseTemplate/index.html:441 -#: packages/templates/packages/deletePackage.html:12 -#: packages/templates/packages/deletePackage.html:18 -#: packages/templates/packages/deletePackage.html:39 -#: packages/templates/packages/index.html:38 -#: packages/templates/packages/index.html:41 -#: userManagment/templates/userManagment/createACL.html:170 -#: userManagment/templates/userManagment/modifyACL.html:174 -msgid "Delete Package" -msgstr "删除套餐" - -#: baseTemplate/templates/baseTemplate/index.html:444 -#: packages/templates/packages/index.html:51 -#: packages/templates/packages/index.html:54 -#: packages/templates/packages/modifyPackage.html:9 -#: packages/templates/packages/modifyPackage.html:15 -#: packages/templates/packages/modifyPackage.html:108 -#: userManagment/templates/userManagment/createACL.html:179 -#: userManagment/templates/userManagment/modifyACL.html:183 -msgid "Modify Package" -msgstr "修改套餐" - -#: baseTemplate/templates/baseTemplate/index.html:460 -#: databases/templates/databases/createDatabase.html:12 -#: databases/templates/databases/createDatabase.html:19 -#: databases/templates/databases/createDatabase.html:79 -#: databases/templates/databases/index.html:25 -#: databases/templates/databases/index.html:27 -#: databases/templates/databases/phpMyAdmin.html:12 -#: databases/templates/databases/phpMyAdmin.html:19 -#: userManagment/templates/userManagment/createACL.html:191 -#: userManagment/templates/userManagment/modifyACL.html:195 -msgid "Create Database" -msgstr "创建数据库" - -#: baseTemplate/templates/baseTemplate/index.html:463 -#: databases/templates/databases/deleteDatabase.html:12 -#: databases/templates/databases/deleteDatabase.html:19 -#: databases/templates/databases/deleteDatabase.html:51 -#: databases/templates/databases/index.html:37 -#: databases/templates/databases/index.html:39 -#: userManagment/templates/userManagment/createACL.html:200 -#: userManagment/templates/userManagment/modifyACL.html:204 -msgid "Delete Database" -msgstr "删除数据库" - -#: baseTemplate/templates/baseTemplate/index.html:466 -#: databases/templates/databases/index.html:48 -#: databases/templates/databases/index.html:50 -#: databases/templates/databases/listDataBases.html:13 -#: databases/templates/databases/listDataBases.html:19 -#: userManagment/templates/userManagment/createACL.html:209 -#: userManagment/templates/userManagment/modifyACL.html:213 -msgid "List Databases" -msgstr "查看数据库" - -#: baseTemplate/templates/baseTemplate/index.html:468 -#: baseTemplate/templates/baseTemplate/index.html:469 -#: databases/templates/databases/index.html:59 -#: databases/templates/databases/index.html:61 -msgid "PHPMYAdmin" -msgstr "PHPMYADMIN" - -#: baseTemplate/templates/baseTemplate/index.html:485 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 -#: dns/templates/dns/index.html:74 -#: userManagment/templates/userManagment/createACL.html:221 -#: userManagment/templates/userManagment/modifyACL.html:225 -msgid "Create Nameserver" -msgstr "创建名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:488 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Configure Default Nameservers" -msgstr "创建名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:488 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Config Default Nameservers" -msgstr "创建名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:491 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 -#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 -#: dns/templates/dns/index.html:86 -msgid "Create DNS Zone" -msgstr "创建DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:494 -#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 -#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 -#: dns/templates/dns/index.html:98 -#: userManagment/templates/userManagment/createACL.html:239 -#: userManagment/templates/userManagment/modifyACL.html:243 -msgid "Delete Zone" -msgstr "删除DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:497 -msgid "Add/Delete Records" -msgstr "添加/删除记录" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:12 -#: mailServer/templates/mailServer/createEmailAccount.html:19 -msgid "Create Email Account" -msgstr "创建Email用户" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:98 -#: mailServer/templates/mailServer/index.html:25 -#: mailServer/templates/mailServer/index.html:28 -#: userManagment/templates/userManagment/createACL.html:262 -#: userManagment/templates/userManagment/modifyACL.html:266 -msgid "Create Email" -msgstr "创建Email" - -#: baseTemplate/templates/baseTemplate/index.html:516 -#: userManagment/templates/userManagment/createACL.html:271 -#: userManagment/templates/userManagment/modifyACL.html:275 -#, fuzzy -#| msgid "List Domains" -msgid "List Emails" -msgstr "查看域名" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:12 -#: mailServer/templates/mailServer/deleteEmailAccount.html:19 -msgid "Delete Email Account" -msgstr "删除Email用户" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:73 -#: mailServer/templates/mailServer/index.html:38 -#: mailServer/templates/mailServer/index.html:41 -#: userManagment/templates/userManagment/createACL.html:280 -#: userManagment/templates/userManagment/modifyACL.html:284 -msgid "Delete Email" -msgstr "删除Email" - -#: baseTemplate/templates/baseTemplate/index.html:522 -#: userManagment/templates/userManagment/createACL.html:289 -#: userManagment/templates/userManagment/modifyACL.html:293 -#, fuzzy -#| msgid "Email Log" -msgid "Email Forwarding" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:525 -#: databases/templates/databases/listDataBases.html:90 -#: ftp/templates/ftp/listFTPAccounts.html:108 -#: mailServer/templates/mailServer/changeEmailPassword.html:97 -#: mailServer/templates/mailServer/index.html:51 -#: mailServer/templates/mailServer/index.html:54 -#: mailServer/templates/mailServer/listEmails.html:76 -msgid "Change Password" -msgstr "修改Email" - -#: baseTemplate/templates/baseTemplate/index.html:528 -#: mailServer/templates/mailServer/dkimManager.html:13 -#: mailServer/templates/mailServer/dkimManager.html:22 -#: mailServer/templates/mailServer/dkimManager.html:75 -#: userManagment/templates/userManagment/createACL.html:309 -#: userManagment/templates/userManagment/modifyACL.html:313 -#, fuzzy -#| msgid "File Manager" -msgid "DKIM Manager" -msgstr "文件管理" - -#: baseTemplate/templates/baseTemplate/index.html:530 -#: baseTemplate/templates/baseTemplate/index.html:531 -msgid "Access Webmail" -msgstr "进入Webmail" - -#: baseTemplate/templates/baseTemplate/index.html:547 -#: emailMarketing/templates/emailMarketing/website.html:886 -#: emailMarketing/templates/emailMarketing/website.html:889 -#: ftp/templates/ftp/createFTPAccount.html:12 -#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 -#: ftp/templates/ftp/index.html:26 -#: userManagment/templates/userManagment/createACL.html:322 -#: userManagment/templates/userManagment/modifyACL.html:326 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 -#: websiteFunctions/templates/websiteFunctions/website.html:821 -#: websiteFunctions/templates/websiteFunctions/website.html:824 -msgid "Create FTP Account" -msgstr "创建FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:550 -#: emailMarketing/templates/emailMarketing/website.html:898 -#: emailMarketing/templates/emailMarketing/website.html:901 -#: ftp/templates/ftp/deleteFTPAccount.html:12 -#: ftp/templates/ftp/deleteFTPAccount.html:18 -#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 -#: ftp/templates/ftp/index.html:37 -#: userManagment/templates/userManagment/createACL.html:331 -#: userManagment/templates/userManagment/modifyACL.html:335 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 -#: websiteFunctions/templates/websiteFunctions/website.html:830 -#: websiteFunctions/templates/websiteFunctions/website.html:833 -msgid "Delete FTP Account" -msgstr "删除FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:553 -#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 -#: ftp/templates/ftp/listFTPAccounts.html:13 -#: ftp/templates/ftp/listFTPAccounts.html:19 -#: userManagment/templates/userManagment/createACL.html:340 -#: userManagment/templates/userManagment/modifyACL.html:344 -msgid "List FTP Accounts" -msgstr "查看FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:575 -#: userManagment/templates/userManagment/createACL.html:370 -#: userManagment/templates/userManagment/modifyACL.html:374 -msgid "Add/Delete Destination" -msgstr "添加/删除远程目录" - -#: baseTemplate/templates/baseTemplate/index.html:590 -msgid "Incremental Back up - Beta" -msgstr "增量备份 - Beta" - -#: baseTemplate/templates/baseTemplate/index.html:592 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Incremental Back up" -msgstr "取消备份" - -#: baseTemplate/templates/baseTemplate/index.html:598 -#, fuzzy -#| msgid "Restore Back up" -msgid "Create/Restore Back up" -msgstr "还原备份" - -#: baseTemplate/templates/baseTemplate/index.html:601 -#, fuzzy -#| msgid "Add/Delete Destination" -msgid "Add/Remove Destinations" -msgstr "添加/删除远程目录" - -#: baseTemplate/templates/baseTemplate/index.html:604 -#, fuzzy -#| msgid "Schedule Back up" -msgid "Schedule Back ups" -msgstr "备份计划" - -#: baseTemplate/templates/baseTemplate/index.html:607 -#, fuzzy -#| msgid "Transfer Websites from Remote Server - CyberPanel" -msgid "Restore from Remote Server" -msgstr "从远程服务器恢复网站 - CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:607 -#, fuzzy -#| msgid "Restore Website" -msgid "Restore from Remote" -msgstr "还原网站" - -#: baseTemplate/templates/baseTemplate/index.html:624 -#: manageSSL/templates/manageSSL/index.html:29 -#: manageSSL/templates/manageSSL/index.html:31 -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/manageSSL.html:20 -#: userManagment/templates/userManagment/createACL.html:404 -#: userManagment/templates/userManagment/modifyACL.html:408 -msgid "Manage SSL" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:627 -#: manageSSL/templates/manageSSL/index.html:45 -#: manageSSL/templates/manageSSL/index.html:47 -#: userManagment/templates/userManagment/createACL.html:413 -#: userManagment/templates/userManagment/modifyACL.html:417 -msgid "Hostname SSL" -msgstr "面板SSL" - -#: baseTemplate/templates/baseTemplate/index.html:630 -#: manageSSL/templates/manageSSL/index.html:60 -#: manageSSL/templates/manageSSL/index.html:62 -#: userManagment/templates/userManagment/createACL.html:422 -#: userManagment/templates/userManagment/modifyACL.html:426 -#, fuzzy -#| msgid "Server Logs" -msgid "MailServer SSL" -msgstr "服务器日志" - -#: baseTemplate/templates/baseTemplate/index.html:637 -msgid "Server" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:644 -#: baseTemplate/templates/baseTemplate/index.html:660 -#: baseTemplate/templates/baseTemplate/index.html:688 -#: baseTemplate/templates/baseTemplate/index.html:705 -#: baseTemplate/templates/baseTemplate/index.html:846 -msgid "NEW" -msgstr "新功能" - -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Web Based Terminal" -msgstr "网络终端" - -#: baseTemplate/templates/baseTemplate/index.html:657 -#: baseTemplate/templates/baseTemplate/index.html:659 -msgid "CloudLinux" -msgstr "CloudLinux" - -#: baseTemplate/templates/baseTemplate/index.html:666 -#, fuzzy -#| msgid "Create Package" -msgid "Create Cloud Linux Package" -msgstr "创建套餐" - -#: baseTemplate/templates/baseTemplate/index.html:671 -msgid "List Cloud Linux Package" -msgstr "列出套餐" - -#: baseTemplate/templates/baseTemplate/index.html:676 -msgid "Monitor Usage of your Websites" -msgstr "监控您的网站使用情况" - -#: baseTemplate/templates/baseTemplate/index.html:676 -#, fuzzy -#| msgid "Resource Usage" -msgid "Monitor Usage" -msgstr "资源使用量" - -#: baseTemplate/templates/baseTemplate/index.html:685 -#: baseTemplate/templates/baseTemplate/index.html:687 -#, fuzzy -#| msgid "Configurations" -msgid "Containerization" -msgstr "配置" - -#: baseTemplate/templates/baseTemplate/index.html:694 -#, fuzzy -#| msgid "Create Website" -msgid "Create Website Limits" -msgstr "创建网站" - -#: baseTemplate/templates/baseTemplate/index.html:694 -#, fuzzy -#| msgid "Create Email" -msgid "Create Limits" -msgstr "创建Email" - -#: baseTemplate/templates/baseTemplate/index.html:702 -msgid "Docker" -msgstr "Docker" - -#: baseTemplate/templates/baseTemplate/index.html:704 -#, fuzzy -#| msgid "File Manager" -msgid "Docker Manager" -msgstr "文件管理" - -#: baseTemplate/templates/baseTemplate/index.html:711 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Docker Images" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:711 -#: dockerManager/templates/dockerManager/index.html:49 -#: dockerManager/templates/dockerManager/index.html:51 -#: dockerManager/templates/dockerManager/manageImages.html:14 -#, fuzzy -#| msgid "Change Email Password" -msgid "Manage Images" -msgstr "修改Email密码" - -#: baseTemplate/templates/baseTemplate/index.html:714 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Docker Containers" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:714 -#: dockerManager/templates/dockerManager/index.html:29 -#: dockerManager/templates/dockerManager/index.html:31 -#, fuzzy -#| msgid "Manage PHP Installations" -msgid "Manage Containers" -msgstr "管理PHP" - -#: baseTemplate/templates/baseTemplate/index.html:717 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Create New Docker Container" -msgstr "创建新用户 - CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:717 -#, fuzzy -#| msgid "Create New User" -msgid "Create New Container" -msgstr "创建新用户" - -#: baseTemplate/templates/baseTemplate/index.html:733 -#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 -#: tuning/templates/tuning/liteSpeedTuning.html:12 -msgid "LiteSpeed Tuning" -msgstr "LiteSpeed设置" - -#: baseTemplate/templates/baseTemplate/index.html:736 -#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 -#: tuning/templates/tuning/phpTuning.html:13 -#: tuning/templates/tuning/phpTuning.html:149 -msgid "PHP Tuning" -msgstr "PHP设置" - -#: baseTemplate/templates/baseTemplate/index.html:751 -#: serverStatus/templates/serverStatus/topProcesses.html:14 -#: serverStatus/templates/serverStatus/topProcesses.html:179 -#, fuzzy -#| msgid "LiteSpeed Processes" -msgid "Top Processes" -msgstr "LiteSpeed进程" - -#: baseTemplate/templates/baseTemplate/index.html:754 -#: serverStatus/templates/serverStatus/index.html:25 -#: serverStatus/templates/serverStatus/index.html:28 -msgid "LiteSpeed Status" -msgstr "LiteSpeed状态" - -#: baseTemplate/templates/baseTemplate/index.html:757 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 -#: serverStatus/templates/serverStatus/index.html:38 -msgid "CyberPanel Main Log File" -msgstr "Cybapenl主日志" - -#: baseTemplate/templates/baseTemplate/index.html:760 -#, fuzzy -#| msgid "Server Status" -msgid "Services Status" -msgstr "服务器状态" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/installExtensions.html:13 -msgid "Install PHP Extensions" -msgstr "安装PHP扩展" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/index.html:24 -#: managePHP/templates/managePHP/index.html:26 -msgid "Install Extensions" -msgstr "安装扩展" - -#: baseTemplate/templates/baseTemplate/index.html:779 -#: managePHP/templates/managePHP/index.html:35 -#: managePHP/templates/managePHP/index.html:37 -msgid "Edit PHP Configs" -msgstr "编辑PHP配置" - -#: baseTemplate/templates/baseTemplate/index.html:795 -msgid "Access Log" -msgstr "访问日志" - -#: baseTemplate/templates/baseTemplate/index.html:797 -#: emailMarketing/templates/emailMarketing/website.html:139 -#: serverLogs/templates/serverLogs/errorLogs.html:13 -#: serverLogs/templates/serverLogs/index.html:37 -#: serverLogs/templates/serverLogs/index.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Error Logs" -msgstr "错误日志" - -#: baseTemplate/templates/baseTemplate/index.html:799 -#: emailPremium/templates/emailPremium/emailPage.html:144 -#: serverLogs/templates/serverLogs/emailLogs.html:14 -#: serverLogs/templates/serverLogs/index.html:49 -#: serverLogs/templates/serverLogs/index.html:52 -msgid "Email Logs" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:799 -msgid "Email Log" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:801 -#: serverLogs/templates/serverLogs/ftplogs.html:13 -#: serverLogs/templates/serverLogs/index.html:61 -#: serverLogs/templates/serverLogs/index.html:64 -msgid "FTP Logs" -msgstr "FTP日志" - -#: baseTemplate/templates/baseTemplate/index.html:803 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 -#, fuzzy -#| msgid "Security Functions" -msgid "ModSecurity Audit Logs" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/index.html:803 -msgid "ModSec Audit Logs" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:819 -msgid "Firewall Home" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:819 -#: firewall/templates/firewall/csf.html:119 -#: firewall/templates/firewall/index.html:25 -#: firewall/templates/firewall/index.html:27 -msgid "Firewall" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:821 -#: firewall/templates/firewall/index.html:36 -#: firewall/templates/firewall/index.html:38 -#: firewall/templates/firewall/secureSSH.html:13 -#: firewall/templates/firewall/secureSSH.html:20 -msgid "Secure SSH" -msgstr "SSH加固" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:58 -#, fuzzy -#| msgid "Edit PHP Configurations" -msgid "ModSecurity Configurations" -msgstr "设置PHP参数" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:60 -#, fuzzy -#| msgid "Security" -msgid "ModSecurity Conf" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/index.html:826 -#: firewall/templates/firewall/index.html:69 -#: firewall/templates/firewall/index.html:71 -#: firewall/templates/firewall/modSecurityRules.html:20 -#, fuzzy -#| msgid "Security" -msgid "ModSecurity Rules" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/index.html:829 -#: firewall/templates/firewall/index.html:80 -#: firewall/templates/firewall/index.html:82 -msgid "ModSecurity Rules Packs" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/index.html:47 -msgid "ConfigServer Security & Firewall (CSF)" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/csf.html:21 -#: firewall/templates/firewall/csf.html:86 -#: firewall/templates/firewall/csf.html:95 -#: firewall/templates/firewall/index.html:49 -msgid "CSF" -msgstr "CSF" - -#: baseTemplate/templates/baseTemplate/index.html:835 -#, fuzzy -#| msgid "Configurations" -msgid "CageFS Configurations" -msgstr "配置" - -#: baseTemplate/templates/baseTemplate/index.html:835 -msgid "CageFS" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:843 -#: baseTemplate/templates/baseTemplate/index.html:845 -#, fuzzy -#| msgid "Mail Functions" -msgid "Mail Settings" -msgstr "邮件功能" - -#: baseTemplate/templates/baseTemplate/index.html:852 -#: emailPremium/templates/emailPremium/policyServer.html:20 -msgid "Email Policy Server" -msgstr "电子邮件策略服务器" - -#: baseTemplate/templates/baseTemplate/index.html:855 -#, fuzzy -#| msgid "Email Logs" -msgid "Email Limits" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:858 -#, fuzzy -#| msgid "Configurations" -msgid "SpamAssassin Configurations" -msgstr "配置" - -#: baseTemplate/templates/baseTemplate/index.html:858 -#: emailPremium/templates/emailPremium/SpamAssassin.html:25 -#: firewall/templates/firewall/spamassassin.html:20 -msgid "SpamAssassin" -msgstr "SpamAssassin垃圾邮件过滤" - -#: baseTemplate/templates/baseTemplate/index.html:861 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 -#: emailMarketing/templates/emailMarketing/website.html:978 -#: websiteFunctions/templates/websiteFunctions/website.html:909 -#, fuzzy -#| msgid "Email Log" -msgid "Email Marketing" -msgstr "Email日志" - -#: baseTemplate/templates/baseTemplate/index.html:869 -#: baseTemplate/templates/baseTemplate/index.html:871 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Services" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:877 -#: manageServices/templates/manageServices/managePowerDNS.html:25 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage PowerDNS" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:880 -#: manageServices/templates/manageServices/managePostfix.html:22 -msgid "Manage Postfix" -msgstr "管理Postfix" - -#: baseTemplate/templates/baseTemplate/index.html:883 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage FTP" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:890 -#: baseTemplate/templates/baseTemplate/index.html:892 -#: pluginHolder/templates/pluginHolder/plugins.html:14 -#: pluginHolder/templates/pluginHolder/plugins.html:21 -msgid "Plugins" -msgstr "扩展" - -#: baseTemplate/templates/baseTemplate/index.html:898 -#, fuzzy -#| msgid "Install Extensions" -msgid "Installed Plugins" -msgstr "安装扩展" - -#: baseTemplate/templates/baseTemplate/index.html:898 -#, fuzzy -#| msgid "Install" -msgid "Installed" -msgstr "安装" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:3 -msgid "Version Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:11 -msgid "" -"On this page you can manage versions and or upgrade to latest version of " -"CyberPanel" -msgstr "此页面可以查看并更新至CyberPanel最新版本 " - -#: baseTemplate/templates/baseTemplate/versionManagment.html:25 -msgid "Current Version" -msgstr "当前版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:33 -msgid "Build" -msgstr "编译" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:42 -msgid "Latest Version" -msgstr "最新版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:50 -msgid "Latest Build" -msgstr "最新编译" - -#: containerization/templates/containerization/listWebsites.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Limits - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: containerization/templates/containerization/listWebsites.html:15 -msgid "Launch and set limits for the websites." -msgstr "启动并设置网站限制" - -#: containerization/templates/containerization/notAvailable.html:14 -msgid "CyberPanel Ent is required for Containerization." -msgstr "容器化需要CyberPanel Ent。" - -#: containerization/templates/containerization/notAvailable.html:22 -msgid "Containerization is only available on CyberPanel Ent. " -msgstr "容器化仅在CyberPanel Ent上可用。" - -#: containerization/templates/containerization/notAvailable.html:39 -msgid "" -"Required packages are not installed on this server. Please proceed to " -"installation." -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid " limits - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: containerization/templates/containerization/websiteContainerLimit.html:14 -#, fuzzy -#| msgid "Disk Usage" -msgid "Limits/Usage" -msgstr "硬盘使用量" - -#: containerization/templates/containerization/websiteContainerLimit.html:16 -msgid "Set limits and view usage for " -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:25 -msgid "" -"Limits are not being inforced, click Edit Limits to inforace the limits." -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:33 -msgid "Limit" -msgstr "限制" - -#: containerization/templates/containerization/websiteContainerLimit.html:34 -#: dns/templates/dns/addDeleteDNSRecords.html:330 -msgid "Value" -msgstr "内容" - -#: containerization/templates/containerization/websiteContainerLimit.html:40 -#: containerization/templates/containerization/websiteContainerLimit.html:77 -#, fuzzy -#| msgid "CPU Usage" -msgid "CPU Percentage" -msgstr "CPU使用量" - -#: containerization/templates/containerization/websiteContainerLimit.html:44 -#: serverStatus/templates/serverStatus/topProcesses.html:131 -msgid "Memory" -msgstr "内存" - -#: containerization/templates/containerization/websiteContainerLimit.html:48 -#: containerization/templates/containerization/websiteContainerLimit.html:91 -msgid "I/O" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:56 -#: containerization/templates/containerization/websiteContainerLimit.html:107 -msgid "Network Speed" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:84 -#, fuzzy -#| msgid "Memory Soft Limit" -msgid "Memory Limit" -msgstr "内存软限制" - -#: databases/templates/databases/createDatabase.html:3 -msgid "Create New Database - CyberPanel" -msgstr "创建数据库 - CyberPanel" - -#: databases/templates/databases/createDatabase.html:13 -#: databases/templates/databases/phpMyAdmin.html:13 -msgid "Create a new database on this page." -msgstr "在此页面创建数据库" - -#: databases/templates/databases/createDatabase.html:40 -#: databases/templates/databases/listDataBases.html:105 -msgid "Database Name" -msgstr "数据库名字" - -#: databases/templates/databases/createDatabase.html:48 -#: firewall/templates/firewall/secureSSH.html:120 -#: ftp/templates/ftp/createFTPAccount.html:57 -#: ftp/templates/ftp/listFTPAccounts.html:123 -#: mailServer/templates/mailServer/createEmailAccount.html:59 -msgid "User Name" -msgstr "用户名" - -#: databases/templates/databases/createDatabase.html:61 -#: databases/templates/databases/listDataBases.html:74 -#: ftp/templates/ftp/createFTPAccount.html:73 -#: ftp/templates/ftp/listFTPAccounts.html:92 -#: mailServer/templates/mailServer/changeEmailPassword.html:74 -#: mailServer/templates/mailServer/createEmailAccount.html:74 -#: userManagment/templates/userManagment/createUser.html:90 -#: userManagment/templates/userManagment/modifyUser.html:68 -msgid "Generate" -msgstr "生成" - -#: databases/templates/databases/createDatabase.html:66 -#: databases/templates/databases/listDataBases.html:77 -#: ftp/templates/ftp/createFTPAccount.html:78 -#: ftp/templates/ftp/listFTPAccounts.html:96 -#: mailServer/templates/mailServer/changeEmailPassword.html:79 -#: mailServer/templates/mailServer/createEmailAccount.html:79 -#: userManagment/templates/userManagment/createUser.html:95 -#: userManagment/templates/userManagment/modifyUser.html:73 -#, fuzzy -#| msgid "Change Password" -msgid "Generated Password" -msgstr "修改Email" - -#: databases/templates/databases/createDatabase.html:71 -#: databases/templates/databases/listDataBases.html:84 -#: ftp/templates/ftp/createFTPAccount.html:85 -#: ftp/templates/ftp/listFTPAccounts.html:103 -#: mailServer/templates/mailServer/changeEmailPassword.html:86 -#: mailServer/templates/mailServer/createEmailAccount.html:86 -#: userManagment/templates/userManagment/createUser.html:101 -#: userManagment/templates/userManagment/modifyUser.html:79 -#, fuzzy -#| msgid "Users" -msgid "Use" -msgstr "用户" - -#: databases/templates/databases/createDatabase.html:89 -#: databases/templates/databases/phpMyAdmin.html:41 -msgid "Cannot create database. Error message:" -msgstr "无法创建数据库, 错误提示: " - -#: databases/templates/databases/createDatabase.html:93 -#: databases/templates/databases/phpMyAdmin.html:45 -msgid "Database created successfully." -msgstr "成功创建数据库" - -#: databases/templates/databases/deleteDatabase.html:3 -msgid "Delete Database - CyberPanel" -msgstr "删除数据库 - CyberPanel" - -#: databases/templates/databases/deleteDatabase.html:13 -msgid "Delete an existing database on this page." -msgstr "在此页面删除已有数据库" - -#: databases/templates/databases/deleteDatabase.html:38 -msgid "Select Database" -msgstr "选择数据库" - -#: databases/templates/databases/deleteDatabase.html:64 -msgid "Database deleted successfully." -msgstr "成功删除数据库" - -#: databases/templates/databases/index.html:3 -msgid "Database Functions - CyberPanel" -msgstr "数据库功能 - CyberPanel" - -#: databases/templates/databases/index.html:13 -msgid "Create, edit and delete databases on this page." -msgstr "在此页面创建, 编辑和删除数据库" - -#: databases/templates/databases/listDataBases.html:3 -msgid "List Databases - CyberPanel" -msgstr "查看数据库 - CyberPanel" - -#: databases/templates/databases/listDataBases.html:14 -msgid "List Databases or change their passwords." -msgstr "查看数据库或修改密码" - -#: databases/templates/databases/listDataBases.html:26 -#: dns/templates/dns/addDeleteDNSRecords.html:42 -#: ftp/templates/ftp/deleteFTPAccount.html:39 -#: ftp/templates/ftp/listFTPAccounts.html:42 -#: mailServer/templates/mailServer/listEmails.html:43 -#: tuning/templates/tuning/phpTuning.html:30 -msgid "Select Domain" -msgstr "选择域名" - -#: databases/templates/databases/listDataBases.html:44 -#: dns/templates/dns/addDeleteDNSRecords.html:367 -#: ftp/templates/ftp/listFTPAccounts.html:61 -msgid "Records successfully fetched for" -msgstr "成功读取记录" - -#: databases/templates/databases/listDataBases.html:49 -msgid "Password changed for: " -msgstr "已为修改密码 " - -#: databases/templates/databases/listDataBases.html:53 -msgid "Cannot change password for " -msgstr "无法为修改密码 " - -#: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:161 -#: ftp/templates/ftp/listFTPAccounts.html:76 -msgid "Could Not Connect to server. Please refresh this page" -msgstr "无法连接到服务器, 请刷新此页面" - -#: databases/templates/databases/listDataBases.html:106 -msgid "Database User" -msgstr "数据库用户" - -#: databases/templates/databases/listDataBases.html:117 -#: ftp/templates/ftp/listFTPAccounts.html:139 -msgid "Change" -msgstr "修改" - -#: databases/templates/databases/phpMyAdmin.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "phpMyAdmin - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:3 -msgid "Add/Modify DNS Records - CyberPanel" -msgstr "添加/删除DNS记录 - Cyberpanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -msgid "Add/Modify DNS Zone" -msgstr "添加/修改DNS区域" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -#: dns/templates/dns/configureDefaultNameServers.html:12 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/deleteDNSZone.html:12 -msgid "DNS Docs" -msgstr "DNS文档" - -#: dns/templates/dns/addDeleteDNSRecords.html:14 -msgid "" -"On this page you can add/modify dns records for domains whose dns zone is " -"already created." -msgstr "此页面可以为已创建DNS区域的域名添加/编辑DNS记录 " - -#: dns/templates/dns/addDeleteDNSRecords.html:19 -msgid "Add Records" -msgstr "添加记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:27 -#: dns/templates/dns/configureDefaultNameServers.html:24 -#: dns/templates/dns/createDNSZone.html:24 -#: dns/templates/dns/createNameServer.html:24 -#: dns/templates/dns/deleteDNSZone.html:25 -msgid "PowerDNS is disabled." -msgstr "PowerDNS已被禁用" - -#: dns/templates/dns/addDeleteDNSRecords.html:29 -#: dns/templates/dns/configureDefaultNameServers.html:26 -#: dns/templates/dns/createDNSZone.html:26 -#: dns/templates/dns/createNameServer.html:26 -#: dns/templates/dns/deleteDNSZone.html:27 -#: ftp/templates/ftp/createFTPAccount.html:29 -#: ftp/templates/ftp/deleteFTPAccount.html:27 -#: ftp/templates/ftp/listFTPAccounts.html:29 -#: mailServer/templates/mailServer/changeEmailPassword.html:30 -#: mailServer/templates/mailServer/createEmailAccount.html:30 -#: mailServer/templates/mailServer/deleteEmailAccount.html:30 -#: mailServer/templates/mailServer/emailForwarding.html:28 -#: mailServer/templates/mailServer/listEmails.html:30 -#, fuzzy -#| msgid "Enable" -msgid "Enable Now" -msgstr "开启" - -#: dns/templates/dns/addDeleteDNSRecords.html:78 -#: dns/templates/dns/addDeleteDNSRecords.html:101 -#: dns/templates/dns/addDeleteDNSRecords.html:125 -#: dns/templates/dns/addDeleteDNSRecords.html:148 -#: dns/templates/dns/addDeleteDNSRecords.html:176 -#: dns/templates/dns/addDeleteDNSRecords.html:200 -#: dns/templates/dns/addDeleteDNSRecords.html:224 -#: dns/templates/dns/addDeleteDNSRecords.html:248 -#: dns/templates/dns/addDeleteDNSRecords.html:272 -#: dns/templates/dns/addDeleteDNSRecords.html:298 -#: dns/templates/dns/addDeleteDNSRecords.html:329 -msgid "TTL" -msgstr "" - -#: dns/templates/dns/addDeleteDNSRecords.html:88 -#: dns/templates/dns/addDeleteDNSRecords.html:111 -#: dns/templates/dns/addDeleteDNSRecords.html:135 -#: dns/templates/dns/addDeleteDNSRecords.html:162 -#: dns/templates/dns/addDeleteDNSRecords.html:187 -#: dns/templates/dns/addDeleteDNSRecords.html:211 -#: dns/templates/dns/addDeleteDNSRecords.html:235 -#: dns/templates/dns/addDeleteDNSRecords.html:259 -#: dns/templates/dns/addDeleteDNSRecords.html:287 -#: dns/templates/dns/addDeleteDNSRecords.html:304 -#: firewall/templates/firewall/firewall.html:104 -msgid "Add" -msgstr "添加" - -#: dns/templates/dns/addDeleteDNSRecords.html:105 -#, fuzzy -#| msgid "IP Address" -msgid "IPV6 Address" -msgstr "IP地址" - -#: dns/templates/dns/addDeleteDNSRecords.html:129 -#: dns/templates/dns/addDeleteDNSRecords.html:156 -#: dns/templates/dns/createDNSZone.html:38 -#: dns/templates/dns/createNameServer.html:36 -#: emailMarketing/templates/emailMarketing/website.html:318 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 -#: websiteFunctions/templates/websiteFunctions/website.html:280 -msgid "Domain Name" -msgstr "域名" - -#: dns/templates/dns/addDeleteDNSRecords.html:152 -#: dns/templates/dns/addDeleteDNSRecords.html:331 -msgid "Priority" -msgstr "优先级" - -#: dns/templates/dns/addDeleteDNSRecords.html:181 -msgid "Policy" -msgstr "政策" - -#: dns/templates/dns/addDeleteDNSRecords.html:205 -msgid "Text" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:229 -#, fuzzy -#| msgid "Value" -msgid "SOA Value" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:253 -#, fuzzy -#| msgid "First Nameserver" -msgid "Name server" -msgstr "第一名称服务器" - -#: dns/templates/dns/addDeleteDNSRecords.html:276 -#, fuzzy -#| msgid "Priority" -msgid "Prioirty" -msgstr "优先级" - -#: dns/templates/dns/addDeleteDNSRecords.html:281 -msgid "Content" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:359 -msgid "Cannot fetch records. Error message:" -msgstr "无法获取记录, 错误信息: " - -#: dns/templates/dns/addDeleteDNSRecords.html:363 -msgid "Cannot add record. Error message: " -msgstr "无法添加记录, 错误信息: " - -#: dns/templates/dns/addDeleteDNSRecords.html:371 -msgid "Record Successfully Deleted" -msgstr "成功删除记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:375 -msgid "Cannot delete record. Error message:" -msgstr "无法删除记录, 错误信息:" - -#: dns/templates/dns/addDeleteDNSRecords.html:379 -msgid "Record Successfully Added." -msgstr "成功添加记录" - -#: dns/templates/dns/configureDefaultNameServers.html:3 -#, fuzzy -#| msgid "Create Nameserver - CyberPanel" -msgid "Configure Default Nameserver - CyberPanel" -msgstr "创建名称服务器(NS) - CyberPanel" - -#: dns/templates/dns/configureDefaultNameServers.html:12 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Configure Default Nameserver" -msgstr "创建名称服务器(NS)" - -#: dns/templates/dns/configureDefaultNameServers.html:13 -#: dns/templates/dns/createNameServer.html:13 -msgid "" -"You can use this page to setup nameservers using which people on the " -"internet can resolve websites hosted on this server." -msgstr "您可以在此页面创建名称服务器(NS)以解析您的域名 " - -#: dns/templates/dns/configureDefaultNameServers.html:18 -#: dns/templates/dns/createDNSZone.html:18 -#: dns/templates/dns/createNameServer.html:18 -#: userManagment/templates/userManagment/modifyUser.html:19 -msgid "Details" -msgstr "详情" - -#: dns/templates/dns/configureDefaultNameServers.html:36 -#: dns/templates/dns/createNameServer.html:46 -msgid "First Nameserver" -msgstr "第一名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:45 -#, fuzzy -#| msgid "Second Nameserver (Back up)" -msgid "Second Nameserver" -msgstr "第二名称服务器(备用)" - -#: dns/templates/dns/configureDefaultNameServers.html:52 -#, fuzzy -#| msgid "First Nameserver" -msgid "Third Nameserver" -msgstr "第一名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:59 -#, fuzzy -#| msgid "First Nameserver" -msgid "Forth Nameserver" -msgstr "第一名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:68 -#: emailMarketing/templates/emailMarketing/website.html:656 -#: emailMarketing/templates/emailMarketing/website.html:716 -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:654 -msgid "Save" -msgstr "保存" - -#: dns/templates/dns/createDNSZone.html:3 -msgid "Create DNS Zone - CyberPanel" -msgstr "创建DNS区域 - CyberPanel" - -#: dns/templates/dns/createDNSZone.html:13 -msgid "" -"This page is used to create DNS zone, to edit dns zone you can visit Modify " -"DNS Zone Page." -msgstr "在此页面创建DNS区域, 您可以在编辑页面修改DNS区域 " - -#: dns/templates/dns/createDNSZone.html:61 -msgid "Cannot create DNS Zone. Error message:" -msgstr "无法创建DNS区域, 错误信息: " - -#: dns/templates/dns/createDNSZone.html:65 -msgid "DNS Zone for domain:" -msgstr "域名DNS区域: " - -#: dns/templates/dns/createNameServer.html:3 -msgid "Create Nameserver - CyberPanel" -msgstr "创建名称服务器(NS) - CyberPanel" - -#: dns/templates/dns/createNameServer.html:62 -msgid "Second Nameserver (Back up)" -msgstr "第二名称服务器(备用)" - -#: dns/templates/dns/createNameServer.html:89 -msgid "Nameserver cannot be created. Error message:" -msgstr "名称服务器无法创建, 错误信息: " - -#: dns/templates/dns/createNameServer.html:93 -msgid "The following nameservers were successfully created:" -msgstr "以下名称服务器已成功创建: " - -#: dns/templates/dns/deleteDNSZone.html:3 -msgid "Delete DNS Zone - CyberPanel" -msgstr "删除DNS区域 - CyberPanel" - -#: dns/templates/dns/deleteDNSZone.html:12 -#: dns/templates/dns/deleteDNSZone.html:18 -#: userManagment/templates/userManagment/createACL.html:230 -#: userManagment/templates/userManagment/modifyACL.html:234 -msgid "Delete DNS Zone" -msgstr "删除DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:13 -msgid "" -"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " -"all its related records as well." -msgstr "此页面可以删除DNS区域, 删除DNS区域时所有相关的DNS记录也将会被删除 " - -#: dns/templates/dns/deleteDNSZone.html:37 -msgid "Select Zone" -msgstr "选择DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:51 -#: emailMarketing/templates/emailMarketing/sendEmails.html:51 -#: ftp/templates/ftp/deleteFTPAccount.html:73 -#: mailServer/templates/mailServer/deleteEmailAccount.html:82 -#: packages/templates/packages/deletePackage.html:47 -#: userManagment/templates/userManagment/deleteACL.html:49 -#: userManagment/templates/userManagment/deleteUser.html:51 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 -msgid "Are you sure?" -msgstr "您确定?" - -#: dns/templates/dns/deleteDNSZone.html:69 -msgid "Cannot delete zone. Error message: " -msgstr "无法删除DNS区域, 错误信息: " - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "Zone for domain:" -msgstr "DNS区域: " - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "is successfully erased." -msgstr "已成功删除" - -#: dns/templates/dns/index.html:3 -msgid "DNS Functions - CyberPanel" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:12 -msgid "DNS Functions" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:13 -msgid "Create, edit and delete DNS zones on this page." -msgstr "在此页面添加, 修改, 删除DNS区域" - -#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 -msgid "Add Delete Records" -msgstr "添加/删除记录" - -#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 -msgid "Add Delete/Records" -msgstr "添加/删除记录" - -#: dockerManager/templates/dockerManager/images.html:3 -#: dockerManager/templates/dockerManager/manageImages.html:3 -#, fuzzy -#| msgid "Version Management - CyberPanel" -msgid "Docker Manage Images - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: dockerManager/templates/dockerManager/images.html:14 -#: dockerManager/templates/dockerManager/index.html:39 -#, fuzzy -#| msgid "Create New User" -msgid "Create new container" -msgstr "创建新用户" - -#: dockerManager/templates/dockerManager/images.html:15 -msgid "Search new images and manage existing ones" -msgstr "搜索并管理镜像" - -#: dockerManager/templates/dockerManager/images.html:22 -msgid "Locally Available Images" -msgstr "可用的本地镜像" - -#: dockerManager/templates/dockerManager/images.html:48 -#, fuzzy -#| msgid "Create FTP" -msgid "Create" -msgstr "创建FTP用户" - -#: dockerManager/templates/dockerManager/index.html:3 -#, fuzzy -#| msgid "Version Management - CyberPanel" -msgid "Docker Container Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: dockerManager/templates/dockerManager/index.html:13 -#, fuzzy -#| msgid "Version Management" -msgid "Docker Container Management" -msgstr "版本管理" - -#: dockerManager/templates/dockerManager/index.html:41 -#, fuzzy -#| msgid "Select Owner" -msgid "New Container" -msgstr "选择拥有者" - -#: dockerManager/templates/dockerManager/install.html:3 -#, fuzzy -#| msgid "Install PHP Extensions - CyberPanel" -msgid "Install Docker - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: dockerManager/templates/dockerManager/install.html:12 -#: dockerManager/templates/dockerManager/install.html:18 -#, fuzzy -#| msgid "Install" -msgid "Install Docker" -msgstr "安装" - -#: dockerManager/templates/dockerManager/install.html:26 -msgid "" -"Unable to connect to docker daemon, please try restarting docker from " -"service page" -msgstr "无法连接到Docker守护程序,请尝试在服务页面重启Docker" - -#: dockerManager/templates/dockerManager/install.html:28 -msgid "You do not have sufficient permissions to access this page" -msgstr "您没有足够的权限访问此页面" - -#: dockerManager/templates/dockerManager/install.html:32 -msgid "" -"Docker is currently not installed on this server. To manage containers, you " -"must first install it." -msgstr "该服务器当前未安装Docker,你必须先安装Docker" - -#: dockerManager/templates/dockerManager/install.html:53 -msgid "" -"You do not have permissions to install Docker. Please contact your system " -"administrator" -msgstr "您没有安装Docker的权限。 请与您的系统管理员联系" - -#: dockerManager/templates/dockerManager/listContainers.html:3 -#, fuzzy -#| msgid "Create Email Account - CyberPanel" -msgid "Containers List - CyberPanel" -msgstr "创建Email用户 - CyberPanel" - -#: dockerManager/templates/dockerManager/listContainers.html:14 -#, fuzzy -#| msgid "List Domains" -msgid "List Containers" -msgstr "查看域名" - -#: dockerManager/templates/dockerManager/listContainers.html:17 -msgid "管理服务器上的容器" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:23 -msgid "Containers" -msgstr "容器" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "Unlisted Containers" -msgstr "卸载容器" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "" -"Containers listed below were either not created through panel or were not " -"saved to database properly" -msgstr "下面列出的容器不是通过面板创建的,或者没有正确保存到数据库中" - -#: dockerManager/templates/dockerManager/listContainers.html:148 -#: dockerManager/templates/dockerManager/runContainer.html:52 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 -msgid "Select Owner" -msgstr "选择拥有者" - -#: dockerManager/templates/dockerManager/manageImages.html:17 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "On this page you can manage docker images." -msgstr "这里是远程备份页面(SFTP)" - -#: dockerManager/templates/dockerManager/manageImages.html:65 -#: dockerManager/templates/dockerManager/manageImages.html:66 -msgid "Images" -msgstr "镜像" - -#: dockerManager/templates/dockerManager/manageImages.html:67 -#, fuzzy -#| msgid "Delete Website" -msgid "Delete unused images" -msgstr "删除网站" - -#: dockerManager/templates/dockerManager/manageImages.html:95 -msgid "Official image" -msgstr "官方镜像" - -#: dockerManager/templates/dockerManager/manageImages.html:104 -msgid "Pull" -msgstr "拉取" - -#: dockerManager/templates/dockerManager/runContainer.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "Run new container - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: dockerManager/templates/dockerManager/runContainer.html:12 -msgid "Run Container" -msgstr "运行容器" - -#: dockerManager/templates/dockerManager/runContainer.html:13 -msgid "Modify parameters for your new container" -msgstr "修改新容器的参数" - -#: dockerManager/templates/dockerManager/runContainer.html:20 -#, fuzzy -#| msgid "Tuning Details" -msgid "Container Details" -msgstr "设置详情" - -#: dockerManager/templates/dockerManager/runContainer.html:36 -#: dockerManager/templates/dockerManager/viewContainer.html:70 -msgid "Image" -msgstr "镜像" - -#: dockerManager/templates/dockerManager/runContainer.html:44 -msgid "Tag" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:64 -#: dockerManager/templates/dockerManager/viewContainer.html:206 -#, fuzzy -#| msgid "memory_limit" -msgid "Memory limit" -msgstr "memory_limit" - -#: dockerManager/templates/dockerManager/runContainer.html:104 -#: dockerManager/templates/dockerManager/viewContainer.html:250 -msgid "ENV" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:125 -#: dockerManager/templates/dockerManager/viewContainer.html:283 -msgid "Map Volumes" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:153 -#: dockerManager/templates/dockerManager/viewContainer.html:310 -#, fuzzy -#| msgid "Add Key" -msgid "Add field" -msgstr "添加密钥" - -#: dockerManager/templates/dockerManager/runContainer.html:161 -#, fuzzy -#| msgid "Create Domain" -msgid "Create Container" -msgstr "创建域名" - -#: dockerManager/templates/dockerManager/runContainer.html:180 -#, fuzzy -#| msgid "is successfully created." -msgid "Container succesfully created." -msgstr "已成功添加" - -#: dockerManager/templates/dockerManager/runContainer.html:196 -#: emailMarketing/templates/emailMarketing/createEmailList.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:100 -#: emailMarketing/templates/emailMarketing/sendEmails.html:135 -#: emailMarketing/templates/emailMarketing/website.html:431 -#: managePHP/templates/managePHP/installExtensions.html:103 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 -#: websiteFunctions/templates/websiteFunctions/website.html:394 -msgid "Go Back" -msgstr "返回" - -#: dockerManager/templates/dockerManager/viewContainer.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Container Home - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: dockerManager/templates/dockerManager/viewContainer.html:14 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Container" -msgstr "管理SSL" - -#: dockerManager/templates/dockerManager/viewContainer.html:15 -#, fuzzy -#| msgid "Currently:" -msgid "Currently managing: " -msgstr "当前:" - -#: dockerManager/templates/dockerManager/viewContainer.html:24 -msgid "Container Information" -msgstr "容器信息" - -#: dockerManager/templates/dockerManager/viewContainer.html:37 -#, fuzzy -#| msgid "Resource Usage" -msgid "Memory Usage" -msgstr "资源使用量" - -#: dockerManager/templates/dockerManager/viewContainer.html:68 -#, fuzzy -#| msgid "Control DNS" -msgid "Container ID" -msgstr "控制DNS" - -#: dockerManager/templates/dockerManager/viewContainer.html:77 -#, fuzzy -#| msgid "Port" -msgid "Ports" -msgstr "端口" - -#: dockerManager/templates/dockerManager/viewContainer.html:79 -#, fuzzy -#| msgid "Stop" -msgid "to" -msgstr "停止" - -#: dockerManager/templates/dockerManager/viewContainer.html:227 -#, fuzzy -#| msgid "Configurations" -msgid "Confirmation" -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:42 -#, fuzzy -#| msgid "Create Email" -msgid "Create List" -msgstr "创建Email" - -#: 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:33 -#, 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:76 -#: userManagment/templates/userManagment/listUsers.html:32 -#: userManagment/templates/userManagment/userProfile.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 -msgid "Username" -msgstr "用户名" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 -msgid "Email Marketing Enabled." -msgstr "电子邮件营销已启用。" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:53 -#: emailPremium/templates/emailPremium/emailLimits.html:159 -#: emailPremium/templates/emailPremium/emailPage.html:55 -#: emailPremium/templates/emailPremium/emailPage.html:61 -#: emailPremium/templates/emailPremium/listDomains.html:62 -#: tuning/templates/tuning/phpTuning.html:94 -#: tuning/templates/tuning/phpTuning.html:234 -msgid "Disable" -msgstr "关闭" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 -msgid "Email Marketing Disabled." -msgstr "电子邮件营销已禁用" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:161 -#: emailPremium/templates/emailPremium/emailPage.html:57 -#: emailPremium/templates/emailPremium/emailPage.html:63 -#: emailPremium/templates/emailPremium/listDomains.html:64 -#: tuning/templates/tuning/phpTuning.html:93 -#: tuning/templates/tuning/phpTuning.html:233 -msgid "Enable" -msgstr "开启" - -#: emailMarketing/templates/emailMarketing/manageLists.html:3 -#, 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:484 -#: filemanager/templates/filemanager/index.html:417 -#: filemanager/templates/filemanager/index.html:460 -#: filemanager/templates/filemanager/index.html:523 -#: filemanager/templates/filemanager/index.html:558 -#: filemanager/templates/filemanager/index.html:588 -#: filemanager/templates/filemanager/index.html:649 -#: websiteFunctions/templates/websiteFunctions/website.html:447 -msgid "Close" -msgstr "关闭" - -#: emailMarketing/templates/emailMarketing/manageLists.html:55 -#: emailMarketing/templates/emailMarketing/sendEmails.html:55 -#: filemanager/templates/filemanager/index.html:416 -msgid "Confirm" -msgstr "确定" - -#: emailMarketing/templates/emailMarketing/manageLists.html:63 -msgid "Verify This List" -msgstr "检查此列表" - -#: emailMarketing/templates/emailMarketing/manageLists.html:66 -#, 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/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 "SMTP服务器" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Save Host" -msgstr "保存Rewrite rules" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 -#: userManagment/templates/userManagment/listUsers.html:36 -#, fuzzy -#| msgid "Select Owner" -msgid "Owner" -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:1030 -#: emailMarketing/templates/emailMarketing/website.html:1033 -#: emailMarketing/templates/emailMarketing/website.html:1034 -#: websiteFunctions/templates/websiteFunctions/website.html:956 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -#, 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 -#: websiteFunctions/templates/websiteFunctions/website.html:677 -#, 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: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:16 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 -#: websiteFunctions/templates/websiteFunctions/website.html:16 -#, fuzzy -#| msgid "Previous" -msgid "Preview" -msgstr "上一个" - -#: emailMarketing/templates/emailMarketing/website.html:17 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 -#: websiteFunctions/templates/websiteFunctions/website.html:17 -msgid "All functions related to a particular site." -msgstr "所有与网站相关的功能." - -#: emailMarketing/templates/emailMarketing/website.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 -#: websiteFunctions/templates/websiteFunctions/website.html:28 -msgid "Resource Usage" -msgstr "资源使用量" - -#: emailMarketing/templates/emailMarketing/website.html:39 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 -#: websiteFunctions/templates/websiteFunctions/website.html:42 -msgid "Resource" -msgstr "资源" - -#: emailMarketing/templates/emailMarketing/website.html:41 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 -#: websiteFunctions/templates/websiteFunctions/website.html:44 -msgid "Allowed" -msgstr "可用" - -#: emailMarketing/templates/emailMarketing/website.html:63 -#: emailMarketing/templates/emailMarketing/website.html:89 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 -#: websiteFunctions/templates/websiteFunctions/website.html:64 -#: websiteFunctions/templates/websiteFunctions/website.html:86 -msgid "Bandwidth Usage" -msgstr "流量使用量" - -#: emailMarketing/templates/emailMarketing/website.html:124 -#: emailMarketing/templates/emailMarketing/website.html:127 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:112 -#: websiteFunctions/templates/websiteFunctions/website.html:116 -msgid "Load Access Logs" -msgstr "读取访问日志" - -#: emailMarketing/templates/emailMarketing/website.html:128 -#: serverLogs/templates/serverLogs/accessLogs.html:16 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 -#: websiteFunctions/templates/websiteFunctions/website.html:117 -msgid "Access Logs" -msgstr "访问日志" - -#: emailMarketing/templates/emailMarketing/website.html:135 -#: emailMarketing/templates/emailMarketing/website.html:138 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:121 -#: websiteFunctions/templates/websiteFunctions/website.html:125 -msgid "Load Error Logs" -msgstr "读取错误日志" - -#: emailMarketing/templates/emailMarketing/website.html:150 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 -#: websiteFunctions/templates/websiteFunctions/website.html:133 -msgid "Logs Fetched" -msgstr "日志读取成功" - -#: emailMarketing/templates/emailMarketing/website.html:155 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 -#: websiteFunctions/templates/websiteFunctions/website.html:136 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:179 -#: emailMarketing/templates/emailMarketing/website.html:221 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:199 -msgid "Next" -msgstr "下一个" - -#: emailMarketing/templates/emailMarketing/website.html:181 -#: emailMarketing/templates/emailMarketing/website.html:223 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 -#: websiteFunctions/templates/websiteFunctions/website.html:156 -#: websiteFunctions/templates/websiteFunctions/website.html:201 -msgid "Previous" -msgstr "上一个" - -#: emailMarketing/templates/emailMarketing/website.html:254 -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:36 -#: packages/templates/packages/listPackages.html:93 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:225 -msgid "Domains" -msgstr "域名" - -#: emailMarketing/templates/emailMarketing/website.html:262 -#: emailMarketing/templates/emailMarketing/website.html:265 -#: emailMarketing/templates/emailMarketing/website.html:266 -#: emailMarketing/templates/emailMarketing/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:233 -#: websiteFunctions/templates/websiteFunctions/website.html:234 -#: websiteFunctions/templates/websiteFunctions/website.html:235 -msgid "Add Domains" -msgstr "添加域名" - -#: emailMarketing/templates/emailMarketing/website.html:274 -#: emailMarketing/templates/emailMarketing/website.html:275 -#: emailMarketing/templates/emailMarketing/website.html:278 -#: emailMarketing/templates/emailMarketing/website.html:279 -#: emailMarketing/templates/emailMarketing/website.html:280 -#: emailMarketing/templates/emailMarketing/website.html:300 -#: emailMarketing/templates/emailMarketing/website.html:303 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:240 -#: websiteFunctions/templates/websiteFunctions/website.html:241 -#: websiteFunctions/templates/websiteFunctions/website.html:244 -#: websiteFunctions/templates/websiteFunctions/website.html:245 -#: websiteFunctions/templates/websiteFunctions/website.html:246 -#: websiteFunctions/templates/websiteFunctions/website.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:266 -msgid "List Domains" -msgstr "查看域名" - -#: emailMarketing/templates/emailMarketing/website.html:286 -#: emailMarketing/templates/emailMarketing/website.html:287 -#: emailMarketing/templates/emailMarketing/website.html:290 -#: emailMarketing/templates/emailMarketing/website.html:291 -#: emailMarketing/templates/emailMarketing/website.html:292 -#: websiteFunctions/templates/websiteFunctions/website.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:252 -#: websiteFunctions/templates/websiteFunctions/website.html:255 -#: websiteFunctions/templates/websiteFunctions/website.html:256 -#: websiteFunctions/templates/websiteFunctions/website.html:257 -#, fuzzy -#| msgid "Domains" -msgid "Domain Alias" -msgstr "域名" - -#: emailMarketing/templates/emailMarketing/website.html:299 -#: emailMarketing/templates/emailMarketing/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:262 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -msgid "Add new Cron Job" -msgstr "添加新的定时任务" - -#: emailMarketing/templates/emailMarketing/website.html:305 -#: websiteFunctions/templates/websiteFunctions/website.html:268 -msgid "Cron Jobs" -msgstr "定时任务" - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "This path is relative to: " -msgstr "此目录相对与:" - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "Leave empty to set default." -msgstr "留空则设置为默认根目录." - -#: emailMarketing/templates/emailMarketing/website.html:336 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 -#: websiteFunctions/templates/websiteFunctions/website.html:299 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "无效域名(注意: 不需要添加http或https)" - -#: emailMarketing/templates/emailMarketing/website.html:341 -#: emailMarketing/templates/emailMarketing/website.html:794 -#: managePHP/templates/managePHP/editPHPConfig.html:49 -#: managePHP/templates/managePHP/editPHPConfig.html:177 -#: managePHP/templates/managePHP/installExtensions.html:29 -#: tuning/templates/tuning/phpTuning.html:166 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:737 -msgid "Select PHP" -msgstr "选择PHP版本" - -#: emailMarketing/templates/emailMarketing/website.html:354 -#: packages/templates/packages/createPackage.html:84 -#: packages/templates/packages/modifyPackage.html:87 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 -#: websiteFunctions/templates/websiteFunctions/website.html:317 -msgid "Additional Features" -msgstr "额外功能" - -#: emailMarketing/templates/emailMarketing/website.html:388 -#: websiteFunctions/templates/websiteFunctions/website.html:351 -msgid "Create Domain" -msgstr "创建域名" - -#: emailMarketing/templates/emailMarketing/website.html:415 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -#, fuzzy -#| msgid "is successfully created." -msgid "Website succesfully created." -msgstr "已成功添加" - -#: emailMarketing/templates/emailMarketing/website.html:449 -#: websiteFunctions/templates/websiteFunctions/website.html:412 -msgid "PHP Version Changed to:" -msgstr "版本管理:" - -#: emailMarketing/templates/emailMarketing/website.html:453 -#: websiteFunctions/templates/websiteFunctions/website.html:416 -msgid "Deleted:" -msgstr "删除:" - -#: emailMarketing/templates/emailMarketing/website.html:457 -#: websiteFunctions/templates/websiteFunctions/website.html:420 -msgid "SSL Issued:" -msgstr "已为签发证书:" - -#: emailMarketing/templates/emailMarketing/website.html:461 -#: websiteFunctions/templates/websiteFunctions/website.html:424 -#, fuzzy -#| msgid "Database created successfully." -msgid "Changes applied successfully." -msgstr "成功创建数据库" - -#: emailMarketing/templates/emailMarketing/website.html:528 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:492 -msgid "Issue" -msgstr "签发SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:558 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:520 -msgid "Configurations" -msgstr "配置" - -#: emailMarketing/templates/emailMarketing/website.html:568 -#: emailMarketing/templates/emailMarketing/website.html:572 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:526 -#: websiteFunctions/templates/websiteFunctions/website.html:530 -msgid "Edit vHost Main Configurations" -msgstr "编辑vHost主配置" - -#: emailMarketing/templates/emailMarketing/website.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:531 -msgid "vHost Conf" -msgstr "虚拟主机配置" - -#: emailMarketing/templates/emailMarketing/website.html:582 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:537 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:586 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:541 -#, fuzzy -#| msgid "Add Rewrite Rules (.htaccess)" -msgid "Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:587 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:542 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Rewrite Rules" -msgstr "保存Rewrite rules" - -#: emailMarketing/templates/emailMarketing/website.html:595 -#: emailMarketing/templates/emailMarketing/website.html:598 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 -#: websiteFunctions/templates/websiteFunctions/website.html:547 -#: websiteFunctions/templates/websiteFunctions/website.html:550 -msgid "Add Your Own SSL" -msgstr "添加SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:599 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:551 -msgid "Add SSL" -msgstr "添加SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:607 -#: emailMarketing/templates/emailMarketing/website.html:610 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 -#: websiteFunctions/templates/websiteFunctions/website.html:556 -#: websiteFunctions/templates/websiteFunctions/website.html:559 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change PHP Version" -msgstr "选择PHP版本" - -#: emailMarketing/templates/emailMarketing/website.html:611 -#: emailMarketing/templates/emailMarketing/website.html:815 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 -#: websiteFunctions/templates/websiteFunctions/website.html:560 -#: websiteFunctions/templates/websiteFunctions/website.html:758 -#, fuzzy -#| msgid "Change" -msgid "Change PHP" -msgstr "修改" - -#: emailMarketing/templates/emailMarketing/website.html:623 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 -#: websiteFunctions/templates/websiteFunctions/website.html:571 -msgid "SSL Saved" -msgstr "SSL证书已保存" - -#: emailMarketing/templates/emailMarketing/website.html:628 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Could not save SSL. Error message:" -msgstr "无法保存SSL证书, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:678 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:619 -msgid "Current configuration in the file fetched." -msgstr "当前配置读取成功." - -#: emailMarketing/templates/emailMarketing/website.html:683 -#: emailMarketing/templates/emailMarketing/website.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 -#: websiteFunctions/templates/websiteFunctions/website.html:623 -#: websiteFunctions/templates/websiteFunctions/website.html:636 -msgid "Could not fetch current configuration. Error message:" -msgstr "无法读取当前配置, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:693 -#: emailMarketing/templates/emailMarketing/website.html:753 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 -#: websiteFunctions/templates/websiteFunctions/website.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:699 -#, fuzzy -#| msgid "SSH Configurations Saved." -msgid "Configurations saved." -msgstr "SSH设置已保存" - -#: emailMarketing/templates/emailMarketing/website.html:734 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 -msgid "Current rewrite rules in the file fetched." -msgstr "当前Rewrite rules读取成功." - -#: emailMarketing/templates/emailMarketing/website.html:743 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 -#: websiteFunctions/templates/websiteFunctions/website.html:690 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "无法读取当前Rewrite rules, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:757 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 -#: websiteFunctions/templates/websiteFunctions/website.html:703 -msgid "Could not save rewrite rules. Error message:" -msgstr "无法保存Rewrite rules, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:776 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Save Rewrite Rules" -msgstr "保存Rewrite rules" - -#: emailMarketing/templates/emailMarketing/website.html:825 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 -#: websiteFunctions/templates/websiteFunctions/website.html:768 -#, fuzzy -#| msgid "Cannot create website. Error message:" -msgid "Failed to change PHP version. Error message:" -msgstr "无法创建网站, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:830 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 -#: websiteFunctions/templates/websiteFunctions/website.html:773 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "PHP successfully changed for: " -msgstr "已成功为修改密码 :" - -#: emailMarketing/templates/emailMarketing/website.html:855 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 -#: websiteFunctions/templates/websiteFunctions/website.html:795 -msgid "Files" -msgstr "文件" - -#: emailMarketing/templates/emailMarketing/website.html:863 -#: emailMarketing/templates/emailMarketing/website.html:866 -#: emailMarketing/templates/emailMarketing/website.html:867 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#: websiteFunctions/templates/websiteFunctions/website.html:803 -#: websiteFunctions/templates/websiteFunctions/website.html:804 -msgid "File Manager" -msgstr "文件管理" - -#: emailMarketing/templates/emailMarketing/website.html:874 -#: emailMarketing/templates/emailMarketing/website.html:877 -#: emailMarketing/templates/emailMarketing/website.html:915 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:809 -#: websiteFunctions/templates/websiteFunctions/website.html:812 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -msgid "open_basedir Protection" -msgstr "" - -#: emailMarketing/templates/emailMarketing/website.html:878 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 -#: websiteFunctions/templates/websiteFunctions/website.html:813 -msgid "open_basedir" -msgstr "防跨站" - -#: emailMarketing/templates/emailMarketing/website.html:890 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 -#: websiteFunctions/templates/websiteFunctions/website.html:825 -#, fuzzy -#| msgid "Create FTP Account" -msgid "Create FTP Acct" -msgstr "创建FTP用户" - -#: emailMarketing/templates/emailMarketing/website.html:902 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -#, fuzzy -#| msgid "Delete FTP Account" -msgid "Delete FTP Acct" -msgstr "删除FTP用户" - -#: emailMarketing/templates/emailMarketing/website.html:939 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:868 -#, fuzzy -#| msgid "Save Changes" -msgid "Apply Changes" -msgstr "保存修改" - -#: emailMarketing/templates/emailMarketing/website.html:951 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 -#: websiteFunctions/templates/websiteFunctions/website.html:880 -#, fuzzy -#| msgid "Rule successfully added." -msgid "Changes successfully saved." -msgstr "成功添加规则" - -#: emailMarketing/templates/emailMarketing/website.html:986 -#: emailMarketing/templates/emailMarketing/website.html:989 -#: emailMarketing/templates/emailMarketing/website.html:990 -#: websiteFunctions/templates/websiteFunctions/website.html:915 -#: websiteFunctions/templates/websiteFunctions/website.html:919 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Create Email" -msgid "Create Lists" -msgstr "创建Email" - -#: emailMarketing/templates/emailMarketing/website.html:997 -#: emailMarketing/templates/emailMarketing/website.html:1000 -#: emailMarketing/templates/emailMarketing/website.html:1001 -#: websiteFunctions/templates/websiteFunctions/website.html:925 -#: websiteFunctions/templates/websiteFunctions/website.html:929 -#: websiteFunctions/templates/websiteFunctions/website.html:930 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Lists" -msgstr "管理SSL" - -#: emailMarketing/templates/emailMarketing/website.html:1008 -#: emailMarketing/templates/emailMarketing/website.html:1011 -#: emailMarketing/templates/emailMarketing/website.html:1012 -#: websiteFunctions/templates/websiteFunctions/website.html:935 -#: websiteFunctions/templates/websiteFunctions/website.html:939 -#: websiteFunctions/templates/websiteFunctions/website.html:940 -msgid "SMTP Hosts" -msgstr "SMTP主机" - -#: emailMarketing/templates/emailMarketing/website.html:1019 -#: emailMarketing/templates/emailMarketing/website.html:1022 -#: websiteFunctions/templates/websiteFunctions/website.html:945 -#: websiteFunctions/templates/websiteFunctions/website.html:950 -msgid "Compose Message" -msgstr "撰写信息" - -#: emailMarketing/templates/emailMarketing/website.html:1023 -#: websiteFunctions/templates/websiteFunctions/website.html:951 -msgid "Compose" -msgstr "撰写" - -#: emailMarketing/templates/emailMarketing/website.html:1050 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 -#: websiteFunctions/templates/websiteFunctions/website.html:977 -msgid "Application Installer" -msgstr "应用安装器" - -#: emailMarketing/templates/emailMarketing/website.html:1061 -#: emailMarketing/templates/emailMarketing/website.html:1065 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -#: websiteFunctions/templates/websiteFunctions/website.html:989 -msgid "Install wordpress with LSCache" -msgstr "安装Wordpress和LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1066 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -msgid "Wordpress with LSCache" -msgstr "Wordpress和LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1075 -#: emailMarketing/templates/emailMarketing/website.html:1079 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 -#: websiteFunctions/templates/websiteFunctions/website.html:996 -#: websiteFunctions/templates/websiteFunctions/website.html:1000 -#, fuzzy -#| msgid "Install wordpress with LSCache" -msgid "Install Joomla with LSCache" -msgstr "安装Wordpress和LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1080 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 -#: websiteFunctions/templates/websiteFunctions/website.html:1001 -msgid "Joomla" -msgstr "" - -#: emailMarketing/templates/emailMarketing/website.html:1089 -#: emailMarketing/templates/emailMarketing/website.html:1093 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 -#: websiteFunctions/templates/websiteFunctions/website.html:1007 -#: websiteFunctions/templates/websiteFunctions/website.html:1011 -msgid "Attach Git with this website!" -msgstr "为此网站填加git" - -#: emailMarketing/templates/emailMarketing/website.html:1094 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 -#: websiteFunctions/templates/websiteFunctions/website.html:1012 -msgid "Git" -msgstr "" - -#: emailMarketing/templates/emailMarketing/website.html:1103 -#: emailMarketing/templates/emailMarketing/website.html:1107 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 -#: websiteFunctions/templates/websiteFunctions/website.html:1018 -#: websiteFunctions/templates/websiteFunctions/website.html:1022 -#, fuzzy -#| msgid "Install" -msgid "Install Prestashop" -msgstr "安装" - -#: emailMarketing/templates/emailMarketing/website.html:1108 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 -#: websiteFunctions/templates/websiteFunctions/website.html:1023 -msgid "Prestashop" -msgstr "" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:3 -#: firewall/templates/firewall/spamassassin.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid "SpamAssassin - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:13 -#: firewall/templates/firewall/spamassassin.html:13 -#, fuzzy -#| msgid "Configurations" -msgid "SpamAssassin Configurations!" -msgstr "配置" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:17 -msgid "SpamAssassin Docs" -msgstr "SpamAssassin文档" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:19 -#: firewall/templates/firewall/spamassassin.html:14 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "On this page you can configure SpamAssassin settings." -msgstr "这里是远程备份页面(SFTP)" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:34 -msgid "SpamAssassin is not installed " -msgstr "未安装SpamAssassin" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:37 -#: firewall/templates/firewall/csf.html:31 -#: firewall/templates/firewall/modSecurity.html:35 -#: firewall/templates/firewall/modSecurity.html:231 -#: firewall/templates/firewall/modSecurityRules.html:73 -#: firewall/templates/firewall/modSecurityRulesPacks.html:31 -#: firewall/templates/firewall/spamassassin.html:31 -#, fuzzy -#| msgid "Install" -msgid "Install Now." -msgstr "安装" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:49 -#: firewall/templates/firewall/csf.html:43 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:244 -#: firewall/templates/firewall/spamassassin.html:43 -#, fuzzy -#| msgid "Cannot add destination. Error message:" -msgid "Failed to start installation, Error message: " -msgstr "无法添加远程目录, 错误信息: " - -#: emailPremium/templates/emailPremium/SpamAssassin.html:54 -#: emailPremium/templates/emailPremium/SpamAssassin.html:146 -#: emailPremium/templates/emailPremium/policyServer.html:60 -#: firewall/templates/firewall/csf.html:47 -#: firewall/templates/firewall/modSecurity.html:53 -#: firewall/templates/firewall/modSecurity.html:183 -#: firewall/templates/firewall/modSecurity.html:249 -#: firewall/templates/firewall/modSecurity.html:371 -#: firewall/templates/firewall/modSecurityRules.html:53 -#: firewall/templates/firewall/modSecurityRulesPacks.html:88 -#: firewall/templates/firewall/secureSSH.html:87 -#: firewall/templates/firewall/secureSSH.html:172 -#: firewall/templates/firewall/spamassassin.html:47 -#: firewall/templates/firewall/spamassassin.html:177 -#: mailServer/templates/mailServer/dkimManager.html:44 -#: managePHP/templates/managePHP/editPHPConfig.html:157 -#: managePHP/templates/managePHP/editPHPConfig.html:223 -#: managePHP/templates/managePHP/installExtensions.html:124 -#: manageServices/templates/manageServices/managePostfix.html:59 -#: manageServices/templates/manageServices/managePowerDNS.html:130 -#: manageServices/templates/manageServices/managePureFtpd.html:59 -msgid "Could not connect. Please refresh this page." -msgstr "无法连接, 请刷新此页面" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:58 -#: firewall/templates/firewall/csf.html:51 -#: firewall/templates/firewall/modSecurity.html:57 -#: firewall/templates/firewall/modSecurity.html:253 -#: firewall/templates/firewall/spamassassin.html:51 -#, fuzzy -#| msgid "Installation failed. Error message:" -msgid "Installation failed." -msgstr "安装失败, 错误信息:" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:62 -msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." -msgstr "SpamAssassin成功安装,在3秒内刷新页面。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:74 -msgid "Winter is coming, but so is SpamAssassin." -msgstr "" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:126 -#: firewall/templates/firewall/modSecurity.html:163 -#: firewall/templates/firewall/modSecurity.html:351 -#: firewall/templates/firewall/spamassassin.html:157 -#, fuzzy -#| msgid "Save Changes" -msgid "Save changes." -msgstr "保存修改" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:137 -#, fuzzy -#| msgid "Could not fetch current configuration. Error message:" -msgid "Failed to save SpamAssassin configurations. Error message: " -msgstr "无法读取当前配置, 错误信息:" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:142 -#, fuzzy -#| msgid "Backup Process successfully started." -msgid "SpamAssassin configurations successfully saved." -msgstr " 已成功创建." - -#: emailPremium/templates/emailPremium/emailLimits.html:13 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: emailPremium/templates/emailPremium/policyServer.html:13 -#, fuzzy -#| msgid "Email Logs" -msgid "Email Limits Docs" -msgstr "Email日志" - -#: emailPremium/templates/emailPremium/emailLimits.html:14 -msgid "View and change email limits for a domain name." -msgstr "" - -#: emailPremium/templates/emailPremium/emailLimits.html:25 -#, fuzzy -#| msgid "Resource Usage" -msgid "Domain Resource Usage" -msgstr "资源使用量" - -#: emailPremium/templates/emailPremium/emailLimits.html:52 -#: emailPremium/templates/emailPremium/emailLimits.html:158 -#: emailPremium/templates/emailPremium/emailPage.html:54 -#: emailPremium/templates/emailPremium/listDomains.html:61 -msgid "Limits are being Applied!" -msgstr "限制已被应用" - -#: emailPremium/templates/emailPremium/emailLimits.html:54 -#: emailPremium/templates/emailPremium/emailLimits.html:160 -#: emailPremium/templates/emailPremium/emailPage.html:56 -#: emailPremium/templates/emailPremium/listDomains.html:63 -msgid "Limits are not being applied!" -msgstr "限制未被应用" - -#: emailPremium/templates/emailPremium/emailLimits.html:58 -#: emailPremium/templates/emailPremium/emailPage.html:66 -#: filemanager/templates/filemanager/index.html:79 -#: filemanager/templates/filemanager/index.html:699 -#: packages/templates/packages/listPackages.html:60 -#: userManagment/templates/userManagment/listUsers.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:66 -msgid "Edit" -msgstr "编辑" - -#: emailPremium/templates/emailPremium/emailLimits.html:70 -#: emailPremium/templates/emailPremium/emailPage.html:78 -#, fuzzy -#| msgid "Memory Soft Limit" -msgid "Monthly Limit" -msgstr "内存软限制" - -#: emailPremium/templates/emailPremium/emailLimits.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:101 -#, fuzzy -#| msgid "Change" -msgid "Change Limits" -msgstr "修改" - -#: emailPremium/templates/emailPremium/emailLimits.html:93 -#: emailPremium/templates/emailPremium/emailPage.html:111 -#, fuzzy -#| msgid "Cannot create user. Error message:" -msgid "Can not change limits. Error message:" -msgstr "无法创建用户, 错误信息:" - -#: emailPremium/templates/emailPremium/emailLimits.html:97 -#, fuzzy -#| msgid "Password successfully changed for :" -msgid "Limits successfully changed, refreshing in 3 seconds." -msgstr "已成功为修改密码 :" - -#: emailPremium/templates/emailPremium/emailLimits.html:126 -#: emailPremium/templates/emailPremium/emailPage.html:25 -#, fuzzy -#| msgid "Resource Usage" -msgid "Email Resource Usage" -msgstr "资源使用量" - -#: emailPremium/templates/emailPremium/emailLimits.html:133 -#, fuzzy -#| msgid "Search Extensions.." -msgid "Search Emails.." -msgstr "搜索扩展..." - -#: emailPremium/templates/emailPremium/emailLimits.html:164 -#: emailPremium/templates/emailPremium/listDomains.html:67 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage" -msgstr "管理SSL" - -#: emailPremium/templates/emailPremium/emailPage.html:13 -#, fuzzy -#| msgid "Email Logs" -msgid "Emai Limits Docs" -msgstr "Email日志" - -#: emailPremium/templates/emailPremium/emailPage.html:14 -msgid "View and change limits for an Email Address." -msgstr "查看和更改电子邮件地址的限制。" - -#: emailPremium/templates/emailPremium/emailPage.html:60 -msgid "Logging in ON!" -msgstr "" - -#: emailPremium/templates/emailPremium/emailPage.html:62 -msgid "Logging is Off" -msgstr "" - -#: emailPremium/templates/emailPremium/emailPage.html:88 -#, fuzzy -#| msgid "Memory Soft Limit" -msgid "Hourly Limit" -msgstr "内存软限制" - -#: emailPremium/templates/emailPremium/emailPage.html:115 -#, fuzzy -#| msgid "is successfully created." -msgid "Limits successfully changed." -msgstr "已成功添加" - -#: emailPremium/templates/emailPremium/emailPage.html:151 -#, fuzzy -#| msgid "Search Extensions.." -msgid "Search Emails Logs.." -msgstr "搜索扩展..." - -#: emailPremium/templates/emailPremium/emailPage.html:155 -#, fuzzy -#| msgid "FTP Logs" -msgid "Flush Logs" -msgstr "FTP日志" - -#: emailPremium/templates/emailPremium/listDomains.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Domains - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: emailPremium/templates/emailPremium/listDomains.html:15 -msgid "On this page you manage emails limits for Domains/Email Addresses" -msgstr "在此页面上,您可以管理域/电子邮件地址的电子邮件的限制" - -#: emailPremium/templates/emailPremium/policyServer.html:3 -#, fuzzy -#| msgid "Server Logs - CyberPanel" -msgid "Email Policy Server - CyberPanel" -msgstr "服务器日志 - CyberPanel" - -#: emailPremium/templates/emailPremium/policyServer.html:13 -#, fuzzy -#| msgid "Edit PHP Configurations" -msgid "Email Policy Server Configurations!" -msgstr "设置PHP参数" - -#: emailPremium/templates/emailPremium/policyServer.html:14 -msgid "Turn ON Email Policy Server to use Email Limits Feature. " -msgstr "" - -#: emailPremium/templates/emailPremium/policyServer.html:40 -#: manageServices/templates/manageServices/managePostfix.html:41 -#: manageServices/templates/manageServices/managePowerDNS.html:112 -#: manageServices/templates/manageServices/managePureFtpd.html:41 -#, fuzzy -#| msgid "Save Changes" -msgid "Save changes" -msgstr "保存修改" - -#: emailPremium/templates/emailPremium/policyServer.html:52 -#: firewall/templates/firewall/secureSSH.html:78 -#: mailServer/templates/mailServer/dkimManager.html:40 -#: managePHP/templates/managePHP/editPHPConfig.html:148 -#: manageServices/templates/manageServices/managePostfix.html:51 -#: manageServices/templates/manageServices/managePowerDNS.html:122 -#: manageServices/templates/manageServices/managePureFtpd.html:51 -msgid "Error message: " -msgstr "错误信息: " - -#: emailPremium/templates/emailPremium/policyServer.html:56 -#: manageServices/templates/manageServices/managePostfix.html:55 -#: manageServices/templates/manageServices/managePowerDNS.html:126 -#: manageServices/templates/manageServices/managePureFtpd.html:55 -#, fuzzy -#| msgid "is successfully erased." -msgid "Changes successfully applied." -msgstr "已成功删除" - -#: filemanager/templates/filemanager/index.html:5 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "File Manager - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: filemanager/templates/filemanager/index.html:54 -#, fuzzy -#| msgid "File Manager" -msgid " File Manager" -msgstr "文件管理" - -#: filemanager/templates/filemanager/index.html:58 -#: filemanager/templates/filemanager/index.html:197 -#: filemanager/templates/filemanager/index.html:227 -#, fuzzy -#| msgid "Reload" -msgid "Upload" -msgstr "重载" - -#: filemanager/templates/filemanager/index.html:61 -#, fuzzy -#| msgid "File" -msgid "New File" -msgstr "文件" - -#: filemanager/templates/filemanager/index.html:64 -msgid "New Folder" -msgstr "新文件夹" - -#: filemanager/templates/filemanager/index.html:70 -#: filemanager/templates/filemanager/index.html:557 -#: filemanager/templates/filemanager/index.html:693 -msgid "Copy" -msgstr "复制" - -#: filemanager/templates/filemanager/index.html:73 -#: filemanager/templates/filemanager/index.html:522 -#: filemanager/templates/filemanager/index.html:691 -msgid "Move" -msgstr "移动" - -#: filemanager/templates/filemanager/index.html:76 -#: filemanager/templates/filemanager/index.html:587 -#: filemanager/templates/filemanager/index.html:694 -#, fuzzy -#| msgid "Username" -msgid "Rename" -msgstr "用户名" - -#: filemanager/templates/filemanager/index.html:82 -#: filemanager/templates/filemanager/index.html:432 -#: filemanager/templates/filemanager/index.html:459 -#: filemanager/templates/filemanager/index.html:697 -msgid "Compress" -msgstr "压缩" - -#: filemanager/templates/filemanager/index.html:85 -#: filemanager/templates/filemanager/index.html:487 -#: filemanager/templates/filemanager/index.html:698 -msgid "Extract" -msgstr "解压" - -#: filemanager/templates/filemanager/index.html:88 -#, fuzzy -#| msgid "PHP version " -msgid "Fix Permissions" -msgstr "PHP版本 " - -#: filemanager/templates/filemanager/index.html:113 -#, fuzzy -#| msgid "Current Package:" -msgid "Current Path" -msgstr "当前套餐:" - -#: filemanager/templates/filemanager/index.html:138 -#, fuzzy -#| msgid "Back up" -msgid "Back" -msgstr "备份" - -#: filemanager/templates/filemanager/index.html:142 -#: serverLogs/templates/serverLogs/accessLogs.html:38 -#: serverLogs/templates/serverLogs/emailLogs.html:39 -#: serverLogs/templates/serverLogs/errorLogs.html:35 -#: serverLogs/templates/serverLogs/ftplogs.html:35 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 -#: websiteFunctions/templates/websiteFunctions/listCron.html:36 -msgid "Refresh" -msgstr "刷新" - -#: filemanager/templates/filemanager/index.html:146 -#, fuzzy -#| msgid "Select Email" -msgid "Select All" -msgstr "选择Email" - -#: filemanager/templates/filemanager/index.html:150 -#, fuzzy -#| msgid "Select Email" -msgid "UnSelect All" -msgstr "选择Email" - -#: filemanager/templates/filemanager/index.html:159 -#, fuzzy -#| msgid "Size" -msgid "Size (KB)" -msgstr "大小" - -#: filemanager/templates/filemanager/index.html:160 -msgid "Last Modified" -msgstr "最后修改时间" - -#: filemanager/templates/filemanager/index.html:161 -#, fuzzy -#| msgid "PHP version " -msgid "Permissions" -msgstr "PHP版本 " - -#: filemanager/templates/filemanager/index.html:181 -msgid "Upload File" -msgstr "上传文件" - -#: filemanager/templates/filemanager/index.html:181 -#, fuzzy -#| msgid "Reload" -msgid "Upload Limits" -msgstr "重载" - -#: filemanager/templates/filemanager/index.html:187 -msgid "Upload queue" -msgstr "上传队列" - -#: filemanager/templates/filemanager/index.html:188 -msgid "Queue length:" -msgstr "队列进度:" - -#: filemanager/templates/filemanager/index.html:192 -msgid "Drop" -msgstr "" - -#: filemanager/templates/filemanager/index.html:193 -msgid "Drop Files here to upload them." -msgstr "拖到文件到这里来上传它们" - -#: filemanager/templates/filemanager/index.html:205 -msgid "Progress" -msgstr "进度" - -#: filemanager/templates/filemanager/index.html:233 -msgid "Remove" -msgstr "移除" - -#: filemanager/templates/filemanager/index.html:243 -msgid "Queue progress:" -msgstr "队列进度:" - -#: filemanager/templates/filemanager/index.html:252 -#, fuzzy -#| msgid "Cannot tune. Error message:" -msgid "can not be uploaded, Error message:" -msgstr "无法保存设置, 错误信息:" - -#: filemanager/templates/filemanager/index.html:256 -msgid "Upload all" -msgstr "全部上传" - -#: filemanager/templates/filemanager/index.html:259 -#, fuzzy -#| msgid "Cancel" -msgid "Cancel all" -msgstr "取消" - -#: filemanager/templates/filemanager/index.html:262 -msgid "Remove all" -msgstr "移除所有" - -#: filemanager/templates/filemanager/index.html:298 -#, fuzzy -#| msgid "Rule successfully added." -msgid "File Successfully saved." -msgstr "成功添加规则" - -#: filemanager/templates/filemanager/index.html:305 -#: firewall/templates/firewall/secureSSH.html:68 -#: managePHP/templates/managePHP/editPHPConfig.html:138 -#: managePHP/templates/managePHP/editPHPConfig.html:205 -#: userManagment/templates/userManagment/apiAccess.html:53 -#: userManagment/templates/userManagment/modifyACL.html:436 -#: userManagment/templates/userManagment/resellerCenter.html:58 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 -msgid "Save Changes" -msgstr "保存修改" - -#: filemanager/templates/filemanager/index.html:322 -#, fuzzy -#| msgid "Create New User" -msgid "Create new folder!" -msgstr "创建新用户" - -#: filemanager/templates/filemanager/index.html:330 -#, fuzzy -#| msgid "File Name" -msgid "New Folder Name" -msgstr "文件名" - -#: filemanager/templates/filemanager/index.html:332 -msgid "Folder will be created in your current directory" -msgstr "文件夹将在当前目录中创建" - -#: filemanager/templates/filemanager/index.html:334 -#, fuzzy -#| msgid "Create User" -msgid "Create Folder" -msgstr "创建用户" - -#: filemanager/templates/filemanager/index.html:347 -#, fuzzy -#| msgid "is successfully created." -msgid "Folder Successfully created." -msgstr "已成功添加" - -#: filemanager/templates/filemanager/index.html:366 -#, fuzzy -#| msgid "Create New User" -msgid "Create new file!" -msgstr "创建新用户" - -#: filemanager/templates/filemanager/index.html:374 -#, fuzzy -#| msgid "File Name" -msgid "New File Name" -msgstr "文件名" - -#: filemanager/templates/filemanager/index.html:376 -msgid "" -"File will be created in your current directory, if it already exists it will " -"not overwirte." -msgstr "文件将在当前目录中创建,如果它已存在将不会被覆写" - -#: filemanager/templates/filemanager/index.html:378 -#, fuzzy -#| msgid "Create Email" -msgid "Create File" -msgstr "创建Email" - -#: filemanager/templates/filemanager/index.html:391 -#, fuzzy -#| msgid "is successfully created." -msgid "File Successfully created." -msgstr "已成功添加" - -#: filemanager/templates/filemanager/index.html:407 -#, fuzzy -#| msgid "Configurations" -msgid "Confirm Deletion!" -msgstr "配置" - -#: filemanager/templates/filemanager/index.html:440 -msgid "List of files/folder!" -msgstr "文件/文件夹列表!" - -#: filemanager/templates/filemanager/index.html:444 -#, fuzzy -#| msgid "File Name" -msgid "Compressed File Name" -msgstr "文件名" - -#: filemanager/templates/filemanager/index.html:446 -#, fuzzy -#| msgid "Extension Name" -msgid "Enter without extension name!" -msgstr "扩展名称" - -#: filemanager/templates/filemanager/index.html:450 -msgid "Compression Type" -msgstr "压缩类型" - -#: filemanager/templates/filemanager/index.html:475 -msgid "Extracting" -msgstr "解压中" - -#: filemanager/templates/filemanager/index.html:483 -msgid "Extract in" -msgstr "提取至" - -#: filemanager/templates/filemanager/index.html:485 -msgid "You can enter . to extract in current directory!" -msgstr "您可以输入 . 提取至当前目录" - -#: filemanager/templates/filemanager/index.html:503 -#, fuzzy -#| msgid "Files" -msgid "Move Files" -msgstr "文件" - -#: filemanager/templates/filemanager/index.html:511 -#: filemanager/templates/filemanager/index.html:546 -msgid "List of files/folders!" -msgstr "文件(夹)列表!" - -#: filemanager/templates/filemanager/index.html:515 -msgid "Move to" -msgstr "移动到" - -#: filemanager/templates/filemanager/index.html:517 -msgid "Enter a path to move your files!" -msgstr "输入新文件夹的路径!" - -#: filemanager/templates/filemanager/index.html:538 -#, fuzzy -#| msgid "Files" -msgid "Copy Files" -msgstr "文件" - -#: filemanager/templates/filemanager/index.html:550 -msgid "Copy to" -msgstr "复制到" - -#: filemanager/templates/filemanager/index.html:552 -msgid "Enter a path to copy your files to!" -msgstr "输入复制到的文件夹的路径" - -#: filemanager/templates/filemanager/index.html:572 -msgid "Renaming" -msgstr "重命名" - -#: filemanager/templates/filemanager/index.html:580 -#, fuzzy -#| msgid "File Name" -msgid "New Name" -msgstr "文件名" - -#: filemanager/templates/filemanager/index.html:582 -msgid "Enter new name of file!" -msgstr "" - -#: filemanager/templates/filemanager/index.html:602 -#, fuzzy -#| msgid "PHP version " -msgid "Changing permissions for" -msgstr "PHP版本 " - -#: filemanager/templates/filemanager/index.html:611 -msgid "Mode" -msgstr "" - -#: filemanager/templates/filemanager/index.html:612 -#: serverStatus/templates/serverStatus/topProcesses.html:193 -#, fuzzy -#| msgid "Users" -msgid "User" -msgstr "用户" - -#: filemanager/templates/filemanager/index.html:613 -msgid "Group" -msgstr "" - -#: filemanager/templates/filemanager/index.html:614 -msgid "World" -msgstr "" - -#: filemanager/templates/filemanager/index.html:619 -msgid "Read" -msgstr "" - -#: filemanager/templates/filemanager/index.html:625 -msgid "Write" -msgstr "" - -#: filemanager/templates/filemanager/index.html:631 -msgid "Execute" -msgstr "" - -#: filemanager/templates/filemanager/index.html:647 -#: filemanager/templates/filemanager/index.html:695 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change Permissions" -msgstr "选择PHP版本" - -#: filemanager/templates/filemanager/index.html:648 -#, fuzzy -#| msgid "Select PHP Version" -msgid "Change Recursively" -msgstr "选择PHP版本" - -#: filemanager/templates/filemanager/index.html:692 -msgid "Download" -msgstr "下载" - -#: firewall/templates/firewall/csf.html:3 -msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" -msgstr "" - -#: firewall/templates/firewall/csf.html:13 -msgid "CSF (ConfigServer Security and Firewall)!" -msgstr "" - -#: firewall/templates/firewall/csf.html:14 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "" -"On this page you can configure CSF (ConfigServer Security and Firewall) " -"settings." -msgstr "这里是远程备份页面(SFTP)" - -#: firewall/templates/firewall/csf.html:28 -msgid "CSF is not installed " -msgstr "CSF未被安装" - -#: firewall/templates/firewall/csf.html:55 -#, fuzzy -#| msgid "Records successfully fetched for" -msgid "CSF successfully installed, refreshing page in 3 seconds.." -msgstr "成功读取记录" - -#: firewall/templates/firewall/csf.html:66 -msgid "In winter we must protect each other.." -msgstr "" - -#: firewall/templates/firewall/csf.html:90 -msgid "General" -msgstr "" - -#: firewall/templates/firewall/csf.html:100 -msgid "LFD" -msgstr "" - -#: firewall/templates/firewall/csf.html:109 -msgid "Remove CSF" -msgstr "" - -#: firewall/templates/firewall/csf.html:112 -msgid "Completely Remove CSF" -msgstr "" - -#: firewall/templates/firewall/csf.html:126 -msgid "Testing Mode" -msgstr "" - -#: firewall/templates/firewall/csf.html:133 -msgid "TCP IN Ports" -msgstr "" - -#: firewall/templates/firewall/csf.html:143 -msgid "TCP Out Ports" -msgstr "" - -#: firewall/templates/firewall/csf.html:153 -msgid "UDP In Ports" -msgstr "" - -#: firewall/templates/firewall/csf.html:163 -msgid "UDP Out Ports" -msgstr "" - -#: firewall/templates/firewall/csf.html:181 -#, fuzzy -#| msgid "Allowed" -msgid "Allow IP" -msgstr "可用" - -#: firewall/templates/firewall/csf.html:191 -#, fuzzy -#| msgid "IP Address" -msgid "Block IP Address" -msgstr "IP地址" - -#: firewall/templates/firewall/csf.html:203 -msgid "Comming Soon." -msgstr "" - -#: firewall/templates/firewall/firewall.html:3 -msgid "Firewall - CyberPanel" -msgstr "防火墙 - CyberPanel" - -#: firewall/templates/firewall/firewall.html:13 -msgid "Add/Delete Firewall Rules" -msgstr "添加/删除防火墙规则" - -#: firewall/templates/firewall/firewall.html:14 -msgid "" -"On this page you can add/delete firewall rules. (By default all ports are " -"blocked, except mentioned below)" -msgstr "此页面可以添加/删除防火墙规则 (除以下端口外, 所有端口默认关闭) " - -#: firewall/templates/firewall/firewall.html:19 -msgid "Add/Delete Rules" -msgstr "添加/删除规则" - -#: firewall/templates/firewall/firewall.html:56 -msgid "Action failed. Error message:" -msgstr "操作失败, 错误信息: " - -#: firewall/templates/firewall/firewall.html:61 -#: serverStatus/templates/serverStatus/litespeedStatus.html:82 -#: serverStatus/templates/serverStatus/litespeedStatus.html:305 -msgid "Action successful." -msgstr "操作成功" - -#: firewall/templates/firewall/firewall.html:121 -msgid "Protocol" -msgstr "协议" - -#: firewall/templates/firewall/firewall.html:157 -msgid "Rule successfully added." -msgstr "成功添加规则" - -#: firewall/templates/firewall/index.html:3 -msgid "Security - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/index.html:12 -msgid "Security Functions" -msgstr "安全" - -#: firewall/templates/firewall/index.html:13 -msgid "Manage the security of the server on this page." -msgstr "在此页面管理服务器安全相关内容" - -#: firewall/templates/firewall/modSecurity.html:3 -#, fuzzy -#| msgid "Security - CyberPanel" -msgid "ModSecurity - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/modSecurity.html:14 -#: firewall/templates/firewall/modSecurity.html:208 -#, fuzzy -#| msgid "Edit PHP Configurations" -msgid "ModSecurity Configurations!" -msgstr "设置PHP参数" - -#: firewall/templates/firewall/modSecurity.html:18 -#: firewall/templates/firewall/modSecurity.html:212 -#: firewall/templates/firewall/modSecurityRules.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -msgid "ModSec Docs" -msgstr "" - -#: firewall/templates/firewall/modSecurity.html:20 -#: firewall/templates/firewall/modSecurity.html:214 -#, 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:26 -#: firewall/templates/firewall/modSecurity.html:220 -#, fuzzy -#| msgid "Security" -msgid "ModSecurity" -msgstr "安全" - -#: firewall/templates/firewall/modSecurity.html:32 -#: firewall/templates/firewall/modSecurity.html:229 -#: firewall/templates/firewall/modSecurityRules.html:70 -#: firewall/templates/firewall/modSecurityRulesPacks.html:28 -#: firewall/templates/firewall/spamassassin.html:29 -msgid "ModSecurity is not installed " -msgstr "ModSecurity未被安装" - -#: firewall/templates/firewall/modSecurity.html:61 -#: firewall/templates/firewall/modSecurity.html:257 -#: firewall/templates/firewall/spamassassin.html:55 -msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." -msgstr "ModSecurity安装成功,将在3秒内刷新页面" - -#: firewall/templates/firewall/modSecurity.html:73 -#: firewall/templates/firewall/modSecurity.html:269 -#: firewall/templates/firewall/spamassassin.html:66 -msgid "Winter is coming, but so is ModSecurity." -msgstr "" - -#: firewall/templates/firewall/modSecurity.html:174 -#: firewall/templates/firewall/modSecurity.html:362 -#: firewall/templates/firewall/spamassassin.html:169 -#, fuzzy -#| msgid "Could not fetch current configuration. Error message:" -msgid "Failed to save ModSecurity configurations. Error message: " -msgstr "无法读取当前配置, 错误信息:" - -#: firewall/templates/firewall/modSecurity.html:179 -#: firewall/templates/firewall/modSecurity.html:367 -#: firewall/templates/firewall/spamassassin.html:173 -#, fuzzy -#| msgid "Backup Process successfully started." -msgid "ModSecurity configurations successfully saved." -msgstr " 已成功创建." - -#: firewall/templates/firewall/modSecurityRules.html:3 -#, fuzzy -#| msgid "Security - CyberPanel" -msgid "ModSecurity Rules - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/modSecurityRules.html:13 -#, fuzzy -#| msgid "Security" -msgid "ModSecurity Rules!" -msgstr "安全" - -#: firewall/templates/firewall/modSecurityRules.html:14 -#, fuzzy -#| msgid "" -#| "On this page you can launch, list, modify and delete websites from your " -#| "server." -msgid "On this page you can add/delete ModSecurity rules." -msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站." - -#: firewall/templates/firewall/modSecurityRules.html:42 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Save Rules!" -msgstr "保存Rewrite rules" - -#: firewall/templates/firewall/modSecurityRules.html:49 -msgid "ModSecurity Rules Saved" -msgstr "" - -#: firewall/templates/firewall/modSecurityRules.html:58 -#, fuzzy -#| msgid "Could not save rewrite rules. Error message:" -msgid "Could not save rules, Error message: " -msgstr "无法保存Rewrite rules, 错误信息:" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:3 -#, fuzzy -#| msgid "Security - CyberPanel" -msgid "ModSecurity Rules Packs - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:20 -#, fuzzy -#| msgid "Modify Package" -msgid "ModSecurity Rules Packages!" -msgstr "修改套餐" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:14 -msgid "Install/Un-install ModSecurity rules packages." -msgstr "" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:60 -#: firewall/templates/firewall/modSecurityRulesPacks.html:71 -#, fuzzy -#| msgid "Configurations" -msgid "Configure" -msgstr "配置" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:84 -#: firewall/templates/firewall/modSecurityRulesPacks.html:96 -#, fuzzy -#| msgid "Action successful." -msgid "Operation successful." -msgstr "操作成功" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:92 -#, fuzzy -#| msgid "Action failed. Error message:" -msgid "Operation failed, Error message: " -msgstr "操作失败, 错误信息: " - -#: firewall/templates/firewall/modSecurityRulesPacks.html:110 -msgid "Supplier" -msgstr "" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:111 -#, fuzzy -#| msgid "File Name" -msgid "Filename" -msgstr "文件名" - -#: firewall/templates/firewall/secureSSH.html:3 -msgid "Secure SSH - CyberPanel" -msgstr "SSH加固 - CyberPanel" - -#: firewall/templates/firewall/secureSSH.html:13 -#, fuzzy -#| msgid "SSH Keys" -msgid "SSH Docs" -msgstr "SSH密钥" - -#: firewall/templates/firewall/secureSSH.html:14 -msgid "Secure or harden SSH Configurations." -msgstr "SSH设置已保存." - -#: firewall/templates/firewall/secureSSH.html:28 -#: managePHP/templates/managePHP/editPHPConfig.html:29 -msgid "Basic" -msgstr "基础" - -#: firewall/templates/firewall/secureSSH.html:34 -msgid "SSH Keys" -msgstr "SSH密钥" - -#: firewall/templates/firewall/secureSSH.html:47 -msgid "SSH Port" -msgstr "SSH端口" - -#: firewall/templates/firewall/secureSSH.html:56 -msgid "Permit Root Login" -msgstr "允许ROOT登陆" - -#: firewall/templates/firewall/secureSSH.html:60 -msgid "" -"Before disabling root login, make sure you have another account with sudo " -"priviliges on server." -msgstr "禁用ROOT登陆前,请确保您在服务器上拥有一个sudo权限的用户 " - -#: firewall/templates/firewall/secureSSH.html:82 -msgid "SSH Configurations Saved." -msgstr "SSH设置已保存" - -#: firewall/templates/firewall/secureSSH.html:121 -msgid "Key" -msgstr "密钥" - -#: firewall/templates/firewall/secureSSH.html:150 -msgid "Add Key" -msgstr "添加密钥" - -#: firewall/templates/firewall/secureSSH.html:167 -msgid "SSH Key Deleted" -msgstr "SSH密钥已删除" - -#: ftp/templates/ftp/createFTPAccount.html:3 -msgid "Create FTP Account - CyberPanel" -msgstr "创建FTP用户 - CyberPanel" - -#: ftp/templates/ftp/createFTPAccount.html:13 -msgid "" -"Select the website from list, and its home directory will be set as the path " -"to ftp account." -msgstr "在列表中选择一个网站, 它的根目录将会设为FTP的根目录 " - -#: ftp/templates/ftp/createFTPAccount.html:26 -#: ftp/templates/ftp/deleteFTPAccount.html:25 -#: ftp/templates/ftp/listFTPAccounts.html:26 -msgid "PureFTPD is disabled." -msgstr "PureFTPD已被禁用" - -#: ftp/templates/ftp/createFTPAccount.html:67 -msgid "FTP Password" -msgstr "FTP密码" - -#: ftp/templates/ftp/createFTPAccount.html:90 -msgid "Path (Relative)" -msgstr "相对路径" - -#: ftp/templates/ftp/createFTPAccount.html:92 -msgid "Leave empty to select default home directory." -msgstr "留空则设置为默认根目录" - -#: ftp/templates/ftp/createFTPAccount.html:105 -msgid "Create FTP" -msgstr "创建FTP用户" - -#: ftp/templates/ftp/createFTPAccount.html:113 -msgid "Cannot create FTP account. Error message:" -msgstr "无法创建FTP用户, 错误信息: " - -#: ftp/templates/ftp/createFTPAccount.html:118 -#: ftp/templates/ftp/createFTPAccount.html:122 -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid "FTP Account with username:" -msgstr "FTP用户: " - -#: ftp/templates/ftp/createFTPAccount.html:119 -#: ftp/templates/ftp/createFTPAccount.html:123 -#: userManagment/templates/userManagment/createUser.html:129 -msgid "is successfully created." -msgstr "已成功添加" - -#: ftp/templates/ftp/deleteFTPAccount.html:3 -msgid "Delete FTP Account - CyberPanel" -msgstr "删除FTP用户 - CyberPanel" - -#: ftp/templates/ftp/deleteFTPAccount.html:13 -msgid "Select domain and delete its related FTP accounts." -msgstr "选择域名并删除与之相关的FTP用户" - -#: ftp/templates/ftp/deleteFTPAccount.html:52 -msgid "Select FTP Account" -msgstr "选择FTP用户" - -#: ftp/templates/ftp/deleteFTPAccount.html:83 -msgid "Cannot delete account. Error message:" -msgstr "无法删除FTP账号, 错误信息: " - -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid " is successfully deleted." -msgstr " 已成功删除" - -#: ftp/templates/ftp/deleteFTPAccount.html:91 -#: userManagment/templates/userManagment/deleteUser.html:70 -msgid "Could not connect to the server. Please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面" - -#: ftp/templates/ftp/index.html:3 -msgid "FTP Functions - CyberPanel" -msgstr "FTP功能 - CyberPanel" - -#: ftp/templates/ftp/index.html:13 -msgid "Delete and create FTP accounts on this page." -msgstr "在此页面添加, 编辑和删除FTP用户" - -#: ftp/templates/ftp/listFTPAccounts.html:3 -msgid "List FTP Accounts - CyberPanel" -msgstr "查看FTP用户 - CyberPanel" - -#: ftp/templates/ftp/listFTPAccounts.html:14 -msgid "List FTP Accounts or change their passwords." -msgstr "查看FTP用户或修改密码" - -#: ftp/templates/ftp/listFTPAccounts.html:66 -msgid "Password changed for" -msgstr "已为修改密码" - -#: ftp/templates/ftp/listFTPAccounts.html:70 -msgid "" -"Cannot change password for {$ ftpUsername $}. Error message:" -msgstr "无法修改 {$ ftpUsername $} 的密码, 错误信息:" - -#: ftp/templates/ftp/listFTPAccounts.html:124 -msgid "Directory" -msgstr "目录" - -#: mailServer/templates/mailServer/changeEmailPassword.html:3 -msgid "Change Email Password - CyberPanel" -msgstr "修改Email密码 - CyberPanel" - -#: mailServer/templates/mailServer/changeEmailPassword.html:12 -#: mailServer/templates/mailServer/changeEmailPassword.html:19 -#: userManagment/templates/userManagment/createACL.html:299 -#: userManagment/templates/userManagment/modifyACL.html:303 -msgid "Change Email Password" -msgstr "修改Email密码" - -#: mailServer/templates/mailServer/changeEmailPassword.html:13 -msgid "Select a website from the list, to change its password." -msgstr "在列表中选择并修改密码" - -#: mailServer/templates/mailServer/changeEmailPassword.html:27 -#: mailServer/templates/mailServer/createEmailAccount.html:27 -#: mailServer/templates/mailServer/deleteEmailAccount.html:27 -#: mailServer/templates/mailServer/emailForwarding.html:26 -#: mailServer/templates/mailServer/listEmails.html:27 -msgid "Postfix is disabled." -msgstr "Postfix已被禁用" - -#: mailServer/templates/mailServer/changeEmailPassword.html:58 -#: mailServer/templates/mailServer/deleteEmailAccount.html:58 -#: mailServer/templates/mailServer/emailForwarding.html:52 -msgid "Select Email" -msgstr "选择Email" - -#: mailServer/templates/mailServer/changeEmailPassword.html:106 -#: mailServer/templates/mailServer/deleteEmailAccount.html:90 -msgid "Cannot delete email account. Error message:" -msgstr "无法删除Email用户, 错误信息: " - -#: mailServer/templates/mailServer/changeEmailPassword.html:111 -msgid "Password successfully changed for :" -msgstr "已成功为修改密码 :" - -#: mailServer/templates/mailServer/changeEmailPassword.html:118 -#: mailServer/templates/mailServer/deleteEmailAccount.html:102 -msgid "Currently no email accounts exist for this domain." -msgstr "目前此域名并没有Email" - -#: mailServer/templates/mailServer/createEmailAccount.html:3 -msgid "Create Email Account - CyberPanel" -msgstr "创建Email用户 - CyberPanel" - -#: mailServer/templates/mailServer/createEmailAccount.html:13 -msgid "Select a website from the list, to create an email account." -msgstr "请从列表中选择一个网站来创建Email用户" - -#: mailServer/templates/mailServer/createEmailAccount.html:106 -msgid "Cannot create email account. Error message:" -msgstr "无法创建Email用户, 错误信息: " - -#: mailServer/templates/mailServer/createEmailAccount.html:111 -msgid "Email with id :" -msgstr "Email ID" - -#: mailServer/templates/mailServer/createEmailAccount.html:112 -msgid " is successfully created." -msgstr " 已成功创建" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:3 -msgid "Delete Email Account - CyberPanel" -msgstr "删除Email用户 - CyberPanel" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:13 -msgid "Select a website from the list, to delete an email account." -msgstr "请从列表中选择一个网站来删除Email用户" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:95 -msgid "Email with id : {$ deletedID $} is successfully deleted." -msgstr "Email: {$ deletedID $} 已成功删除" - -#: mailServer/templates/mailServer/dkimManager.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "DKIM Manager - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: mailServer/templates/mailServer/dkimManager.html:13 -msgid "DKIM Docs" -msgstr "DKIM文档" - -#: mailServer/templates/mailServer/dkimManager.html:14 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "This page can be used to generate and view DKIM keys for Domains" -msgstr "这里是网站备份界面" - -#: mailServer/templates/mailServer/dkimManager.html:27 -msgid "OpenDKIM is not installed. " -msgstr "OpenDKIM未安装" - -#: mailServer/templates/mailServer/dkimManager.html:28 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 -#, fuzzy -#| msgid "Install" -msgid "Install Now" -msgstr "安装" - -#: mailServer/templates/mailServer/dkimManager.html:48 -msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." -msgstr "OpenDKIM成功安装,页面将在3秒内刷新" - -#: mailServer/templates/mailServer/dkimManager.html:97 -#, fuzzy -#| msgid "Currently no email accounts exist for this domain." -msgid "Keys not available for this domain." -msgstr "目前此域名并没有Email" - -#: mailServer/templates/mailServer/dkimManager.html:98 -msgid "Generate Now" -msgstr "" - -#: mailServer/templates/mailServer/dkimManager.html:110 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 -#, fuzzy -#| msgid "Domains" -msgid "Domain" -msgstr "域名" - -#: mailServer/templates/mailServer/dkimManager.html:111 -msgid "Private Key" -msgstr "私匙" - -#: mailServer/templates/mailServer/dkimManager.html:112 -msgid "Public Key" -msgstr "公匙" - -#: mailServer/templates/mailServer/emailForwarding.html:3 -#, fuzzy -#| msgid "Create Email Account - CyberPanel" -msgid "Setup Email Forwarding - CyberPanel" -msgstr "创建Email用户 - CyberPanel" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -#: mailServer/templates/mailServer/emailForwarding.html:19 -msgid "Setup Email Forwarding" -msgstr "设置邮件转发" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -msgid "Forwarding Docs" -msgstr "转发文档" - -#: mailServer/templates/mailServer/emailForwarding.html:13 -msgid "This page help you setup email forwarding for your emails." -msgstr "此页面可帮助您设置电子邮件转发。" - -#: mailServer/templates/mailServer/emailForwarding.html:61 -msgid "Forwarding Options" -msgstr "转发设置" - -#: mailServer/templates/mailServer/emailForwarding.html:97 -#: mailServer/templates/mailServer/emailForwarding.html:118 -#, fuzzy -#| msgid "Resource" -msgid "Source" -msgstr "资源" - -#: mailServer/templates/mailServer/emailForwarding.html:101 -msgid "or path to the program" -msgstr "" - -#: mailServer/templates/mailServer/emailForwarding.html:106 -#, fuzzy -#| msgid "Create Email" -msgid "Forward Email" -msgstr "创建Email" - -#: mailServer/templates/mailServer/index.html:3 -msgid "Mail Functions - CyberPanel" -msgstr "邮件功能 - CyberPanel" - -#: mailServer/templates/mailServer/index.html:12 -msgid "Mail Functions" -msgstr "邮件功能" - -#: mailServer/templates/mailServer/index.html:13 -msgid "Manage email accounts on this page." -msgstr "在此页面管理Email用户" - -#: mailServer/templates/mailServer/listEmails.html:3 -#, fuzzy -#| msgid "List FTP Accounts - CyberPanel" -msgid "List Email Accounts - CyberPanel" -msgstr "查看FTP用户 - CyberPanel" - -#: mailServer/templates/mailServer/listEmails.html:13 -#: mailServer/templates/mailServer/listEmails.html:19 -#, fuzzy -#| msgid "List FTP Accounts" -msgid "List Email Accounts" -msgstr "查看FTP用户" - -#: mailServer/templates/mailServer/listEmails.html:14 -#, fuzzy -#| msgid "List FTP Accounts or change their passwords." -msgid "List Emails Accounts. Change their passwords or delete them." -msgstr "查看FTP用户或修改密码" - -#: managePHP/templates/managePHP/editPHPConfig.html:3 -msgid "Edit PHP Configurations - CyberPanel" -msgstr "设置PHP参数 - CyberPanel" - -#: managePHP/templates/managePHP/editPHPConfig.html:14 -#: managePHP/templates/managePHP/editPHPConfig.html:21 -msgid "Edit PHP Configurations" -msgstr "设置PHP参数" - -#: managePHP/templates/managePHP/editPHPConfig.html:15 -msgid "Edit PHP Configurations on this page." -msgstr "在此页面设置PHP参数" - -#: managePHP/templates/managePHP/editPHPConfig.html:36 -msgid "Advanced" -msgstr "高级" - -#: managePHP/templates/managePHP/editPHPConfig.html:65 -msgid "display_errors" -msgstr "display_errors" - -#: managePHP/templates/managePHP/editPHPConfig.html:72 -msgid "file_uploads" -msgstr "file_uploads" - -#: managePHP/templates/managePHP/editPHPConfig.html:80 -msgid "allow_url_fopen" -msgstr "allow_url_fopen" - -#: managePHP/templates/managePHP/editPHPConfig.html:88 -msgid "allow_url_include" -msgstr "allow_url_include" - -#: managePHP/templates/managePHP/editPHPConfig.html:96 -msgid "memory_limit" -msgstr "memory_limit" - -#: managePHP/templates/managePHP/editPHPConfig.html:103 -msgid "max_execution_time" -msgstr "max_execution_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:111 -msgid "upload_max_filesize" -msgstr "upload_max_filesize" - -#: managePHP/templates/managePHP/editPHPConfig.html:119 -#, fuzzy -#| msgid "upload_max_filesize" -msgid "post_max_size" -msgstr "upload_max_filesize" - -#: managePHP/templates/managePHP/editPHPConfig.html:126 -msgid "max_input_time" -msgstr "max_input_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:218 -msgid "PHP Configs Saved." -msgstr "PHP参数已保存" - -#: managePHP/templates/managePHP/index.html:3 -msgid "Manage PHP Installations - CyberPanel" -msgstr "管理PHP - CyberPanel" - -#: managePHP/templates/managePHP/index.html:12 -msgid "Manage PHP Installations" -msgstr "管理PHP" - -#: managePHP/templates/managePHP/index.html:13 -msgid "Edit your PHP Configurations to suit your needs." -msgstr "调整PHP参数以满足您的需求" - -#: managePHP/templates/managePHP/installExtensions.html:3 -msgid "Install PHP Extensions - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: managePHP/templates/managePHP/installExtensions.html:14 -msgid "Install/uninstall php extensions on this page." -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版本" - -#: managePHP/templates/managePHP/installExtensions.html:47 -msgid "Search Extensions.." -msgstr "搜索扩展..." - -#: managePHP/templates/managePHP/installExtensions.html:62 -msgid "Extension Name" -msgstr "扩展名称" - -#: managePHP/templates/managePHP/installExtensions.html:63 -#: pluginHolder/templates/pluginHolder/plugins.html:30 -msgid "Description" -msgstr "描述" - -#: managePHP/templates/managePHP/installExtensions.html:65 -#: managePHP/templates/managePHP/installExtensions.html:81 -msgid "Install" -msgstr "安装" - -#: managePHP/templates/managePHP/installExtensions.html:66 -#: managePHP/templates/managePHP/installExtensions.html:86 -msgid "Uninstall" -msgstr "卸载" - -#: managePHP/templates/managePHP/installExtensions.html:115 -#: tuning/templates/tuning/phpTuning.html:115 -#: tuning/templates/tuning/phpTuning.html:255 -#: userManagment/templates/userManagment/modifyUser.html:126 -msgid "Cannot fetch details. Error message:" -msgstr "无法获取详情, 错误信息: " - -#: managePHP/templates/managePHP/installExtensions.html:119 -msgid "Cannot perform operation. Error message:" -msgstr "无法完成操作, 错误信息: " - -#: manageSSL/templates/manageSSL/index.html:3 -msgid "SSL Functions - CyberPanel" -msgstr "SSL功能 - CyberPanel" - -#: manageSSL/templates/manageSSL/index.html:13 -msgid "SSL Functions" -msgstr "SSL功能" - -#: manageSSL/templates/manageSSL/index.html:14 -msgid "Issue Let’s Encrypt SSLs for websites and hostname." -msgstr "为网站以及主机申请签发Let's Encrypt证书" - -#: manageSSL/templates/manageSSL/manageSSL.html:3 -msgid "Manage SSL - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -msgid "SSL Docs" -msgstr "" - -#: manageSSL/templates/manageSSL/manageSSL.html:14 -msgid "" -"This page can be used to issue Let’s Encrypt SSL for existing websites on " -"server." -msgstr "在此页面可以为已在服务器上创建的网站申请签发Let's Encrypt证书 " - -#: manageSSL/templates/manageSSL/manageSSL.html:42 -#: manageSSL/templates/manageSSL/sslForHostName.html:42 -#: manageSSL/templates/manageSSL/sslForMailServer.html:40 -msgid "Issue SSL" -msgstr "签发SSL证书" - -#: manageSSL/templates/manageSSL/manageSSL.html:52 -#: manageSSL/templates/manageSSL/sslForHostName.html:52 -#: manageSSL/templates/manageSSL/sslForMailServer.html:50 -msgid "Cannot issue SSL. Error message:" -msgstr "无法签发SSL证书, 错误信息: " - -#: manageSSL/templates/manageSSL/manageSSL.html:56 -msgid "SSL Issued for" -msgstr "已为签发证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:3 -msgid "Issue SSL For Hostname - CyberPanel" -msgstr "为面板主机签发SSL证书 - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:20 -msgid "Issue SSL For Hostname" -msgstr "为面板主机签发SSL证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:14 -msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." -msgstr "通过Let's Encrypt证书在已验证的HTTPS连接访问CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:56 -#: manageSSL/templates/manageSSL/sslForHostName.html:60 -msgid "SSL Issued. You can now access CyberPanel at:" -msgstr "SSL证书已签发, 您可以在此登陆CyberPanel: " - -#: manageSSL/templates/manageSSL/sslForMailServer.html:3 -#, fuzzy -#| msgid "Issue SSL For Hostname - CyberPanel" -msgid "Issue SSL For MailServer - CyberPanel" -msgstr "为面板主机签发SSL证书 - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:20 -#, fuzzy -#| msgid "Issue SSL For Hostname" -msgid "Issue SSL For MailServer" -msgstr "为面板主机签发SSL证书" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:14 -#, fuzzy -#| msgid "Issue Let’s Encrypt SSLs for websites and hostname." -msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." -msgstr "为网站以及主机申请签发Let's Encrypt证书" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:54 -msgid "SSL Issued, your mail server now uses Lets Encrypt!" -msgstr "SSL成功签发,您的邮件服务器现在使用Lets Encrypt!" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:58 -#, fuzzy -#| msgid "Could not connect to server. Please refresh this page." -msgid "Could not connect to server, please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面" - -#: manageServices/templates/manageServices/managePostfix.html:3 -#, fuzzy -#| msgid "Change Email Password - CyberPanel" -msgid "Manage Email Server (Postfix) - CyberPanel" -msgstr "修改Email密码 - CyberPanel" - -#: manageServices/templates/manageServices/managePostfix.html:13 -msgid "Manage Email Server (Postfix)!" -msgstr "管理邮件服务器(Postfix)" - -#: manageServices/templates/manageServices/managePostfix.html:13 -#: manageServices/templates/manageServices/managePowerDNS.html:16 -#: manageServices/templates/manageServices/managePureFtpd.html:13 -#, fuzzy -#| msgid "Server Status" -msgid "Services Docs" -msgstr "服务器状态" - -#: manageServices/templates/manageServices/managePostfix.html:14 -msgid "Enable or disable Email services. " -msgstr "启用或禁用邮件服务" - -#: manageServices/templates/manageServices/managePostfix.html:79 -#: manageServices/templates/manageServices/managePowerDNS.html:149 -#: manageServices/templates/manageServices/managePureFtpd.html:79 -msgid "Only administrator can manage services." -msgstr "只有管理员可以管理服务。" - -#: manageServices/templates/manageServices/managePowerDNS.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "Manage PowerDNS - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: manageServices/templates/manageServices/managePowerDNS.html:13 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage PowerDNS!" -msgstr "管理SSL" - -#: manageServices/templates/manageServices/managePowerDNS.html:17 -msgid "Enable or disable DNS services. " -msgstr "启用或禁用DNS服务" - -#: manageServices/templates/manageServices/managePowerDNS.html:42 -#, fuzzy -#| msgid "Security Functions" -msgid "Select Function Mode" -msgstr "安全" - -#: manageServices/templates/manageServices/managePowerDNS.html:53 -#, fuzzy -#| msgid "First Nameserver" -msgid "Slave Server" -msgstr "第一名称服务器" - -#: manageServices/templates/manageServices/managePowerDNS.html:60 -#, fuzzy -#| msgid "Server Logs" -msgid "Master Server IP" -msgstr "服务器日志" - -#: manageServices/templates/manageServices/managePowerDNS.html:67 -#, fuzzy -#| msgid "First Nameserver" -msgid "Slave Server 1" -msgstr "第一名称服务器" - -#: manageServices/templates/manageServices/managePowerDNS.html:74 -#, fuzzy -#| msgid "First Nameserver" -msgid "Slave Server IP" -msgstr "第一名称服务器" - -#: manageServices/templates/manageServices/managePowerDNS.html:81 -msgid "Slave Server 2 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:88 -msgid "Slave Server IP 2 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:95 -msgid "Slave Server 3 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:102 -msgid "Slave Server IP 3 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePureFtpd.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "Manage FTP Server (Pure FTPD) - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: manageServices/templates/manageServices/managePureFtpd.html:13 -msgid "Manage FTP Server (Pure FTPD)!" -msgstr "管理FTP服务(Pure FTPD)" - -#: manageServices/templates/manageServices/managePureFtpd.html:14 -msgid "Enable or disable FTP services. " -msgstr "启用或禁用FTP服务" - -#: manageServices/templates/manageServices/managePureFtpd.html:22 -msgid "Manage PureFTPD" -msgstr "管理PureFTPD" - -#: packages/templates/packages/createPackage.html:3 -msgid "Create Package - CyberPanel" -msgstr "创建套餐 - CyberPanel" - -#: packages/templates/packages/createPackage.html:14 -#: packages/templates/packages/deletePackage.html:13 -#: packages/templates/packages/index.html:14 -#: packages/templates/packages/modifyPackage.html:10 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 -msgid "" -"Packages define resources for your websites, you need to add package before " -"creating a website." -msgstr "套餐规定了您的网站可以使用的资源量, 在创建网站前请先创建一个套餐 " - -#: packages/templates/packages/createPackage.html:19 -msgid "Package Details" -msgstr "套餐详情" - -#: packages/templates/packages/createPackage.html:41 -#: packages/templates/packages/listPackages.html:98 -#: packages/templates/packages/modifyPackage.html:44 -msgid "(0 = Unlimited)" -msgstr "(0为无限制 )" - -#: packages/templates/packages/createPackage.html:45 -#: packages/templates/packages/listPackages.html:104 -#: packages/templates/packages/modifyPackage.html:49 -msgid "Disk Space" -msgstr "硬盘空间" - -#: packages/templates/packages/createPackage.html:49 -#: packages/templates/packages/createPackage.html:57 -#: packages/templates/packages/listPackages.html:109 -#: packages/templates/packages/listPackages.html:119 -#: packages/templates/packages/modifyPackage.html:53 -#: packages/templates/packages/modifyPackage.html:61 -msgid "MB (0 = Unlimited)" -msgstr "MB (0为无限制)" - -#: packages/templates/packages/createPackage.html:53 -#: packages/templates/packages/listPackages.html:35 -#: packages/templates/packages/listPackages.html:114 -#: packages/templates/packages/modifyPackage.html:57 -msgid "Bandwidth" -msgstr "流量" - -#: packages/templates/packages/createPackage.html:62 -#: packages/templates/packages/listPackages.html:125 -#: packages/templates/packages/modifyPackage.html:66 -msgid "FTP Accounts" -msgstr "FTP用户数量" - -#: packages/templates/packages/createPackage.html:108 -msgid "Cannot create package. Error message:" -msgstr "无法创建套餐, 错误信息: " - -#: packages/templates/packages/createPackage.html:113 -msgid "Successfully Created" -msgstr "已成功创建" - -#: packages/templates/packages/deletePackage.html:3 -msgid "Delete Package - CyberPanel" -msgstr "删除套餐 - CyberPanel" - -#: packages/templates/packages/deletePackage.html:56 -msgid "Cannot delete package. Error message:" -msgstr "无法删除套餐, 错误信息: " - -#: packages/templates/packages/deletePackage.html:60 -#, fuzzy -#| msgid " Successfully Deleted" -msgid " Successfully Deleted." -msgstr "已成功删除" - -#: packages/templates/packages/index.html:3 -msgid "Packages - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: packages/templates/packages/listPackages.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid "List Packages - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: packages/templates/packages/listPackages.html:14 -msgid "List Packages and delete or edit them." -msgstr "列出软件包并删除或编辑它们。" - -#: packages/templates/packages/listPackages.html:34 -#, fuzzy -#| msgid "Disk Space" -msgid "Diskspace" -msgstr "硬盘空间" - -#: packages/templates/packages/listPackages.html:36 -#, fuzzy -#| msgid "Create Email Account" -msgid "Email Accounts" -msgstr "创建Email用户" - -#: packages/templates/packages/listPackages.html:38 -msgid "FTPs" -msgstr "" - -#: packages/templates/packages/listPackages.html:39 -#, fuzzy -#| msgid "Add Domains" -msgid "Child Domains" -msgstr "添加域名" - -#: packages/templates/packages/listPackages.html:40 -msgid "Allow FQDN as Childs" -msgstr "" - -#: packages/templates/packages/listPackages.html:152 -#, fuzzy -#| msgid "Additional Features" -msgid "Additional" -msgstr "额外功能" - -#: packages/templates/packages/modifyPackage.html:3 -msgid "Modify Package - CyberPanel" -msgstr "修改套餐 - CyberPanel" - -#: packages/templates/packages/modifyPackage.html:117 -msgid "Cannot fetch package details. Error message:" -msgstr "无法获取套餐资料, 错误信息: " - -#: packages/templates/packages/modifyPackage.html:121 -msgid "Package Details Successfully Fetched" -msgstr "套餐详情成功读取" - -#: packages/templates/packages/modifyPackage.html:125 -msgid "Successfully Modified" -msgstr "已成功修改" - -#: pluginHolder/templates/pluginHolder/plugins.html:15 -#, fuzzy -#| msgid "List Databases - CyberPanel" -msgid "List of installed plugins on your CyberPanel." -msgstr "查看数据库 - CyberPanel" - -#: pluginHolder/templates/pluginHolder/plugins.html:31 -#, fuzzy -#| msgid "Latest Version" -msgid "Version" -msgstr "最新版本" - -#: serverLogs/templates/serverLogs/accessLogs.html:3 -msgid "Access Logs - CyberPanel" -msgstr "访问日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/accessLogs.html:17 -msgid "Access Logs for main web server." -msgstr "Web服务器日志" - -#: serverLogs/templates/serverLogs/accessLogs.html:24 -#: serverLogs/templates/serverLogs/emailLogs.html:23 -#: serverLogs/templates/serverLogs/errorLogs.html:21 -#: serverLogs/templates/serverLogs/ftplogs.html:21 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 -msgid "Last 50 Lines" -msgstr "最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:41 -#: serverLogs/templates/serverLogs/emailLogs.html:42 -#: serverLogs/templates/serverLogs/errorLogs.html:38 -#: serverLogs/templates/serverLogs/ftplogs.html:38 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 -#, fuzzy -#| msgid "Server Logs" -msgid "Clear Logs" -msgstr "服务器日志" - -#: serverLogs/templates/serverLogs/accessLogs.html:47 -#: serverLogs/templates/serverLogs/emailLogs.html:49 -#: serverLogs/templates/serverLogs/errorLogs.html:45 -#: serverLogs/templates/serverLogs/ftplogs.html:44 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 -msgid "Last 50 Lines Fetched" -msgstr "成功获取最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:52 -#: serverLogs/templates/serverLogs/emailLogs.html:54 -#: serverLogs/templates/serverLogs/errorLogs.html:50 -#: serverLogs/templates/serverLogs/ftplogs.html:49 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 -msgid "Could not fetch logs. Use the command line to view the log file." -msgstr "无法获取日志, 请使用命令行模式查看日志" - -#: serverLogs/templates/serverLogs/emailLogs.html:3 -#: serverLogs/templates/serverLogs/errorLogs.html:3 -msgid "Error Logs - CyberPanel" -msgstr "错误日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/emailLogs.html:15 -msgid "Email Logs for main web server." -msgstr "主服务器Email日志" - -#: serverLogs/templates/serverLogs/errorLogs.html:14 -msgid "Error Logs for main web server." -msgstr "主服务器错误日志" - -#: serverLogs/templates/serverLogs/ftplogs.html:3 -msgid "FTP Logs - CyberPanel" -msgstr "FTP日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/ftplogs.html:14 -msgid "FTP Logs for main web server." -msgstr "主服务器FTP日志" - -#: serverLogs/templates/serverLogs/index.html:3 -msgid "Server Logs - CyberPanel" -msgstr "服务器日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/index.html:13 -msgid "Server Logs" -msgstr "服务器日志" - -#: serverLogs/templates/serverLogs/index.html:14 -msgid "" -"These are the logs from main server, to see logs for your website navigate " -"to: Websites -> List Websites -> Select Website -> View Logs." -msgstr "" -"此为主服务器日志,查看网站日志请前往 网站 -> 查看网站 -> 选择网站 -> 查看日志" - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 -#, fuzzy -#| msgid "Security - CyberPanel" -msgid "ModSecurity Audit Logs - CyberPanel" -msgstr "安全 - CyberPanel" - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 -#, fuzzy -#| msgid "Security Functions" -msgid "ModSecurity Audit logs" -msgstr "安全" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 -msgid "CyberPanel Main Log File - CyberPanel" -msgstr "Cyberpanel主日志 - CyberPanel" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 -msgid "" -"This log file corresponds to errors generated by CyberPanel for your domain " -"errors log you can look into /home/domain/logs." -msgstr "此日志是CyberPanel为您的域名记录的错误, 您可以在/home/domain/logs查看 " - -#: serverStatus/templates/serverStatus/index.html:3 -msgid "Server Status - CyberPanel" -msgstr "服务器状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/index.html:14 -msgid "View LiteSpeed status and log files." -msgstr "查看LiteSpeed状态与日志" - -#: serverStatus/templates/serverStatus/index.html:41 -#, fuzzy -#| msgid "CyberPanel Main Log File" -msgid "CyberPanel Main Log" -msgstr "Cybapenl主日志" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:3 -msgid "LiteSpeed Status - CyberPanel" -msgstr "LiteSpeed状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:14 -#: serverStatus/templates/serverStatus/litespeedStatus.html:221 -msgid "LiteSpeed Status:" -msgstr "LiteSpeed状态:" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 -#: serverStatus/templates/serverStatus/litespeedStatus.html:222 -msgid "" -"On this page you can get information regarding your LiteSpeed processes." -msgstr "此页面可以查看LiteSpeed进程信息." - -#: serverStatus/templates/serverStatus/litespeedStatus.html:30 -#: serverStatus/templates/serverStatus/litespeedStatus.html:254 -msgid "LiteSpeed Processes" -msgstr "LiteSpeed进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:37 -#: serverStatus/templates/serverStatus/litespeedStatus.html:261 -msgid "Process ID" -msgstr "进程ID" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:49 -#: serverStatus/templates/serverStatus/litespeedStatus.html:273 -msgid "Main Process" -msgstr "主进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:52 -#: serverStatus/templates/serverStatus/litespeedStatus.html:276 -msgid "lscgid Process" -msgstr "lscgid进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:55 -#: serverStatus/templates/serverStatus/litespeedStatus.html:279 -msgid "Worker Process" -msgstr "工作进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:291 -msgid "Reboot Litespeed" -msgstr "重启LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:73 -#: serverStatus/templates/serverStatus/litespeedStatus.html:297 -msgid "Stop LiteSpeed" -msgstr "停止LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:87 -#: serverStatus/templates/serverStatus/litespeedStatus.html:310 -msgid "Error Occurred. See CyberPanel main log file." -msgstr "发生错误, 请查看CyberPanel主日志." - -#: serverStatus/templates/serverStatus/litespeedStatus.html:92 -#: serverStatus/templates/serverStatus/litespeedStatus.html:315 -msgid "Could not connect to server." -msgstr "无法连接到服务器." - -#: serverStatus/templates/serverStatus/litespeedStatus.html:138 -msgid "Switch to LiteSpeed Enterprise Web Server" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:149 -#, fuzzy -#| msgid "LiteSpeed Processes" -msgid "LiteSpeed Serial No. (License Key)" -msgstr "LiteSpeed进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:160 -msgid "Switch" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:162 -msgid "Get 15 Days Trial" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:175 -msgid "" -"Note: If you select 15 days trial there is no need to enter the serial key, " -"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " -"have not used trial already." -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:193 -msgid "With great wisdom comes great responsibility." -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:329 -#, fuzzy -#| msgid "File Manager" -msgid "License Manager" -msgstr "文件管理" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:336 -#: serverStatus/templates/serverStatus/litespeedStatus.html:340 -#: serverStatus/templates/serverStatus/litespeedStatus.html:341 -#, fuzzy -#| msgid "Server Status" -msgid "License Status" -msgstr "服务器状态" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:346 -#: serverStatus/templates/serverStatus/litespeedStatus.html:350 -#: serverStatus/templates/serverStatus/litespeedStatus.html:351 -#, fuzzy -#| msgid "Change" -msgid "Change License" -msgstr "修改" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:378 -#, fuzzy -#| msgid "File" -msgid "New key" -msgstr "文件" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:388 -#, fuzzy -#| msgid "Change" -msgid "Change Key" -msgstr "修改" - -#: serverStatus/templates/serverStatus/services.html:3 -#, fuzzy -#| msgid "Server Logs - CyberPanel" -msgid "Services - CyberPanel" -msgstr "服务器日志 - CyberPanel" - -#: serverStatus/templates/serverStatus/services.html:25 -msgid "Show stats for services and actions (Start, Stop, Restart)" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid "Top Processes - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: serverStatus/templates/serverStatus/topProcesses.html:16 -msgid "List of top processes on your server. (Refresh every 3 seconds)" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:27 -msgid "Cores" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:28 -#, fuzzy -#| msgid "File Name" -msgid "Model Name" -msgstr "文件名" - -#: serverStatus/templates/serverStatus/topProcesses.html:29 -msgid "CPU Mhz" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:30 -#, fuzzy -#| msgid "Cache Size in memory" -msgid "Cache Size" -msgstr "内存缓存大小" - -#: serverStatus/templates/serverStatus/topProcesses.html:51 -#, fuzzy -#| msgid "Process ID" -msgid "Processes" -msgstr "进程ID" - -#: serverStatus/templates/serverStatus/topProcesses.html:53 -msgid "Sleeping" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:54 -#, fuzzy -#| msgid "Stop" -msgid "Stopped" -msgstr "停止" - -#: serverStatus/templates/serverStatus/topProcesses.html:55 -msgid "Zombie" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:80 -#, fuzzy -#| msgid "CPU Load Average" -msgid "CPU Load" -msgstr "CPU平均负载" - -#: serverStatus/templates/serverStatus/topProcesses.html:81 -msgid "1 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:82 -msgid "5 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:83 -msgid "15 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:104 -msgid "I/O Wait" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:105 -msgid "Idle Time" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:106 -msgid "HW Interrupts" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:107 -msgid "Softirqs" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:132 -#: serverStatus/templates/serverStatus/topProcesses.html:156 -msgid "Free" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:133 -#: serverStatus/templates/serverStatus/topProcesses.html:157 -msgid "Used" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:134 -#: serverStatus/templates/serverStatus/topProcesses.html:158 -msgid "buff/cache" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:155 -msgid "SWAP" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:192 -#, fuzzy -#| msgid "ID" -msgid "PID" -msgstr "ID" - -#: serverStatus/templates/serverStatus/topProcesses.html:194 -msgid "VIRT" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:195 -msgid "RES" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:196 -#, fuzzy -#| msgid "Status" -msgid "State" -msgstr "状态" - -#: serverStatus/templates/serverStatus/topProcesses.html:197 -#, python-format -msgid "%%CPU" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:198 -#, python-format -msgid "%%MEM" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:199 -msgid "Time" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:200 -#: websiteFunctions/templates/websiteFunctions/listCron.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:126 -msgid "Command" -msgstr "" - -#: tuning/templates/tuning/index.html:3 -msgid "Server Tuning - CyberPanel" -msgstr "服务器设置 - CyberPanel" - -#: tuning/templates/tuning/index.html:12 -msgid "Server Tuning" -msgstr "服务器设置" - -#: tuning/templates/tuning/index.html:13 -msgid "" -"On this page you can set runing parameters for your webserver depending on " -"your hardware." -msgstr "此页面您可以根据您的服务器硬件调整Web服务器参数 ." - -#: tuning/templates/tuning/liteSpeedTuning.html:3 -msgid "LiteSpeed Tuning - CyberPanel" -msgstr "LiteSpeed设置 - CyberPanel" - -#: tuning/templates/tuning/liteSpeedTuning.html:13 -msgid "" -"You can use this page to tweak your server according to your website " -"requirments." -msgstr "此页面您可以根据您的网站要求调整服务器参数." - -#: tuning/templates/tuning/liteSpeedTuning.html:18 -msgid "Tuning Details" -msgstr "设置详情" - -#: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:52 -#: tuning/templates/tuning/phpTuning.html:192 -msgid "Max Connections" -msgstr "最大连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:36 -msgid "Max SSL Connections" -msgstr "最大SSL连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:44 -msgid "Connection Timeout" -msgstr "连接超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:52 -msgid "Keep Alive Timeout" -msgstr "Kepp Alive超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:60 -msgid "Cache Size in memory" -msgstr "内存缓存大小" - -#: tuning/templates/tuning/liteSpeedTuning.html:67 -msgid "Enable GZIP Compression" -msgstr "开启GZIP压缩" - -#: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:97 -#: tuning/templates/tuning/phpTuning.html:237 -msgid "Currently:" -msgstr "当前:" - -#: tuning/templates/tuning/liteSpeedTuning.html:82 -msgid "Tune Web Server" -msgstr "调整Web服务器" - -#: tuning/templates/tuning/liteSpeedTuning.html:92 -msgid "" -"Cannot fetch Current Value, but you can still submit new changes, error " -"reported from server:" -msgstr "" -"无法读取当前参数, 但是您可以继续提交修改,服务器错误消息: reported from " -"server:" - -#: tuning/templates/tuning/liteSpeedTuning.html:96 -msgid "Cannot save details, Error Message: " -msgstr "无法保存设置, 错误信息: " - -#: tuning/templates/tuning/liteSpeedTuning.html:101 -msgid "Web Server Successfully tuned." -msgstr "Web服务器设置成功保存." - -#: tuning/templates/tuning/phpTuning.html:3 -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:45 -#: tuning/templates/tuning/phpTuning.html:185 -msgid "Initial Request Timeout (secs)" -msgstr "初始化请求超时 (秒)" - -#: tuning/templates/tuning/phpTuning.html:60 -#: tuning/templates/tuning/phpTuning.html:200 -msgid "Memory Soft Limit" -msgstr "内存软限制" - -#: tuning/templates/tuning/phpTuning.html:67 -#: tuning/templates/tuning/phpTuning.html:207 -msgid "Memory Hard Limit" -msgstr "内存硬限制" - -#: tuning/templates/tuning/phpTuning.html:75 -#: tuning/templates/tuning/phpTuning.html:215 -msgid "Process Soft Limit" -msgstr "进程软限制" - -#: tuning/templates/tuning/phpTuning.html:82 -#: tuning/templates/tuning/phpTuning.html:222 -msgid "Process Hard Limit" -msgstr "进程硬限制" - -#: tuning/templates/tuning/phpTuning.html:90 -#: tuning/templates/tuning/phpTuning.html:230 -msgid "Persistent Connection" -msgstr "数据库持久连接" - -#: tuning/templates/tuning/phpTuning.html:106 -#: tuning/templates/tuning/phpTuning.html:246 -msgid "Tune PHP" -msgstr "设置PHP" - -#: tuning/templates/tuning/phpTuning.html:119 -#: tuning/templates/tuning/phpTuning.html:259 -msgid "Cannot tune. Error message:" -msgstr "无法保存设置, 错误信息:" - -#: tuning/templates/tuning/phpTuning.html:124 -#: tuning/templates/tuning/phpTuning.html:264 -msgid "Details Successfully fetched." -msgstr "详情读取成功." - -#: tuning/templates/tuning/phpTuning.html:128 -#: tuning/templates/tuning/phpTuning.html:268 -#, fuzzy -#| msgid "PHP version " -msgid "PHP for " -msgstr "PHP版本 " - -#: tuning/templates/tuning/phpTuning.html:129 -#: tuning/templates/tuning/phpTuning.html:269 -msgid "Successfully tuned." -msgstr "已成功保存." - -#: userManagment/templates/userManagment/apiAccess.html:3 -#, fuzzy -#| msgid "Access Logs - CyberPanel" -msgid "API Access for User - CyberPanel" -msgstr "访问日志 - CyberPanel" - -#: userManagment/templates/userManagment/apiAccess.html:14 -msgid "" -"Allow/Remove API access for account, this effects Cloud Platform Connection " -"and Third Party Modules." -msgstr "" - -#: userManagment/templates/userManagment/apiAccess.html:29 -#: userManagment/templates/userManagment/changeUserACL.html:28 -#: userManagment/templates/userManagment/deleteUser.html:29 -#: userManagment/templates/userManagment/resellerCenter.html:25 -msgid "Select User" -msgstr "选择用户" - -#: userManagment/templates/userManagment/apiAccess.html:40 -#, fuzzy -#| msgid "Access Log" -msgid "Access" -msgstr "访问日志" - -#: userManagment/templates/userManagment/changeUserACL.html:3 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Change User ACL - CyberPanel" -msgstr "创建新用户 - CyberPanel" - -#: userManagment/templates/userManagment/changeUserACL.html:12 -#: userManagment/templates/userManagment/changeUserACL.html:19 -#: userManagment/templates/userManagment/createACL.html:100 -#: userManagment/templates/userManagment/modifyACL.html:104 -#, fuzzy -#| msgid "Create User" -msgid "Change User ACL" -msgstr "创建用户" - -#: userManagment/templates/userManagment/changeUserACL.html:13 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "This page can be used to change ACL for CyberPanel users." -msgstr "这里是网站备份界面" - -#: userManagment/templates/userManagment/changeUserACL.html:39 -#: userManagment/templates/userManagment/createUser.html:56 -#: userManagment/templates/userManagment/deleteACL.html:26 -#: userManagment/templates/userManagment/listUsers.html:99 -#: userManagment/templates/userManagment/modifyACL.html:28 -#, fuzzy -#| msgid "Select Email" -msgid "Select ACL" -msgstr "选择Email" - -#: userManagment/templates/userManagment/changeUserACL.html:55 -#, fuzzy -#| msgid "Change" -msgid "Change ACL" -msgstr "修改" - -#: userManagment/templates/userManagment/createACL.html:3 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Create new ACL - CyberPanel" -msgstr "创建新用户 - CyberPanel" - -#: userManagment/templates/userManagment/createACL.html:13 -msgid "" -"Create new Access Control defination, that specifies what CyberPanel users " -"can do." -msgstr "" - -#: userManagment/templates/userManagment/createACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:19 -#, fuzzy -#| msgid "Details" -msgid "ACL Details" -msgstr "详情" - -#: userManagment/templates/userManagment/createACL.html:26 -#, fuzzy -#| msgid "Last Name" -msgid "ACL Name" -msgstr "姓" - -#: userManagment/templates/userManagment/createACL.html:40 -#: userManagment/templates/userManagment/modifyACL.html:44 -#, fuzzy -#| msgid "Admin" -msgid "Make Admin" -msgstr "Admin" - -#: userManagment/templates/userManagment/createACL.html:59 -#: userManagment/templates/userManagment/modifyACL.html:63 -#, fuzzy -#| msgid "Version Management" -msgid "User Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:91 -#: userManagment/templates/userManagment/deleteUser.html:13 -#: userManagment/templates/userManagment/deleteUser.html:20 -#: userManagment/templates/userManagment/deleteUser.html:42 -#: userManagment/templates/userManagment/index.html:78 -#: userManagment/templates/userManagment/index.html:81 -#: userManagment/templates/userManagment/modifyACL.html:95 -msgid "Delete User" -msgstr "删除用户" - -#: userManagment/templates/userManagment/createACL.html:107 -#: userManagment/templates/userManagment/modifyACL.html:111 -#, fuzzy -#| msgid "Version Management" -msgid "Website Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:130 -#: userManagment/templates/userManagment/modifyACL.html:134 -#, fuzzy -#| msgid "Suspend/Unsuspend Website" -msgid "Suspend Website" -msgstr "禁用/启用网站" - -#: userManagment/templates/userManagment/createACL.html:147 -#: userManagment/templates/userManagment/modifyACL.html:151 -#, fuzzy -#| msgid "Package Name" -msgid "Package Management" -msgstr "套餐名称" - -#: userManagment/templates/userManagment/createACL.html:186 -#: userManagment/templates/userManagment/modifyACL.html:190 -#, fuzzy -#| msgid "Database Name" -msgid "Database Management" -msgstr "数据库名字" - -#: userManagment/templates/userManagment/createACL.html:216 -#: userManagment/templates/userManagment/modifyACL.html:220 -#, fuzzy -#| msgid "Version Management" -msgid "DNS Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:249 -#: userManagment/templates/userManagment/modifyACL.html:253 -#, fuzzy -#| msgid "Add/Delete Rules" -msgid "Add/Delete" -msgstr "添加/删除规则" - -#: userManagment/templates/userManagment/createACL.html:257 -#: userManagment/templates/userManagment/modifyACL.html:261 -#, fuzzy -#| msgid "Version Management" -msgid "Email Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:317 -#: userManagment/templates/userManagment/modifyACL.html:321 -#, fuzzy -#| msgid "Version Management" -msgid "FTP Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:347 -#: userManagment/templates/userManagment/modifyACL.html:351 -#, fuzzy -#| msgid "Version Management" -msgid "Backup Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:399 -#: userManagment/templates/userManagment/modifyACL.html:403 -#, fuzzy -#| msgid "Version Management" -msgid "SSL Management" -msgstr "版本管理" - -#: userManagment/templates/userManagment/createACL.html:432 -#, fuzzy -#| msgid "Create Email" -msgid "Create ACL" -msgstr "创建Email" - -#: userManagment/templates/userManagment/createUser.html:3 -msgid "Create New User - CyberPanel" -msgstr "创建新用户 - CyberPanel" - -#: userManagment/templates/userManagment/createUser.html:13 -msgid "Create root, reseller or normal users on this page." -msgstr "在此页面创建管理员, 分销商以及普通用户." - -#: userManagment/templates/userManagment/createUser.html:19 -msgid "User Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/createUser.html:25 -#: userManagment/templates/userManagment/modifyUser.html:39 -#: userManagment/templates/userManagment/userProfile.html:24 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 -msgid "First Name" -msgstr "名" - -#: userManagment/templates/userManagment/createUser.html:31 -msgid "First Name should contain only alphabetic characters." -msgstr "名 中只能包含字母." - -#: userManagment/templates/userManagment/createUser.html:35 -#: userManagment/templates/userManagment/modifyUser.html:46 -#: userManagment/templates/userManagment/userProfile.html:29 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 -msgid "Last Name" -msgstr "姓" - -#: userManagment/templates/userManagment/createUser.html:41 -msgid "Last Name should contain only alphabetic characters." -msgstr "姓 中只能包含字母." - -#: userManagment/templates/userManagment/createUser.html:50 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 -msgid "Invalid Email" -msgstr "无效的Email" - -#: userManagment/templates/userManagment/createUser.html:68 -#: userManagment/templates/userManagment/listUsers.html:33 -#: userManagment/templates/userManagment/resellerCenter.html:48 -#: userManagment/templates/userManagment/userProfile.html:53 -msgid "Websites Limit" -msgstr "网站数量限制" - -#: userManagment/templates/userManagment/createUser.html:107 -#: userManagment/templates/userManagment/modifyUser.html:85 -#, fuzzy -#| msgid "Security" -msgid "Security Level" -msgstr "安全" - -#: userManagment/templates/userManagment/createUser.html:120 -#: userManagment/templates/userManagment/index.html:49 -#: userManagment/templates/userManagment/index.html:52 -msgid "Create User" -msgstr "创建用户" - -#: userManagment/templates/userManagment/createUser.html:128 -#: userManagment/templates/userManagment/modifyUser.html:112 -msgid "Account with username:" -msgstr "用户名为:" - -#: userManagment/templates/userManagment/createUser.html:133 -msgid "Cannot create user. Error message:" -msgstr "无法创建用户, 错误信息:" - -#: userManagment/templates/userManagment/createUser.html:141 -msgid "" -"Length of first and last name combined should be less than or equal to 20 " -"characters" -msgstr "姓名总和的长度应该小于或等于20" - -#: userManagment/templates/userManagment/deleteACL.html:3 -#, fuzzy -#| msgid "Delete User - CyberPanel" -msgid "Delete ACL - CyberPanel" -msgstr "删除用户 - CyberPanel" - -#: userManagment/templates/userManagment/deleteACL.html:13 -#, fuzzy -#| msgid "This page can be used to suspend/unsuspend website." -msgid "This page can be used to delete ACL." -msgstr "此页面可以禁用/启用网站." - -#: userManagment/templates/userManagment/deleteUser.html:3 -msgid "Delete User - CyberPanel" -msgstr "删除用户 - CyberPanel" - -#: userManagment/templates/userManagment/deleteUser.html:14 -msgid "Websites owned by this user will automatically transfer to the root." -msgstr "此用户拥有的网站将自动移动到根目录." - -#: userManagment/templates/userManagment/deleteUser.html:61 -msgid "Cannot delete user. Error message:" -msgstr "无法删除用户, 错误信息:" - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid "User " -msgstr "用户 " - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid " Successfully Deleted" -msgstr "已成功删除" - -#: userManagment/templates/userManagment/index.html:3 -msgid "User Functions - CyberPanel" -msgstr "用户功能 - CyberPanel" - -#: userManagment/templates/userManagment/index.html:14 -msgid "Create, edit and delete users on this page." -msgstr "在此页面创建, 编辑和删除用户." - -#: userManagment/templates/userManagment/listUsers.html:3 -#, fuzzy -#| msgid "List Databases - CyberPanel" -msgid "List Users - CyberPanel" -msgstr "查看数据库 - CyberPanel" - -#: userManagment/templates/userManagment/listUsers.html:14 -msgid "List Users that you own." -msgstr "" - -#: userManagment/templates/userManagment/listUsers.html:35 -msgid "ACL" -msgstr "" - -#: userManagment/templates/userManagment/listUsers.html:84 -#: userManagment/templates/userManagment/resellerCenter.html:37 -#, fuzzy -#| msgid "Select Owner" -msgid "New Owner" -msgstr "选择拥有者" - -#: userManagment/templates/userManagment/modifyACL.html:3 -#, fuzzy -#| msgid "Modify User - CyberPanel" -msgid "Modify an ACL - CyberPanel" -msgstr "编辑用户 - CyberPanel" - -#: userManagment/templates/userManagment/modifyACL.html:12 -msgid "Modify an ACL" -msgstr "" - -#: userManagment/templates/userManagment/modifyACL.html:13 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "On this page you can modify an existing ACL." -msgstr "这里是远程备份页面(SFTP)" - -#: userManagment/templates/userManagment/modifyUser.html:3 -msgid "Modify User - CyberPanel" -msgstr "编辑用户 - CyberPanel" - -#: userManagment/templates/userManagment/modifyUser.html:13 -msgid "Modify existing user settings on this page." -msgstr "在此页面编辑已存在用户." - -#: userManagment/templates/userManagment/modifyUser.html:27 -msgid "Select Account" -msgstr "选择用户" - -#: userManagment/templates/userManagment/modifyUser.html:113 -msgid " is successfully modified." -msgstr "已成功修改." - -#: userManagment/templates/userManagment/modifyUser.html:117 -msgid "Cannot modify user. Error message:" -msgstr "无法编辑用户, 错误信息:" - -#: userManagment/templates/userManagment/modifyUser.html:130 -msgid "Details fetched." -msgstr "详情已更新." - -#: userManagment/templates/userManagment/resellerCenter.html:3 -#, fuzzy -#| msgid "Restore Website - CyberPanel" -msgid "Reseller Center - CyberPanel" -msgstr "还原网站 - Cyberpanel" - -#: userManagment/templates/userManagment/resellerCenter.html:13 -msgid "Change owner of users and change websites limits." -msgstr "" - -#: userManagment/templates/userManagment/userProfile.html:3 -msgid "Account Details - CyberPanel" -msgstr "用户详情 - CyberPanel" - -#: userManagment/templates/userManagment/userProfile.html:12 -#: userManagment/templates/userManagment/userProfile.html:18 -msgid "Account Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/userProfile.html:13 -msgid "List the account details for the currently logged in user." -msgstr "查看当前用户详情." - -#: userManagment/templates/userManagment/userProfile.html:48 -#, fuzzy -#| msgid "Account Level" -msgid "Account ACL" -msgstr "用户等级" - -#: userManagment/templates/userManagment/userProfile.html:55 -msgid "( 0 = Unlimited )" -msgstr "(0为无限制 )" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 -#, fuzzy -#| msgid "Application Installer" -msgid "Application Installer - CyberPanel" -msgstr "应用安装器" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 -#, fuzzy -#| msgid "Application Installer" -msgid "One-click application install." -msgstr "应用安装器" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 -#, fuzzy -#| msgid "Install wordpress with LSCache" -msgid "Install Joomla with(?) LSCache" -msgstr "安装Wordpress和LS Cache" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 -msgid "Create New Website - CyberPanel" -msgstr "创建新网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/index.html:14 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 -msgid "" -"On this page you can launch, list, modify and delete websites from your " -"server." -msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站." - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 -msgid "Website Details" -msgstr "网站详情" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 -msgid "Do not enter WWW, it will be auto created!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 -msgid "Delete Website - CyberPanel" -msgstr "删除网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 -msgid "" -"This page can be used to delete website, once deleted it can not be " -"recovered." -msgstr "在此页面可以删除网站,此操作不可逆." - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Successfully Deleted." -msgstr "成功删除." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Domain Aliases - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 -#, fuzzy -#| msgid "Domain Name" -msgid "Domain Aliases" -msgstr "域名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 -msgid "" -"With Domain Aliases you can visit example.com using example.net and view the " -"same content." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 -#, fuzzy -#| msgid "Create Email" -msgid "Create Alias" -msgstr "创建Email" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 -#, fuzzy -#| msgid "Create Domain" -msgid "Master Domain" -msgstr "创建域名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 -msgid "Alias" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 -#, fuzzy -#| msgid "System Status" -msgid "File System Path" -msgstr "系统状态" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 -msgid "Domain Aliases not found." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 -#, fuzzy -#| msgid "List Domains" -msgid "Alias Domain" -msgstr "查看域名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 -msgid "" -"For SSL to work DNS of domain should point to server, otherwise self signed " -"SSL will be issued, you can add your own SSL later." -msgstr "" -"为确定SSL证书的正确签发,域名必须指向此服务器,否则将会签发自签名证书 您可以在" -"之后添加自有证书或重新申请签发Let's Encrypt证书." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 -#, fuzzy -#| msgid "Action failed. Error message:" -msgid "Operation failed. Error message:" -msgstr "操作失败, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 -msgid "Alias successfully created. Refreshing page in 3 seconds..." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 -#, fuzzy -#| msgid "Action successful." -msgid "Operation Successfull." -msgstr "操作成功" - -#: websiteFunctions/templates/websiteFunctions/index.html:3 -msgid "Website Functions - CyberPanel" -msgstr "网站功能 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/index.html:33 -#: websiteFunctions/templates/websiteFunctions/index.html:57 -#, fuzzy -#| msgid "List Websites" -msgid "List Website" -msgstr "查看网站" - -#: websiteFunctions/templates/websiteFunctions/index.html:79 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 -msgid "Suspend/Unsuspend Website" -msgstr "禁用/启用网站" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 -#, fuzzy -#| msgid "Install PHP Extensions - CyberPanel" -msgid "Install Joomla - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 -#, fuzzy -#| msgid "Install" -msgid "Install Joomla" -msgstr "安装" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 -msgid "One-click Joomla Install!" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 -#, fuzzy -#| msgid "Installation failed. Error message:" -msgid "Installation Details" -msgstr "安装失败, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 -#, fuzzy -#| msgid "File Name" -msgid "Site Name" -msgstr "文件名" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 -#, fuzzy -#| msgid "Modify User" -msgid "Login User" -msgstr "修改用户" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 -#, fuzzy -#| msgid "Password" -msgid "Login Password" -msgstr "密码" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 -#, fuzzy -#| msgid "Database Name" -msgid "Database Prefix" -msgstr "数据库名字" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 -msgid "Installation failed. Error message:" -msgstr "安装失败, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 -#, fuzzy -#| msgid "Installation successful. To complete the setup visit:" -msgid "Installation successful. Visit:" -msgstr "安装成功, 请访问网站以完成设置:" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 -#, fuzzy -#| msgid "Install PHP Extensions - CyberPanel" -msgid "Install Magento - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 -#: websiteFunctions/templates/websiteFunctions/website.html:1029 -#: websiteFunctions/templates/websiteFunctions/website.html:1033 -#, fuzzy -#| msgid "Packages" -msgid "Install Magento" -msgstr "套餐" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 -#, fuzzy -#| msgid "Application Installer" -msgid "One-click Magento Install!" -msgstr "应用安装器" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 -#, fuzzy -#| msgid "Username" -msgid "Admin Username" -msgstr "用户名" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 -msgid "" -"does not work on OpenLiteSpeed. It is highly recommended to use this " -"installer with LiteSpeed Enterprise only." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 -#, fuzzy -#| msgid "Install PHP Extensions - CyberPanel" -msgid "Install PrestaShop - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 -#, fuzzy -#| msgid "Install" -msgid "Install PrestaShop" -msgstr "安装" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 -#, fuzzy -#| msgid "Application Installer" -msgid "One-click PrestaShop Install!" -msgstr "应用安装器" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 -#, fuzzy -#| msgid "File Name" -msgid "Shop Name" -msgstr "文件名" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 -#, fuzzy -#| msgid "Install PHP Extensions - CyberPanel" -msgid "Install WordPress - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 -#, fuzzy -#| msgid "Install" -msgid "Install WordPress" -msgstr "安装" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 -#, fuzzy -#| msgid "Install wordpress with LSCache" -msgid "Install WordPress with LSCache." -msgstr "安装Wordpress和LS Cache" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 -msgid "Blog Title" -msgstr "博客标题" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 -msgid "Copy/Sync to Master" -msgstr "复制/同步到Master" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 -#: websiteFunctions/templates/websiteFunctions/website.html:990 -msgid "WP + LSCache" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 -#: websiteFunctions/templates/websiteFunctions/website.html:1034 -msgid "Magento" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:3 -#, fuzzy -#| msgid "Version Management - CyberPanel" -msgid "Cron Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -#: websiteFunctions/templates/websiteFunctions/listCron.html:19 -#, fuzzy -#| msgid "Version Management" -msgid "Cron Management" -msgstr "版本管理" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -msgid "Cron Docs" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:13 -#, fuzzy -#| msgid "Create, edit and delete users on this page." -msgid "Create, edit or delete your cron jobs from this page." -msgstr "在此页面创建, 编辑和删除用户." - -#: websiteFunctions/templates/websiteFunctions/listCron.html:37 -#, fuzzy -#| msgid "Add Domains" -msgid "Add Cron" -msgstr "添加域名" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:46 -#: websiteFunctions/templates/websiteFunctions/listCron.html:95 -msgid "Minute" -msgstr "分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:47 -#: websiteFunctions/templates/websiteFunctions/listCron.html:101 -msgid "Hour" -msgstr "小时" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:48 -msgid "Day of Month" -msgstr "天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:49 -#: websiteFunctions/templates/websiteFunctions/listCron.html:113 -msgid "Month" -msgstr "月" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:50 -msgid "Day of Week" -msgstr "星期" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:79 -msgid "Pre defined" -msgstr "预定义" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:82 -msgid "Every minute" -msgstr "每分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:83 -msgid "Every 5 minutes" -msgstr "每5分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:84 -msgid "Every 30 minutes" -msgstr "每30分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:85 -msgid "Every hour" -msgstr "每小时" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:86 -msgid "Every day" -msgstr "每天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:87 -msgid "Every week" -msgstr "每周" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:88 -msgid "Every month" -msgstr "每月" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:89 -msgid "Every year" -msgstr "每年" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:107 -msgid "Day of month" -msgstr "天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:119 -msgid "Day of week" -msgstr "星期" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:135 -#, fuzzy -#| msgid "Save Rewrite Rules" -msgid "Save edits" -msgstr "保存Rewrite rules" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:142 -#, fuzzy -#| msgid "Add Records" -msgid "Add cron" -msgstr "添加记录" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:152 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 -msgid "Cannot fetch website details. Error message:" -msgstr "无法更新网站详情, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:156 -#, fuzzy -#| msgid "Could not save SSL. Error message:" -msgid "Unable to add/save Cron. Error message:" -msgstr "无法保存SSL证书, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:159 -msgid "Cron job saved" -msgstr "定时任务以保存" - -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 -msgid "Websites Hosted - CyberPanel" -msgstr "当前已创建的网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 -msgid "Modify Website - CyberPanel" -msgstr "修改网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 -msgid "Current Package:" -msgstr "当前套餐:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 -msgid "Current Owner:" -msgstr "当前拥有者:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 -msgid "Cannot modify website. Error message:" -msgstr "无法修改网站, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 -msgid "Website Details Successfully fetched" -msgstr "网站详情已成功更新" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 -#, fuzzy -#| msgid "Version Management - CyberPanel" -msgid "Git Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 -#, fuzzy -#| msgid "Version Management" -msgid "Git Management" -msgstr "版本管理" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 -msgid "Attach git to your websites." -msgstr "将Git附加到您的网站" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 -msgid "Attach Git" -msgstr "附加Git" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 -msgid "Providers" -msgstr "提供者" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 -msgid "Deployment Key" -msgstr "部署密钥" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 -msgid "" -"Before attaching repo to your website, make sure to place your Development " -"key in your GIT repository." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 -#, fuzzy -#| msgid "Extension Name" -msgid "Repository Name" -msgstr "扩展名称" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 -msgid "Branch" -msgstr "分支" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 -msgid "Attach Now" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 -msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 -#, fuzzy -#| msgid "Change" -msgid "Change Branch" -msgstr "修改" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 -msgid "Detach Repo" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 -msgid "Webhook URL" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 -msgid "" -"Add this URL to Webhooks section of your Git respository, if you've used " -"hostname SSL then replace IP with your hostname. Otherwise use IP and " -"disable SSL check while configuring webhook. This will initiate a pull from " -"your resposity as soon as you commit some changes." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 -#, fuzzy -#| msgid "Records successfully fetched for" -msgid "Repo successfully detached, refreshing in 3 seconds.." -msgstr "成功读取记录" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 -#, fuzzy -#| msgid "Backup successfully cancelled." -msgid "Branch successfully changed." -msgstr "已成功添加." - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 -#, fuzzy -#| msgid "Version Management - CyberPanel" -msgid "Set up Staging Enviroment - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 -msgid "Set up Staging Enviroment" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 -msgid "Set up staging enviroment for " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -msgid "" -". Any domain that you will choose here will be created as child-domain for " -"this master site." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 -msgid "Domain that you will enter below will be created as child-domain to " -msgstr "您将在下面输入的域将被创建为子域" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 -msgid "." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 -#, fuzzy -#| msgid "Start" -msgid "Start Cloning" -msgstr "开始" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "SSH and CageFS - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 -#, fuzzy -#| msgid "SSH Keys" -msgid "SSH Access" -msgstr "SSH密钥" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid "Set up SSH access and enable/disable CageFS for " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid " CageFS require CloudLinux OS." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 -msgid "Set up SSH access for " -msgstr "设置SSH访问" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSH user for " -msgstr "已为签发证书" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -msgid " is " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 -msgid "Suspend/Unsuspend Website - CyberPanel" -msgstr "禁用/启用网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 -msgid "This page can be used to suspend/unsuspend website." -msgstr "此页面可以禁用/启用网站." - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 -msgid "Suspend" -msgstr "禁用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 -msgid "Un-Suspend" -msgstr "启用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 -msgid "Cannot suspend website, Error message: " -msgstr "无法禁用网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 -msgid "Cannot unsuspend website. Error message:" -msgstr "无法启用网站, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Website " -msgstr "网站 " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Successfully " -msgstr "成功 " - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 -#, fuzzy -#| msgid "DNS Functions - CyberPanel" -msgid "Sync to Master - CyberPanel" -msgstr "DNS功能" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 -msgid "Sync your site to Master" -msgstr "将您的网站同步到Master" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid "Right now you can only sync your child domains to master domains." -msgstr "目前,您只能将您的子域同步到主域。" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid " will be synced to " -msgstr "将被同步到" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -msgid "Sync " -msgstr "同步" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -#, fuzzy -#| msgid "Stop" -msgid "to " -msgstr "停止" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 -msgid "What to Sync" -msgstr "等待同步" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 -msgid "Start Syncing" -msgstr "开始同步" - -#: websiteFunctions/templates/websiteFunctions/website.html:29 -msgid "Clone/Staging" -msgstr "克隆/Staging" - -#: websiteFunctions/templates/websiteFunctions/website.html:30 -msgid "Set up SSH Access" -msgstr "设置SSH访问" - -#: websiteFunctions/templates/websiteFunctions/website.html:665 -msgid "It is not required to modify rules if you are using OpenLiteSpeed." -msgstr "如果您使用的是OpenLiteSpeed,则无需修改。" - -#, fuzzy -#~| msgid "Last Name" -#~ msgid "List" -#~ msgstr "姓" - -#~ msgid "" -#~ "Could not fetch details, either LiteSpeed is not running or some error " -#~ "occurred, please see CyberPanel Main log file." -#~ msgstr "无法获取详情, LiteSpeed没有运行或者有错误发生 请检查CyberPnael日志." - -#, fuzzy -#~| msgid "Schedule Back up" -#~ msgid "Achedule Back up" -#~ msgstr "备份计划" - -#, fuzzy -#~| msgid "Modify User" -#~ msgid "Modify" -#~ msgstr "修改用户" - -#~ msgid "Start" -#~ msgstr "开始" - -#~ msgid "Reload" -#~ msgstr "重载" - -#~ msgid "CPU Status" -#~ msgstr "CPU使用量" - -#~ msgid "Fullscreen" -#~ msgstr "全屏模式" - -#~ msgid "System Status" -#~ msgstr "系统状态" - -#~ msgid "Update started..." -#~ msgstr "开始更新..." - -#~ msgid "Update finished..." -#~ msgstr "更新完成..." - -#~ msgid "Account Type" -#~ msgstr "用户类型" - -#~ msgid "User Accounts Limit" -#~ msgstr "用户数量限制" - -#~ msgid "Only Numbers" -#~ msgstr "仅允许数字" - -#~ msgid "Username should be lowercase alphanumeric." -#~ msgstr "用户名应当为小写字母." - -#~ msgid "Must contain one number and one special character." -#~ msgstr "必须一个数字和一个字母." - -#~ msgid "Cannot create website. Error message:" -#~ msgstr "无法创建网站, 错误信息:" - -#~ msgid "Website with domain" -#~ msgstr "网站域名" - -#~ msgid " is Successfully Created" -#~ msgstr " 已成功创建" - -#~ msgid "Installation successful. To complete the setup visit:" -#~ msgstr "安装成功, 请访问网站以完成设置:" - -#, fuzzy -#~| msgid "Password" -#~ msgid "Admin Password" -#~ msgstr "密码" - -#, fuzzy -#~| msgid "Database Name" -#~ msgid "Database prefix" -#~ msgstr "数据库名字" - -#~ msgid "Daily" -#~ msgstr "每日" - -#~ msgid "Weekly" -#~ msgstr "每周" - -#~ msgid "HTTP Statistics" -#~ msgstr "HTTP统计" - -#~ msgid "Available/Max Connections" -#~ msgstr "可用/最大连接数" - -#~ msgid "Available/Max SSL Connections" -#~ msgstr "可用/最大SSL连接数" - -#~ msgid "Requests Processing" -#~ msgstr "当前请求数" - -#~ msgid "Total Requests" -#~ msgstr "总请求数" - -#~ msgid "IPV6" -#~ msgstr "IPv6" - -#~ msgid "Normal User" -#~ msgstr "普通用户" - -#~ msgid "Edit Virtual Host Main Configurations" -#~ msgstr "编辑vHost主配置" - -#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." -#~ msgstr "配置已保存, 重启LiteSpeed以生效." - -#~ msgid "Urdu" -#~ msgstr "乌尔都语" From ce1f614b5feceb47c8f92d1b17addd5c012dc0ab Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:13:55 +0800 Subject: [PATCH 24/31] Add files via upload --- locale/cn/LC_MESSAGES/django.mo | Bin 0 -> 85202 bytes locale/cn/LC_MESSAGES/django.po | 6670 +++++++++++++++++++++++++++++++ 2 files changed, 6670 insertions(+) create mode 100644 locale/cn/LC_MESSAGES/django.mo create mode 100644 locale/cn/LC_MESSAGES/django.po diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..a88e3eaca7c6f90180ee2f5c009b6287c7d80ebc GIT binary patch literal 85202 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 YL0UeOzvgEF%gwEPZkO1d>W%FG0mRz^HUIzs literal 0 HcmV?d00001 diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po new file mode 100644 index 000000000..b69923c7d --- /dev/null +++ b/locale/cn/LC_MESSAGES/django.po @@ -0,0 +1,6670 @@ +# CyberPanel Translation File. +# Copyright (C) 2017 LiteSpeedTech +# This file is distributed under the same license as the CyberPanel package. +# FIRST AUTHOR , 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: CyberPanel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-21 19:54+0500\n" +"PO-Revision-Date: 2021-06-26 22:06+0800\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0\n" + +#: CLManager/templates/CLManager/createPackage.html:3 +msgid "Create Cloud Linux Package - CyberPanel" +msgstr "创建 CloudLinux 套餐 - CyberPanel" + +#: CLManager/templates/CLManager/createPackage.html:9 +msgid "Create CloudLinux Package." +msgstr "创建 CloudLinux 套餐 - CyberPanel。" + +#: CLManager/templates/CLManager/createPackage.html:10 +msgid "" +"Each CloudLinux package have one associated (owner) CyberPanel package. " +"During website creation associated CloudLinux package will be assigned to " +"website user." +msgstr "" +"每个 CloudLinux 套餐都有一个关联的(所有者)CyberPanel 套餐。 在网站创建期" +"间,关联的 CloudLinux 套餐将分配给网站用户。" + +#: CLManager/templates/CLManager/createPackage.html:15 +#: CLManager/templates/CLManager/createPackage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:435 +#: baseTemplate/templates/baseTemplate/index.html:666 +#: packages/templates/packages/createPackage.html:13 +#: packages/templates/packages/createPackage.html:100 +#: packages/templates/packages/index.html:25 +#: packages/templates/packages/index.html:28 +#: userManagment/templates/userManagment/createACL.html:152 +#: userManagment/templates/userManagment/modifyACL.html:156 +msgid "Create Package" +msgstr "创建套餐" + +#: CLManager/templates/CLManager/createPackage.html:24 +#: packages/templates/packages/deletePackage.html:26 +#: packages/templates/packages/modifyPackage.html:24 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 +msgid "Select Package" +msgstr "选择套餐" + +#: CLManager/templates/CLManager/createPackage.html:40 +#: packages/templates/packages/createPackage.html:27 +msgid "Package Name" +msgstr "套餐名称" + +#: CLManager/templates/CLManager/createPackage.html:47 +#: CLManager/templates/CLManager/listPackages.html:87 +msgid "SPEED" +msgstr "SPEED" + +#: CLManager/templates/CLManager/createPackage.html:56 +#: CLManager/templates/CLManager/listPackages.html:98 +msgid "VMEM" +msgstr "VMEM" + +#: CLManager/templates/CLManager/createPackage.html:64 +#: CLManager/templates/CLManager/listPackages.html:109 +msgid "PMEM" +msgstr "PMEM" + +#: CLManager/templates/CLManager/createPackage.html:73 +#: CLManager/templates/CLManager/listPackages.html:120 +msgid "IO" +msgstr "小精灵" + +#: CLManager/templates/CLManager/createPackage.html:81 +#: CLManager/templates/CLManager/listPackages.html:131 +#: containerization/templates/containerization/websiteContainerLimit.html:52 +#: containerization/templates/containerization/websiteContainerLimit.html:99 +msgid "IOPS" +msgstr "IOPS" + +#: CLManager/templates/CLManager/createPackage.html:89 +#: CLManager/templates/CLManager/listPackages.html:142 +msgid "EP" +msgstr "EP" + +#: CLManager/templates/CLManager/createPackage.html:97 +#: CLManager/templates/CLManager/listPackages.html:153 +msgid "NPROC" +msgstr "NPROC" + +#: CLManager/templates/CLManager/createPackage.html:105 +#: CLManager/templates/CLManager/listPackages.html:164 +msgid "INODES soft" +msgstr "INODES soft" + +#: CLManager/templates/CLManager/createPackage.html:113 +#: CLManager/templates/CLManager/listPackages.html:175 +msgid "INODES hard" +msgstr "INODES hard" + +#: CLManager/templates/CLManager/listPackages.html:3 +msgid "Manage CloudLinux Packages - CyberPanel" +msgstr "管理 CloudLinux 套餐 - CyberPanel" + +#: CLManager/templates/CLManager/listPackages.html:14 +msgid "Manage CloudLinux Packages" +msgstr "管理 CloudLinux 套餐" + +#: CLManager/templates/CLManager/listPackages.html:15 +msgid "Manage/Delete CloudLinux Packages." +msgstr "管理/删除 CloudLinux 套餐。" + +#: CLManager/templates/CLManager/listPackages.html:76 +#: dns/templates/dns/addDeleteDNSRecords.html:74 +#: dns/templates/dns/addDeleteDNSRecords.html:97 +#: dns/templates/dns/addDeleteDNSRecords.html:121 +#: dns/templates/dns/addDeleteDNSRecords.html:144 +#: dns/templates/dns/addDeleteDNSRecords.html:172 +#: dns/templates/dns/addDeleteDNSRecords.html:196 +#: dns/templates/dns/addDeleteDNSRecords.html:220 +#: dns/templates/dns/addDeleteDNSRecords.html:244 +#: dns/templates/dns/addDeleteDNSRecords.html:268 +#: dns/templates/dns/addDeleteDNSRecords.html:295 +#: dns/templates/dns/addDeleteDNSRecords.html:328 +#: dockerManager/templates/dockerManager/runContainer.html:29 +#: filemanager/templates/filemanager/index.html:203 +#: firewall/templates/firewall/firewall.html:120 +#: packages/templates/packages/listPackages.html:84 +#: pluginHolder/templates/pluginHolder/plugins.html:28 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:262 +#: userManagment/templates/userManagment/listUsers.html:75 +msgid "Name" +msgstr "名称" + +#: CLManager/templates/CLManager/listPackages.html:205 +#: CLManager/templates/CLManager/listWebsites.html:86 +#: CLManager/templates/CLManager/monitorUsage.html:57 +#: containerization/templates/containerization/listWebsites.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:172 +#: emailPremium/templates/emailPremium/emailPage.html:179 +#: emailPremium/templates/emailPremium/listDomains.html:75 +#: pluginHolder/templates/pluginHolder/plugins.html:51 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 +msgid "Cannot list websites. Error message:" +msgstr "无法列出网站。错误信息:" + +#: CLManager/templates/CLManager/listWebsites.html:3 +msgid "CageFS - CyberPanel" +msgstr "CageFS - CyberPanel" + +#: CLManager/templates/CLManager/listWebsites.html:14 +#: CLManager/templates/CLManager/monitorUsage.html:14 +#: baseTemplate/templates/baseTemplate/index.html:411 +#: containerization/templates/containerization/listWebsites.html:14 +#: websiteFunctions/templates/websiteFunctions/index.html:31 +#: websiteFunctions/templates/websiteFunctions/index.html:55 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 +msgid "List Websites" +msgstr "网站列表" + +#: CLManager/templates/CLManager/listWebsites.html:15 +msgid "Enable/Disable and view CageFS status for websites." +msgstr "启用/禁用和查看网站的 CageFS 状态。" + +#: CLManager/templates/CLManager/listWebsites.html:28 +msgid "Default: " +msgstr "默认:" + +#: CLManager/templates/CLManager/monitorUsage.html:3 +msgid "Monitor Usage - CyberPanel" +msgstr "监控使用情况 - CyberPanel" + +#: CLManager/templates/CLManager/monitorUsage.html:15 +msgid "Monitor usage of your websites." +msgstr "监控您网站的使用情况。" + +#: CLManager/templates/CLManager/monitorUsage.html:21 +#: baseTemplate/templates/baseTemplate/homePage.html:42 +#: baseTemplate/templates/baseTemplate/index.html:276 +#: baseTemplate/templates/baseTemplate/index.html:400 +#: baseTemplate/templates/baseTemplate/index.html:401 +#: baseTemplate/templates/baseTemplate/index.html:402 +#: containerization/templates/containerization/listWebsites.html:21 +msgid "Websites" +msgstr "网站" + +#: CLManager/templates/CLManager/notAvailable.html:3 +#: containerization/templates/containerization/notAvailable.html:3 +msgid "Not available - CyberPanel" +msgstr "不可用 - CyberPanel" + +#: CLManager/templates/CLManager/notAvailable.html:13 +#: containerization/templates/containerization/notAvailable.html:13 +msgid "Not available" +msgstr "不可用" + +#: CLManager/templates/CLManager/notAvailable.html:14 +msgid "Either CageFS is not installed or you are not on CloudLinux OS." +msgstr "未安装 CageFS 或您未使用 CloudLinux 操作系统。" + +#: CLManager/templates/CLManager/notAvailable.html:22 +msgid "CageFS is only available with CloudLinux OS. " +msgstr "CageFS 仅适用于 CloudLinux 操作系统。" + +#: CLManager/templates/CLManager/notAvailable.html:24 +#: containerization/templates/containerization/notAvailable.html:24 +msgid " for conversion details." +msgstr " 为转换详情。" + +#: CLManager/templates/CLManager/notAvailable.html:34 +#: containerization/templates/containerization/notAvailable.html:34 +msgid "Install Packages" +msgstr "安装包" + +#: CLManager/templates/CLManager/notAvailable.html:39 +msgid "CageFS is not installed on this server. Please proceed to installation." +msgstr "此服务器上未安装 CageFS。请继续以安装。" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:3 +msgid " usage - CyberPanel" +msgstr " 使用量 - CyberPanel" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:14 +#: emailMarketing/templates/emailMarketing/website.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 +#: websiteFunctions/templates/websiteFunctions/website.html:43 +msgid "Usage" +msgstr "使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:15 +msgid "View CPU, Memory and Disk usage for " +msgstr "查看 CPU、内存和磁盘使用情况 " + +#: CLManager/templates/CLManager/websiteContainerLimit.html:21 +#: containerization/templates/containerization/websiteContainerLimit.html:155 +msgid "CPU Usage of" +msgstr "CPU使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:30 +#: containerization/templates/containerization/websiteContainerLimit.html:164 +msgid "Memory Usage of" +msgstr "内存使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:39 +#: containerization/templates/containerization/websiteContainerLimit.html:173 +msgid "Disk Usage of" +msgstr "硬盘使用量" + +#: CyberCP/settings.py:175 +msgid "English" +msgstr "英语" + +#: CyberCP/settings.py:176 +msgid "Chinese" +msgstr "中文" + +#: CyberCP/settings.py:177 +msgid "Bulgarian" +msgstr "保加利亚语" + +#: CyberCP/settings.py:178 +msgid "Portuguese" +msgstr "葡萄牙语" + +#: CyberCP/settings.py:179 +msgid "Japanese" +msgstr "日语" + +#: CyberCP/settings.py:180 +msgid "Bosnian" +msgstr "波斯尼亚语" + +#: CyberCP/settings.py:181 +msgid "Greek" +msgstr "希腊语" + +#: CyberCP/settings.py:182 +msgid "Russian" +msgstr "俄语" + +#: CyberCP/settings.py:183 +msgid "Turkish" +msgstr "土耳其" + +#: CyberCP/settings.py:184 +msgid "Spanish" +msgstr "西班牙语" + +#: CyberCP/settings.py:185 +msgid "French" +msgstr "法语" + +#: CyberCP/settings.py:186 +msgid "Polish" +msgstr "波兰语" + +#: CyberCP/settings.py:187 +msgid "Vietnamese" +msgstr "越南语" + +#: CyberCP/settings.py:188 +msgid "Italian" +msgstr "意大利语" + +#: CyberCP/settings.py:189 +msgid "Deutsch" +msgstr "德国" + +#: IncBackups/templates/IncBackups/backupSchedule.html:3 +#: backup/templates/backup/backupSchedule.html:3 +msgid "Schedule Back up - CyberPanel" +msgstr "计划备份 - Cyberpanel" + +#: IncBackups/templates/IncBackups/backupSchedule.html:13 +#: IncBackups/templates/IncBackups/backupSchedule.html:23 +#: backup/templates/backup/backupSchedule.html:13 +#: backup/templates/backup/backupSchedule.html:23 +#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 +#: baseTemplate/templates/baseTemplate/index.html:578 +#: userManagment/templates/userManagment/createACL.html:381 +#: userManagment/templates/userManagment/modifyACL.html:385 +msgid "Schedule Back up" +msgstr "计划备份" + +#: IncBackups/templates/IncBackups/backupSchedule.html:16 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 +#: backup/templates/backup/backupDestinations.html:14 +#: backup/templates/backup/backupSchedule.html:16 +#: backup/templates/backup/remoteBackups.html:14 +#: backup/templates/backup/remoteBackups.html:21 +msgid "Remote Backups" +msgstr "远程备份" + +#: IncBackups/templates/IncBackups/backupSchedule.html:17 +#: backup/templates/backup/backupSchedule.html:17 +msgid "" +"On this page you can schedule Back ups to localhost or remote server (If you " +"have added one)." +msgstr "" +"在此页面您可以设置计划任务备份到本地或远程目录 (如果您已经添加了一个远程目" +"录)。" + +#: IncBackups/templates/IncBackups/backupSchedule.html:33 +#: backup/templates/backup/backupSchedule.html:33 +msgid "Select Destination" +msgstr "选择远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:44 +#: backup/templates/backup/backupSchedule.html:44 +msgid "Select Frequency" +msgstr "备份频率" + +#: IncBackups/templates/IncBackups/backupSchedule.html:54 +#: IncBackups/templates/IncBackups/createBackup.html:56 +msgid "Backup Content" +msgstr "备份内容" + +#: IncBackups/templates/IncBackups/backupSchedule.html:98 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 +#: backup/templates/backup/backupDestinations.html:55 +#: backup/templates/backup/backupSchedule.html:67 +#: baseTemplate/templates/baseTemplate/index.html:575 +msgid "Add Destination" +msgstr "添加远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:112 +#: backup/templates/backup/remoteBackups.html:96 +msgid "Search Accounts.." +msgstr "搜索用户..." + +#: IncBackups/templates/IncBackups/backupSchedule.html:124 +msgid "Select sites to be included in this job" +msgstr "选择要在此项备份工作中包含的网站" + +#: IncBackups/templates/IncBackups/backupSchedule.html:150 +#: IncBackups/templates/IncBackups/createBackup.html:127 +#: backup/templates/backup/backup.html:102 +#: backup/templates/backup/backupDestinations.html:96 +#: backup/templates/backup/backupSchedule.html:102 +#: databases/templates/databases/listDataBases.html:104 +#: dns/templates/dns/addDeleteDNSRecords.html:326 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 +#: emailMarketing/templates/emailMarketing/manageLists.html:141 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 +#: firewall/templates/firewall/firewall.html:119 +#: firewall/templates/firewall/modSecurityRulesPacks.html:109 +#: ftp/templates/ftp/listFTPAccounts.html:122 +#: mailServer/templates/mailServer/emailForwarding.html:117 +#: managePHP/templates/managePHP/installExtensions.html:60 +msgid "ID" +msgstr "ID" + +#: IncBackups/templates/IncBackups/backupSchedule.html:151 +#: IncBackups/templates/IncBackups/createBackup.html:44 +#: IncBackups/templates/IncBackups/createBackup.html:164 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 +#: backup/templates/backup/backup.html:41 +#: backup/templates/backup/backupSchedule.html:103 +#: mailServer/templates/mailServer/emailForwarding.html:101 +#: mailServer/templates/mailServer/emailForwarding.html:119 +msgid "Destination" +msgstr "远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:152 +#: backup/templates/backup/backupSchedule.html:104 +msgid "Frequency" +msgstr "频率" + +#: IncBackups/templates/IncBackups/backupSchedule.html:153 +#: IncBackups/templates/IncBackups/createBackup.html:130 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 +#: backup/templates/backup/backup.html:107 +#: backup/templates/backup/backupDestinations.html:99 +#: backup/templates/backup/backupSchedule.html:105 +#: dns/templates/dns/addDeleteDNSRecords.html:332 +#: emailMarketing/templates/emailMarketing/manageLists.html:156 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 +#: emailMarketing/templates/emailMarketing/sendEmails.html:170 +#: emailMarketing/templates/emailMarketing/website.html:533 +#: filemanager/templates/filemanager/index.html:67 +#: filemanager/templates/filemanager/index.html:696 +#: firewall/templates/firewall/firewall.html:124 +#: firewall/templates/firewall/secureSSH.html:122 +#: mailServer/templates/mailServer/listEmails.html:78 +#: packages/templates/packages/listPackages.html:63 +#: userManagment/templates/userManagment/listUsers.html:54 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 +#: websiteFunctions/templates/websiteFunctions/listCron.html:65 +#: websiteFunctions/templates/websiteFunctions/website.html:497 +msgid "Delete" +msgstr "删除" + +#: IncBackups/templates/IncBackups/createBackup.html:3 +msgid "Create Incremental Backup" +msgstr "创建增量备份" + +#: IncBackups/templates/IncBackups/createBackup.html:13 +#: IncBackups/templates/IncBackups/createBackup.html:23 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 +#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 +#: backup/templates/backup/backup.html:21 +msgid "Back up Website" +msgstr "备份网站" + +#: IncBackups/templates/IncBackups/createBackup.html:15 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 +#: backup/templates/backup/backup.html:14 +#: backup/templates/backup/restore.html:14 +msgid "Backup Docs" +msgstr "备份文档" + +#: IncBackups/templates/IncBackups/createBackup.html:17 +msgid "This page can be used to create incremental backups for your websites." +msgstr "这个页面可以用来为您的网站创建增量备份。" + +#: IncBackups/templates/IncBackups/createBackup.html:33 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 +#: backup/templates/backup/backup.html:30 +#: databases/templates/databases/createDatabase.html:26 +#: databases/templates/databases/deleteDatabase.html:26 +#: databases/templates/databases/phpMyAdmin.html:26 +#: ftp/templates/ftp/createFTPAccount.html:42 +#: mailServer/templates/mailServer/changeEmailPassword.html:44 +#: mailServer/templates/mailServer/createEmailAccount.html:44 +#: mailServer/templates/mailServer/deleteEmailAccount.html:44 +#: mailServer/templates/mailServer/dkimManager.html:83 +#: mailServer/templates/mailServer/emailForwarding.html:38 +#: manageSSL/templates/manageSSL/manageSSL.html:29 +#: manageSSL/templates/manageSSL/sslForHostName.html:29 +#: manageSSL/templates/manageSSL/sslForMailServer.html:27 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/listCron.html:28 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 +msgid "Select Website" +msgstr "选择网站" + +#: IncBackups/templates/IncBackups/createBackup.html:113 +#: backup/templates/backup/backup.html:81 +#: baseTemplate/templates/baseTemplate/index.html:569 +#: baseTemplate/templates/baseTemplate/index.html:598 +#: userManagment/templates/userManagment/createACL.html:352 +#: userManagment/templates/userManagment/modifyACL.html:356 +msgid "Create Back up" +msgstr "创建备份" + +#: IncBackups/templates/IncBackups/createBackup.html:128 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 +#: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 +msgid "Date" +msgstr "日期" + +#: IncBackups/templates/IncBackups/createBackup.html:129 +#: backup/templates/backup/index.html:46 +#: backup/templates/backup/restore.html:45 +msgid "Restore" +msgstr "还原" + +#: IncBackups/templates/IncBackups/createBackup.html:161 +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "作业ID" + +#: IncBackups/templates/IncBackups/createBackup.html:162 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 +msgid "Snapshot ID" +msgstr "快照ID" + +#: IncBackups/templates/IncBackups/createBackup.html:163 +#: dns/templates/dns/addDeleteDNSRecords.html:327 +#: pluginHolder/templates/pluginHolder/plugins.html:29 +msgid "Type" +msgstr "类型" + +#: IncBackups/templates/IncBackups/createBackup.html:165 +#: websiteFunctions/templates/websiteFunctions/listCron.html:52 +msgid "Action" +msgstr "操作" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:14 +msgid "Set up Back up Destinations" +msgstr "设置远程目录" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 +msgid "Set up Incremental Back up Destinations" +msgstr "设置增量备份目的地" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 +msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" +msgstr "在此页面上,您可以设置备份目的地。(SFTP 和 AWS)" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 +msgid "Set up Back up Destinations." +msgstr "设置备份目的地。" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 +msgid "Select Type" +msgstr "选择类型" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 +#: backup/templates/backup/backupDestinations.html:30 +#: backup/templates/backup/remoteBackups.html:29 +#: dns/templates/dns/addDeleteDNSRecords.html:82 +#: dns/templates/dns/createNameServer.html:55 +#: dns/templates/dns/createNameServer.html:71 +#: firewall/templates/firewall/firewall.html:122 +msgid "IP Address" +msgstr "IP地址" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 +#: backup/templates/backup/backupDestinations.html:38 +#: backup/templates/backup/remoteBackups.html:37 +#: databases/templates/databases/createDatabase.html:56 +#: databases/templates/databases/listDataBases.html:107 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 +#: ftp/templates/ftp/listFTPAccounts.html:126 +#: mailServer/templates/mailServer/changeEmailPassword.html:68 +#: mailServer/templates/mailServer/createEmailAccount.html:68 +#: mailServer/templates/mailServer/listEmails.html:113 +#: userManagment/templates/userManagment/createUser.html:83 +#: userManagment/templates/userManagment/modifyUser.html:62 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 +msgid "Password" +msgstr "密码" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 +#: backup/templates/backup/backupDestinations.html:45 +#: dockerManager/templates/dockerManager/runContainer.html:74 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 +#: firewall/templates/firewall/firewall.html:123 +msgid "Port" +msgstr "端口" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 +#: backup/templates/backup/backupDestinations.html:47 +msgid "Backup server SSH Port, leave empty for 22." +msgstr "备份服务器的 SSH 端口,留空使用默认值 22。" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 +#: backup/templates/backup/backupDestinations.html:97 +msgid "IP" +msgstr "IP地址" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 +msgid "AWS_ACCESS_KEY_ID" +msgstr "AWS_ACCESS_KEY_ID" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 +msgid "AWS_SECRET_ACCESS_KEY" +msgstr "AWS_SECRET_ACCESS_KEY" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 +msgid "Restore Remote Incremental Backups" +msgstr "恢复远程增量备份" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 +msgid "" +"This page can be used to restore remote incremental backups for your " +"websites." +msgstr "这个页面可以用来恢复你的网站的远程增量备份。" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 +msgid "Fetch Restore Points" +msgstr "获取还原点" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "主机" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:330 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +msgid "Path" +msgstr "路径" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 +#: dockerManager/templates/dockerManager/viewContainer.html:108 +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:207 +#: mailServer/templates/mailServer/emailForwarding.html:120 +#: mailServer/templates/mailServer/listEmails.html:65 +#: packages/templates/packages/listPackages.html:41 +#: serverStatus/templates/serverStatus/topProcesses.html:201 +#: userManagment/templates/userManagment/listUsers.html:37 +msgid "Actions" +msgstr "操作" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 +msgid "Terminal - CyberPanel" +msgstr "终端 - CyberPanel" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 +#: baseTemplate/templates/baseTemplate/index.html:641 +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Terminal" +msgstr "终端" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 +msgid "Web Terminal Docs" +msgstr "网页终端文档" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 +msgid "Execute your terminal commands." +msgstr "执行你的终端命令。" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 +#: baseTemplate/templates/baseTemplate/index.html:643 +msgid "Web Terminal" +msgstr "网页终端" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 +msgid "Reboot SSH Server" +msgstr "重新启动SSH服务器" + +#: backup/templates/backup/backup.html:15 +msgid "This page can be used to Back up your websites" +msgstr "这里是网站备份界面" + +#: backup/templates/backup/backup.html:44 +#: baseTemplate/templates/baseTemplate/homePage.html:12 +#: filemanager/templates/filemanager/index.html:135 +msgid "Home" +msgstr "主目录" + +#: backup/templates/backup/backup.html:60 +#: backup/templates/backup/restore.html:62 +#: filemanager/templates/filemanager/index.html:158 +msgid "File Name" +msgstr "文件名" + +#: backup/templates/backup/backup.html:61 +#: backup/templates/backup/backup.html:106 +#: backup/templates/backup/restore.html:63 +#: baseTemplate/templates/baseTemplate/homePage.html:132 +#: baseTemplate/templates/baseTemplate/index.html:311 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 +#: filemanager/templates/filemanager/index.html:206 +#: firewall/templates/firewall/firewall.html:35 +#: firewall/templates/firewall/modSecurityRulesPacks.html:112 +#: managePHP/templates/managePHP/installExtensions.html:64 +msgid "Status" +msgstr "状态" + +#: backup/templates/backup/backup.html:66 +#: serverStatus/templates/serverStatus/topProcesses.html:52 +msgid "Running" +msgstr "进行中" + +#: backup/templates/backup/backup.html:88 +msgid "Cancel Backup" +msgstr "取消备份" + +#: backup/templates/backup/backup.html:103 +msgid "File" +msgstr "文件" + +#: backup/templates/backup/backup.html:105 +#: filemanager/templates/filemanager/index.html:204 +#: ftp/templates/ftp/listFTPAccounts.html:125 +msgid "Size" +msgstr "大小" + +#: backup/templates/backup/backup.html:131 +msgid "Cannot delete website, Error message: " +msgstr "无法删除网站, 错误信息: " + +#: backup/templates/backup/backup.html:135 +msgid "Successfully Deleted" +msgstr "删除成功" + +#: backup/templates/backup/backupDestinations.html:15 +msgid "On this page you can set up your Back up destinations. (SFTP)" +msgstr "这里是远程备份页面(SFTP)" + +#: backup/templates/backup/backupDestinations.html:21 +msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" +msgstr "设置备份目的地(备份服务器上的SSH端口应为22)" + +#: backup/templates/backup/backupDestinations.html:68 +#: backup/templates/backup/backupDestinations.html:72 +msgid "Connection to" +msgstr "连接到" + +#: backup/templates/backup/backupDestinations.html:68 +msgid "failed. Please delete and re-add. " +msgstr "失败, 请删除后重新添加。" + +#: backup/templates/backup/backupDestinations.html:72 +msgid "successful." +msgstr " 成功" + +#: backup/templates/backup/backupDestinations.html:76 +msgid "Cannot add destination. Error message:" +msgstr "无法添加远程目录, 错误信息:" + +#: backup/templates/backup/backupDestinations.html:80 +msgid "Destination Added." +msgstr "远程目录已添加。" + +#: backup/templates/backup/backupDestinations.html:84 +#: backup/templates/backup/backupSchedule.html:90 +#: backup/templates/backup/restore.html:95 +#: databases/templates/databases/createDatabase.html:98 +#: databases/templates/databases/deleteDatabase.html:69 +#: databases/templates/databases/phpMyAdmin.html:50 +#: dns/templates/dns/addDeleteDNSRecords.html:384 +#: dns/templates/dns/createDNSZone.html:70 +#: dns/templates/dns/createNameServer.html:102 +#: dns/templates/dns/deleteDNSZone.html:77 +#: dockerManager/templates/dockerManager/runContainer.html:185 +#: emailMarketing/templates/emailMarketing/website.html:161 +#: emailMarketing/templates/emailMarketing/website.html:420 +#: emailMarketing/templates/emailMarketing/website.html:471 +#: emailMarketing/templates/emailMarketing/website.html:633 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: emailMarketing/templates/emailMarketing/website.html:749 +#: emailMarketing/templates/emailMarketing/website.html:835 +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailPremium/templates/emailPremium/emailLimits.html:101 +#: emailPremium/templates/emailPremium/emailPage.html:119 +#: mailServer/templates/mailServer/changeEmailPassword.html:114 +#: mailServer/templates/mailServer/createEmailAccount.html:115 +#: mailServer/templates/mailServer/deleteEmailAccount.html:98 +#: mailServer/templates/mailServer/dkimManager.html:156 +#: mailServer/templates/mailServer/emailForwarding.html:83 +#: manageSSL/templates/manageSSL/manageSSL.html:60 +#: userManagment/templates/userManagment/createUser.html:137 +#: userManagment/templates/userManagment/modifyUser.html:121 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 +#: websiteFunctions/templates/websiteFunctions/website.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:383 +#: websiteFunctions/templates/websiteFunctions/website.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:581 +#: websiteFunctions/templates/websiteFunctions/website.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:778 +#: websiteFunctions/templates/websiteFunctions/website.html:884 +msgid "Could not connect to server. Please refresh this page." +msgstr "无法连接到服务器, 请刷新此页面。" + +#: backup/templates/backup/backupDestinations.html:98 +#: backup/templates/backup/backupDestinations.html:106 +msgid "Check Connection" +msgstr "测试连接" + +#: backup/templates/backup/backupSchedule.html:54 +msgid "Local Path" +msgstr "本地路径" + +#: backup/templates/backup/backupSchedule.html:57 +msgid "Local directory where backups will be moved after creation." +msgstr "备份在创建后将移入的本地目录。" + +#: backup/templates/backup/backupSchedule.html:82 +msgid "Cannot add schedule. Error message:" +msgstr "无法添加计划任务, 错误信息:" + +#: backup/templates/backup/backupSchedule.html:86 +msgid "Schedule Added" +msgstr "计划任务已添加" + +#: backup/templates/backup/index.html:3 +msgid "Back up Home - CyberPanel" +msgstr "备份 - CyberPanel" + +#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 +#: baseTemplate/templates/baseTemplate/homePage.html:95 +#: baseTemplate/templates/baseTemplate/homePage.html:97 +#: baseTemplate/templates/baseTemplate/index.html:561 +#: baseTemplate/templates/baseTemplate/index.html:563 +#: baseTemplate/templates/baseTemplate/index.html:616 +msgid "Back up" +msgstr "备份" + +#: backup/templates/backup/index.html:14 +msgid "Back up and restore sites." +msgstr "备份与还原网站。" + +#: backup/templates/backup/index.html:19 +#: baseTemplate/templates/baseTemplate/homePage.html:23 +#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 +#: dockerManager/templates/dockerManager/index.html:21 +#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 +#: mailServer/templates/mailServer/index.html:19 +#: managePHP/templates/managePHP/index.html:18 +#: manageSSL/templates/manageSSL/index.html:20 +#: packages/templates/packages/index.html:19 +#: serverLogs/templates/serverLogs/index.html:19 +#: serverStatus/templates/serverStatus/index.html:19 +#: tuning/templates/tuning/index.html:18 +#: userManagment/templates/userManagment/index.html:19 +#: websiteFunctions/templates/websiteFunctions/index.html:21 +msgid "Available Functions" +msgstr "可用功能" + +#: backup/templates/backup/index.html:28 +msgid "Back up Site" +msgstr "备份网站" + +#: backup/templates/backup/index.html:44 +#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:601 +#: userManagment/templates/userManagment/createACL.html:361 +#: userManagment/templates/userManagment/modifyACL.html:365 +msgid "Restore Back up" +msgstr "还原备份" + +#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 +msgid "Add/Delete Destinations" +msgstr "添加/删除远程目录" + +#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 +#: baseTemplate/templates/baseTemplate/index.html:581 +#: userManagment/templates/userManagment/createACL.html:391 +#: userManagment/templates/userManagment/modifyACL.html:395 +msgid "Remote Back ups" +msgstr "远程备份" + +#: backup/templates/backup/remoteBackups.html:3 +msgid "Transfer Websites from Remote Server - CyberPanel" +msgstr "从远程服务器恢复网站 - CyberPanel" + +#: backup/templates/backup/remoteBackups.html:14 +msgid "Remote Transfer" +msgstr "开始迁移" + +#: backup/templates/backup/remoteBackups.html:15 +msgid "This feature can import website(s) from remote server" +msgstr "此功能可以从远程服务器导入网站" + +#: backup/templates/backup/remoteBackups.html:46 +msgid "Fetch Accounts" +msgstr "读取" + +#: backup/templates/backup/remoteBackups.html:55 +msgid "Start Transfer" +msgstr "开始迁移" + +#: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:324 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:928 +#: emailPremium/templates/emailPremium/emailLimits.html:75 +#: emailPremium/templates/emailPremium/emailPage.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:93 +#: filemanager/templates/filemanager/index.html:230 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:747 +#: websiteFunctions/templates/websiteFunctions/website.html:858 +msgid "Cancel" +msgstr "取消" + +#: backup/templates/backup/remoteBackups.html:72 +msgid "Could not connect, please refresh this page." +msgstr "无法连接, 请刷新此页面。" + +#: backup/templates/backup/remoteBackups.html:76 +msgid "Accounts Successfully Fetched from remote server." +msgstr "成功读取记录。" + +#: backup/templates/backup/remoteBackups.html:80 +msgid "Backup Process successfully started." +msgstr "备份进程已成功开始。" + +#: backup/templates/backup/remoteBackups.html:84 +msgid "Backup successfully cancelled." +msgstr "已成功添加。" + +#: backup/templates/backup/remoteBackups.html:107 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Website" +msgstr "网站" + +#: backup/templates/backup/remoteBackups.html:108 +#: baseTemplate/templates/baseTemplate/homePage.html:143 +#: baseTemplate/templates/baseTemplate/index.html:768 +#: baseTemplate/templates/baseTemplate/index.html:770 +#: managePHP/templates/managePHP/installExtensions.html:61 +msgid "PHP" +msgstr "PHP" + +#: backup/templates/backup/remoteBackups.html:109 +#: packages/templates/packages/createPackage.html:112 +#: packages/templates/packages/deletePackage.html:60 +#: packages/templates/packages/listPackages.html:33 +#: packages/templates/packages/modifyPackage.html:125 +msgid "Package" +msgstr "套餐" + +#: backup/templates/backup/remoteBackups.html:110 +#: baseTemplate/templates/baseTemplate/index.html:505 +#: baseTemplate/templates/baseTemplate/index.html:507 +#: mailServer/templates/mailServer/listEmails.html:101 +#: userManagment/templates/userManagment/createUser.html:45 +#: userManagment/templates/userManagment/modifyUser.html:54 +#: userManagment/templates/userManagment/userProfile.html:41 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 +msgid "Email" +msgstr "邮箱" + +#: backup/templates/backup/restore.html:3 +msgid "Restore Website - CyberPanel" +msgstr "还原网站 - Cyberpanel" + +#: backup/templates/backup/restore.html:14 +#: backup/templates/backup/restore.html:21 +msgid "Restore Website" +msgstr "还原网站" + +#: backup/templates/backup/restore.html:15 +msgid "" +"This page can be used to restore your websites, Back up should be generated " +"from CyberPanel Back up generation tool, it will detect all Back ups under " +"/home/backup." +msgstr "" +"在此页面可以从备份中还原网站, 备份文件应当由CyberPanel备份工具创建 并且会自动" +"检测所有在/home/backup的备份。" + +#: backup/templates/backup/restore.html:30 +msgid "Select Back up" +msgstr "选择备份" + +#: backup/templates/backup/restore.html:61 +msgid "Condition" +msgstr "条件" + +#: backup/templates/backup/restore.html:86 +#: databases/templates/databases/deleteDatabase.html:60 +#: databases/templates/databases/listDataBases.html:54 +#: dockerManager/templates/dockerManager/listContainers.html:57 +#: dockerManager/templates/dockerManager/runContainer.html:176 +#: emailMarketing/templates/emailMarketing/website.html:411 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: firewall/templates/firewall/firewall.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:214 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:374 +#: websiteFunctions/templates/websiteFunctions/website.html:876 +msgid "Error message:" +msgstr "错误信息:" + +#: backup/templates/backup/restore.html:90 +msgid "Site related to this Back up already exists." +msgstr "此备份中的网站已存在。" + +#: baseTemplate/templates/baseTemplate/homePage.html:3 +msgid "Home - CyberPanel" +msgstr "主页 - Cyberpanel" + +#: baseTemplate/templates/baseTemplate/homePage.html:13 +msgid "Use the tabs to navigate through the control panel." +msgstr "通过标签页来浏览控制面板。" + +#: baseTemplate/templates/baseTemplate/homePage.html:29 +#: userManagment/templates/userManagment/index.html:13 +msgid "User Functions" +msgstr "用户功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:31 +#: baseTemplate/templates/baseTemplate/index.html:361 +#: baseTemplate/templates/baseTemplate/index.html:362 +#: baseTemplate/templates/baseTemplate/index.html:363 +msgid "Users" +msgstr "用户" + +#: baseTemplate/templates/baseTemplate/homePage.html:40 +#: websiteFunctions/templates/websiteFunctions/index.html:13 +msgid "Website Functions" +msgstr "网站功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:51 +msgid "Add/Modify Packages" +msgstr "创建/修改套餐" + +#: baseTemplate/templates/baseTemplate/homePage.html:53 +#: baseTemplate/templates/baseTemplate/index.html:283 +#: baseTemplate/templates/baseTemplate/index.html:427 +#: baseTemplate/templates/baseTemplate/index.html:429 +#: packages/templates/packages/index.html:13 +msgid "Packages" +msgstr "套餐" + +#: baseTemplate/templates/baseTemplate/homePage.html:62 +#: databases/templates/databases/index.html:12 +msgid "Database Functions" +msgstr "数据库功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:64 +#: baseTemplate/templates/baseTemplate/index.html:452 +#: baseTemplate/templates/baseTemplate/index.html:453 +#: baseTemplate/templates/baseTemplate/index.html:454 +#: emailMarketing/templates/emailMarketing/website.html:51 +#: packages/templates/packages/createPackage.html:69 +#: packages/templates/packages/listPackages.html:37 +#: packages/templates/packages/listPackages.html:134 +#: packages/templates/packages/modifyPackage.html:73 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 +#: websiteFunctions/templates/websiteFunctions/website.html:54 +msgid "Databases" +msgstr "数据库" + +#: baseTemplate/templates/baseTemplate/homePage.html:73 +msgid "Control DNS" +msgstr "控制DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:75 +#: baseTemplate/templates/baseTemplate/index.html:290 +#: baseTemplate/templates/baseTemplate/index.html:477 +#: baseTemplate/templates/baseTemplate/index.html:479 +msgid "DNS" +msgstr "DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:84 +#: ftp/templates/ftp/index.html:12 +msgid "FTP Functions" +msgstr "FTP功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:86 +#: baseTemplate/templates/baseTemplate/index.html:297 +#: baseTemplate/templates/baseTemplate/index.html:539 +#: baseTemplate/templates/baseTemplate/index.html:541 +#: emailMarketing/templates/emailMarketing/website.html:46 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 +#: websiteFunctions/templates/websiteFunctions/website.html:49 +msgid "FTP" +msgstr "FTP" + +#: baseTemplate/templates/baseTemplate/homePage.html:106 +#: baseTemplate/templates/baseTemplate/homePage.html:108 +#: mailServer/templates/mailServer/listEmails.html:64 +#: packages/templates/packages/createPackage.html:77 +#: packages/templates/packages/listPackages.html:143 +#: packages/templates/packages/modifyPackage.html:80 +msgid "Emails" +msgstr "邮箱" + +#: baseTemplate/templates/baseTemplate/homePage.html:117 +#: baseTemplate/templates/baseTemplate/homePage.html:119 +#: baseTemplate/templates/baseTemplate/index.html:617 +#: baseTemplate/templates/baseTemplate/index.html:618 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 +msgid "SSL" +msgstr "SSL" + +#: baseTemplate/templates/baseTemplate/homePage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:743 +#: baseTemplate/templates/baseTemplate/index.html:745 +#: baseTemplate/templates/baseTemplate/index.html:787 +#: emailPremium/templates/emailPremium/policyServer.html:30 +#: serverStatus/templates/serverStatus/index.html:13 +msgid "Server Status" +msgstr "服务器状态" + +#: baseTemplate/templates/baseTemplate/homePage.html:141 +msgid "PHP Configurations" +msgstr "设置PHP参数" + +#: baseTemplate/templates/baseTemplate/homePage.html:152 +#: baseTemplate/templates/baseTemplate/homePage.html:154 +#: baseTemplate/templates/baseTemplate/index.html:789 +#: dockerManager/templates/dockerManager/viewContainer.html:174 +#: emailMarketing/templates/emailMarketing/website.html:117 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 +#: websiteFunctions/templates/websiteFunctions/website.html:106 +msgid "Logs" +msgstr "日志" + +#: baseTemplate/templates/baseTemplate/homePage.html:163 +#: baseTemplate/templates/baseTemplate/homePage.html:165 +#: baseTemplate/templates/baseTemplate/index.html:811 +#: baseTemplate/templates/baseTemplate/index.html:813 +msgid "Security" +msgstr "安全" + +#: baseTemplate/templates/baseTemplate/homePage.html:188 +msgid "Resources" +msgstr "资源" + +#: baseTemplate/templates/baseTemplate/homePage.html:197 +#: baseTemplate/templates/baseTemplate/index.html:139 +#: dockerManager/templates/dockerManager/viewContainer.html:48 +msgid "CPU Usage" +msgstr "CPU使用量" + +#: baseTemplate/templates/baseTemplate/homePage.html:218 +#: baseTemplate/templates/baseTemplate/index.html:150 +msgid "Ram Usage" +msgstr "内存使用量" + +#: baseTemplate/templates/baseTemplate/homePage.html:239 +msgid "Disk Usage '/'" +msgstr "硬盘使用量 '/'" + +#: baseTemplate/templates/baseTemplate/index.html:159 +#: emailMarketing/templates/emailMarketing/website.html:58 +#: emailMarketing/templates/emailMarketing/website.html:78 +#: userManagment/templates/userManagment/listUsers.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 +#: websiteFunctions/templates/websiteFunctions/website.html:59 +#: websiteFunctions/templates/websiteFunctions/website.html:77 +msgid "Disk Usage" +msgstr "硬盘使用量" + +#: baseTemplate/templates/baseTemplate/index.html:192 +#: baseTemplate/templates/baseTemplate/index.html:195 +#: baseTemplate/templates/baseTemplate/index.html:199 +msgid "CyberPanel" +msgstr "CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:197 +#: baseTemplate/templates/baseTemplate/index.html:201 +msgid "Web Hosting Control Panel" +msgstr "Web主机控制面板" + +#: baseTemplate/templates/baseTemplate/index.html:203 +msgid "Close sidebar" +msgstr "关闭侧边栏" + +#: baseTemplate/templates/baseTemplate/index.html:209 +msgid "My Account" +msgstr "我的账号" + +#: baseTemplate/templates/baseTemplate/index.html:228 +msgid "Edit profile" +msgstr "编辑资料" + +#: baseTemplate/templates/baseTemplate/index.html:230 +#: baseTemplate/templates/baseTemplate/index.html:369 +#: userManagment/templates/userManagment/index.html:24 +#: userManagment/templates/userManagment/index.html:27 +msgid "View Profile" +msgstr "查看资料" + +#: baseTemplate/templates/baseTemplate/index.html:237 +#: baseTemplate/templates/baseTemplate/index.html:319 +msgid "Logout" +msgstr "登出" + +#: baseTemplate/templates/baseTemplate/index.html:249 +#: baseTemplate/templates/baseTemplate/index.html:254 +#: baseTemplate/templates/baseTemplate/index.html:259 +msgid "CPU Load Average" +msgstr "CPU平均负载" + +#: baseTemplate/templates/baseTemplate/index.html:265 +msgid "Dashboard Quick Menu" +msgstr "仪表盘" + +#: baseTemplate/templates/baseTemplate/index.html:304 +#: baseTemplate/templates/baseTemplate/index.html:725 +#: baseTemplate/templates/baseTemplate/index.html:727 +msgid "Tuning" +msgstr "服务器设置" + +#: baseTemplate/templates/baseTemplate/index.html:332 +msgid "Overview" +msgstr "概览" + +#: baseTemplate/templates/baseTemplate/index.html:334 +#: baseTemplate/templates/baseTemplate/index.html:335 +msgid "Server IP Address" +msgstr "服务器IP地址" + +#: baseTemplate/templates/baseTemplate/index.html:339 +#: baseTemplate/templates/baseTemplate/index.html:341 +msgid "Dashboard" +msgstr "仪表盘" + +#: baseTemplate/templates/baseTemplate/index.html:344 +#: baseTemplate/templates/baseTemplate/index.html:346 +#: baseTemplate/templates/baseTemplate/index.html:348 +#: baseTemplate/templates/baseTemplate/versionManagment.html:10 +#: userManagment/templates/userManagment/createACL.html:47 +#: userManagment/templates/userManagment/createACL.html:52 +#: userManagment/templates/userManagment/modifyACL.html:51 +#: userManagment/templates/userManagment/modifyACL.html:56 +msgid "Version Management" +msgstr "版本管理" + +#: baseTemplate/templates/baseTemplate/index.html:351 +#: baseTemplate/templates/baseTemplate/index.html:352 +#: baseTemplate/templates/baseTemplate/index.html:354 +msgid "Connect" +msgstr "连接" + +#: baseTemplate/templates/baseTemplate/index.html:358 +msgid "Main" +msgstr "主要功能" + +#: baseTemplate/templates/baseTemplate/index.html:372 +#: userManagment/templates/userManagment/createACL.html:64 +#: userManagment/templates/userManagment/createUser.html:12 +#: userManagment/templates/userManagment/modifyACL.html:68 +msgid "Create New User" +msgstr "创建新用户" + +#: baseTemplate/templates/baseTemplate/index.html:375 +#: userManagment/templates/userManagment/createACL.html:73 +#: userManagment/templates/userManagment/index.html:36 +#: userManagment/templates/userManagment/index.html:39 +#: userManagment/templates/userManagment/listUsers.html:13 +#: userManagment/templates/userManagment/listUsers.html:19 +#: userManagment/templates/userManagment/modifyACL.html:77 +msgid "List Users" +msgstr "列出用户" + +#: baseTemplate/templates/baseTemplate/index.html:378 +#: userManagment/templates/userManagment/index.html:61 +#: userManagment/templates/userManagment/index.html:64 +#: userManagment/templates/userManagment/modifyUser.html:12 +#: userManagment/templates/userManagment/modifyUser.html:102 +msgid "Modify User" +msgstr "修改用户" + +#: baseTemplate/templates/baseTemplate/index.html:380 +#: userManagment/templates/userManagment/createACL.html:82 +#: userManagment/templates/userManagment/modifyACL.html:86 +#: userManagment/templates/userManagment/resellerCenter.html:12 +#: userManagment/templates/userManagment/resellerCenter.html:19 +msgid "Reseller Center" +msgstr "分销商中心" + +#: baseTemplate/templates/baseTemplate/index.html:383 +#: userManagment/templates/userManagment/createACL.html:12 +msgid "Create New ACL" +msgstr "创建新访问控制策略" + +#: baseTemplate/templates/baseTemplate/index.html:386 +#: userManagment/templates/userManagment/deleteACL.html:12 +#: userManagment/templates/userManagment/deleteACL.html:40 +msgid "Delete ACL" +msgstr "删除 ACL" + +#: baseTemplate/templates/baseTemplate/index.html:389 +msgid "Modify ACL" +msgstr "修改访问控制策略" + +#: baseTemplate/templates/baseTemplate/index.html:392 +#: userManagment/templates/userManagment/apiAccess.html:13 +#: userManagment/templates/userManagment/apiAccess.html:20 +msgid "API Access" +msgstr "API 权限" + +#: baseTemplate/templates/baseTemplate/index.html:408 +#: userManagment/templates/userManagment/createACL.html:112 +#: userManagment/templates/userManagment/modifyACL.html:116 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 +#: websiteFunctions/templates/websiteFunctions/index.html:43 +#: websiteFunctions/templates/websiteFunctions/index.html:45 +msgid "Create Website" +msgstr "创建网站" + +#: baseTemplate/templates/baseTemplate/index.html:414 +#: userManagment/templates/userManagment/createACL.html:121 +#: userManagment/templates/userManagment/modifyACL.html:125 +#: websiteFunctions/templates/websiteFunctions/index.html:67 +#: websiteFunctions/templates/websiteFunctions/index.html:69 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 +msgid "Modify Website" +msgstr "修改网站" + +#: baseTemplate/templates/baseTemplate/index.html:417 +#: websiteFunctions/templates/websiteFunctions/index.html:81 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 +msgid "Suspend/Unsuspend" +msgstr "禁用/启用" + +#: baseTemplate/templates/baseTemplate/index.html:420 +#: userManagment/templates/userManagment/createACL.html:139 +#: userManagment/templates/userManagment/deleteACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:143 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 +#: websiteFunctions/templates/websiteFunctions/index.html:90 +#: websiteFunctions/templates/websiteFunctions/index.html:92 +msgid "Delete Website" +msgstr "删除网站" + +#: baseTemplate/templates/baseTemplate/index.html:438 +#: baseTemplate/templates/baseTemplate/index.html:671 +#: packages/templates/packages/listPackages.html:13 +#: packages/templates/packages/listPackages.html:19 +#: userManagment/templates/userManagment/createACL.html:161 +#: userManagment/templates/userManagment/modifyACL.html:165 +msgid "List Packages" +msgstr "套餐列表" + +#: baseTemplate/templates/baseTemplate/index.html:441 +#: packages/templates/packages/deletePackage.html:12 +#: packages/templates/packages/deletePackage.html:18 +#: packages/templates/packages/deletePackage.html:39 +#: packages/templates/packages/index.html:38 +#: packages/templates/packages/index.html:41 +#: userManagment/templates/userManagment/createACL.html:170 +#: userManagment/templates/userManagment/modifyACL.html:174 +msgid "Delete Package" +msgstr "删除套餐" + +#: baseTemplate/templates/baseTemplate/index.html:444 +#: packages/templates/packages/index.html:51 +#: packages/templates/packages/index.html:54 +#: packages/templates/packages/modifyPackage.html:9 +#: packages/templates/packages/modifyPackage.html:15 +#: packages/templates/packages/modifyPackage.html:108 +#: userManagment/templates/userManagment/createACL.html:179 +#: userManagment/templates/userManagment/modifyACL.html:183 +msgid "Modify Package" +msgstr "修改套餐" + +#: baseTemplate/templates/baseTemplate/index.html:460 +#: databases/templates/databases/createDatabase.html:12 +#: databases/templates/databases/createDatabase.html:19 +#: databases/templates/databases/createDatabase.html:79 +#: databases/templates/databases/index.html:25 +#: databases/templates/databases/index.html:27 +#: databases/templates/databases/phpMyAdmin.html:12 +#: databases/templates/databases/phpMyAdmin.html:19 +#: userManagment/templates/userManagment/createACL.html:191 +#: userManagment/templates/userManagment/modifyACL.html:195 +msgid "Create Database" +msgstr "创建数据库" + +#: baseTemplate/templates/baseTemplate/index.html:463 +#: databases/templates/databases/deleteDatabase.html:12 +#: databases/templates/databases/deleteDatabase.html:19 +#: databases/templates/databases/deleteDatabase.html:51 +#: databases/templates/databases/index.html:37 +#: databases/templates/databases/index.html:39 +#: userManagment/templates/userManagment/createACL.html:200 +#: userManagment/templates/userManagment/modifyACL.html:204 +msgid "Delete Database" +msgstr "删除数据库" + +#: baseTemplate/templates/baseTemplate/index.html:466 +#: databases/templates/databases/index.html:48 +#: databases/templates/databases/index.html:50 +#: databases/templates/databases/listDataBases.html:13 +#: databases/templates/databases/listDataBases.html:19 +#: userManagment/templates/userManagment/createACL.html:209 +#: userManagment/templates/userManagment/modifyACL.html:213 +msgid "List Databases" +msgstr "查看数据库" + +#: baseTemplate/templates/baseTemplate/index.html:468 +#: baseTemplate/templates/baseTemplate/index.html:469 +#: databases/templates/databases/index.html:59 +#: databases/templates/databases/index.html:61 +msgid "PHPMYAdmin" +msgstr "PHPMYADMIN" + +#: baseTemplate/templates/baseTemplate/index.html:485 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 +#: dns/templates/dns/index.html:74 +#: userManagment/templates/userManagment/createACL.html:221 +#: userManagment/templates/userManagment/modifyACL.html:225 +msgid "Create Nameserver" +msgstr "创建名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:488 +msgid "Configure Default Nameservers" +msgstr "创建默认名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:488 +msgid "Config Default Nameservers" +msgstr "设置默认名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:491 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 +#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 +#: dns/templates/dns/index.html:86 +msgid "Create DNS Zone" +msgstr "创建DNS区域" + +#: baseTemplate/templates/baseTemplate/index.html:494 +#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 +#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 +#: dns/templates/dns/index.html:98 +#: userManagment/templates/userManagment/createACL.html:239 +#: userManagment/templates/userManagment/modifyACL.html:243 +msgid "Delete Zone" +msgstr "删除DNS区域" + +#: baseTemplate/templates/baseTemplate/index.html:497 +msgid "Add/Delete Records" +msgstr "添加/删除记录" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:12 +#: mailServer/templates/mailServer/createEmailAccount.html:19 +msgid "Create Email Account" +msgstr "创建邮箱用户" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:98 +#: mailServer/templates/mailServer/index.html:25 +#: mailServer/templates/mailServer/index.html:28 +#: userManagment/templates/userManagment/createACL.html:262 +#: userManagment/templates/userManagment/modifyACL.html:266 +msgid "Create Email" +msgstr "创建邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:516 +#: userManagment/templates/userManagment/createACL.html:271 +#: userManagment/templates/userManagment/modifyACL.html:275 +msgid "List Emails" +msgstr "邮箱列表" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:12 +#: mailServer/templates/mailServer/deleteEmailAccount.html:19 +msgid "Delete Email Account" +msgstr "删除邮箱用户" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:73 +#: mailServer/templates/mailServer/index.html:38 +#: mailServer/templates/mailServer/index.html:41 +#: userManagment/templates/userManagment/createACL.html:280 +#: userManagment/templates/userManagment/modifyACL.html:284 +msgid "Delete Email" +msgstr "删除邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:522 +#: userManagment/templates/userManagment/createACL.html:289 +#: userManagment/templates/userManagment/modifyACL.html:293 +msgid "Email Forwarding" +msgstr "邮件转发" + +#: baseTemplate/templates/baseTemplate/index.html:525 +#: databases/templates/databases/listDataBases.html:90 +#: ftp/templates/ftp/listFTPAccounts.html:108 +#: mailServer/templates/mailServer/changeEmailPassword.html:97 +#: mailServer/templates/mailServer/index.html:51 +#: mailServer/templates/mailServer/index.html:54 +#: mailServer/templates/mailServer/listEmails.html:76 +msgid "Change Password" +msgstr "修改邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:528 +#: mailServer/templates/mailServer/dkimManager.html:13 +#: mailServer/templates/mailServer/dkimManager.html:22 +#: mailServer/templates/mailServer/dkimManager.html:75 +#: userManagment/templates/userManagment/createACL.html:309 +#: userManagment/templates/userManagment/modifyACL.html:313 +msgid "DKIM Manager" +msgstr "DKIM管理" + +#: baseTemplate/templates/baseTemplate/index.html:530 +#: baseTemplate/templates/baseTemplate/index.html:531 +msgid "Access Webmail" +msgstr "进入Webmail" + +#: baseTemplate/templates/baseTemplate/index.html:547 +#: emailMarketing/templates/emailMarketing/website.html:886 +#: emailMarketing/templates/emailMarketing/website.html:889 +#: ftp/templates/ftp/createFTPAccount.html:12 +#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 +#: ftp/templates/ftp/index.html:26 +#: userManagment/templates/userManagment/createACL.html:322 +#: userManagment/templates/userManagment/modifyACL.html:326 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 +#: websiteFunctions/templates/websiteFunctions/website.html:821 +#: websiteFunctions/templates/websiteFunctions/website.html:824 +msgid "Create FTP Account" +msgstr "创建FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:550 +#: emailMarketing/templates/emailMarketing/website.html:898 +#: emailMarketing/templates/emailMarketing/website.html:901 +#: ftp/templates/ftp/deleteFTPAccount.html:12 +#: ftp/templates/ftp/deleteFTPAccount.html:18 +#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 +#: ftp/templates/ftp/index.html:37 +#: userManagment/templates/userManagment/createACL.html:331 +#: userManagment/templates/userManagment/modifyACL.html:335 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 +#: websiteFunctions/templates/websiteFunctions/website.html:830 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +msgid "Delete FTP Account" +msgstr "删除FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:553 +#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 +#: ftp/templates/ftp/listFTPAccounts.html:13 +#: ftp/templates/ftp/listFTPAccounts.html:19 +#: userManagment/templates/userManagment/createACL.html:340 +#: userManagment/templates/userManagment/modifyACL.html:344 +msgid "List FTP Accounts" +msgstr "查看FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:575 +#: userManagment/templates/userManagment/createACL.html:370 +#: userManagment/templates/userManagment/modifyACL.html:374 +msgid "Add/Delete Destination" +msgstr "添加/删除远程目录" + +#: baseTemplate/templates/baseTemplate/index.html:590 +msgid "Incremental Back up - Beta" +msgstr "增量备份 - Beta" + +#: baseTemplate/templates/baseTemplate/index.html:592 +msgid "Incremental Back up" +msgstr "增量式备份" + +#: baseTemplate/templates/baseTemplate/index.html:598 +msgid "Create/Restore Back up" +msgstr "创建/恢复备份" + +#: baseTemplate/templates/baseTemplate/index.html:601 +msgid "Add/Remove Destinations" +msgstr "添加/删除远程目标" + +#: baseTemplate/templates/baseTemplate/index.html:604 +msgid "Schedule Back ups" +msgstr "计划备份" + +#: baseTemplate/templates/baseTemplate/index.html:607 +msgid "Restore from Remote Server" +msgstr "从远程服务器恢复" + +#: baseTemplate/templates/baseTemplate/index.html:607 +msgid "Restore from Remote" +msgstr "从远程恢复" + +#: baseTemplate/templates/baseTemplate/index.html:624 +#: manageSSL/templates/manageSSL/index.html:29 +#: manageSSL/templates/manageSSL/index.html:31 +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/manageSSL.html:20 +#: userManagment/templates/userManagment/createACL.html:404 +#: userManagment/templates/userManagment/modifyACL.html:408 +msgid "Manage SSL" +msgstr "管理SSL" + +#: baseTemplate/templates/baseTemplate/index.html:627 +#: manageSSL/templates/manageSSL/index.html:45 +#: manageSSL/templates/manageSSL/index.html:47 +#: userManagment/templates/userManagment/createACL.html:413 +#: userManagment/templates/userManagment/modifyACL.html:417 +msgid "Hostname SSL" +msgstr "主机名SSL" + +#: baseTemplate/templates/baseTemplate/index.html:630 +#: manageSSL/templates/manageSSL/index.html:60 +#: manageSSL/templates/manageSSL/index.html:62 +#: userManagment/templates/userManagment/createACL.html:422 +#: userManagment/templates/userManagment/modifyACL.html:426 +msgid "MailServer SSL" +msgstr "邮件服务器SSL" + +#: baseTemplate/templates/baseTemplate/index.html:637 +msgid "Server" +msgstr "服务器设置" + +#: baseTemplate/templates/baseTemplate/index.html:644 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:688 +#: baseTemplate/templates/baseTemplate/index.html:705 +#: baseTemplate/templates/baseTemplate/index.html:846 +msgid "NEW" +msgstr "新功能" + +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Web Based Terminal" +msgstr "网络终端" + +#: baseTemplate/templates/baseTemplate/index.html:657 +#: baseTemplate/templates/baseTemplate/index.html:659 +msgid "CloudLinux" +msgstr "CloudLinux" + +#: baseTemplate/templates/baseTemplate/index.html:666 +msgid "Create Cloud Linux Package" +msgstr "创建Cloud Linux 包" + +#: baseTemplate/templates/baseTemplate/index.html:671 +msgid "List Cloud Linux Package" +msgstr "列出套餐" + +#: baseTemplate/templates/baseTemplate/index.html:676 +msgid "Monitor Usage of your Websites" +msgstr "监控您的网站使用情况" + +#: baseTemplate/templates/baseTemplate/index.html:676 +msgid "Monitor Usage" +msgstr "监测使用情况" + +#: baseTemplate/templates/baseTemplate/index.html:685 +#: baseTemplate/templates/baseTemplate/index.html:687 +msgid "Containerization" +msgstr "容器化技术" + +#: baseTemplate/templates/baseTemplate/index.html:694 +msgid "Create Website Limits" +msgstr "创建网站限制" + +#: baseTemplate/templates/baseTemplate/index.html:694 +msgid "Create Limits" +msgstr "创建限制" + +#: baseTemplate/templates/baseTemplate/index.html:702 +msgid "Docker" +msgstr "Docker" + +#: baseTemplate/templates/baseTemplate/index.html:704 +msgid "Docker Manager" +msgstr "Docker 管理器" + +#: baseTemplate/templates/baseTemplate/index.html:711 +msgid "Manage Docker Images" +msgstr "管理Docker 镜像" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#: dockerManager/templates/dockerManager/index.html:49 +#: dockerManager/templates/dockerManager/index.html:51 +#: dockerManager/templates/dockerManager/manageImages.html:14 +msgid "Manage Images" +msgstr "管理映像" + +#: baseTemplate/templates/baseTemplate/index.html:714 +msgid "Manage Docker Containers" +msgstr "管理Docker容器" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#: dockerManager/templates/dockerManager/index.html:29 +#: dockerManager/templates/dockerManager/index.html:31 +msgid "Manage Containers" +msgstr "管理容器" + +#: baseTemplate/templates/baseTemplate/index.html:717 +msgid "Create New Docker Container" +msgstr "创建新的Docker容器" + +#: baseTemplate/templates/baseTemplate/index.html:717 +msgid "Create New Container" +msgstr "创建新容器" + +#: baseTemplate/templates/baseTemplate/index.html:733 +#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 +#: tuning/templates/tuning/liteSpeedTuning.html:12 +msgid "LiteSpeed Tuning" +msgstr "LiteSpeed设置" + +#: baseTemplate/templates/baseTemplate/index.html:736 +#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 +#: tuning/templates/tuning/phpTuning.html:13 +#: tuning/templates/tuning/phpTuning.html:149 +msgid "PHP Tuning" +msgstr "PHP设置" + +#: baseTemplate/templates/baseTemplate/index.html:751 +#: serverStatus/templates/serverStatus/topProcesses.html:14 +#: serverStatus/templates/serverStatus/topProcesses.html:179 +msgid "Top Processes" +msgstr "顶级进程" + +#: baseTemplate/templates/baseTemplate/index.html:754 +#: serverStatus/templates/serverStatus/index.html:25 +#: serverStatus/templates/serverStatus/index.html:28 +msgid "LiteSpeed Status" +msgstr "LiteSpeed状态" + +#: baseTemplate/templates/baseTemplate/index.html:757 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 +#: serverStatus/templates/serverStatus/index.html:38 +msgid "CyberPanel Main Log File" +msgstr "Cybapenl主日志" + +#: baseTemplate/templates/baseTemplate/index.html:760 +msgid "Services Status" +msgstr "服务状态" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/installExtensions.html:13 +msgid "Install PHP Extensions" +msgstr "安装PHP扩展" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/index.html:24 +#: managePHP/templates/managePHP/index.html:26 +msgid "Install Extensions" +msgstr "安装扩展" + +#: baseTemplate/templates/baseTemplate/index.html:779 +#: managePHP/templates/managePHP/index.html:35 +#: managePHP/templates/managePHP/index.html:37 +msgid "Edit PHP Configs" +msgstr "编辑PHP配置" + +#: baseTemplate/templates/baseTemplate/index.html:795 +msgid "Access Log" +msgstr "访问日志" + +#: baseTemplate/templates/baseTemplate/index.html:797 +#: emailMarketing/templates/emailMarketing/website.html:139 +#: serverLogs/templates/serverLogs/errorLogs.html:13 +#: serverLogs/templates/serverLogs/index.html:37 +#: serverLogs/templates/serverLogs/index.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Error Logs" +msgstr "错误日志" + +#: baseTemplate/templates/baseTemplate/index.html:799 +#: emailPremium/templates/emailPremium/emailPage.html:144 +#: serverLogs/templates/serverLogs/emailLogs.html:14 +#: serverLogs/templates/serverLogs/index.html:49 +#: serverLogs/templates/serverLogs/index.html:52 +msgid "Email Logs" +msgstr "邮箱日志" + +#: baseTemplate/templates/baseTemplate/index.html:799 +msgid "Email Log" +msgstr "邮箱日志" + +#: baseTemplate/templates/baseTemplate/index.html:801 +#: serverLogs/templates/serverLogs/ftplogs.html:13 +#: serverLogs/templates/serverLogs/index.html:61 +#: serverLogs/templates/serverLogs/index.html:64 +msgid "FTP Logs" +msgstr "FTP日志" + +#: baseTemplate/templates/baseTemplate/index.html:803 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 +msgid "ModSecurity Audit Logs" +msgstr "ModSecurity审计日志" + +#: baseTemplate/templates/baseTemplate/index.html:803 +msgid "ModSec Audit Logs" +msgstr "ModSecurity 审查日志" + +#: baseTemplate/templates/baseTemplate/index.html:819 +msgid "Firewall Home" +msgstr "防火墙" + +#: baseTemplate/templates/baseTemplate/index.html:819 +#: firewall/templates/firewall/csf.html:119 +#: firewall/templates/firewall/index.html:25 +#: firewall/templates/firewall/index.html:27 +msgid "Firewall" +msgstr "防火墙" + +#: baseTemplate/templates/baseTemplate/index.html:821 +#: firewall/templates/firewall/index.html:36 +#: firewall/templates/firewall/index.html:38 +#: firewall/templates/firewall/secureSSH.html:13 +#: firewall/templates/firewall/secureSSH.html:20 +msgid "Secure SSH" +msgstr "SSH加固" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:58 +msgid "ModSecurity Configurations" +msgstr "ModSecurity 设置" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:60 +msgid "ModSecurity Conf" +msgstr "ModSecurity 设置" + +#: baseTemplate/templates/baseTemplate/index.html:826 +#: firewall/templates/firewall/index.html:69 +#: firewall/templates/firewall/index.html:71 +#: firewall/templates/firewall/modSecurityRules.html:20 +msgid "ModSecurity Rules" +msgstr "ModSecurity 规则" + +#: baseTemplate/templates/baseTemplate/index.html:829 +#: firewall/templates/firewall/index.html:80 +#: firewall/templates/firewall/index.html:82 +msgid "ModSecurity Rules Packs" +msgstr "ModSecurity 规则包" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/index.html:47 +msgid "ConfigServer Security & Firewall (CSF)" +msgstr "配置服务器安全和防火墙(CSF)" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/csf.html:21 +#: firewall/templates/firewall/csf.html:86 +#: firewall/templates/firewall/csf.html:95 +#: firewall/templates/firewall/index.html:49 +msgid "CSF" +msgstr "CSF" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS Configurations" +msgstr "CageFS 配置" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS" +msgstr "CageFS" + +#: baseTemplate/templates/baseTemplate/index.html:843 +#: baseTemplate/templates/baseTemplate/index.html:845 +msgid "Mail Settings" +msgstr "邮件设置" + +#: baseTemplate/templates/baseTemplate/index.html:852 +#: emailPremium/templates/emailPremium/policyServer.html:20 +msgid "Email Policy Server" +msgstr "邮箱策略服务器" + +#: baseTemplate/templates/baseTemplate/index.html:855 +msgid "Email Limits" +msgstr "邮箱限制" + +#: baseTemplate/templates/baseTemplate/index.html:858 +msgid "SpamAssassin Configurations" +msgstr "SpamAssassin 设置" + +#: baseTemplate/templates/baseTemplate/index.html:858 +#: emailPremium/templates/emailPremium/SpamAssassin.html:25 +#: firewall/templates/firewall/spamassassin.html:20 +msgid "SpamAssassin" +msgstr "SpamAssassin垃圾邮件过滤" + +#: baseTemplate/templates/baseTemplate/index.html:861 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:978 +#: websiteFunctions/templates/websiteFunctions/website.html:909 +msgid "Email Marketing" +msgstr "邮箱营销" + +#: baseTemplate/templates/baseTemplate/index.html:869 +#: baseTemplate/templates/baseTemplate/index.html:871 +msgid "Manage Services" +msgstr "管理服务" + +#: baseTemplate/templates/baseTemplate/index.html:877 +#: manageServices/templates/manageServices/managePowerDNS.html:25 +msgid "Manage PowerDNS" +msgstr "管理 PowerDNS" + +#: baseTemplate/templates/baseTemplate/index.html:880 +#: manageServices/templates/manageServices/managePostfix.html:22 +msgid "Manage Postfix" +msgstr "管理Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:883 +msgid "Manage FTP" +msgstr "管理FTP" + +#: baseTemplate/templates/baseTemplate/index.html:890 +#: baseTemplate/templates/baseTemplate/index.html:892 +#: pluginHolder/templates/pluginHolder/plugins.html:14 +#: pluginHolder/templates/pluginHolder/plugins.html:21 +msgid "Plugins" +msgstr "扩展" + +#: baseTemplate/templates/baseTemplate/index.html:898 +msgid "Installed Plugins" +msgstr "安装插件" + +#: baseTemplate/templates/baseTemplate/index.html:898 +msgid "Installed" +msgstr "已安装" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:3 +msgid "Version Management - CyberPanel" +msgstr "版本管理 - Cyberpanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:11 +msgid "" +"On this page you can manage versions and or upgrade to latest version of " +"CyberPanel" +msgstr "此页面可以查看并更新至CyberPanel最新版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:25 +msgid "Current Version" +msgstr "当前版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:33 +msgid "Build" +msgstr "编译" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:42 +msgid "Latest Version" +msgstr "最新版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:50 +msgid "Latest Build" +msgstr "最新编译" + +#: containerization/templates/containerization/listWebsites.html:3 +msgid "Limits - CyberPanel" +msgstr "限制 - Cyberpanel" + +#: containerization/templates/containerization/listWebsites.html:15 +msgid "Launch and set limits for the websites." +msgstr "启动并设置网站限制。" + +#: containerization/templates/containerization/notAvailable.html:14 +msgid "CyberPanel Ent is required for Containerization." +msgstr "容器化需要CyberPanel Ent。" + +#: containerization/templates/containerization/notAvailable.html:22 +msgid "Containerization is only available on CyberPanel Ent. " +msgstr "容器化仅在CyberPanel企业版上可用。" + +#: containerization/templates/containerization/notAvailable.html:39 +msgid "" +"Required packages are not installed on this server. Please proceed to " +"installation." +msgstr "此服务器上未安装所需的包。请继续以安装。" + +#: containerization/templates/containerization/websiteContainerLimit.html:3 +msgid " limits - CyberPanel" +msgstr " 限制 - Cyberpanel" + +#: containerization/templates/containerization/websiteContainerLimit.html:14 +msgid "Limits/Usage" +msgstr "限制/使用量" + +#: containerization/templates/containerization/websiteContainerLimit.html:16 +msgid "Set limits and view usage for " +msgstr "设置限制并查看使用情况 " + +#: containerization/templates/containerization/websiteContainerLimit.html:25 +msgid "" +"Limits are not being inforced, click Edit Limits to inforace the limits." +msgstr "限制并未强制使用,请单击 编辑限制 来进行管理。" + +#: containerization/templates/containerization/websiteContainerLimit.html:33 +msgid "Limit" +msgstr "限制" + +#: containerization/templates/containerization/websiteContainerLimit.html:34 +#: dns/templates/dns/addDeleteDNSRecords.html:330 +msgid "Value" +msgstr "内容" + +#: containerization/templates/containerization/websiteContainerLimit.html:40 +#: containerization/templates/containerization/websiteContainerLimit.html:77 +msgid "CPU Percentage" +msgstr "CPU百分比" + +#: containerization/templates/containerization/websiteContainerLimit.html:44 +#: serverStatus/templates/serverStatus/topProcesses.html:131 +msgid "Memory" +msgstr "内存" + +#: containerization/templates/containerization/websiteContainerLimit.html:48 +#: containerization/templates/containerization/websiteContainerLimit.html:91 +msgid "I/O" +msgstr "I/O" + +#: containerization/templates/containerization/websiteContainerLimit.html:56 +#: containerization/templates/containerization/websiteContainerLimit.html:107 +msgid "Network Speed" +msgstr "网络速度" + +#: containerization/templates/containerization/websiteContainerLimit.html:84 +msgid "Memory Limit" +msgstr "内存限制" + +#: databases/templates/databases/createDatabase.html:3 +msgid "Create New Database - CyberPanel" +msgstr "创建数据库 - CyberPanel" + +#: databases/templates/databases/createDatabase.html:13 +#: databases/templates/databases/phpMyAdmin.html:13 +msgid "Create a new database on this page." +msgstr "在此页面新建数据库。" + +#: databases/templates/databases/createDatabase.html:40 +#: databases/templates/databases/listDataBases.html:105 +msgid "Database Name" +msgstr "数据库名字" + +#: databases/templates/databases/createDatabase.html:48 +#: firewall/templates/firewall/secureSSH.html:120 +#: ftp/templates/ftp/createFTPAccount.html:57 +#: ftp/templates/ftp/listFTPAccounts.html:123 +#: mailServer/templates/mailServer/createEmailAccount.html:59 +msgid "User Name" +msgstr "用户名" + +#: databases/templates/databases/createDatabase.html:61 +#: databases/templates/databases/listDataBases.html:74 +#: ftp/templates/ftp/createFTPAccount.html:73 +#: ftp/templates/ftp/listFTPAccounts.html:92 +#: mailServer/templates/mailServer/changeEmailPassword.html:74 +#: mailServer/templates/mailServer/createEmailAccount.html:74 +#: userManagment/templates/userManagment/createUser.html:90 +#: userManagment/templates/userManagment/modifyUser.html:68 +msgid "Generate" +msgstr "生成" + +#: databases/templates/databases/createDatabase.html:66 +#: databases/templates/databases/listDataBases.html:77 +#: ftp/templates/ftp/createFTPAccount.html:78 +#: ftp/templates/ftp/listFTPAccounts.html:96 +#: mailServer/templates/mailServer/changeEmailPassword.html:79 +#: mailServer/templates/mailServer/createEmailAccount.html:79 +#: userManagment/templates/userManagment/createUser.html:95 +#: userManagment/templates/userManagment/modifyUser.html:73 +msgid "Generated Password" +msgstr "生成的密码" + +#: databases/templates/databases/createDatabase.html:71 +#: databases/templates/databases/listDataBases.html:84 +#: ftp/templates/ftp/createFTPAccount.html:85 +#: ftp/templates/ftp/listFTPAccounts.html:103 +#: mailServer/templates/mailServer/changeEmailPassword.html:86 +#: mailServer/templates/mailServer/createEmailAccount.html:86 +#: userManagment/templates/userManagment/createUser.html:101 +#: userManagment/templates/userManagment/modifyUser.html:79 +msgid "Use" +msgstr "使用" + +#: databases/templates/databases/createDatabase.html:89 +#: databases/templates/databases/phpMyAdmin.html:41 +msgid "Cannot create database. Error message:" +msgstr "无法创建数据库, 错误提示:" + +#: databases/templates/databases/createDatabase.html:93 +#: databases/templates/databases/phpMyAdmin.html:45 +msgid "Database created successfully." +msgstr "成功创建数据库。" + +#: databases/templates/databases/deleteDatabase.html:3 +msgid "Delete Database - CyberPanel" +msgstr "删除数据库 - CyberPanel" + +#: databases/templates/databases/deleteDatabase.html:13 +msgid "Delete an existing database on this page." +msgstr "在此页面删除已有数据库。" + +#: databases/templates/databases/deleteDatabase.html:38 +msgid "Select Database" +msgstr "选择数据库" + +#: databases/templates/databases/deleteDatabase.html:64 +msgid "Database deleted successfully." +msgstr "成功删除数据库。" + +#: databases/templates/databases/index.html:3 +msgid "Database Functions - CyberPanel" +msgstr "数据库功能 - CyberPanel" + +#: databases/templates/databases/index.html:13 +msgid "Create, edit and delete databases on this page." +msgstr "在此页面创建, 编辑和删除数据库。" + +#: databases/templates/databases/listDataBases.html:3 +msgid "List Databases - CyberPanel" +msgstr "查看数据库 - CyberPanel" + +#: databases/templates/databases/listDataBases.html:14 +msgid "List Databases or change their passwords." +msgstr "查看数据库或修改密码。" + +#: databases/templates/databases/listDataBases.html:26 +#: dns/templates/dns/addDeleteDNSRecords.html:42 +#: ftp/templates/ftp/deleteFTPAccount.html:39 +#: ftp/templates/ftp/listFTPAccounts.html:42 +#: mailServer/templates/mailServer/listEmails.html:43 +#: tuning/templates/tuning/phpTuning.html:30 +msgid "Select Domain" +msgstr "选择域名" + +#: databases/templates/databases/listDataBases.html:44 +#: dns/templates/dns/addDeleteDNSRecords.html:367 +#: ftp/templates/ftp/listFTPAccounts.html:61 +msgid "Records successfully fetched for" +msgstr "成功读取记录" + +#: databases/templates/databases/listDataBases.html:49 +msgid "Password changed for: " +msgstr "已为修改密码 " + +#: databases/templates/databases/listDataBases.html:53 +msgid "Cannot change password for " +msgstr "无法为修改密码 " + +#: databases/templates/databases/listDataBases.html:59 +#: firewall/templates/firewall/firewall.html:161 +#: ftp/templates/ftp/listFTPAccounts.html:76 +msgid "Could Not Connect to server. Please refresh this page" +msgstr "无法连接到服务器, 请刷新此页面" + +#: databases/templates/databases/listDataBases.html:106 +msgid "Database User" +msgstr "数据库用户" + +#: databases/templates/databases/listDataBases.html:117 +#: ftp/templates/ftp/listFTPAccounts.html:139 +msgid "Change" +msgstr "修改" + +#: databases/templates/databases/phpMyAdmin.html:3 +msgid "phpMyAdmin - CyberPanel" +msgstr "phpMyAdmin - Cyberpanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:3 +msgid "Add/Modify DNS Records - CyberPanel" +msgstr "添加/删除DNS记录 - Cyberpanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +msgid "Add/Modify DNS Zone" +msgstr "添加/修改DNS区域" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +#: dns/templates/dns/configureDefaultNameServers.html:12 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/deleteDNSZone.html:12 +msgid "DNS Docs" +msgstr "DNS文档" + +#: dns/templates/dns/addDeleteDNSRecords.html:14 +msgid "" +"On this page you can add/modify dns records for domains whose dns zone is " +"already created." +msgstr "此页面可以为已创建DNS区域的域名添加/编辑DNS记录。" + +#: dns/templates/dns/addDeleteDNSRecords.html:19 +msgid "Add Records" +msgstr "添加记录" + +#: dns/templates/dns/addDeleteDNSRecords.html:27 +#: dns/templates/dns/configureDefaultNameServers.html:24 +#: dns/templates/dns/createDNSZone.html:24 +#: dns/templates/dns/createNameServer.html:24 +#: dns/templates/dns/deleteDNSZone.html:25 +msgid "PowerDNS is disabled." +msgstr "PowerDNS已被禁用。" + +#: dns/templates/dns/addDeleteDNSRecords.html:29 +#: dns/templates/dns/configureDefaultNameServers.html:26 +#: dns/templates/dns/createDNSZone.html:26 +#: dns/templates/dns/createNameServer.html:26 +#: dns/templates/dns/deleteDNSZone.html:27 +#: ftp/templates/ftp/createFTPAccount.html:29 +#: ftp/templates/ftp/deleteFTPAccount.html:27 +#: ftp/templates/ftp/listFTPAccounts.html:29 +#: mailServer/templates/mailServer/changeEmailPassword.html:30 +#: mailServer/templates/mailServer/createEmailAccount.html:30 +#: mailServer/templates/mailServer/deleteEmailAccount.html:30 +#: mailServer/templates/mailServer/emailForwarding.html:28 +#: mailServer/templates/mailServer/listEmails.html:30 +msgid "Enable Now" +msgstr "现在启用" + +#: dns/templates/dns/addDeleteDNSRecords.html:78 +#: dns/templates/dns/addDeleteDNSRecords.html:101 +#: dns/templates/dns/addDeleteDNSRecords.html:125 +#: dns/templates/dns/addDeleteDNSRecords.html:148 +#: dns/templates/dns/addDeleteDNSRecords.html:176 +#: dns/templates/dns/addDeleteDNSRecords.html:200 +#: dns/templates/dns/addDeleteDNSRecords.html:224 +#: dns/templates/dns/addDeleteDNSRecords.html:248 +#: dns/templates/dns/addDeleteDNSRecords.html:272 +#: dns/templates/dns/addDeleteDNSRecords.html:298 +#: dns/templates/dns/addDeleteDNSRecords.html:329 +msgid "TTL" +msgstr "TTL" + +#: dns/templates/dns/addDeleteDNSRecords.html:88 +#: dns/templates/dns/addDeleteDNSRecords.html:111 +#: dns/templates/dns/addDeleteDNSRecords.html:135 +#: dns/templates/dns/addDeleteDNSRecords.html:162 +#: dns/templates/dns/addDeleteDNSRecords.html:187 +#: dns/templates/dns/addDeleteDNSRecords.html:211 +#: dns/templates/dns/addDeleteDNSRecords.html:235 +#: dns/templates/dns/addDeleteDNSRecords.html:259 +#: dns/templates/dns/addDeleteDNSRecords.html:287 +#: dns/templates/dns/addDeleteDNSRecords.html:304 +#: firewall/templates/firewall/firewall.html:104 +msgid "Add" +msgstr "添加" + +#: dns/templates/dns/addDeleteDNSRecords.html:105 +msgid "IPV6 Address" +msgstr "IPV6地址" + +#: dns/templates/dns/addDeleteDNSRecords.html:129 +#: dns/templates/dns/addDeleteDNSRecords.html:156 +#: dns/templates/dns/createDNSZone.html:38 +#: dns/templates/dns/createNameServer.html:36 +#: emailMarketing/templates/emailMarketing/website.html:318 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 +#: websiteFunctions/templates/websiteFunctions/website.html:280 +msgid "Domain Name" +msgstr "域名" + +#: dns/templates/dns/addDeleteDNSRecords.html:152 +#: dns/templates/dns/addDeleteDNSRecords.html:331 +msgid "Priority" +msgstr "优先级" + +#: dns/templates/dns/addDeleteDNSRecords.html:181 +msgid "Policy" +msgstr "政策" + +#: dns/templates/dns/addDeleteDNSRecords.html:205 +msgid "Text" +msgstr "内容" + +#: dns/templates/dns/addDeleteDNSRecords.html:229 +msgid "SOA Value" +msgstr "SOA值" + +#: dns/templates/dns/addDeleteDNSRecords.html:253 +msgid "Name server" +msgstr "名称服务器" + +#: dns/templates/dns/addDeleteDNSRecords.html:276 +msgid "Prioirty" +msgstr "Prioirty" + +#: dns/templates/dns/addDeleteDNSRecords.html:281 +msgid "Content" +msgstr "内容" + +#: dns/templates/dns/addDeleteDNSRecords.html:359 +msgid "Cannot fetch records. Error message:" +msgstr "无法获取记录, 错误信息:" + +#: dns/templates/dns/addDeleteDNSRecords.html:363 +msgid "Cannot add record. Error message: " +msgstr "无法添加记录, 错误信息: " + +#: dns/templates/dns/addDeleteDNSRecords.html:371 +msgid "Record Successfully Deleted" +msgstr "成功删除记录" + +#: dns/templates/dns/addDeleteDNSRecords.html:375 +msgid "Cannot delete record. Error message:" +msgstr "无法删除记录, 错误信息:" + +#: dns/templates/dns/addDeleteDNSRecords.html:379 +msgid "Record Successfully Added." +msgstr "成功添加记录。" + +#: dns/templates/dns/configureDefaultNameServers.html:3 +msgid "Configure Default Nameserver - CyberPanel" +msgstr "设置默认名称服务器(NS) - CyberPanel" + +#: dns/templates/dns/configureDefaultNameServers.html:12 +msgid "Configure Default Nameserver" +msgstr "配置默认名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:13 +#: dns/templates/dns/createNameServer.html:13 +msgid "" +"You can use this page to setup nameservers using which people on the " +"internet can resolve websites hosted on this server." +msgstr "您可以在此页面创建名称服务器(NS)以解析您的域名。" + +#: dns/templates/dns/configureDefaultNameServers.html:18 +#: dns/templates/dns/createDNSZone.html:18 +#: dns/templates/dns/createNameServer.html:18 +#: userManagment/templates/userManagment/modifyUser.html:19 +msgid "Details" +msgstr "详情" + +#: dns/templates/dns/configureDefaultNameServers.html:36 +#: dns/templates/dns/createNameServer.html:46 +msgid "First Nameserver" +msgstr "第一名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:45 +msgid "Second Nameserver" +msgstr "第二名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:52 +msgid "Third Nameserver" +msgstr "第三名字服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:59 +msgid "Forth Nameserver" +msgstr "第四名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:68 +#: emailMarketing/templates/emailMarketing/website.html:656 +#: emailMarketing/templates/emailMarketing/website.html:716 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:654 +msgid "Save" +msgstr "保存" + +#: dns/templates/dns/createDNSZone.html:3 +msgid "Create DNS Zone - CyberPanel" +msgstr "创建DNS区域 - CyberPanel" + +#: dns/templates/dns/createDNSZone.html:13 +msgid "" +"This page is used to create DNS zone, to edit dns zone you can visit Modify " +"DNS Zone Page." +msgstr "在此页面创建DNS区域, 您可以在“修改DNS区域”编辑DNS区域。" + +#: dns/templates/dns/createDNSZone.html:61 +msgid "Cannot create DNS Zone. Error message:" +msgstr "无法创建DNS区域, 错误信息:" + +#: dns/templates/dns/createDNSZone.html:65 +msgid "DNS Zone for domain:" +msgstr "域名DNS区域:" + +#: dns/templates/dns/createNameServer.html:3 +msgid "Create Nameserver - CyberPanel" +msgstr "创建名称服务器(NS) - CyberPanel" + +#: dns/templates/dns/createNameServer.html:62 +msgid "Second Nameserver (Back up)" +msgstr "第二名称服务器(备用)" + +#: dns/templates/dns/createNameServer.html:89 +msgid "Nameserver cannot be created. Error message:" +msgstr "名称服务器无法创建, 错误信息:" + +#: dns/templates/dns/createNameServer.html:93 +msgid "The following nameservers were successfully created:" +msgstr "以下名称服务器已成功创建:" + +#: dns/templates/dns/deleteDNSZone.html:3 +msgid "Delete DNS Zone - CyberPanel" +msgstr "删除DNS区域 - CyberPanel" + +#: dns/templates/dns/deleteDNSZone.html:12 +#: dns/templates/dns/deleteDNSZone.html:18 +#: userManagment/templates/userManagment/createACL.html:230 +#: userManagment/templates/userManagment/modifyACL.html:234 +msgid "Delete DNS Zone" +msgstr "删除DNS区域" + +#: dns/templates/dns/deleteDNSZone.html:13 +msgid "" +"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " +"all its related records as well." +msgstr "此页面可以删除DNS区域, 删除DNS区域时所有相关的DNS记录也将会被删除。" + +#: dns/templates/dns/deleteDNSZone.html:37 +msgid "Select Zone" +msgstr "选择DNS区域" + +#: dns/templates/dns/deleteDNSZone.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 +#: ftp/templates/ftp/deleteFTPAccount.html:73 +#: mailServer/templates/mailServer/deleteEmailAccount.html:82 +#: packages/templates/packages/deletePackage.html:47 +#: userManagment/templates/userManagment/deleteACL.html:49 +#: userManagment/templates/userManagment/deleteUser.html:51 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 +msgid "Are you sure?" +msgstr "您确定?" + +#: dns/templates/dns/deleteDNSZone.html:69 +msgid "Cannot delete zone. Error message: " +msgstr "无法删除DNS区域, 错误信息: " + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "Zone for domain:" +msgstr "域名DNS区域:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "is successfully erased." +msgstr "已成功删除。" + +#: dns/templates/dns/index.html:3 +msgid "DNS Functions - CyberPanel" +msgstr "DNS功能" + +#: dns/templates/dns/index.html:12 +msgid "DNS Functions" +msgstr "DNS功能" + +#: dns/templates/dns/index.html:13 +msgid "Create, edit and delete DNS zones on this page." +msgstr "在此页面添加, 修改, 删除DNS区域。" + +#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 +msgid "Add Delete Records" +msgstr "添加/删除记录" + +#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 +msgid "Add Delete/Records" +msgstr "添加/删除记录" + +#: dockerManager/templates/dockerManager/images.html:3 +#: dockerManager/templates/dockerManager/manageImages.html:3 +msgid "Docker Manage Images - CyberPanel" +msgstr "管理Docker 镜像 - CyberPanel" + +#: dockerManager/templates/dockerManager/images.html:14 +#: dockerManager/templates/dockerManager/index.html:39 +msgid "Create new container" +msgstr "创建新容器" + +#: dockerManager/templates/dockerManager/images.html:15 +msgid "Search new images and manage existing ones" +msgstr "搜索并管理镜像" + +#: dockerManager/templates/dockerManager/images.html:22 +msgid "Locally Available Images" +msgstr "可用的本地镜像" + +#: dockerManager/templates/dockerManager/images.html:48 +msgid "Create" +msgstr "创建" + +#: dockerManager/templates/dockerManager/index.html:3 +msgid "Docker Container Management - CyberPanel" +msgstr "Docker 容器管理 - CyberPanel" + +#: dockerManager/templates/dockerManager/index.html:13 +msgid "Docker Container Management" +msgstr "Docker 容器管理" + +#: dockerManager/templates/dockerManager/index.html:41 +msgid "New Container" +msgstr "新建容器" + +#: dockerManager/templates/dockerManager/install.html:3 +msgid "Install Docker - CyberPanel" +msgstr "安装 Docker - CyberPanel" + +#: dockerManager/templates/dockerManager/install.html:12 +#: dockerManager/templates/dockerManager/install.html:18 +msgid "Install Docker" +msgstr "安装Docker" + +#: dockerManager/templates/dockerManager/install.html:26 +msgid "" +"Unable to connect to docker daemon, please try restarting docker from " +"service page" +msgstr "无法连接到Docker守护程序,请尝试在服务页面重启Docker" + +#: dockerManager/templates/dockerManager/install.html:28 +msgid "You do not have sufficient permissions to access this page" +msgstr "您没有足够的权限访问此页面" + +#: dockerManager/templates/dockerManager/install.html:32 +msgid "" +"Docker is currently not installed on this server. To manage containers, you " +"must first install it." +msgstr "该服务器当前未安装Docker。你必须先安装Docker才能管理容器。" + +#: dockerManager/templates/dockerManager/install.html:53 +msgid "" +"You do not have permissions to install Docker. Please contact your system " +"administrator" +msgstr "您没有安装Docker的权限。 请与您的系统管理员联系" + +#: dockerManager/templates/dockerManager/listContainers.html:3 +msgid "Containers List - CyberPanel" +msgstr "容器列表 - CyberPanel" + +#: dockerManager/templates/dockerManager/listContainers.html:14 +msgid "List Containers" +msgstr "容器列表" + +#: dockerManager/templates/dockerManager/listContainers.html:17 +msgid "Manage containers on server" +msgstr "管理服务器上的容器" + +#: dockerManager/templates/dockerManager/listContainers.html:23 +msgid "Containers" +msgstr "容器" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "Unlisted Containers" +msgstr "卸载容器" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "" +"Containers listed below were either not created through panel or were not " +"saved to database properly" +msgstr "下面列出的容器不是通过面板创建的,或者没有正确保存到数据库中" + +#: dockerManager/templates/dockerManager/listContainers.html:148 +#: dockerManager/templates/dockerManager/runContainer.html:52 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 +msgid "Select Owner" +msgstr "选择拥有者" + +#: dockerManager/templates/dockerManager/manageImages.html:17 +msgid "On this page you can manage docker images." +msgstr "在此页上,您可以管理 Docker 镜像。" + +#: dockerManager/templates/dockerManager/manageImages.html:65 +#: dockerManager/templates/dockerManager/manageImages.html:66 +msgid "Images" +msgstr "镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:67 +msgid "Delete unused images" +msgstr "删除未使用的镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:95 +msgid "Official image" +msgstr "官方镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:104 +msgid "Pull" +msgstr "拉取" + +#: dockerManager/templates/dockerManager/runContainer.html:3 +msgid "Run new container - CyberPanel" +msgstr "运行新容器 - CyberPanel" + +#: dockerManager/templates/dockerManager/runContainer.html:12 +msgid "Run Container" +msgstr "运行容器" + +#: dockerManager/templates/dockerManager/runContainer.html:13 +msgid "Modify parameters for your new container" +msgstr "修改新容器的参数" + +#: dockerManager/templates/dockerManager/runContainer.html:20 +msgid "Container Details" +msgstr "容器详情" + +#: dockerManager/templates/dockerManager/runContainer.html:36 +#: dockerManager/templates/dockerManager/viewContainer.html:70 +msgid "Image" +msgstr "镜像" + +#: dockerManager/templates/dockerManager/runContainer.html:44 +msgid "Tag" +msgstr "标签" + +#: dockerManager/templates/dockerManager/runContainer.html:64 +#: dockerManager/templates/dockerManager/viewContainer.html:206 +msgid "Memory limit" +msgstr "内存限制" + +#: dockerManager/templates/dockerManager/runContainer.html:104 +#: dockerManager/templates/dockerManager/viewContainer.html:250 +msgid "ENV" +msgstr "ENV" + +#: dockerManager/templates/dockerManager/runContainer.html:125 +#: dockerManager/templates/dockerManager/viewContainer.html:283 +msgid "Map Volumes" +msgstr "Map Volumes" + +#: dockerManager/templates/dockerManager/runContainer.html:153 +#: dockerManager/templates/dockerManager/viewContainer.html:310 +msgid "Add field" +msgstr "添加字段" + +#: dockerManager/templates/dockerManager/runContainer.html:161 +msgid "Create Container" +msgstr "创建容器" + +#: dockerManager/templates/dockerManager/runContainer.html:180 +msgid "Container succesfully created." +msgstr "容器已成功创建。" + +#: dockerManager/templates/dockerManager/runContainer.html:196 +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:431 +#: managePHP/templates/managePHP/installExtensions.html:103 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 +#: websiteFunctions/templates/websiteFunctions/website.html:394 +msgid "Go Back" +msgstr "返回" + +#: dockerManager/templates/dockerManager/viewContainer.html:3 +msgid "Container Home - CyberPanel" +msgstr "容器主页 - Cyberpanel" + +#: dockerManager/templates/dockerManager/viewContainer.html:14 +msgid "Manage Container" +msgstr "管理容器" + +#: dockerManager/templates/dockerManager/viewContainer.html:15 +msgid "Currently managing: " +msgstr "当前正在管理: " + +#: dockerManager/templates/dockerManager/viewContainer.html:24 +msgid "Container Information" +msgstr "容器信息" + +#: dockerManager/templates/dockerManager/viewContainer.html:37 +msgid "Memory Usage" +msgstr "内存使用情况" + +#: dockerManager/templates/dockerManager/viewContainer.html:68 +msgid "Container ID" +msgstr "容器ID" + +#: dockerManager/templates/dockerManager/viewContainer.html:77 +msgid "Ports" +msgstr "端口" + +#: dockerManager/templates/dockerManager/viewContainer.html:79 +msgid "to" +msgstr "到" + +#: dockerManager/templates/dockerManager/viewContainer.html:227 +msgid "Confirmation" +msgstr "确认" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +msgid "Compose Email Message - CyberPanel" +msgstr "撰写邮箱- CyberPanel" + +#: 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 "创建邮箱列表 -CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +msgid "Create Email List" +msgstr "创建邮箱列表" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:14 +msgid "Create email list, to send out news letters and marketing emails." +msgstr "创建邮箱列表,以发送市场营销邮箱。" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:26 +msgid "List Name" +msgstr "列表名称" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +msgid "Create List" +msgstr "创建列表" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +msgid "Email Marketing - CyberPanel" +msgstr "邮箱营销 - 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:33 +msgid "Enable Now." +msgstr "立即启用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:76 +#: userManagment/templates/userManagment/listUsers.html:32 +#: userManagment/templates/userManagment/userProfile.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 +msgid "Username" +msgstr "用户名" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 +msgid "Email Marketing Enabled." +msgstr "邮箱营销已启用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:53 +#: emailPremium/templates/emailPremium/emailLimits.html:159 +#: emailPremium/templates/emailPremium/emailPage.html:55 +#: emailPremium/templates/emailPremium/emailPage.html:61 +#: emailPremium/templates/emailPremium/listDomains.html:62 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:234 +msgid "Disable" +msgstr "关闭" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 +msgid "Email Marketing Disabled." +msgstr "邮箱营销已禁用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:161 +#: emailPremium/templates/emailPremium/emailPage.html:57 +#: emailPremium/templates/emailPremium/emailPage.html:63 +#: emailPremium/templates/emailPremium/listDomains.html:64 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Enable" +msgstr "开启" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +msgid "Manage Email Lists - CyberPanel" +msgstr "管理邮箱列表 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +msgid "Manage Email Lists" +msgstr "管理邮箱列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "在这个页面上,你可以管理你的邮箱列表(删除、验证、添加更多电子邮件)。" + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +msgid "Select List" +msgstr "选择列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +msgid "Delete This List" +msgstr "删除此列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:48 +msgid "You are doing to delete this list.." +msgstr "您正在删除此列表。" + +#: emailMarketing/templates/emailMarketing/manageLists.html:54 +#: emailMarketing/templates/emailMarketing/sendEmails.html:54 +#: emailMarketing/templates/emailMarketing/website.html:484 +#: filemanager/templates/filemanager/index.html:417 +#: filemanager/templates/filemanager/index.html:460 +#: filemanager/templates/filemanager/index.html:523 +#: filemanager/templates/filemanager/index.html:558 +#: filemanager/templates/filemanager/index.html:588 +#: filemanager/templates/filemanager/index.html:649 +#: websiteFunctions/templates/websiteFunctions/website.html:447 +msgid "Close" +msgstr "关闭" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:416 +msgid "Confirm" +msgstr "确定" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "检查此列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +msgid "Add More Emails" +msgstr "添加更多的邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +msgid "Load Emails" +msgstr "加载邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +msgid "email" +msgstr "邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +msgid "Verification Status" +msgstr "验证状态" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "创建日期" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "管理 SMTP 主机 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +msgid "Manage SMTP Hosts" +msgstr "管理SMTP主机" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "在此页面上,您可以管理 STMP 主机。(SMTP 主机将用于发送邮箱)" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "SMTP服务器" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +msgid "Save Host" +msgstr "保存主机" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#: userManagment/templates/userManagment/listUsers.html:36 +msgid "Owner" +msgstr "所有者" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "验证主机" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +msgid "Send Emails - CyberPanel" +msgstr "发送邮箱 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:1030 +#: emailMarketing/templates/emailMarketing/website.html:1033 +#: emailMarketing/templates/emailMarketing/website.html:1034 +#: websiteFunctions/templates/websiteFunctions/website.html:956 +#: websiteFunctions/templates/websiteFunctions/website.html:960 +#: websiteFunctions/templates/websiteFunctions/website.html:961 +msgid "Send Emails" +msgstr "发送邮件" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:14 +msgid "" +"On this page you can send emails to the lists you created using SMTP Hosts." +msgstr "在此页面上,您可以通过该 SMTP 主机将邮箱发送到创建的列表。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:677 +msgid "Select Template" +msgstr "选择模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:41 +msgid "Delete This Template" +msgstr "删除此模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:48 +msgid "You are doing to delete this template.." +msgstr "你正在删除此模板。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:63 +msgid "Preview Template" +msgstr "预览模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +msgid "Select STMP Host" +msgstr "选择STMP主机" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:98 +msgid "Send to un-verified email addresses." +msgstr "发送到未经验证的邮箱地址。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:107 +msgid "Include unsubscribe link." +msgstr "包含退订链接。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:116 +msgid "Start Job" +msgstr "开始任务" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +msgid "Total Emails" +msgstr "全部邮件" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "发送成功" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "发送失败" + +#: emailMarketing/templates/emailMarketing/website.html:16 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 +#: websiteFunctions/templates/websiteFunctions/website.html:16 +msgid "Preview" +msgstr "预览" + +#: emailMarketing/templates/emailMarketing/website.html:17 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 +#: websiteFunctions/templates/websiteFunctions/website.html:17 +msgid "All functions related to a particular site." +msgstr "所有与网站相关的功能。" + +#: emailMarketing/templates/emailMarketing/website.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:28 +msgid "Resource Usage" +msgstr "资源使用量" + +#: emailMarketing/templates/emailMarketing/website.html:39 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 +#: websiteFunctions/templates/websiteFunctions/website.html:42 +msgid "Resource" +msgstr "资源" + +#: emailMarketing/templates/emailMarketing/website.html:41 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 +#: websiteFunctions/templates/websiteFunctions/website.html:44 +msgid "Allowed" +msgstr "可用" + +#: emailMarketing/templates/emailMarketing/website.html:63 +#: emailMarketing/templates/emailMarketing/website.html:89 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 +#: websiteFunctions/templates/websiteFunctions/website.html:64 +#: websiteFunctions/templates/websiteFunctions/website.html:86 +msgid "Bandwidth Usage" +msgstr "流量使用量" + +#: emailMarketing/templates/emailMarketing/website.html:124 +#: emailMarketing/templates/emailMarketing/website.html:127 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:112 +#: websiteFunctions/templates/websiteFunctions/website.html:116 +msgid "Load Access Logs" +msgstr "读取访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:128 +#: serverLogs/templates/serverLogs/accessLogs.html:16 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 +#: websiteFunctions/templates/websiteFunctions/website.html:117 +msgid "Access Logs" +msgstr "访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:135 +#: emailMarketing/templates/emailMarketing/website.html:138 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:121 +#: websiteFunctions/templates/websiteFunctions/website.html:125 +msgid "Load Error Logs" +msgstr "读取错误日志" + +#: emailMarketing/templates/emailMarketing/website.html:150 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 +#: websiteFunctions/templates/websiteFunctions/website.html:133 +msgid "Logs Fetched" +msgstr "日志读取成功" + +#: emailMarketing/templates/emailMarketing/website.html:155 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 +#: websiteFunctions/templates/websiteFunctions/website.html:136 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:179 +#: emailMarketing/templates/emailMarketing/website.html:221 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:199 +msgid "Next" +msgstr "下一个" + +#: emailMarketing/templates/emailMarketing/website.html:181 +#: emailMarketing/templates/emailMarketing/website.html:223 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 +#: websiteFunctions/templates/websiteFunctions/website.html:156 +#: websiteFunctions/templates/websiteFunctions/website.html:201 +msgid "Previous" +msgstr "上一个" + +#: emailMarketing/templates/emailMarketing/website.html:254 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:36 +#: packages/templates/packages/listPackages.html:93 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:225 +msgid "Domains" +msgstr "域名" + +#: emailMarketing/templates/emailMarketing/website.html:262 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: emailMarketing/templates/emailMarketing/website.html:266 +#: emailMarketing/templates/emailMarketing/website.html:267 +#: websiteFunctions/templates/websiteFunctions/website.html:230 +#: websiteFunctions/templates/websiteFunctions/website.html:233 +#: websiteFunctions/templates/websiteFunctions/website.html:234 +#: websiteFunctions/templates/websiteFunctions/website.html:235 +msgid "Add Domains" +msgstr "添加域名" + +#: emailMarketing/templates/emailMarketing/website.html:274 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:278 +#: emailMarketing/templates/emailMarketing/website.html:279 +#: emailMarketing/templates/emailMarketing/website.html:280 +#: emailMarketing/templates/emailMarketing/website.html:300 +#: emailMarketing/templates/emailMarketing/website.html:303 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:240 +#: websiteFunctions/templates/websiteFunctions/website.html:241 +#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:245 +#: websiteFunctions/templates/websiteFunctions/website.html:246 +#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:266 +msgid "List Domains" +msgstr "查看域名" + +#: emailMarketing/templates/emailMarketing/website.html:286 +#: emailMarketing/templates/emailMarketing/website.html:287 +#: emailMarketing/templates/emailMarketing/website.html:290 +#: emailMarketing/templates/emailMarketing/website.html:291 +#: emailMarketing/templates/emailMarketing/website.html:292 +#: websiteFunctions/templates/websiteFunctions/website.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:252 +#: websiteFunctions/templates/websiteFunctions/website.html:255 +#: websiteFunctions/templates/websiteFunctions/website.html:256 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +msgid "Domain Alias" +msgstr "域名别名" + +#: emailMarketing/templates/emailMarketing/website.html:299 +#: emailMarketing/templates/emailMarketing/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:262 +#: websiteFunctions/templates/websiteFunctions/website.html:267 +msgid "Add new Cron Job" +msgstr "添加新的定时任务" + +#: emailMarketing/templates/emailMarketing/website.html:305 +#: websiteFunctions/templates/websiteFunctions/website.html:268 +msgid "Cron Jobs" +msgstr "定时任务" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "This path is relative to: " +msgstr "此目录相对与:" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "Leave empty to set default." +msgstr "留空则设置为默认根目录。" + +#: emailMarketing/templates/emailMarketing/website.html:336 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 +#: websiteFunctions/templates/websiteFunctions/website.html:299 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "无效域名(注意: 不需要添加http或https)" + +#: emailMarketing/templates/emailMarketing/website.html:341 +#: emailMarketing/templates/emailMarketing/website.html:794 +#: managePHP/templates/managePHP/editPHPConfig.html:49 +#: managePHP/templates/managePHP/editPHPConfig.html:177 +#: managePHP/templates/managePHP/installExtensions.html:29 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:737 +msgid "Select PHP" +msgstr "选择PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:354 +#: packages/templates/packages/createPackage.html:84 +#: packages/templates/packages/modifyPackage.html:87 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 +#: websiteFunctions/templates/websiteFunctions/website.html:317 +msgid "Additional Features" +msgstr "额外功能" + +#: emailMarketing/templates/emailMarketing/website.html:388 +#: websiteFunctions/templates/websiteFunctions/website.html:351 +msgid "Create Domain" +msgstr "创建域名" + +#: emailMarketing/templates/emailMarketing/website.html:415 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:378 +msgid "Website succesfully created." +msgstr "网站成功创建。" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:412 +msgid "PHP Version Changed to:" +msgstr "版本管理:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:416 +msgid "Deleted:" +msgstr "删除:" + +#: emailMarketing/templates/emailMarketing/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:420 +msgid "SSL Issued:" +msgstr "已为签发证书:" + +#: emailMarketing/templates/emailMarketing/website.html:461 +#: websiteFunctions/templates/websiteFunctions/website.html:424 +msgid "Changes applied successfully." +msgstr "更改应用成功。" + +#: emailMarketing/templates/emailMarketing/website.html:528 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:492 +msgid "Issue" +msgstr "签发SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:558 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:520 +msgid "Configurations" +msgstr "配置" + +#: emailMarketing/templates/emailMarketing/website.html:568 +#: emailMarketing/templates/emailMarketing/website.html:572 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:526 +#: websiteFunctions/templates/websiteFunctions/website.html:530 +msgid "Edit vHost Main Configurations" +msgstr "编辑vHost主配置" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:531 +msgid "vHost Conf" +msgstr "虚拟主机配置" + +#: emailMarketing/templates/emailMarketing/website.html:582 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:537 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "添加Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:586 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:541 +msgid "Rewrite Rules (.htaccess)" +msgstr "重写规则 (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:587 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:542 +msgid "Rewrite Rules" +msgstr "重写规则" + +#: emailMarketing/templates/emailMarketing/website.html:595 +#: emailMarketing/templates/emailMarketing/website.html:598 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 +#: websiteFunctions/templates/websiteFunctions/website.html:547 +#: websiteFunctions/templates/websiteFunctions/website.html:550 +msgid "Add Your Own SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:599 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:551 +msgid "Add SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:607 +#: emailMarketing/templates/emailMarketing/website.html:610 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 +#: websiteFunctions/templates/websiteFunctions/website.html:556 +#: websiteFunctions/templates/websiteFunctions/website.html:559 +msgid "Change PHP Version" +msgstr "更改PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:815 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 +#: websiteFunctions/templates/websiteFunctions/website.html:560 +#: websiteFunctions/templates/websiteFunctions/website.html:758 +msgid "Change PHP" +msgstr "修改PHP" + +#: emailMarketing/templates/emailMarketing/website.html:623 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 +#: websiteFunctions/templates/websiteFunctions/website.html:571 +msgid "SSL Saved" +msgstr "SSL证书已保存" + +#: emailMarketing/templates/emailMarketing/website.html:628 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Could not save SSL. Error message:" +msgstr "无法保存SSL证书, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:678 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:619 +msgid "Current configuration in the file fetched." +msgstr "当前配置读取成功。" + +#: emailMarketing/templates/emailMarketing/website.html:683 +#: emailMarketing/templates/emailMarketing/website.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 +#: websiteFunctions/templates/websiteFunctions/website.html:623 +#: websiteFunctions/templates/websiteFunctions/website.html:636 +msgid "Could not fetch current configuration. Error message:" +msgstr "无法读取当前配置, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:693 +#: emailMarketing/templates/emailMarketing/website.html:753 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 +#: websiteFunctions/templates/websiteFunctions/website.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +msgid "Configurations saved." +msgstr "配置已保存。" + +#: emailMarketing/templates/emailMarketing/website.html:734 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 +msgid "Current rewrite rules in the file fetched." +msgstr "当前Rewrite rules读取成功。" + +#: emailMarketing/templates/emailMarketing/website.html:743 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 +#: websiteFunctions/templates/websiteFunctions/website.html:690 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "无法读取当前Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:757 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 +#: websiteFunctions/templates/websiteFunctions/website.html:703 +msgid "Could not save rewrite rules. Error message:" +msgstr "无法保存Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:776 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Save Rewrite Rules" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 +#: websiteFunctions/templates/websiteFunctions/website.html:768 +msgid "Failed to change PHP version. Error message:" +msgstr "修改PHP版本失败。错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:830 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 +#: websiteFunctions/templates/websiteFunctions/website.html:773 +msgid "PHP successfully changed for: " +msgstr "PHP 已成功更改为: " + +#: emailMarketing/templates/emailMarketing/website.html:855 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 +#: websiteFunctions/templates/websiteFunctions/website.html:795 +msgid "Files" +msgstr "文件" + +#: emailMarketing/templates/emailMarketing/website.html:863 +#: emailMarketing/templates/emailMarketing/website.html:866 +#: emailMarketing/templates/emailMarketing/website.html:867 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#: websiteFunctions/templates/websiteFunctions/website.html:803 +#: websiteFunctions/templates/websiteFunctions/website.html:804 +msgid "File Manager" +msgstr "文件管理" + +#: emailMarketing/templates/emailMarketing/website.html:874 +#: emailMarketing/templates/emailMarketing/website.html:877 +#: emailMarketing/templates/emailMarketing/website.html:915 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:809 +#: websiteFunctions/templates/websiteFunctions/website.html:812 +#: websiteFunctions/templates/websiteFunctions/website.html:845 +msgid "open_basedir Protection" +msgstr "open_basedir 保护" + +#: emailMarketing/templates/emailMarketing/website.html:878 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 +#: websiteFunctions/templates/websiteFunctions/website.html:813 +msgid "open_basedir" +msgstr "防跨站" + +#: emailMarketing/templates/emailMarketing/website.html:890 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Create FTP Acct" +msgstr "创建FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:902 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:834 +msgid "Delete FTP Acct" +msgstr "删除FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:939 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +msgid "Apply Changes" +msgstr "应用更改" + +#: emailMarketing/templates/emailMarketing/website.html:951 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 +#: websiteFunctions/templates/websiteFunctions/website.html:880 +msgid "Changes successfully saved." +msgstr "更改成功保存。" + +#: emailMarketing/templates/emailMarketing/website.html:986 +#: emailMarketing/templates/emailMarketing/website.html:989 +#: emailMarketing/templates/emailMarketing/website.html:990 +#: websiteFunctions/templates/websiteFunctions/website.html:915 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#: websiteFunctions/templates/websiteFunctions/website.html:920 +msgid "Create Lists" +msgstr "创建列表" + +#: emailMarketing/templates/emailMarketing/website.html:997 +#: emailMarketing/templates/emailMarketing/website.html:1000 +#: emailMarketing/templates/emailMarketing/website.html:1001 +#: websiteFunctions/templates/websiteFunctions/website.html:925 +#: websiteFunctions/templates/websiteFunctions/website.html:929 +#: websiteFunctions/templates/websiteFunctions/website.html:930 +msgid "Manage Lists" +msgstr "管理列表" + +#: emailMarketing/templates/emailMarketing/website.html:1008 +#: emailMarketing/templates/emailMarketing/website.html:1011 +#: emailMarketing/templates/emailMarketing/website.html:1012 +#: websiteFunctions/templates/websiteFunctions/website.html:935 +#: websiteFunctions/templates/websiteFunctions/website.html:939 +#: websiteFunctions/templates/websiteFunctions/website.html:940 +msgid "SMTP Hosts" +msgstr "SMTP主机" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: emailMarketing/templates/emailMarketing/website.html:1022 +#: websiteFunctions/templates/websiteFunctions/website.html:945 +#: websiteFunctions/templates/websiteFunctions/website.html:950 +msgid "Compose Message" +msgstr "撰写信息" + +#: emailMarketing/templates/emailMarketing/website.html:1023 +#: websiteFunctions/templates/websiteFunctions/website.html:951 +msgid "Compose" +msgstr "撰写" + +#: emailMarketing/templates/emailMarketing/website.html:1050 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +msgid "Application Installer" +msgstr "应用安装器" + +#: emailMarketing/templates/emailMarketing/website.html:1061 +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 +#: websiteFunctions/templates/websiteFunctions/website.html:985 +#: websiteFunctions/templates/websiteFunctions/website.html:989 +msgid "Install wordpress with LSCache" +msgstr "安装Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1066 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +msgid "Wordpress with LSCache" +msgstr "Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1075 +#: emailMarketing/templates/emailMarketing/website.html:1079 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 +#: websiteFunctions/templates/websiteFunctions/website.html:996 +#: websiteFunctions/templates/websiteFunctions/website.html:1000 +msgid "Install Joomla with LSCache" +msgstr "安装 Joomla 伴随LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1080 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 +#: websiteFunctions/templates/websiteFunctions/website.html:1001 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1089 +#: emailMarketing/templates/emailMarketing/website.html:1093 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 +#: websiteFunctions/templates/websiteFunctions/website.html:1007 +#: websiteFunctions/templates/websiteFunctions/website.html:1011 +msgid "Attach Git with this website!" +msgstr "为此网站填加Git!" + +#: emailMarketing/templates/emailMarketing/website.html:1094 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 +#: websiteFunctions/templates/websiteFunctions/website.html:1012 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1103 +#: emailMarketing/templates/emailMarketing/website.html:1107 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 +#: websiteFunctions/templates/websiteFunctions/website.html:1018 +#: websiteFunctions/templates/websiteFunctions/website.html:1022 +msgid "Install Prestashop" +msgstr "安装Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1108 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 +#: websiteFunctions/templates/websiteFunctions/website.html:1023 +msgid "Prestashop" +msgstr "Prestashop" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:3 +#: firewall/templates/firewall/spamassassin.html:3 +msgid "SpamAssassin - CyberPanel" +msgstr "套餐 - CyberPanel" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:13 +#: firewall/templates/firewall/spamassassin.html:13 +msgid "SpamAssassin Configurations!" +msgstr "SpamAssassin 设置!" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:17 +msgid "SpamAssassin Docs" +msgstr "SpamAssassin文档" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:19 +#: firewall/templates/firewall/spamassassin.html:14 +msgid "On this page you can configure SpamAssassin settings." +msgstr "在此页上,您可以配置 SpamAssassin 设置。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:34 +msgid "SpamAssassin is not installed " +msgstr "未安装SpamAssassin " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:37 +#: firewall/templates/firewall/csf.html:31 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:231 +#: firewall/templates/firewall/modSecurityRules.html:73 +#: firewall/templates/firewall/modSecurityRulesPacks.html:31 +#: firewall/templates/firewall/spamassassin.html:31 +msgid "Install Now." +msgstr "现在安装。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:49 +#: firewall/templates/firewall/csf.html:43 +#: firewall/templates/firewall/modSecurity.html:47 +#: firewall/templates/firewall/modSecurity.html:244 +#: firewall/templates/firewall/spamassassin.html:43 +msgid "Failed to start installation, Error message: " +msgstr "无法启动安装,错误消息: " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:54 +#: emailPremium/templates/emailPremium/SpamAssassin.html:146 +#: emailPremium/templates/emailPremium/policyServer.html:60 +#: firewall/templates/firewall/csf.html:47 +#: firewall/templates/firewall/modSecurity.html:53 +#: firewall/templates/firewall/modSecurity.html:183 +#: firewall/templates/firewall/modSecurity.html:249 +#: firewall/templates/firewall/modSecurity.html:371 +#: firewall/templates/firewall/modSecurityRules.html:53 +#: firewall/templates/firewall/modSecurityRulesPacks.html:88 +#: firewall/templates/firewall/secureSSH.html:87 +#: firewall/templates/firewall/secureSSH.html:172 +#: firewall/templates/firewall/spamassassin.html:47 +#: firewall/templates/firewall/spamassassin.html:177 +#: mailServer/templates/mailServer/dkimManager.html:44 +#: managePHP/templates/managePHP/editPHPConfig.html:157 +#: managePHP/templates/managePHP/editPHPConfig.html:223 +#: managePHP/templates/managePHP/installExtensions.html:124 +#: manageServices/templates/manageServices/managePostfix.html:59 +#: manageServices/templates/manageServices/managePowerDNS.html:130 +#: manageServices/templates/manageServices/managePureFtpd.html:59 +msgid "Could not connect. Please refresh this page." +msgstr "无法连接。请刷新此页面。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:58 +#: firewall/templates/firewall/csf.html:51 +#: firewall/templates/firewall/modSecurity.html:57 +#: firewall/templates/firewall/modSecurity.html:253 +#: firewall/templates/firewall/spamassassin.html:51 +msgid "Installation failed." +msgstr "安装失败。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:62 +msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." +msgstr "SpamAssassin成功安装,在3秒内刷新页面。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:74 +msgid "Winter is coming, but so is SpamAssassin." +msgstr "网络暗潮涌动,但我们有SpamAssassin保护您。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:126 +#: firewall/templates/firewall/modSecurity.html:163 +#: firewall/templates/firewall/modSecurity.html:351 +#: firewall/templates/firewall/spamassassin.html:157 +msgid "Save changes." +msgstr "保存更改。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:137 +msgid "Failed to save SpamAssassin configurations. Error message: " +msgstr "无法保存 SpamAssassin 配置。错误消息: " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:142 +msgid "SpamAssassin configurations successfully saved." +msgstr "SpamAssassin的配置成功保存。" + +#: emailPremium/templates/emailPremium/emailLimits.html:13 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Limits Docs" +msgstr "邮箱限制文档" + +#: emailPremium/templates/emailPremium/emailLimits.html:14 +msgid "View and change email limits for a domain name." +msgstr "查看和改变域名的电子邮件限制。" + +#: emailPremium/templates/emailPremium/emailLimits.html:25 +msgid "Domain Resource Usage" +msgstr "领域资源使用情况" + +#: emailPremium/templates/emailPremium/emailLimits.html:52 +#: emailPremium/templates/emailPremium/emailLimits.html:158 +#: emailPremium/templates/emailPremium/emailPage.html:54 +#: emailPremium/templates/emailPremium/listDomains.html:61 +msgid "Limits are being Applied!" +msgstr "限制已被应用!" + +#: emailPremium/templates/emailPremium/emailLimits.html:54 +#: emailPremium/templates/emailPremium/emailLimits.html:160 +#: emailPremium/templates/emailPremium/emailPage.html:56 +#: emailPremium/templates/emailPremium/listDomains.html:63 +msgid "Limits are not being applied!" +msgstr "限制未被应用!" + +#: emailPremium/templates/emailPremium/emailLimits.html:58 +#: emailPremium/templates/emailPremium/emailPage.html:66 +#: filemanager/templates/filemanager/index.html:79 +#: filemanager/templates/filemanager/index.html:699 +#: packages/templates/packages/listPackages.html:60 +#: userManagment/templates/userManagment/listUsers.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:66 +msgid "Edit" +msgstr "编辑" + +#: emailPremium/templates/emailPremium/emailLimits.html:70 +#: emailPremium/templates/emailPremium/emailPage.html:78 +msgid "Monthly Limit" +msgstr "每月限制" + +#: emailPremium/templates/emailPremium/emailLimits.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:101 +msgid "Change Limits" +msgstr "更改限制" + +#: emailPremium/templates/emailPremium/emailLimits.html:93 +#: emailPremium/templates/emailPremium/emailPage.html:111 +msgid "Can not change limits. Error message:" +msgstr "无法改变限制。错误信息:" + +#: emailPremium/templates/emailPremium/emailLimits.html:97 +msgid "Limits successfully changed, refreshing in 3 seconds." +msgstr "限制成功更改,将在 3 秒内刷新。" + +#: emailPremium/templates/emailPremium/emailLimits.html:126 +#: emailPremium/templates/emailPremium/emailPage.html:25 +msgid "Email Resource Usage" +msgstr "邮箱资源使用量" + +#: emailPremium/templates/emailPremium/emailLimits.html:133 +msgid "Search Emails.." +msgstr "搜索邮箱..." + +#: emailPremium/templates/emailPremium/emailLimits.html:164 +#: emailPremium/templates/emailPremium/listDomains.html:67 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 +msgid "Manage" +msgstr "管理" + +#: emailPremium/templates/emailPremium/emailPage.html:13 +msgid "Emai Limits Docs" +msgstr "邮件限制文档" + +#: emailPremium/templates/emailPremium/emailPage.html:14 +msgid "View and change limits for an Email Address." +msgstr "查看和更改邮箱地址的限制。" + +#: emailPremium/templates/emailPremium/emailPage.html:60 +msgid "Logging in ON!" +msgstr "已开启注册!" + +#: emailPremium/templates/emailPremium/emailPage.html:62 +msgid "Logging is Off" +msgstr "已关闭注册" + +#: emailPremium/templates/emailPremium/emailPage.html:88 +msgid "Hourly Limit" +msgstr "每小时限额" + +#: emailPremium/templates/emailPremium/emailPage.html:115 +msgid "Limits successfully changed." +msgstr "限制成功改变。" + +#: emailPremium/templates/emailPremium/emailPage.html:151 +msgid "Search Emails Logs.." +msgstr "搜索邮箱日志..." + +#: emailPremium/templates/emailPremium/emailPage.html:155 +msgid "Flush Logs" +msgstr "刷新日志" + +#: emailPremium/templates/emailPremium/listDomains.html:3 +msgid "Domains - CyberPanel" +msgstr "域名 - Cyberpanel" + +#: emailPremium/templates/emailPremium/listDomains.html:15 +msgid "On this page you manage emails limits for Domains/Email Addresses" +msgstr "在此页面上,您可以管理域/邮箱地址的邮箱的限制" + +#: emailPremium/templates/emailPremium/policyServer.html:3 +msgid "Email Policy Server - CyberPanel" +msgstr "邮箱策略服务器 - CyberPanel" + +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Policy Server Configurations!" +msgstr "电子邮件策略服务器配置!" + +#: emailPremium/templates/emailPremium/policyServer.html:14 +msgid "Turn ON Email Policy Server to use Email Limits Feature. " +msgstr "打开邮箱策略服务器以使用邮箱限制功能。 " + +#: emailPremium/templates/emailPremium/policyServer.html:40 +#: manageServices/templates/manageServices/managePostfix.html:41 +#: manageServices/templates/manageServices/managePowerDNS.html:112 +#: manageServices/templates/manageServices/managePureFtpd.html:41 +msgid "Save changes" +msgstr "保存更改" + +#: emailPremium/templates/emailPremium/policyServer.html:52 +#: firewall/templates/firewall/secureSSH.html:78 +#: mailServer/templates/mailServer/dkimManager.html:40 +#: managePHP/templates/managePHP/editPHPConfig.html:148 +#: manageServices/templates/manageServices/managePostfix.html:51 +#: manageServices/templates/manageServices/managePowerDNS.html:122 +#: manageServices/templates/manageServices/managePureFtpd.html:51 +msgid "Error message: " +msgstr "错误信息: " + +#: emailPremium/templates/emailPremium/policyServer.html:56 +#: manageServices/templates/manageServices/managePostfix.html:55 +#: manageServices/templates/manageServices/managePowerDNS.html:126 +#: manageServices/templates/manageServices/managePureFtpd.html:55 +msgid "Changes successfully applied." +msgstr "已成功应用更改。" + +#: filemanager/templates/filemanager/index.html:5 +msgid "File Manager - CyberPanel" +msgstr "文件管理器 - CyberPanel" + +#: filemanager/templates/filemanager/index.html:54 +msgid " File Manager" +msgstr " 文件管理器" + +#: filemanager/templates/filemanager/index.html:58 +#: filemanager/templates/filemanager/index.html:197 +#: filemanager/templates/filemanager/index.html:227 +msgid "Upload" +msgstr "上传" + +#: filemanager/templates/filemanager/index.html:61 +msgid "New File" +msgstr "新文件" + +#: filemanager/templates/filemanager/index.html:64 +msgid "New Folder" +msgstr "新文件夹" + +#: filemanager/templates/filemanager/index.html:70 +#: filemanager/templates/filemanager/index.html:557 +#: filemanager/templates/filemanager/index.html:693 +msgid "Copy" +msgstr "复制" + +#: filemanager/templates/filemanager/index.html:73 +#: filemanager/templates/filemanager/index.html:522 +#: filemanager/templates/filemanager/index.html:691 +msgid "Move" +msgstr "移动" + +#: filemanager/templates/filemanager/index.html:76 +#: filemanager/templates/filemanager/index.html:587 +#: filemanager/templates/filemanager/index.html:694 +msgid "Rename" +msgstr "重命名" + +#: filemanager/templates/filemanager/index.html:82 +#: filemanager/templates/filemanager/index.html:432 +#: filemanager/templates/filemanager/index.html:459 +#: filemanager/templates/filemanager/index.html:697 +msgid "Compress" +msgstr "压缩" + +#: filemanager/templates/filemanager/index.html:85 +#: filemanager/templates/filemanager/index.html:487 +#: filemanager/templates/filemanager/index.html:698 +msgid "Extract" +msgstr "解压" + +#: filemanager/templates/filemanager/index.html:88 +msgid "Fix Permissions" +msgstr "修复权限" + +#: filemanager/templates/filemanager/index.html:113 +msgid "Current Path" +msgstr "当前路径" + +#: filemanager/templates/filemanager/index.html:138 +msgid "Back" +msgstr "返回" + +#: filemanager/templates/filemanager/index.html:142 +#: serverLogs/templates/serverLogs/accessLogs.html:38 +#: serverLogs/templates/serverLogs/emailLogs.html:39 +#: serverLogs/templates/serverLogs/errorLogs.html:35 +#: serverLogs/templates/serverLogs/ftplogs.html:35 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 +#: websiteFunctions/templates/websiteFunctions/listCron.html:36 +msgid "Refresh" +msgstr "刷新" + +#: filemanager/templates/filemanager/index.html:146 +msgid "Select All" +msgstr "全选" + +#: filemanager/templates/filemanager/index.html:150 +msgid "UnSelect All" +msgstr "取消全选" + +#: filemanager/templates/filemanager/index.html:159 +msgid "Size (KB)" +msgstr "大小(KB)" + +#: filemanager/templates/filemanager/index.html:160 +msgid "Last Modified" +msgstr "最后修改时间" + +#: filemanager/templates/filemanager/index.html:161 +msgid "Permissions" +msgstr "权限" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload File" +msgstr "上传文件" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload Limits" +msgstr "上传限制" + +#: filemanager/templates/filemanager/index.html:187 +msgid "Upload queue" +msgstr "上传队列" + +#: filemanager/templates/filemanager/index.html:188 +msgid "Queue length:" +msgstr "队列进度:" + +#: filemanager/templates/filemanager/index.html:192 +msgid "Drop" +msgstr "下降" + +#: filemanager/templates/filemanager/index.html:193 +msgid "Drop Files here to upload them." +msgstr "拖拽文件到此来上传。" + +#: filemanager/templates/filemanager/index.html:205 +msgid "Progress" +msgstr "进度" + +#: filemanager/templates/filemanager/index.html:233 +msgid "Remove" +msgstr "移除" + +#: filemanager/templates/filemanager/index.html:243 +msgid "Queue progress:" +msgstr "队列进度:" + +#: filemanager/templates/filemanager/index.html:252 +msgid "can not be uploaded, Error message:" +msgstr "无法上传,错误消息:" + +#: filemanager/templates/filemanager/index.html:256 +msgid "Upload all" +msgstr "全部上传" + +#: filemanager/templates/filemanager/index.html:259 +msgid "Cancel all" +msgstr "取消所有" + +#: filemanager/templates/filemanager/index.html:262 +msgid "Remove all" +msgstr "移除所有" + +#: filemanager/templates/filemanager/index.html:298 +msgid "File Successfully saved." +msgstr "文件成功保存。" + +#: filemanager/templates/filemanager/index.html:305 +#: firewall/templates/firewall/secureSSH.html:68 +#: managePHP/templates/managePHP/editPHPConfig.html:138 +#: managePHP/templates/managePHP/editPHPConfig.html:205 +#: userManagment/templates/userManagment/apiAccess.html:53 +#: userManagment/templates/userManagment/modifyACL.html:436 +#: userManagment/templates/userManagment/resellerCenter.html:58 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 +msgid "Save Changes" +msgstr "保存修改" + +#: filemanager/templates/filemanager/index.html:322 +msgid "Create new folder!" +msgstr "创建新的文件夹!" + +#: filemanager/templates/filemanager/index.html:330 +msgid "New Folder Name" +msgstr "新文件夹名称" + +#: filemanager/templates/filemanager/index.html:332 +msgid "Folder will be created in your current directory" +msgstr "文件夹将在当前目录中创建" + +#: filemanager/templates/filemanager/index.html:334 +msgid "Create Folder" +msgstr "创建文件夹" + +#: filemanager/templates/filemanager/index.html:347 +msgid "Folder Successfully created." +msgstr "文件夹创建成功。" + +#: filemanager/templates/filemanager/index.html:366 +msgid "Create new file!" +msgstr "创建新文件!" + +#: filemanager/templates/filemanager/index.html:374 +msgid "New File Name" +msgstr "新文件名" + +#: filemanager/templates/filemanager/index.html:376 +msgid "" +"File will be created in your current directory, if it already exists it will " +"not overwirte." +msgstr "文件将在当前目录中创建,如果它已存在将不会被覆盖。" + +#: filemanager/templates/filemanager/index.html:378 +msgid "Create File" +msgstr "创建文件" + +#: filemanager/templates/filemanager/index.html:391 +msgid "File Successfully created." +msgstr "文件已成功创建。" + +#: filemanager/templates/filemanager/index.html:407 +msgid "Confirm Deletion!" +msgstr "确认删除!" + +#: filemanager/templates/filemanager/index.html:440 +msgid "List of files/folder!" +msgstr "文件/文件夹列表!" + +#: filemanager/templates/filemanager/index.html:444 +msgid "Compressed File Name" +msgstr "压缩包文件名" + +#: filemanager/templates/filemanager/index.html:446 +msgid "Enter without extension name!" +msgstr "请不要输入扩展名!" + +#: filemanager/templates/filemanager/index.html:450 +msgid "Compression Type" +msgstr "压缩类型" + +#: filemanager/templates/filemanager/index.html:475 +msgid "Extracting" +msgstr "解压中" + +#: filemanager/templates/filemanager/index.html:483 +msgid "Extract in" +msgstr "提取至" + +#: filemanager/templates/filemanager/index.html:485 +msgid "You can enter . to extract in current directory!" +msgstr "您可以输入 . 解压至当前目录!" + +#: filemanager/templates/filemanager/index.html:503 +msgid "Move Files" +msgstr "移动文件" + +#: filemanager/templates/filemanager/index.html:511 +#: filemanager/templates/filemanager/index.html:546 +msgid "List of files/folders!" +msgstr "文件(夹)列表!" + +#: filemanager/templates/filemanager/index.html:515 +msgid "Move to" +msgstr "移动到" + +#: filemanager/templates/filemanager/index.html:517 +msgid "Enter a path to move your files!" +msgstr "输入新文件夹的路径!" + +#: filemanager/templates/filemanager/index.html:538 +msgid "Copy Files" +msgstr "复制文件" + +#: filemanager/templates/filemanager/index.html:550 +msgid "Copy to" +msgstr "复制到" + +#: filemanager/templates/filemanager/index.html:552 +msgid "Enter a path to copy your files to!" +msgstr "输入目的路径以复制文件!" + +#: filemanager/templates/filemanager/index.html:572 +msgid "Renaming" +msgstr "重命名" + +#: filemanager/templates/filemanager/index.html:580 +msgid "New Name" +msgstr "新建名称" + +#: filemanager/templates/filemanager/index.html:582 +msgid "Enter new name of file!" +msgstr "输入新的文件名!" + +#: filemanager/templates/filemanager/index.html:602 +msgid "Changing permissions for" +msgstr "修改权限对于" + +#: filemanager/templates/filemanager/index.html:611 +msgid "Mode" +msgstr "模式" + +#: filemanager/templates/filemanager/index.html:612 +#: serverStatus/templates/serverStatus/topProcesses.html:193 +msgid "User" +msgstr "用户" + +#: filemanager/templates/filemanager/index.html:613 +msgid "Group" +msgstr "组" + +#: filemanager/templates/filemanager/index.html:614 +msgid "World" +msgstr "世界" + +#: filemanager/templates/filemanager/index.html:619 +msgid "Read" +msgstr "已读" + +#: filemanager/templates/filemanager/index.html:625 +msgid "Write" +msgstr "写入" + +#: filemanager/templates/filemanager/index.html:631 +msgid "Execute" +msgstr "执行" + +#: filemanager/templates/filemanager/index.html:647 +#: filemanager/templates/filemanager/index.html:695 +msgid "Change Permissions" +msgstr "改变权限" + +#: filemanager/templates/filemanager/index.html:648 +msgid "Change Recursively" +msgstr "向下递归改变" + +#: filemanager/templates/filemanager/index.html:692 +msgid "Download" +msgstr "下载" + +#: firewall/templates/firewall/csf.html:3 +msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" +msgstr "CSF(配置服务器安全和防火墙)- CyberPanel" + +#: firewall/templates/firewall/csf.html:13 +msgid "CSF (ConfigServer Security and Firewall)!" +msgstr "CSF(ConfigServer 安全与防火墙)!" + +#: firewall/templates/firewall/csf.html:14 +msgid "" +"On this page you can configure CSF (ConfigServer Security and Firewall) " +"settings." +msgstr "在此页面,您可以配置CSF(ConfigServer 安全与防火墙)设置。" + +#: firewall/templates/firewall/csf.html:28 +msgid "CSF is not installed " +msgstr "CSF未被安装 " + +#: firewall/templates/firewall/csf.html:55 +msgid "CSF successfully installed, refreshing page in 3 seconds.." +msgstr "CSF 已成功安装, 将在 3 秒内刷新页面。" + +#: firewall/templates/firewall/csf.html:66 +msgid "In winter we must protect each other.." +msgstr "我们必须在黑暗中守望相助。" + +#: firewall/templates/firewall/csf.html:90 +msgid "General" +msgstr "常规" + +#: firewall/templates/firewall/csf.html:100 +msgid "LFD" +msgstr "登录失败守护程序" + +#: firewall/templates/firewall/csf.html:109 +msgid "Remove CSF" +msgstr "移除 CSF" + +#: firewall/templates/firewall/csf.html:112 +msgid "Completely Remove CSF" +msgstr "彻底清除CSF" + +#: firewall/templates/firewall/csf.html:126 +msgid "Testing Mode" +msgstr "测试模式" + +#: firewall/templates/firewall/csf.html:133 +msgid "TCP IN Ports" +msgstr "TCP传入端口" + +#: firewall/templates/firewall/csf.html:143 +msgid "TCP Out Ports" +msgstr "TCP传出端口" + +#: firewall/templates/firewall/csf.html:153 +msgid "UDP In Ports" +msgstr "UDP传入端口" + +#: firewall/templates/firewall/csf.html:163 +msgid "UDP Out Ports" +msgstr "UDP传出端口" + +#: firewall/templates/firewall/csf.html:181 +msgid "Allow IP" +msgstr "允许 IP" + +#: firewall/templates/firewall/csf.html:191 +msgid "Block IP Address" +msgstr "阻止 IP 地址" + +#: firewall/templates/firewall/csf.html:203 +msgid "Coming Soon." +msgstr "即将来临" + +#: firewall/templates/firewall/firewall.html:3 +msgid "Firewall - CyberPanel" +msgstr "防火墙 - CyberPanel" + +#: firewall/templates/firewall/firewall.html:13 +msgid "Add/Delete Firewall Rules" +msgstr "添加/删除防火墙规则" + +#: firewall/templates/firewall/firewall.html:14 +msgid "" +"On this page you can add/delete firewall rules. (By default all ports are " +"blocked, except mentioned below)" +msgstr "此页面可以添加/删除防火墙规则(除以下端口外, 所有端口默认关闭)" + +#: firewall/templates/firewall/firewall.html:19 +msgid "Add/Delete Rules" +msgstr "添加/删除规则" + +#: firewall/templates/firewall/firewall.html:56 +msgid "Action failed. Error message:" +msgstr "操作失败, 错误信息:" + +#: firewall/templates/firewall/firewall.html:61 +#: serverStatus/templates/serverStatus/litespeedStatus.html:82 +#: serverStatus/templates/serverStatus/litespeedStatus.html:305 +msgid "Action successful." +msgstr "操作成功。" + +#: firewall/templates/firewall/firewall.html:121 +msgid "Protocol" +msgstr "协议" + +#: firewall/templates/firewall/firewall.html:157 +msgid "Rule successfully added." +msgstr "成功添加规则。" + +#: firewall/templates/firewall/index.html:3 +msgid "Security - CyberPanel" +msgstr "安全 - CyberPanel" + +#: firewall/templates/firewall/index.html:12 +msgid "Security Functions" +msgstr "安全" + +#: firewall/templates/firewall/index.html:13 +msgid "Manage the security of the server on this page." +msgstr "在此页面管理服务器安全相关内容。" + +#: firewall/templates/firewall/modSecurity.html:3 +msgid "ModSecurity - CyberPanel" +msgstr "ModSecurity - CyberPanel" + +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:208 +msgid "ModSecurity Configurations!" +msgstr "ModSecurity 设置!" + +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:212 +#: firewall/templates/firewall/modSecurityRules.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +msgid "ModSec Docs" +msgstr "ModSecurity 文档" + +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:214 +msgid "On this page you can configure ModSecurity settings." +msgstr "在这一页,你可以配置ModSecurity的设置。" + +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:220 +msgid "ModSecurity" +msgstr "ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:32 +#: firewall/templates/firewall/modSecurity.html:229 +#: firewall/templates/firewall/modSecurityRules.html:70 +#: firewall/templates/firewall/modSecurityRulesPacks.html:28 +#: firewall/templates/firewall/spamassassin.html:29 +msgid "ModSecurity is not installed " +msgstr "ModSecurity未被安装 " + +#: firewall/templates/firewall/modSecurity.html:61 +#: firewall/templates/firewall/modSecurity.html:257 +#: firewall/templates/firewall/spamassassin.html:55 +msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." +msgstr "ModSecurity安装成功,将在3秒内刷新页面..." + +#: firewall/templates/firewall/modSecurity.html:73 +#: firewall/templates/firewall/modSecurity.html:269 +#: firewall/templates/firewall/spamassassin.html:66 +msgid "Winter is coming, but so is ModSecurity." +msgstr "网络时代风起云涌,但我们有ModSecurity保护您。" + +#: firewall/templates/firewall/modSecurity.html:174 +#: firewall/templates/firewall/modSecurity.html:362 +#: firewall/templates/firewall/spamassassin.html:169 +msgid "Failed to save ModSecurity configurations. Error message: " +msgstr "无法保存 ModSecurity 配置。错误消息: " + +#: firewall/templates/firewall/modSecurity.html:179 +#: firewall/templates/firewall/modSecurity.html:367 +#: firewall/templates/firewall/spamassassin.html:173 +msgid "ModSecurity configurations successfully saved." +msgstr "ModSecurity的配置成功保存。" + +#: firewall/templates/firewall/modSecurityRules.html:3 +msgid "ModSecurity Rules - CyberPanel" +msgstr "ModSecurity 规则 - CyberPanel" + +#: firewall/templates/firewall/modSecurityRules.html:13 +msgid "ModSecurity Rules!" +msgstr "ModSecurity 规则!" + +#: firewall/templates/firewall/modSecurityRules.html:14 +msgid "On this page you can add/delete ModSecurity rules." +msgstr "在这个页面,你可以添加/删除ModSecurity规则。" + +#: firewall/templates/firewall/modSecurityRules.html:42 +msgid "Save Rules!" +msgstr "保存规则!" + +#: firewall/templates/firewall/modSecurityRules.html:49 +msgid "ModSecurity Rules Saved" +msgstr "已保存 ModSecurity 规则" + +#: firewall/templates/firewall/modSecurityRules.html:58 +msgid "Could not save rules, Error message: " +msgstr "无法保存规则,错误消息: " + +#: firewall/templates/firewall/modSecurityRulesPacks.html:3 +msgid "ModSecurity Rules Packs - CyberPanel" +msgstr "ModSecurity 规则包 - 网络面板" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:20 +msgid "ModSecurity Rules Packages!" +msgstr "ModSecurity 规则包!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:14 +msgid "Install/Un-install ModSecurity rules packages." +msgstr "安装/卸载 ModSecurity 规则包。" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:60 +#: firewall/templates/firewall/modSecurityRulesPacks.html:71 +msgid "Configure" +msgstr "配置" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:84 +#: firewall/templates/firewall/modSecurityRulesPacks.html:96 +msgid "Operation successful." +msgstr "操作成功。" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:92 +msgid "Operation failed, Error message: " +msgstr "操作失败,错误消息: " + +#: firewall/templates/firewall/modSecurityRulesPacks.html:110 +msgid "Supplier" +msgstr "供应商" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:111 +msgid "Filename" +msgstr "文件名" + +#: firewall/templates/firewall/secureSSH.html:3 +msgid "Secure SSH - CyberPanel" +msgstr "SSH加固 - CyberPanel" + +#: firewall/templates/firewall/secureSSH.html:13 +msgid "SSH Docs" +msgstr "SSH 文档" + +#: firewall/templates/firewall/secureSSH.html:14 +msgid "Secure or harden SSH Configurations." +msgstr "SSH设置已保存。" + +#: firewall/templates/firewall/secureSSH.html:28 +#: managePHP/templates/managePHP/editPHPConfig.html:29 +msgid "Basic" +msgstr "基础" + +#: firewall/templates/firewall/secureSSH.html:34 +msgid "SSH Keys" +msgstr "SSH密钥" + +#: firewall/templates/firewall/secureSSH.html:47 +msgid "SSH Port" +msgstr "SSH端口" + +#: firewall/templates/firewall/secureSSH.html:56 +msgid "Permit Root Login" +msgstr "允许ROOT登陆" + +#: firewall/templates/firewall/secureSSH.html:60 +msgid "" +"Before disabling root login, make sure you have another account with sudo " +"priviliges on server." +msgstr "禁用ROOT登陆前,请确保您在服务器上拥有另一个sudo权限的用户。" + +#: firewall/templates/firewall/secureSSH.html:82 +msgid "SSH Configurations Saved." +msgstr "SSH设置已保存。" + +#: firewall/templates/firewall/secureSSH.html:121 +msgid "Key" +msgstr "密钥" + +#: firewall/templates/firewall/secureSSH.html:150 +msgid "Add Key" +msgstr "添加密钥" + +#: firewall/templates/firewall/secureSSH.html:167 +msgid "SSH Key Deleted" +msgstr "SSH密钥已删除" + +#: ftp/templates/ftp/createFTPAccount.html:3 +msgid "Create FTP Account - CyberPanel" +msgstr "创建FTP用户 - CyberPanel" + +#: ftp/templates/ftp/createFTPAccount.html:13 +msgid "" +"Select the website from list, and its home directory will be set as the path " +"to ftp account." +msgstr "在列表中选择一个网站, 它的根目录将会设为FTP的根目录。" + +#: ftp/templates/ftp/createFTPAccount.html:26 +#: ftp/templates/ftp/deleteFTPAccount.html:25 +#: ftp/templates/ftp/listFTPAccounts.html:26 +msgid "PureFTPD is disabled." +msgstr "PureFTPD已被禁用。" + +#: ftp/templates/ftp/createFTPAccount.html:67 +msgid "FTP Password" +msgstr "FTP密码" + +#: ftp/templates/ftp/createFTPAccount.html:90 +msgid "Path (Relative)" +msgstr "相对路径" + +#: ftp/templates/ftp/createFTPAccount.html:92 +msgid "Leave empty to select default home directory." +msgstr "留空则设置为默认根目录。" + +#: ftp/templates/ftp/createFTPAccount.html:105 +msgid "Create FTP" +msgstr "创建FTP用户" + +#: ftp/templates/ftp/createFTPAccount.html:113 +msgid "Cannot create FTP account. Error message:" +msgstr "无法创建FTP用户, 错误信息:" + +#: ftp/templates/ftp/createFTPAccount.html:118 +#: ftp/templates/ftp/createFTPAccount.html:122 +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid "FTP Account with username:" +msgstr "FTP账户用户名:" + +#: ftp/templates/ftp/createFTPAccount.html:119 +#: ftp/templates/ftp/createFTPAccount.html:123 +#: userManagment/templates/userManagment/createUser.html:129 +msgid "is successfully created." +msgstr "已成功创建。" + +#: ftp/templates/ftp/deleteFTPAccount.html:3 +msgid "Delete FTP Account - CyberPanel" +msgstr "删除FTP用户 - CyberPanel" + +#: ftp/templates/ftp/deleteFTPAccount.html:13 +msgid "Select domain and delete its related FTP accounts." +msgstr "选择域名并删除与之相关的FTP账户。" + +#: ftp/templates/ftp/deleteFTPAccount.html:52 +msgid "Select FTP Account" +msgstr "选择FTP用户" + +#: ftp/templates/ftp/deleteFTPAccount.html:83 +msgid "Cannot delete account. Error message:" +msgstr "无法删除账户, 错误信息:" + +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid " is successfully deleted." +msgstr " 已成功删除。" + +#: ftp/templates/ftp/deleteFTPAccount.html:91 +#: userManagment/templates/userManagment/deleteUser.html:70 +msgid "Could not connect to the server. Please refresh this page." +msgstr "无法连接到服务器,请刷新此页面。" + +#: ftp/templates/ftp/index.html:3 +msgid "FTP Functions - CyberPanel" +msgstr "FTP功能 - CyberPanel" + +#: ftp/templates/ftp/index.html:13 +msgid "Delete and create FTP accounts on this page." +msgstr "在此页面添加, 编辑和删除FTP账户。" + +#: ftp/templates/ftp/listFTPAccounts.html:3 +msgid "List FTP Accounts - CyberPanel" +msgstr "查看FTP用户 - CyberPanel" + +#: ftp/templates/ftp/listFTPAccounts.html:14 +msgid "List FTP Accounts or change their passwords." +msgstr "列出FTP账户或修改密码。" + +#: ftp/templates/ftp/listFTPAccounts.html:66 +msgid "Password changed for" +msgstr "已为修改密码" + +#: ftp/templates/ftp/listFTPAccounts.html:70 +msgid "" +"Cannot change password for {$ ftpUsername $}. Error message:" +msgstr "无法修改 {$ ftpUsername $} 的密码, 错误信息:" + +#: ftp/templates/ftp/listFTPAccounts.html:124 +msgid "Directory" +msgstr "目录" + +#: mailServer/templates/mailServer/changeEmailPassword.html:3 +msgid "Change Email Password - CyberPanel" +msgstr "修改邮箱密码 - CyberPanel" + +#: mailServer/templates/mailServer/changeEmailPassword.html:12 +#: mailServer/templates/mailServer/changeEmailPassword.html:19 +#: userManagment/templates/userManagment/createACL.html:299 +#: userManagment/templates/userManagment/modifyACL.html:303 +msgid "Change Email Password" +msgstr "修改邮箱密码" + +#: mailServer/templates/mailServer/changeEmailPassword.html:13 +msgid "Select a website from the list, to change its password." +msgstr "在列表中选择网站并修改密码。" + +#: mailServer/templates/mailServer/changeEmailPassword.html:27 +#: mailServer/templates/mailServer/createEmailAccount.html:27 +#: mailServer/templates/mailServer/deleteEmailAccount.html:27 +#: mailServer/templates/mailServer/emailForwarding.html:26 +#: mailServer/templates/mailServer/listEmails.html:27 +msgid "Postfix is disabled." +msgstr "Postfix已被禁用。" + +#: mailServer/templates/mailServer/changeEmailPassword.html:58 +#: mailServer/templates/mailServer/deleteEmailAccount.html:58 +#: mailServer/templates/mailServer/emailForwarding.html:52 +msgid "Select Email" +msgstr "选择邮箱" + +#: mailServer/templates/mailServer/changeEmailPassword.html:106 +#: mailServer/templates/mailServer/deleteEmailAccount.html:90 +msgid "Cannot delete email account. Error message:" +msgstr "无法删除邮箱账户。错误信息:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:111 +msgid "Password successfully changed for :" +msgstr "已成功为修改密码 :" + +#: mailServer/templates/mailServer/changeEmailPassword.html:118 +#: mailServer/templates/mailServer/deleteEmailAccount.html:102 +msgid "Currently no email accounts exist for this domain." +msgstr "目前此域名并没有邮箱账户。" + +#: mailServer/templates/mailServer/createEmailAccount.html:3 +msgid "Create Email Account - CyberPanel" +msgstr "创建邮箱用户 - CyberPanel" + +#: mailServer/templates/mailServer/createEmailAccount.html:13 +msgid "Select a website from the list, to create an email account." +msgstr "请从列表中选择一个网站来创建邮箱账户。" + +#: mailServer/templates/mailServer/createEmailAccount.html:106 +msgid "Cannot create email account. Error message:" +msgstr "无法创建邮箱账户,错误信息:" + +#: mailServer/templates/mailServer/createEmailAccount.html:111 +msgid "Email with id :" +msgstr "邮箱 ID:" + +#: mailServer/templates/mailServer/createEmailAccount.html:112 +msgid " is successfully created." +msgstr " 已成功创建。" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:3 +msgid "Delete Email Account - CyberPanel" +msgstr "删除邮箱用户 - CyberPanel" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:13 +msgid "Select a website from the list, to delete an email account." +msgstr "请从列表中选择一个网站,来删除邮箱账号。" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:95 +msgid "Email with id : {$ deletedID $} is successfully deleted." +msgstr "邮件ID: {$ deletedID $} 已成功删除。" + +#: mailServer/templates/mailServer/dkimManager.html:3 +msgid "DKIM Manager - CyberPanel" +msgstr "DKIM 管理器 - CyberPanel" + +#: mailServer/templates/mailServer/dkimManager.html:13 +msgid "DKIM Docs" +msgstr "DKIM文档" + +#: mailServer/templates/mailServer/dkimManager.html:14 +msgid "This page can be used to generate and view DKIM keys for Domains" +msgstr "本页可用于生成和查看域名的DKIM密钥" + +#: mailServer/templates/mailServer/dkimManager.html:27 +msgid "OpenDKIM is not installed. " +msgstr "OpenDKIM未安装。" + +#: mailServer/templates/mailServer/dkimManager.html:28 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 +msgid "Install Now" +msgstr "现在安装" + +#: mailServer/templates/mailServer/dkimManager.html:48 +msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." +msgstr "OpenDKIM成功安装,页面将在3秒内刷新..." + +#: mailServer/templates/mailServer/dkimManager.html:97 +msgid "Keys not available for this domain." +msgstr "此域没有密钥。" + +#: mailServer/templates/mailServer/dkimManager.html:98 +msgid "Generate Now" +msgstr "立即生成" + +#: mailServer/templates/mailServer/dkimManager.html:110 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 +msgid "Domain" +msgstr "域名" + +#: mailServer/templates/mailServer/dkimManager.html:111 +msgid "Private Key" +msgstr "私匙" + +#: mailServer/templates/mailServer/dkimManager.html:112 +msgid "Public Key" +msgstr "公匙" + +#: mailServer/templates/mailServer/emailForwarding.html:3 +msgid "Setup Email Forwarding - CyberPanel" +msgstr "设置邮箱转发 - CyberPanel" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +#: mailServer/templates/mailServer/emailForwarding.html:19 +msgid "Setup Email Forwarding" +msgstr "设置邮件转发" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +msgid "Forwarding Docs" +msgstr "转发文档" + +#: mailServer/templates/mailServer/emailForwarding.html:13 +msgid "This page help you setup email forwarding for your emails." +msgstr "此页面可帮助您设置邮箱转发。" + +#: mailServer/templates/mailServer/emailForwarding.html:61 +msgid "Forwarding Options" +msgstr "转发设置" + +#: mailServer/templates/mailServer/emailForwarding.html:97 +#: mailServer/templates/mailServer/emailForwarding.html:118 +msgid "Source" +msgstr "来源" + +#: mailServer/templates/mailServer/emailForwarding.html:101 +msgid "or path to the program" +msgstr "或程序的路径" + +#: mailServer/templates/mailServer/emailForwarding.html:106 +msgid "Forward Email" +msgstr "转发邮箱" + +#: mailServer/templates/mailServer/index.html:3 +msgid "Mail Functions - CyberPanel" +msgstr "邮件功能 - CyberPanel" + +#: mailServer/templates/mailServer/index.html:12 +msgid "Mail Functions" +msgstr "邮件功能" + +#: mailServer/templates/mailServer/index.html:13 +msgid "Manage email accounts on this page." +msgstr "在此页面管理邮箱账号。" + +#: mailServer/templates/mailServer/listEmails.html:3 +msgid "List Email Accounts - CyberPanel" +msgstr "列出邮箱帐户 - CyberPanel" + +#: mailServer/templates/mailServer/listEmails.html:13 +#: mailServer/templates/mailServer/listEmails.html:19 +msgid "List Email Accounts" +msgstr "列出邮箱账户" + +#: mailServer/templates/mailServer/listEmails.html:14 +msgid "List Emails Accounts. Change their passwords or delete them." +msgstr "列出邮箱帐户。更改他们的密码或删除他们。" + +#: managePHP/templates/managePHP/editPHPConfig.html:3 +msgid "Edit PHP Configurations - CyberPanel" +msgstr "设置PHP参数 - CyberPanel" + +#: managePHP/templates/managePHP/editPHPConfig.html:14 +#: managePHP/templates/managePHP/editPHPConfig.html:21 +msgid "Edit PHP Configurations" +msgstr "设置PHP参数" + +#: managePHP/templates/managePHP/editPHPConfig.html:15 +msgid "Edit PHP Configurations on this page." +msgstr "在此页面设置PHP参数。" + +#: managePHP/templates/managePHP/editPHPConfig.html:36 +msgid "Advanced" +msgstr "高级" + +#: managePHP/templates/managePHP/editPHPConfig.html:65 +msgid "display_errors" +msgstr "display_errors" + +#: managePHP/templates/managePHP/editPHPConfig.html:72 +msgid "file_uploads" +msgstr "file_uploads" + +#: managePHP/templates/managePHP/editPHPConfig.html:80 +msgid "allow_url_fopen" +msgstr "allow_url_fopen" + +#: managePHP/templates/managePHP/editPHPConfig.html:88 +msgid "allow_url_include" +msgstr "allow_url_include" + +#: managePHP/templates/managePHP/editPHPConfig.html:96 +msgid "memory_limit" +msgstr "memory_limit" + +#: managePHP/templates/managePHP/editPHPConfig.html:103 +msgid "max_execution_time" +msgstr "max_execution_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:111 +msgid "upload_max_filesize" +msgstr "upload_max_filesize" + +#: managePHP/templates/managePHP/editPHPConfig.html:119 +msgid "post_max_size" +msgstr "post_max_size" + +#: managePHP/templates/managePHP/editPHPConfig.html:126 +msgid "max_input_time" +msgstr "max_input_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:218 +msgid "PHP Configs Saved." +msgstr "PHP参数已保存。" + +#: managePHP/templates/managePHP/index.html:3 +msgid "Manage PHP Installations - CyberPanel" +msgstr "管理PHP - CyberPanel" + +#: managePHP/templates/managePHP/index.html:12 +msgid "Manage PHP Installations" +msgstr "管理PHP" + +#: managePHP/templates/managePHP/index.html:13 +msgid "Edit your PHP Configurations to suit your needs." +msgstr "调整PHP参数以满足您的需求。" + +#: managePHP/templates/managePHP/installExtensions.html:3 +msgid "Install PHP Extensions - CyberPanel" +msgstr "安装PHP扩展 - CyberPanel" + +#: managePHP/templates/managePHP/installExtensions.html:14 +msgid "Install/uninstall php extensions on this page." +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版本" + +#: managePHP/templates/managePHP/installExtensions.html:47 +msgid "Search Extensions.." +msgstr "搜索扩展..." + +#: managePHP/templates/managePHP/installExtensions.html:62 +msgid "Extension Name" +msgstr "扩展名称" + +#: managePHP/templates/managePHP/installExtensions.html:63 +#: pluginHolder/templates/pluginHolder/plugins.html:30 +msgid "Description" +msgstr "描述" + +#: managePHP/templates/managePHP/installExtensions.html:65 +#: managePHP/templates/managePHP/installExtensions.html:81 +msgid "Install" +msgstr "安装" + +#: managePHP/templates/managePHP/installExtensions.html:66 +#: managePHP/templates/managePHP/installExtensions.html:86 +msgid "Uninstall" +msgstr "卸载" + +#: managePHP/templates/managePHP/installExtensions.html:115 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:255 +#: userManagment/templates/userManagment/modifyUser.html:126 +msgid "Cannot fetch details. Error message:" +msgstr "无法获取详情,错误信息:" + +#: managePHP/templates/managePHP/installExtensions.html:119 +msgid "Cannot perform operation. Error message:" +msgstr "无法完成操作,错误信息:" + +#: manageSSL/templates/manageSSL/index.html:3 +msgid "SSL Functions - CyberPanel" +msgstr "SSL功能 - CyberPanel" + +#: manageSSL/templates/manageSSL/index.html:13 +msgid "SSL Functions" +msgstr "SSL功能" + +#: manageSSL/templates/manageSSL/index.html:14 +msgid "Issue Let’s Encrypt SSLs for websites and hostname." +msgstr "为网站以及主机申请签发Let's Encrypt的SSL证书。" + +#: manageSSL/templates/manageSSL/manageSSL.html:3 +msgid "Manage SSL - CyberPanel" +msgstr "管理SSL - CyberPanel" + +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +msgid "SSL Docs" +msgstr "SSL文档" + +#: manageSSL/templates/manageSSL/manageSSL.html:14 +msgid "" +"This page can be used to issue Let’s Encrypt SSL for existing websites on " +"server." +msgstr "在此页面可以为已在服务器上创建的网站申请签发Let's Encrypt的SSL证书。" + +#: manageSSL/templates/manageSSL/manageSSL.html:42 +#: manageSSL/templates/manageSSL/sslForHostName.html:42 +#: manageSSL/templates/manageSSL/sslForMailServer.html:40 +msgid "Issue SSL" +msgstr "签发SSL证书" + +#: manageSSL/templates/manageSSL/manageSSL.html:52 +#: manageSSL/templates/manageSSL/sslForHostName.html:52 +#: manageSSL/templates/manageSSL/sslForMailServer.html:50 +msgid "Cannot issue SSL. Error message:" +msgstr "无法签发SSL证书,错误信息:" + +#: manageSSL/templates/manageSSL/manageSSL.html:56 +msgid "SSL Issued for" +msgstr "已为签发证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:3 +msgid "Issue SSL For Hostname - CyberPanel" +msgstr "为面板主机签发SSL证书 - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:20 +msgid "Issue SSL For Hostname" +msgstr "为面板主机签发SSL证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:14 +msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." +msgstr "用于在认证的SSL中访问CyberPanel的Let's Encrypt SSL域名证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:56 +#: manageSSL/templates/manageSSL/sslForHostName.html:60 +msgid "SSL Issued. You can now access CyberPanel at:" +msgstr "SSL证书已签发, 您可以通过此域名登陆CyberPanel:" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:3 +msgid "Issue SSL For MailServer - CyberPanel" +msgstr "签发邮件服务器 SSL - 网络面板" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:20 +msgid "Issue SSL For MailServer" +msgstr "签发邮件服务器 SSL" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:14 +msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." +msgstr "Let’s Encrypt SSL 给邮件服务器 (Postfix/Dovecot) 。" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:54 +msgid "SSL Issued, your mail server now uses Lets Encrypt!" +msgstr "SSL成功签发,您的邮件服务器现在使用Lets Encrypt!" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:58 +msgid "Could not connect to server, please refresh this page." +msgstr "无法连接到服务器, 请刷新此页面。" + +#: manageServices/templates/manageServices/managePostfix.html:3 +msgid "Manage Email Server (Postfix) - CyberPanel" +msgstr "管理邮箱服务器 (Postfix) - CyberPanel" + +#: manageServices/templates/manageServices/managePostfix.html:13 +msgid "Manage Email Server (Postfix)!" +msgstr "管理邮件服务器(Postfix)" + +#: manageServices/templates/manageServices/managePostfix.html:13 +#: manageServices/templates/manageServices/managePowerDNS.html:16 +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Services Docs" +msgstr "服务文档" + +#: manageServices/templates/manageServices/managePostfix.html:14 +msgid "Enable or disable Email services. " +msgstr "启用或禁用邮件服务。" + +#: manageServices/templates/manageServices/managePostfix.html:79 +#: manageServices/templates/manageServices/managePowerDNS.html:149 +#: manageServices/templates/manageServices/managePureFtpd.html:79 +msgid "Only administrator can manage services." +msgstr "只有管理员可以管理服务。" + +#: manageServices/templates/manageServices/managePowerDNS.html:3 +msgid "Manage PowerDNS - CyberPanel" +msgstr "管理 PowerDNS - CyberPanel" + +#: manageServices/templates/manageServices/managePowerDNS.html:13 +msgid "Manage PowerDNS!" +msgstr "管理 PowerDNS!" + +#: manageServices/templates/manageServices/managePowerDNS.html:17 +msgid "Enable or disable DNS services. " +msgstr "启用或禁用DNS服务。" + +#: manageServices/templates/manageServices/managePowerDNS.html:42 +msgid "Select Function Mode" +msgstr "选择功能模式" + +#: manageServices/templates/manageServices/managePowerDNS.html:53 +msgid "Slave Server" +msgstr "副服务器" + +#: manageServices/templates/manageServices/managePowerDNS.html:60 +msgid "Master Server IP" +msgstr "主服务器IP" + +#: manageServices/templates/manageServices/managePowerDNS.html:67 +msgid "Slave Server 1" +msgstr "副服务器1" + +#: manageServices/templates/manageServices/managePowerDNS.html:74 +msgid "Slave Server IP" +msgstr "副服务器IP" + +#: manageServices/templates/manageServices/managePowerDNS.html:81 +msgid "Slave Server 2 (Optional)" +msgstr "副服务器2(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:88 +msgid "Slave Server IP 2 (Optional)" +msgstr "副服务器IP 2(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:95 +msgid "Slave Server 3 (Optional)" +msgstr "副服务器3(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:102 +msgid "Slave Server IP 3 (Optional)" +msgstr "副服务器IP 3(可选)" + +#: manageServices/templates/manageServices/managePureFtpd.html:3 +msgid "Manage FTP Server (Pure FTPD) - CyberPanel" +msgstr "管理 FTP 服务器 (Pure FTPD) - CyberPanel" + +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Manage FTP Server (Pure FTPD)!" +msgstr "管理FTP服务(Pure FTPD)" + +#: manageServices/templates/manageServices/managePureFtpd.html:14 +msgid "Enable or disable FTP services. " +msgstr "启用或禁用FTP服务。" + +#: manageServices/templates/manageServices/managePureFtpd.html:22 +msgid "Manage PureFTPD" +msgstr "管理PureFTPD" + +#: packages/templates/packages/createPackage.html:3 +msgid "Create Package - CyberPanel" +msgstr "创建套餐 - CyberPanel" + +#: packages/templates/packages/createPackage.html:14 +#: packages/templates/packages/deletePackage.html:13 +#: packages/templates/packages/index.html:14 +#: packages/templates/packages/modifyPackage.html:10 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 +msgid "" +"Packages define resources for your websites, you need to add package before " +"creating a website." +msgstr "套餐规定了您的网站可以使用的资源量,在创建网站前请先创建一个套餐。" + +#: packages/templates/packages/createPackage.html:19 +msgid "Package Details" +msgstr "套餐详情" + +#: packages/templates/packages/createPackage.html:41 +#: packages/templates/packages/listPackages.html:98 +#: packages/templates/packages/modifyPackage.html:44 +msgid "(0 = Unlimited)" +msgstr "(0为无限制 )" + +#: packages/templates/packages/createPackage.html:45 +#: packages/templates/packages/listPackages.html:104 +#: packages/templates/packages/modifyPackage.html:49 +msgid "Disk Space" +msgstr "硬盘空间" + +#: packages/templates/packages/createPackage.html:49 +#: packages/templates/packages/createPackage.html:57 +#: packages/templates/packages/listPackages.html:109 +#: packages/templates/packages/listPackages.html:119 +#: packages/templates/packages/modifyPackage.html:53 +#: packages/templates/packages/modifyPackage.html:61 +msgid "MB (0 = Unlimited)" +msgstr "MB (0为无限制)" + +#: packages/templates/packages/createPackage.html:53 +#: packages/templates/packages/listPackages.html:35 +#: packages/templates/packages/listPackages.html:114 +#: packages/templates/packages/modifyPackage.html:57 +msgid "Bandwidth" +msgstr "流量" + +#: packages/templates/packages/createPackage.html:62 +#: packages/templates/packages/listPackages.html:125 +#: packages/templates/packages/modifyPackage.html:66 +msgid "FTP Accounts" +msgstr "FTP用户数量" + +#: packages/templates/packages/createPackage.html:108 +msgid "Cannot create package. Error message:" +msgstr "无法创建套餐,错误信息:" + +#: packages/templates/packages/createPackage.html:113 +msgid "Successfully Created" +msgstr "已成功创建" + +#: packages/templates/packages/deletePackage.html:3 +msgid "Delete Package - CyberPanel" +msgstr "删除套餐 - CyberPanel" + +#: packages/templates/packages/deletePackage.html:56 +msgid "Cannot delete package. Error message:" +msgstr "无法删除套餐,错误信息:" + +#: packages/templates/packages/deletePackage.html:60 +msgid " Successfully Deleted." +msgstr " 已成功删除。" + +#: packages/templates/packages/index.html:3 +msgid "Packages - CyberPanel" +msgstr "套餐 - CyberPanel" + +#: packages/templates/packages/listPackages.html:3 +msgid "List Packages - CyberPanel" +msgstr "列出套餐 - CyberPanel" + +#: packages/templates/packages/listPackages.html:14 +msgid "List Packages and delete or edit them." +msgstr "列出软件包并删除或编辑它们。" + +#: packages/templates/packages/listPackages.html:34 +msgid "Diskspace" +msgstr "磁盘空间" + +#: packages/templates/packages/listPackages.html:36 +msgid "Email Accounts" +msgstr "邮件帐户" + +#: packages/templates/packages/listPackages.html:38 +msgid "FTPs" +msgstr "FTPS" + +#: packages/templates/packages/listPackages.html:39 +msgid "Child Domains" +msgstr "子域名" + +#: packages/templates/packages/listPackages.html:40 +msgid "Allow FQDN as Childs" +msgstr "允许FQDN作为Childs" + +#: packages/templates/packages/listPackages.html:152 +msgid "Additional" +msgstr "附加" + +#: packages/templates/packages/modifyPackage.html:3 +msgid "Modify Package - CyberPanel" +msgstr "修改套餐 - CyberPanel" + +#: packages/templates/packages/modifyPackage.html:117 +msgid "Cannot fetch package details. Error message:" +msgstr "无法获取套餐资料。错误信息:" + +#: packages/templates/packages/modifyPackage.html:121 +msgid "Package Details Successfully Fetched" +msgstr "套餐详情成功读取" + +#: packages/templates/packages/modifyPackage.html:125 +msgid "Successfully Modified" +msgstr "已成功修改" + +#: pluginHolder/templates/pluginHolder/plugins.html:15 +msgid "List of installed plugins on your CyberPanel." +msgstr "CyberPanel 上已安装插件的列表。" + +#: pluginHolder/templates/pluginHolder/plugins.html:31 +msgid "Version" +msgstr "版本" + +#: serverLogs/templates/serverLogs/accessLogs.html:3 +msgid "Access Logs - CyberPanel" +msgstr "访问日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/accessLogs.html:17 +msgid "Access Logs for main web server." +msgstr "主Web服务器日志。" + +#: serverLogs/templates/serverLogs/accessLogs.html:24 +#: serverLogs/templates/serverLogs/emailLogs.html:23 +#: serverLogs/templates/serverLogs/errorLogs.html:21 +#: serverLogs/templates/serverLogs/ftplogs.html:21 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 +msgid "Last 50 Lines" +msgstr "最后50行" + +#: serverLogs/templates/serverLogs/accessLogs.html:41 +#: serverLogs/templates/serverLogs/emailLogs.html:42 +#: serverLogs/templates/serverLogs/errorLogs.html:38 +#: serverLogs/templates/serverLogs/ftplogs.html:38 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 +msgid "Clear Logs" +msgstr "清除日志" + +#: serverLogs/templates/serverLogs/accessLogs.html:47 +#: serverLogs/templates/serverLogs/emailLogs.html:49 +#: serverLogs/templates/serverLogs/errorLogs.html:45 +#: serverLogs/templates/serverLogs/ftplogs.html:44 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 +msgid "Last 50 Lines Fetched" +msgstr "成功获取最后50行" + +#: serverLogs/templates/serverLogs/accessLogs.html:52 +#: serverLogs/templates/serverLogs/emailLogs.html:54 +#: serverLogs/templates/serverLogs/errorLogs.html:50 +#: serverLogs/templates/serverLogs/ftplogs.html:49 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 +msgid "Could not fetch logs. Use the command line to view the log file." +msgstr "无法获取日志。请使用命令行模式查看日志文件。" + +#: serverLogs/templates/serverLogs/emailLogs.html:3 +#: serverLogs/templates/serverLogs/errorLogs.html:3 +msgid "Error Logs - CyberPanel" +msgstr "错误日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/emailLogs.html:15 +msgid "Email Logs for main web server." +msgstr "主服务器邮箱日志。" + +#: serverLogs/templates/serverLogs/errorLogs.html:14 +msgid "Error Logs for main web server." +msgstr "主服务器错误日志。" + +#: serverLogs/templates/serverLogs/ftplogs.html:3 +msgid "FTP Logs - CyberPanel" +msgstr "FTP日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/ftplogs.html:14 +msgid "FTP Logs for main web server." +msgstr "主服务器FTP日志。" + +#: serverLogs/templates/serverLogs/index.html:3 +msgid "Server Logs - CyberPanel" +msgstr "服务器日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/index.html:13 +msgid "Server Logs" +msgstr "服务器日志" + +#: serverLogs/templates/serverLogs/index.html:14 +msgid "" +"These are the logs from main server, to see logs for your website navigate " +"to: Websites -> List Websites -> Select Website -> View Logs." +msgstr "" +"此为主服务器日志,要查看网站日志请前往 网站 -> 网站列表 -> 选择网站 -> 查看日" +"志。" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 +msgid "ModSecurity Audit Logs - CyberPanel" +msgstr "ModSecurity 审核日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 +msgid "ModSecurity Audit logs" +msgstr "ModSecurity 审核日志" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 +msgid "CyberPanel Main Log File - CyberPanel" +msgstr "Cyberpanel主日志 - CyberPanel" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 +msgid "" +"This log file corresponds to errors generated by CyberPanel for your domain " +"errors log you can look into /home/domain/logs." +msgstr "" +"此日志是CyberPanel为您的域名记录的错误,您可以在/home/domain/logs查看。" + +#: serverStatus/templates/serverStatus/index.html:3 +msgid "Server Status - CyberPanel" +msgstr "服务器状态 - CyberPanel" + +#: serverStatus/templates/serverStatus/index.html:14 +msgid "View LiteSpeed status and log files." +msgstr "查看LiteSpeed状态与日志。" + +#: serverStatus/templates/serverStatus/index.html:41 +msgid "CyberPanel Main Log" +msgstr "CyberPanel主日志" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:3 +msgid "LiteSpeed Status - CyberPanel" +msgstr "LiteSpeed状态 - CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:14 +#: serverStatus/templates/serverStatus/litespeedStatus.html:221 +msgid "LiteSpeed Status:" +msgstr "LiteSpeed状态:" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:222 +msgid "" +"On this page you can get information regarding your LiteSpeed processes." +msgstr "此页面可以查看LiteSpeed进程信息。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:30 +#: serverStatus/templates/serverStatus/litespeedStatus.html:254 +msgid "LiteSpeed Processes" +msgstr "LiteSpeed进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:37 +#: serverStatus/templates/serverStatus/litespeedStatus.html:261 +msgid "Process ID" +msgstr "进程ID" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:49 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 +msgid "Main Process" +msgstr "主进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:52 +#: serverStatus/templates/serverStatus/litespeedStatus.html:276 +msgid "lscgid Process" +msgstr "lscgid进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:55 +#: serverStatus/templates/serverStatus/litespeedStatus.html:279 +msgid "Worker Process" +msgstr "工作进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:291 +msgid "Reboot Litespeed" +msgstr "重启LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:73 +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +msgid "Stop LiteSpeed" +msgstr "停止LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:87 +#: serverStatus/templates/serverStatus/litespeedStatus.html:310 +msgid "Error Occurred. See CyberPanel main log file." +msgstr "发生错误, 请查看CyberPanel主日志。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:92 +#: serverStatus/templates/serverStatus/litespeedStatus.html:315 +msgid "Could not connect to server." +msgstr "无法连接到服务器。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:138 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "切换到LiteSpeed企业 Web 服务器" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:149 +msgid "LiteSpeed Serial No. (License Key)" +msgstr "LiteSpeed 序列号(许可证密钥)" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:160 +msgid "Switch" +msgstr "开关" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Get 15 Days Trial" +msgstr "获得15天试用期" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:175 +msgid "" +"Note: If you select 15 days trial there is no need to enter the serial key, " +"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " +"have not used trial already." +msgstr "" +"注意:如果您选择 15 天试用版,则无需输入串行密钥,CyberPanel 将自动获取 15 天" +"试用密钥。确保此服务器尚未使用过试用版。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:193 +msgid "With great wisdom comes great responsibility." +msgstr "能力越大,责任越大。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:329 +msgid "License Manager" +msgstr "许可证管理器" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:336 +#: serverStatus/templates/serverStatus/litespeedStatus.html:340 +#: serverStatus/templates/serverStatus/litespeedStatus.html:341 +msgid "License Status" +msgstr "许可证状态" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#: serverStatus/templates/serverStatus/litespeedStatus.html:350 +#: serverStatus/templates/serverStatus/litespeedStatus.html:351 +msgid "Change License" +msgstr "更改许可证" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:378 +msgid "New key" +msgstr "新密钥" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:388 +msgid "Change Key" +msgstr "更改密钥" + +#: serverStatus/templates/serverStatus/services.html:3 +msgid "Services - CyberPanel" +msgstr "服务 - CyberPanel" + +#: serverStatus/templates/serverStatus/services.html:25 +msgid "Show stats for services and actions (Start, Stop, Restart)" +msgstr "显示服务状态和操作(开始、停止、重新启动)" + +#: serverStatus/templates/serverStatus/topProcesses.html:3 +msgid "Top Processes - CyberPanel" +msgstr "主进程 - CyberPanel" + +#: serverStatus/templates/serverStatus/topProcesses.html:16 +msgid "List of top processes on your server. (Refresh every 3 seconds)" +msgstr "你服务器上的顶级进程列表。(每3秒刷新一次)" + +#: serverStatus/templates/serverStatus/topProcesses.html:27 +msgid "Cores" +msgstr "核心" + +#: serverStatus/templates/serverStatus/topProcesses.html:28 +msgid "Model Name" +msgstr "模型名称" + +#: serverStatus/templates/serverStatus/topProcesses.html:29 +msgid "CPU Mhz" +msgstr "CPU Mhz" + +#: serverStatus/templates/serverStatus/topProcesses.html:30 +msgid "Cache Size" +msgstr "缓存的大小" + +#: serverStatus/templates/serverStatus/topProcesses.html:51 +msgid "Processes" +msgstr "流程" + +#: serverStatus/templates/serverStatus/topProcesses.html:53 +msgid "Sleeping" +msgstr "休眠" + +#: serverStatus/templates/serverStatus/topProcesses.html:54 +msgid "Stopped" +msgstr "停止" + +#: serverStatus/templates/serverStatus/topProcesses.html:55 +msgid "Zombie" +msgstr "僵尸进程" + +#: serverStatus/templates/serverStatus/topProcesses.html:80 +msgid "CPU Load" +msgstr "CPU负载" + +#: serverStatus/templates/serverStatus/topProcesses.html:81 +msgid "1 Min" +msgstr "1分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:82 +msgid "5 Min" +msgstr "5分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:83 +msgid "15 Min" +msgstr "15分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:104 +msgid "I/O Wait" +msgstr "I/O等待" + +#: serverStatus/templates/serverStatus/topProcesses.html:105 +msgid "Idle Time" +msgstr "空闲时间" + +#: serverStatus/templates/serverStatus/topProcesses.html:106 +msgid "HW Interrupts" +msgstr "HW中断" + +#: serverStatus/templates/serverStatus/topProcesses.html:107 +msgid "Softirqs" +msgstr "软件中断" + +#: serverStatus/templates/serverStatus/topProcesses.html:132 +#: serverStatus/templates/serverStatus/topProcesses.html:156 +msgid "Free" +msgstr "免费" + +#: serverStatus/templates/serverStatus/topProcesses.html:133 +#: serverStatus/templates/serverStatus/topProcesses.html:157 +msgid "Used" +msgstr "已使用" + +#: serverStatus/templates/serverStatus/topProcesses.html:134 +#: serverStatus/templates/serverStatus/topProcesses.html:158 +msgid "buff/cache" +msgstr "缓冲/缓存" + +#: serverStatus/templates/serverStatus/topProcesses.html:155 +msgid "SWAP" +msgstr "SWAP" + +#: serverStatus/templates/serverStatus/topProcesses.html:192 +msgid "PID" +msgstr "PID" + +#: serverStatus/templates/serverStatus/topProcesses.html:194 +msgid "VIRT" +msgstr "VIRT" + +#: serverStatus/templates/serverStatus/topProcesses.html:195 +msgid "RES" +msgstr "RES" + +#: serverStatus/templates/serverStatus/topProcesses.html:196 +msgid "State" +msgstr "状态" + +#: serverStatus/templates/serverStatus/topProcesses.html:197 +#, python-format +msgid "%%CPU" +msgstr "%%CPU" + +#: serverStatus/templates/serverStatus/topProcesses.html:198 +#, python-format +msgid "%%MEM" +msgstr "%%MEM" + +#: serverStatus/templates/serverStatus/topProcesses.html:199 +msgid "Time" +msgstr "时间" + +#: serverStatus/templates/serverStatus/topProcesses.html:200 +#: websiteFunctions/templates/websiteFunctions/listCron.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:126 +msgid "Command" +msgstr "命令" + +#: tuning/templates/tuning/index.html:3 +msgid "Server Tuning - CyberPanel" +msgstr "服务器设置 - CyberPanel" + +#: tuning/templates/tuning/index.html:12 +msgid "Server Tuning" +msgstr "服务器设置" + +#: tuning/templates/tuning/index.html:13 +msgid "" +"On this page you can set runing parameters for your webserver depending on " +"your hardware." +msgstr "此页面您可以根据您的服务器硬件调整Web服务器参数。" + +#: tuning/templates/tuning/liteSpeedTuning.html:3 +msgid "LiteSpeed Tuning - CyberPanel" +msgstr "LiteSpeed设置 - CyberPanel" + +#: tuning/templates/tuning/liteSpeedTuning.html:13 +msgid "" +"You can use this page to tweak your server according to your website " +"requirments." +msgstr "此页面您可以根据您的网站要求调整服务器参数。" + +#: tuning/templates/tuning/liteSpeedTuning.html:18 +msgid "Tuning Details" +msgstr "设置详情" + +#: tuning/templates/tuning/liteSpeedTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:192 +msgid "Max Connections" +msgstr "最大连接数" + +#: tuning/templates/tuning/liteSpeedTuning.html:36 +msgid "Max SSL Connections" +msgstr "最大SSL连接数" + +#: tuning/templates/tuning/liteSpeedTuning.html:44 +msgid "Connection Timeout" +msgstr "连接超时" + +#: tuning/templates/tuning/liteSpeedTuning.html:52 +msgid "Keep Alive Timeout" +msgstr "Kepp Alive超时" + +#: tuning/templates/tuning/liteSpeedTuning.html:60 +msgid "Cache Size in memory" +msgstr "内存缓存大小" + +#: tuning/templates/tuning/liteSpeedTuning.html:67 +msgid "Enable GZIP Compression" +msgstr "开启GZIP压缩" + +#: tuning/templates/tuning/liteSpeedTuning.html:74 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:237 +msgid "Currently:" +msgstr "当前:" + +#: tuning/templates/tuning/liteSpeedTuning.html:82 +msgid "Tune Web Server" +msgstr "调整Web服务器" + +#: tuning/templates/tuning/liteSpeedTuning.html:92 +msgid "" +"Cannot fetch Current Value, but you can still submit new changes, error " +"reported from server:" +msgstr "" +"无法读取当前参数, 但是您可以继续提交修改,服务器错误消息: reported from " +"server:" + +#: tuning/templates/tuning/liteSpeedTuning.html:96 +msgid "Cannot save details, Error Message: " +msgstr "无法保存设置, 错误信息: " + +#: tuning/templates/tuning/liteSpeedTuning.html:101 +msgid "Web Server Successfully tuned." +msgstr "Web服务器设置成功保存。" + +#: tuning/templates/tuning/phpTuning.html:3 +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:45 +#: tuning/templates/tuning/phpTuning.html:185 +msgid "Initial Request Timeout (secs)" +msgstr "初始化请求超时 (秒)" + +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:200 +msgid "Memory Soft Limit" +msgstr "内存软限制" + +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:207 +msgid "Memory Hard Limit" +msgstr "内存硬限制" + +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:215 +msgid "Process Soft Limit" +msgstr "进程软限制" + +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:222 +msgid "Process Hard Limit" +msgstr "进程硬限制" + +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:230 +msgid "Persistent Connection" +msgstr "数据库持久连接" + +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:246 +msgid "Tune PHP" +msgstr "设置PHP" + +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:259 +msgid "Cannot tune. Error message:" +msgstr "无法保存设置, 错误信息:" + +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:264 +msgid "Details Successfully fetched." +msgstr "详情读取成功。" + +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:268 +msgid "PHP for " +msgstr "PHP对 " + +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:269 +msgid "Successfully tuned." +msgstr "已成功保存。" + +#: userManagment/templates/userManagment/apiAccess.html:3 +msgid "API Access for User - CyberPanel" +msgstr "用户 API 权限 - CyberPanel" + +#: userManagment/templates/userManagment/apiAccess.html:14 +msgid "" +"Allow/Remove API access for account, this effects Cloud Platform Connection " +"and Third Party Modules." +msgstr "允许/删除帐户的 API 权限将会影响云平台连接和第三方模块。" + +#: userManagment/templates/userManagment/apiAccess.html:29 +#: userManagment/templates/userManagment/changeUserACL.html:28 +#: userManagment/templates/userManagment/deleteUser.html:29 +#: userManagment/templates/userManagment/resellerCenter.html:25 +msgid "Select User" +msgstr "选择用户" + +#: userManagment/templates/userManagment/apiAccess.html:40 +msgid "Access" +msgstr "访问" + +#: userManagment/templates/userManagment/changeUserACL.html:3 +msgid "Change User ACL - CyberPanel" +msgstr "更改用户访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/changeUserACL.html:12 +#: userManagment/templates/userManagment/changeUserACL.html:19 +#: userManagment/templates/userManagment/createACL.html:100 +#: userManagment/templates/userManagment/modifyACL.html:104 +msgid "Change User ACL" +msgstr "更改用户访问控制策略" + +#: userManagment/templates/userManagment/changeUserACL.html:13 +msgid "This page can be used to change ACL for CyberPanel users." +msgstr "此页面可用于更改 CyberPanel 用户的访问控制策略。" + +#: userManagment/templates/userManagment/changeUserACL.html:39 +#: userManagment/templates/userManagment/createUser.html:56 +#: userManagment/templates/userManagment/deleteACL.html:26 +#: userManagment/templates/userManagment/listUsers.html:99 +#: userManagment/templates/userManagment/modifyACL.html:28 +msgid "Select ACL" +msgstr "选择访问控制策略" + +#: userManagment/templates/userManagment/changeUserACL.html:55 +msgid "Change ACL" +msgstr "修改访问控制策略" + +#: userManagment/templates/userManagment/createACL.html:3 +msgid "Create new ACL - CyberPanel" +msgstr "创建新访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/createACL.html:13 +msgid "" +"Create new Access Control defination, that specifies what CyberPanel users " +"can do." +msgstr "创建新的权限控制自定义,指定 CyberPanel 用户可以做什么。" + +#: userManagment/templates/userManagment/createACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:19 +msgid "ACL Details" +msgstr "访问控制策略细节" + +#: userManagment/templates/userManagment/createACL.html:26 +msgid "ACL Name" +msgstr "访问控制策略名称" + +#: userManagment/templates/userManagment/createACL.html:40 +#: userManagment/templates/userManagment/modifyACL.html:44 +msgid "Make Admin" +msgstr "新建管理员" + +#: userManagment/templates/userManagment/createACL.html:59 +#: userManagment/templates/userManagment/modifyACL.html:63 +msgid "User Management" +msgstr "用户管理" + +#: userManagment/templates/userManagment/createACL.html:91 +#: userManagment/templates/userManagment/deleteUser.html:13 +#: userManagment/templates/userManagment/deleteUser.html:20 +#: userManagment/templates/userManagment/deleteUser.html:42 +#: userManagment/templates/userManagment/index.html:78 +#: userManagment/templates/userManagment/index.html:81 +#: userManagment/templates/userManagment/modifyACL.html:95 +msgid "Delete User" +msgstr "删除用户" + +#: userManagment/templates/userManagment/createACL.html:107 +#: userManagment/templates/userManagment/modifyACL.html:111 +msgid "Website Management" +msgstr "网站管理" + +#: userManagment/templates/userManagment/createACL.html:130 +#: userManagment/templates/userManagment/modifyACL.html:134 +msgid "Suspend Website" +msgstr "暂停网站" + +#: userManagment/templates/userManagment/createACL.html:147 +#: userManagment/templates/userManagment/modifyACL.html:151 +msgid "Package Management" +msgstr "套餐管理" + +#: userManagment/templates/userManagment/createACL.html:186 +#: userManagment/templates/userManagment/modifyACL.html:190 +msgid "Database Management" +msgstr "数据库管理" + +#: userManagment/templates/userManagment/createACL.html:216 +#: userManagment/templates/userManagment/modifyACL.html:220 +msgid "DNS Management" +msgstr "DNS 管理" + +#: userManagment/templates/userManagment/createACL.html:249 +#: userManagment/templates/userManagment/modifyACL.html:253 +msgid "Add/Delete" +msgstr "添加/删除" + +#: userManagment/templates/userManagment/createACL.html:257 +#: userManagment/templates/userManagment/modifyACL.html:261 +msgid "Email Management" +msgstr "邮箱管理" + +#: userManagment/templates/userManagment/createACL.html:317 +#: userManagment/templates/userManagment/modifyACL.html:321 +msgid "FTP Management" +msgstr "FTP管理" + +#: userManagment/templates/userManagment/createACL.html:347 +#: userManagment/templates/userManagment/modifyACL.html:351 +msgid "Backup Management" +msgstr "备份管理" + +#: userManagment/templates/userManagment/createACL.html:399 +#: userManagment/templates/userManagment/modifyACL.html:403 +msgid "SSL Management" +msgstr "SSL 证书管理" + +#: userManagment/templates/userManagment/createACL.html:432 +msgid "Create ACL" +msgstr "创建访问控制策略" + +#: userManagment/templates/userManagment/createUser.html:3 +msgid "Create New User - CyberPanel" +msgstr "创建新用户 - CyberPanel" + +#: userManagment/templates/userManagment/createUser.html:13 +msgid "Create root, reseller or normal users on this page." +msgstr "在此页面创建管理员,分销商以及普通用户。" + +#: userManagment/templates/userManagment/createUser.html:19 +msgid "User Details" +msgstr "用户详情" + +#: userManagment/templates/userManagment/createUser.html:25 +#: userManagment/templates/userManagment/modifyUser.html:39 +#: userManagment/templates/userManagment/userProfile.html:24 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 +msgid "First Name" +msgstr "名" + +#: userManagment/templates/userManagment/createUser.html:31 +msgid "First Name should contain only alphabetic characters." +msgstr "名中只能包含字母。" + +#: userManagment/templates/userManagment/createUser.html:35 +#: userManagment/templates/userManagment/modifyUser.html:46 +#: userManagment/templates/userManagment/userProfile.html:29 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 +msgid "Last Name" +msgstr "姓" + +#: userManagment/templates/userManagment/createUser.html:41 +msgid "Last Name should contain only alphabetic characters." +msgstr "姓中只能包含字母。" + +#: userManagment/templates/userManagment/createUser.html:50 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 +msgid "Invalid Email" +msgstr "无效的邮箱" + +#: userManagment/templates/userManagment/createUser.html:68 +#: userManagment/templates/userManagment/listUsers.html:33 +#: userManagment/templates/userManagment/resellerCenter.html:48 +#: userManagment/templates/userManagment/userProfile.html:53 +msgid "Websites Limit" +msgstr "网站数量限制" + +#: userManagment/templates/userManagment/createUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:85 +msgid "Security Level" +msgstr "安全级别" + +#: userManagment/templates/userManagment/createUser.html:120 +#: userManagment/templates/userManagment/index.html:49 +#: userManagment/templates/userManagment/index.html:52 +msgid "Create User" +msgstr "创建用户" + +#: userManagment/templates/userManagment/createUser.html:128 +#: userManagment/templates/userManagment/modifyUser.html:112 +msgid "Account with username:" +msgstr "用户名为:" + +#: userManagment/templates/userManagment/createUser.html:133 +msgid "Cannot create user. Error message:" +msgstr "无法创建用户, 错误信息:" + +#: userManagment/templates/userManagment/createUser.html:141 +msgid "" +"Length of first and last name combined should be less than or equal to 20 " +"characters" +msgstr "姓名总和的长度应该小于或等于20" + +#: userManagment/templates/userManagment/deleteACL.html:3 +msgid "Delete ACL - CyberPanel" +msgstr "删除访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/deleteACL.html:13 +msgid "This page can be used to delete ACL." +msgstr "此页面可用于删除访问控制策略。" + +#: userManagment/templates/userManagment/deleteUser.html:3 +msgid "Delete User - CyberPanel" +msgstr "删除用户 - CyberPanel" + +#: userManagment/templates/userManagment/deleteUser.html:14 +msgid "Websites owned by this user will automatically transfer to the root." +msgstr "此用户拥有的网站将自动移动到根目录。" + +#: userManagment/templates/userManagment/deleteUser.html:61 +msgid "Cannot delete user. Error message:" +msgstr "无法删除用户, 错误信息:" + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid "User " +msgstr "用户 " + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid " Successfully Deleted" +msgstr " 已成功删除" + +#: userManagment/templates/userManagment/index.html:3 +msgid "User Functions - CyberPanel" +msgstr "用户功能 - CyberPanel" + +#: userManagment/templates/userManagment/index.html:14 +msgid "Create, edit and delete users on this page." +msgstr "在此页面创建, 编辑和删除用户。" + +#: userManagment/templates/userManagment/listUsers.html:3 +msgid "List Users - CyberPanel" +msgstr "列出用户 - CyberPanel" + +#: userManagment/templates/userManagment/listUsers.html:14 +msgid "List Users that you own." +msgstr "列出你拥有的用户。" + +#: userManagment/templates/userManagment/listUsers.html:35 +msgid "ACL" +msgstr "访问控制策略" + +#: userManagment/templates/userManagment/listUsers.html:84 +#: userManagment/templates/userManagment/resellerCenter.html:37 +msgid "New Owner" +msgstr "新拥有者" + +#: userManagment/templates/userManagment/modifyACL.html:3 +msgid "Modify an ACL - CyberPanel" +msgstr "修改一个访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/modifyACL.html:12 +msgid "Modify an ACL" +msgstr "修改一个ACL" + +#: userManagment/templates/userManagment/modifyACL.html:13 +msgid "On this page you can modify an existing ACL." +msgstr "在此页上,您可以修改现有的访问控制策略。" + +#: userManagment/templates/userManagment/modifyUser.html:3 +msgid "Modify User - CyberPanel" +msgstr "编辑用户 - CyberPanel" + +#: userManagment/templates/userManagment/modifyUser.html:13 +msgid "Modify existing user settings on this page." +msgstr "在此页面编辑已存在用户。" + +#: userManagment/templates/userManagment/modifyUser.html:27 +msgid "Select Account" +msgstr "选择用户" + +#: userManagment/templates/userManagment/modifyUser.html:113 +msgid " is successfully modified." +msgstr " 已成功修改。" + +#: userManagment/templates/userManagment/modifyUser.html:117 +msgid "Cannot modify user. Error message:" +msgstr "无法编辑用户, 错误信息:" + +#: userManagment/templates/userManagment/modifyUser.html:130 +msgid "Details fetched." +msgstr "详情已更新。" + +#: userManagment/templates/userManagment/resellerCenter.html:3 +msgid "Reseller Center - CyberPanel" +msgstr "分销商中心 - CyberPanel" + +#: userManagment/templates/userManagment/resellerCenter.html:13 +msgid "Change owner of users and change websites limits." +msgstr "改变用户的所有者和改变网站的限制。" + +#: userManagment/templates/userManagment/userProfile.html:3 +msgid "Account Details - CyberPanel" +msgstr "用户详情 - CyberPanel" + +#: userManagment/templates/userManagment/userProfile.html:12 +#: userManagment/templates/userManagment/userProfile.html:18 +msgid "Account Details" +msgstr "用户详情" + +#: userManagment/templates/userManagment/userProfile.html:13 +msgid "List the account details for the currently logged in user." +msgstr "查看当前用户详情。" + +#: userManagment/templates/userManagment/userProfile.html:48 +msgid "Account ACL" +msgstr "账户访问控制策略" + +#: userManagment/templates/userManagment/userProfile.html:55 +msgid "( 0 = Unlimited )" +msgstr "(0为无限制 )" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 +msgid "Application Installer - CyberPanel" +msgstr "应用程序安装程序 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 +msgid "One-click application install." +msgstr "一键应用安装。" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 +msgid "Install Joomla with(?) LSCache" +msgstr "安装 Joomla 伴随(?) LSCache" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 +msgid "Create New Website - CyberPanel" +msgstr "创建新网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/index.html:14 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 +msgid "" +"On this page you can launch, list, modify and delete websites from your " +"server." +msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站。" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 +msgid "Website Details" +msgstr "网站详情" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 +msgid "Do not enter WWW, it will be auto created!" +msgstr "不要使用WWW,这将是自动创建的!" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 +msgid "Delete Website - CyberPanel" +msgstr "删除网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 +msgid "" +"This page can be used to delete website, once deleted it can not be " +"recovered." +msgstr "在此页面可以删除网站,此操作不可逆。" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 +msgid "Cannot delete website, Error message: " +msgstr "无法删除网站, 错误信息: " + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Successfully Deleted." +msgstr "成功删除。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 +msgid "Domain Aliases - CyberPanel" +msgstr "域别名 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 +msgid "Domain Aliases" +msgstr "域名别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 +msgid "" +"With Domain Aliases you can visit example.com using example.net and view the " +"same content." +msgstr "使用域别名,您可以使用example.net访问与example.com相同的内容。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 +msgid "Create Alias" +msgstr "创建别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 +msgid "Master Domain" +msgstr "主域名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 +msgid "Alias" +msgstr "别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 +msgid "File System Path" +msgstr "文件系统路径" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 +msgid "Domain Aliases not found." +msgstr "没有找到域名别名。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 +msgid "Alias Domain" +msgstr "别名域" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 +msgid "" +"For SSL to work DNS of domain should point to server, otherwise self signed " +"SSL will be issued, you can add your own SSL later." +msgstr "" +"为确定SSL证书的正确签发,域名必须指向此服务器,否则将会签发自签名证书 您可以在" +"之后添加自有证书或重新申请签发Let's Encrypt证书。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 +msgid "Operation failed. Error message:" +msgstr "操作失败。错误信息:" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 +msgid "Alias successfully created. Refreshing page in 3 seconds..." +msgstr "已成功创建别名。将在 3 秒内刷新页面..." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 +msgid "Operation Successfull." +msgstr "操作成功。" + +#: websiteFunctions/templates/websiteFunctions/index.html:3 +msgid "Website Functions - CyberPanel" +msgstr "网站功能 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/index.html:33 +#: websiteFunctions/templates/websiteFunctions/index.html:57 +msgid "List Website" +msgstr "网站列表" + +#: websiteFunctions/templates/websiteFunctions/index.html:79 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 +msgid "Suspend/Unsuspend Website" +msgstr "禁用/启用网站" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 +msgid "Install Joomla - CyberPanel" +msgstr "安装 Joomla - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 +msgid "Install Joomla" +msgstr "安装Joomla" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 +msgid "One-click Joomla Install!" +msgstr "一键安装 Joomla!" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 +msgid "Installation Details" +msgstr "安装详情" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 +msgid "Site Name" +msgstr "站点名称" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 +msgid "Login User" +msgstr "登录用户" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 +msgid "Login Password" +msgstr "登录密码" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 +msgid "Database Prefix" +msgstr "数据库前缀" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 +msgid "Installation failed. Error message:" +msgstr "安装失败, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 +msgid "Installation successful. Visit:" +msgstr "安装成功。访问:" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 +msgid "Install Magento - CyberPanel" +msgstr "安装 Magento - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 +#: websiteFunctions/templates/websiteFunctions/website.html:1029 +#: websiteFunctions/templates/websiteFunctions/website.html:1033 +msgid "Install Magento" +msgstr "安装 Magento" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 +msgid "One-click Magento Install!" +msgstr "一键安装 Magento!" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 +msgid "Admin Username" +msgstr "管理员用户名" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 +msgid "" +"does not work on OpenLiteSpeed. It is highly recommended to use this " +"installer with LiteSpeed Enterprise only." +msgstr "" +"在 OpenLiteSpeed 上不工作。强烈建议仅将此安装程序与 LiteSpeed 企业版一起使" +"用。" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 +msgid "Install PrestaShop - CyberPanel" +msgstr "安装 PrestaShop - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 +msgid "Install PrestaShop" +msgstr "安装 PrestaShop" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 +msgid "One-click PrestaShop Install!" +msgstr "一键安装 PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 +msgid "Shop Name" +msgstr "店铺名称" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 +msgid "Install WordPress - CyberPanel" +msgstr "安装 WordPress - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 +msgid "Install WordPress" +msgstr "安装 WordPress" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 +msgid "Install WordPress with LSCache." +msgstr "安装 Wordpress 和 LS Cache。" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 +msgid "Blog Title" +msgstr "博客标题" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 +msgid "Copy/Sync to Master" +msgstr "复制/同步到Master" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 +#: websiteFunctions/templates/websiteFunctions/website.html:990 +msgid "WP + LSCache" +msgstr "wordpress + LSCache" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 +#: websiteFunctions/templates/websiteFunctions/website.html:1034 +msgid "Magento" +msgstr "马根托" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:3 +msgid "Cron Management - CyberPanel" +msgstr "Cron 管理器 - Cyberpanel" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +#: websiteFunctions/templates/websiteFunctions/listCron.html:19 +msgid "Cron Management" +msgstr "Cron 管理器" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +msgid "Cron Docs" +msgstr "Cron文档" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:13 +msgid "Create, edit or delete your cron jobs from this page." +msgstr "从这个页面创建、编辑或删除你的cron作业。" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:37 +msgid "Add Cron" +msgstr "添加 Cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:46 +#: websiteFunctions/templates/websiteFunctions/listCron.html:95 +msgid "Minute" +msgstr "分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:47 +#: websiteFunctions/templates/websiteFunctions/listCron.html:101 +msgid "Hour" +msgstr "小时" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:48 +msgid "Day of Month" +msgstr "天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:49 +#: websiteFunctions/templates/websiteFunctions/listCron.html:113 +msgid "Month" +msgstr "月" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:50 +msgid "Day of Week" +msgstr "星期" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:79 +msgid "Pre defined" +msgstr "预定义" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:82 +msgid "Every minute" +msgstr "每分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:83 +msgid "Every 5 minutes" +msgstr "每5分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:84 +msgid "Every 30 minutes" +msgstr "每30分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:85 +msgid "Every hour" +msgstr "每小时" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:86 +msgid "Every day" +msgstr "每天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:87 +msgid "Every week" +msgstr "每周" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:88 +msgid "Every month" +msgstr "每月" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:89 +msgid "Every year" +msgstr "每年" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:107 +msgid "Day of month" +msgstr "天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:119 +msgid "Day of week" +msgstr "星期" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:135 +msgid "Save edits" +msgstr "保存编辑" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:142 +msgid "Add cron" +msgstr "添加cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:152 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 +msgid "Cannot fetch website details. Error message:" +msgstr "无法更新网站详情, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:156 +msgid "Unable to add/save Cron. Error message:" +msgstr "无法添加/保存 Cron。错误消息:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:159 +msgid "Cron job saved" +msgstr "定时任务以保存" + +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 +msgid "Websites Hosted - CyberPanel" +msgstr "当前已创建的网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 +msgid "Modify Website - CyberPanel" +msgstr "修改网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 +msgid "Current Package:" +msgstr "当前套餐:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 +msgid "Current Owner:" +msgstr "当前拥有者:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 +msgid "Cannot modify website. Error message:" +msgstr "无法修改网站, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 +msgid "Website Details Successfully fetched" +msgstr "网站详情已成功更新" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 +msgid "Git Management - CyberPanel" +msgstr "Git 管理器 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 +msgid "Git Management" +msgstr "Git 管理器" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 +msgid "Attach git to your websites." +msgstr "将Git附加到您的网站。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 +msgid "Attach Git" +msgstr "附加Git" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 +msgid "Providers" +msgstr "提供者" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 +msgid "Deployment Key" +msgstr "部署密钥" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 +msgid "" +"Before attaching repo to your website, make sure to place your Development " +"key in your GIT repository." +msgstr "在将存储库附加到你的网站之前,请确保已将开发密钥放在 GIT 存储库中。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 +msgid "Repository Name" +msgstr "库名称" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 +msgid "Branch" +msgstr "分支" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 +msgid "Attach Now" +msgstr "现在附加" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 +msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" +msgstr "GIT 已成功附加,3 秒内刷新页面... 访问:" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 +msgid "Change Branch" +msgstr "更改分支" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 +msgid "Detach Repo" +msgstr "脱离Repo" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 +msgid "Webhook URL" +msgstr "Webhook URL" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 +msgid "" +"Add this URL to Webhooks section of your Git respository, if you've used " +"hostname SSL then replace IP with your hostname. Otherwise use IP and " +"disable SSL check while configuring webhook. This will initiate a pull from " +"your resposity as soon as you commit some changes." +msgstr "" +"将此 URL 添加到 Git 存储库的 Webhook 部分,如果您已使用主机名 SSL,则将 IP 替" +"换为你的主机名。否则,在配置 webhook 时使用 IP 并禁用 SSL 检查。一旦提交某些" +"更改,这将启动从您的存储库中拉取。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 +msgid "Repo successfully detached, refreshing in 3 seconds.." +msgstr "Repo成功分离, 将在 3 秒内刷新。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 +msgid "Branch successfully changed." +msgstr "分支改变成功。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 +msgid "Set up Staging Enviroment - CyberPanel" +msgstr "设置暂存环境 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 +msgid "Set up Staging Enviroment" +msgstr "设置临时环境" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 +msgid "Set up staging enviroment for " +msgstr "设置临时环境给 " + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +msgid "" +". Any domain that you will choose here will be created as child-domain for " +"this master site." +msgstr "。您将在这里选择的任何域都将创建为此主站点的子域。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 +msgid "Domain that you will enter below will be created as child-domain to " +msgstr "您将在下面输入的域将被创建为此域名的子域:" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 +msgid "." +msgstr "。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 +msgid "Start Cloning" +msgstr "开始克隆" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 +msgid "SSH and CageFS - CyberPanel" +msgstr "SSH 和 CageFS - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 +msgid "SSH Access" +msgstr "SSH 权限" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid "Set up SSH access and enable/disable CageFS for " +msgstr "设置 SSH 权限并启用/禁用 CageFS 给 " + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid " CageFS require CloudLinux OS." +msgstr " CageFS 要求 CloudLinux操作系统。" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 +msgid "Set up SSH access for " +msgstr "为此域名设置SSH访问:" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid "SSH user for " +msgstr "SSH 用户给 " + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid " is " +msgstr "是" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 +msgid "Suspend/Unsuspend Website - CyberPanel" +msgstr "禁用/启用网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 +msgid "This page can be used to suspend/unsuspend website." +msgstr "此页面可以禁用/启用网站." + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 +msgid "Suspend" +msgstr "禁用" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 +msgid "Un-Suspend" +msgstr "启用" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 +msgid "Cannot suspend website, Error message: " +msgstr "无法禁用网站, 错误信息: " + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 +msgid "Cannot unsuspend website. Error message:" +msgstr "无法启用网站, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Website " +msgstr "网站 " + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Successfully " +msgstr "成功 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 +msgid "Sync to Master - CyberPanel" +msgstr "同步到 Master - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 +msgid "Sync your site to Master" +msgstr "将您的网站同步到Master" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid "Right now you can only sync your child domains to master domains." +msgstr "目前,您只能将您的子域同步到主域。" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid " will be synced to " +msgstr " 将被同步到:" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "Sync " +msgstr "同步 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "to " +msgstr "到 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 +msgid "What to Sync" +msgstr "同步内容" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 +msgid "Start Syncing" +msgstr "开始同步" + +#: websiteFunctions/templates/websiteFunctions/website.html:29 +msgid "Clone/Staging" +msgstr "克隆/Staging" + +#: websiteFunctions/templates/websiteFunctions/website.html:30 +msgid "Set up SSH Access" +msgstr "设置SSH访问" + +#: websiteFunctions/templates/websiteFunctions/website.html:665 +msgid "It is not required to modify rules if you are using OpenLiteSpeed." +msgstr "如果您使用的是OpenLiteSpeed,则无需修改规则。" + +#, fuzzy +#~| msgid "Last Name" +#~ msgid "List" +#~ msgstr "姓" + +#~ msgid "" +#~ "Could not fetch details, either LiteSpeed is not running or some error " +#~ "occurred, please see CyberPanel Main log file." +#~ msgstr "无法获取详情, LiteSpeed没有运行或者有错误发生 请检查CyberPnael日志." + +#, fuzzy +#~| msgid "Schedule Back up" +#~ msgid "Achedule Back up" +#~ msgstr "备份计划" + +#, fuzzy +#~| msgid "Modify User" +#~ msgid "Modify" +#~ msgstr "修改用户" + +#~ msgid "Start" +#~ msgstr "开始" + +#~ msgid "Reload" +#~ msgstr "重载" + +#~ msgid "CPU Status" +#~ msgstr "CPU使用量" + +#~ msgid "Fullscreen" +#~ msgstr "全屏模式" + +#~ msgid "System Status" +#~ msgstr "系统状态" + +#~ msgid "Update started..." +#~ msgstr "开始更新..." + +#~ msgid "Update finished..." +#~ msgstr "更新完成..." + +#~ msgid "Account Type" +#~ msgstr "用户类型" + +#~ msgid "User Accounts Limit" +#~ msgstr "用户数量限制" + +#~ msgid "Only Numbers" +#~ msgstr "仅允许数字" + +#~ msgid "Username should be lowercase alphanumeric." +#~ msgstr "用户名应当为小写字母." + +#~ msgid "Must contain one number and one special character." +#~ msgstr "必须一个数字和一个字母." + +#~ msgid "Cannot create website. Error message:" +#~ msgstr "无法创建网站, 错误信息:" + +#~ msgid "Website with domain" +#~ msgstr "网站域名" + +#~ msgid " is Successfully Created" +#~ msgstr " 已成功创建" + +#~ msgid "Installation successful. To complete the setup visit:" +#~ msgstr "安装成功, 请访问网站以完成设置:" + +#, fuzzy +#~| msgid "Password" +#~ msgid "Admin Password" +#~ msgstr "密码" + +#, fuzzy +#~| msgid "Database Name" +#~ msgid "Database prefix" +#~ msgstr "数据库名字" + +#~ msgid "Daily" +#~ msgstr "每日" + +#~ msgid "Weekly" +#~ msgstr "每周" + +#~ msgid "HTTP Statistics" +#~ msgstr "HTTP统计" + +#~ msgid "Available/Max Connections" +#~ msgstr "可用/最大连接数" + +#~ msgid "Available/Max SSL Connections" +#~ msgstr "可用/最大SSL连接数" + +#~ msgid "Requests Processing" +#~ msgstr "当前请求数" + +#~ msgid "Total Requests" +#~ msgstr "总请求数" + +#~ msgid "IPV6" +#~ msgstr "IPv6" + +#~ msgid "Normal User" +#~ msgstr "普通用户" + +#~ msgid "Edit Virtual Host Main Configurations" +#~ msgstr "编辑vHost主配置" + +#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." +#~ msgstr "配置已保存, 重启LiteSpeed以生效." + +#~ msgid "Urdu" +#~ msgstr "乌尔都语" From a264ce27816fa123ebb07ecf10125dd3afe41a00 Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:15:14 +0800 Subject: [PATCH 25/31] Delete django.mo --- locale/cn/LC_MESSAGES/django.mo | Bin 85202 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 locale/cn/LC_MESSAGES/django.mo diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo deleted file mode 100644 index a88e3eaca7c6f90180ee2f5c009b6287c7d80ebc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85202 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 YL0UeOzvgEF%gwEPZkO1d>W%FG0mRz^HUIzs From a34027296997d6ca5405ed953135a745276f9a33 Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:15:35 +0800 Subject: [PATCH 26/31] Delete django.po --- locale/cn/LC_MESSAGES/django.po | 6670 ------------------------------- 1 file changed, 6670 deletions(-) delete mode 100644 locale/cn/LC_MESSAGES/django.po diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po deleted file mode 100644 index b69923c7d..000000000 --- a/locale/cn/LC_MESSAGES/django.po +++ /dev/null @@ -1,6670 +0,0 @@ -# CyberPanel Translation File. -# Copyright (C) 2017 LiteSpeedTech -# This file is distributed under the same license as the CyberPanel package. -# FIRST AUTHOR , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: CyberPanel\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-21 19:54+0500\n" -"PO-Revision-Date: 2021-06-26 22:06+0800\n" -"Last-Translator: \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0\n" - -#: CLManager/templates/CLManager/createPackage.html:3 -msgid "Create Cloud Linux Package - CyberPanel" -msgstr "创建 CloudLinux 套餐 - CyberPanel" - -#: CLManager/templates/CLManager/createPackage.html:9 -msgid "Create CloudLinux Package." -msgstr "创建 CloudLinux 套餐 - CyberPanel。" - -#: CLManager/templates/CLManager/createPackage.html:10 -msgid "" -"Each CloudLinux package have one associated (owner) CyberPanel package. " -"During website creation associated CloudLinux package will be assigned to " -"website user." -msgstr "" -"每个 CloudLinux 套餐都有一个关联的(所有者)CyberPanel 套餐。 在网站创建期" -"间,关联的 CloudLinux 套餐将分配给网站用户。" - -#: CLManager/templates/CLManager/createPackage.html:15 -#: CLManager/templates/CLManager/createPackage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:435 -#: baseTemplate/templates/baseTemplate/index.html:666 -#: packages/templates/packages/createPackage.html:13 -#: packages/templates/packages/createPackage.html:100 -#: packages/templates/packages/index.html:25 -#: packages/templates/packages/index.html:28 -#: userManagment/templates/userManagment/createACL.html:152 -#: userManagment/templates/userManagment/modifyACL.html:156 -msgid "Create Package" -msgstr "创建套餐" - -#: CLManager/templates/CLManager/createPackage.html:24 -#: packages/templates/packages/deletePackage.html:26 -#: packages/templates/packages/modifyPackage.html:24 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 -msgid "Select Package" -msgstr "选择套餐" - -#: CLManager/templates/CLManager/createPackage.html:40 -#: packages/templates/packages/createPackage.html:27 -msgid "Package Name" -msgstr "套餐名称" - -#: CLManager/templates/CLManager/createPackage.html:47 -#: CLManager/templates/CLManager/listPackages.html:87 -msgid "SPEED" -msgstr "SPEED" - -#: CLManager/templates/CLManager/createPackage.html:56 -#: CLManager/templates/CLManager/listPackages.html:98 -msgid "VMEM" -msgstr "VMEM" - -#: CLManager/templates/CLManager/createPackage.html:64 -#: CLManager/templates/CLManager/listPackages.html:109 -msgid "PMEM" -msgstr "PMEM" - -#: CLManager/templates/CLManager/createPackage.html:73 -#: CLManager/templates/CLManager/listPackages.html:120 -msgid "IO" -msgstr "小精灵" - -#: CLManager/templates/CLManager/createPackage.html:81 -#: CLManager/templates/CLManager/listPackages.html:131 -#: containerization/templates/containerization/websiteContainerLimit.html:52 -#: containerization/templates/containerization/websiteContainerLimit.html:99 -msgid "IOPS" -msgstr "IOPS" - -#: CLManager/templates/CLManager/createPackage.html:89 -#: CLManager/templates/CLManager/listPackages.html:142 -msgid "EP" -msgstr "EP" - -#: CLManager/templates/CLManager/createPackage.html:97 -#: CLManager/templates/CLManager/listPackages.html:153 -msgid "NPROC" -msgstr "NPROC" - -#: CLManager/templates/CLManager/createPackage.html:105 -#: CLManager/templates/CLManager/listPackages.html:164 -msgid "INODES soft" -msgstr "INODES soft" - -#: CLManager/templates/CLManager/createPackage.html:113 -#: CLManager/templates/CLManager/listPackages.html:175 -msgid "INODES hard" -msgstr "INODES hard" - -#: CLManager/templates/CLManager/listPackages.html:3 -msgid "Manage CloudLinux Packages - CyberPanel" -msgstr "管理 CloudLinux 套餐 - CyberPanel" - -#: CLManager/templates/CLManager/listPackages.html:14 -msgid "Manage CloudLinux Packages" -msgstr "管理 CloudLinux 套餐" - -#: CLManager/templates/CLManager/listPackages.html:15 -msgid "Manage/Delete CloudLinux Packages." -msgstr "管理/删除 CloudLinux 套餐。" - -#: CLManager/templates/CLManager/listPackages.html:76 -#: dns/templates/dns/addDeleteDNSRecords.html:74 -#: dns/templates/dns/addDeleteDNSRecords.html:97 -#: dns/templates/dns/addDeleteDNSRecords.html:121 -#: dns/templates/dns/addDeleteDNSRecords.html:144 -#: dns/templates/dns/addDeleteDNSRecords.html:172 -#: dns/templates/dns/addDeleteDNSRecords.html:196 -#: dns/templates/dns/addDeleteDNSRecords.html:220 -#: dns/templates/dns/addDeleteDNSRecords.html:244 -#: dns/templates/dns/addDeleteDNSRecords.html:268 -#: dns/templates/dns/addDeleteDNSRecords.html:295 -#: dns/templates/dns/addDeleteDNSRecords.html:328 -#: dockerManager/templates/dockerManager/runContainer.html:29 -#: filemanager/templates/filemanager/index.html:203 -#: firewall/templates/firewall/firewall.html:120 -#: packages/templates/packages/listPackages.html:84 -#: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:38 -#: serverStatus/templates/serverStatus/litespeedStatus.html:262 -#: userManagment/templates/userManagment/listUsers.html:75 -msgid "Name" -msgstr "名称" - -#: CLManager/templates/CLManager/listPackages.html:205 -#: CLManager/templates/CLManager/listWebsites.html:86 -#: CLManager/templates/CLManager/monitorUsage.html:57 -#: containerization/templates/containerization/listWebsites.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:172 -#: emailPremium/templates/emailPremium/emailPage.html:179 -#: emailPremium/templates/emailPremium/listDomains.html:75 -#: pluginHolder/templates/pluginHolder/plugins.html:51 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 -msgid "Cannot list websites. Error message:" -msgstr "无法列出网站。错误信息:" - -#: CLManager/templates/CLManager/listWebsites.html:3 -msgid "CageFS - CyberPanel" -msgstr "CageFS - CyberPanel" - -#: CLManager/templates/CLManager/listWebsites.html:14 -#: CLManager/templates/CLManager/monitorUsage.html:14 -#: baseTemplate/templates/baseTemplate/index.html:411 -#: containerization/templates/containerization/listWebsites.html:14 -#: websiteFunctions/templates/websiteFunctions/index.html:31 -#: websiteFunctions/templates/websiteFunctions/index.html:55 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 -msgid "List Websites" -msgstr "网站列表" - -#: CLManager/templates/CLManager/listWebsites.html:15 -msgid "Enable/Disable and view CageFS status for websites." -msgstr "启用/禁用和查看网站的 CageFS 状态。" - -#: CLManager/templates/CLManager/listWebsites.html:28 -msgid "Default: " -msgstr "默认:" - -#: CLManager/templates/CLManager/monitorUsage.html:3 -msgid "Monitor Usage - CyberPanel" -msgstr "监控使用情况 - CyberPanel" - -#: CLManager/templates/CLManager/monitorUsage.html:15 -msgid "Monitor usage of your websites." -msgstr "监控您网站的使用情况。" - -#: CLManager/templates/CLManager/monitorUsage.html:21 -#: baseTemplate/templates/baseTemplate/homePage.html:42 -#: baseTemplate/templates/baseTemplate/index.html:276 -#: baseTemplate/templates/baseTemplate/index.html:400 -#: baseTemplate/templates/baseTemplate/index.html:401 -#: baseTemplate/templates/baseTemplate/index.html:402 -#: containerization/templates/containerization/listWebsites.html:21 -msgid "Websites" -msgstr "网站" - -#: CLManager/templates/CLManager/notAvailable.html:3 -#: containerization/templates/containerization/notAvailable.html:3 -msgid "Not available - CyberPanel" -msgstr "不可用 - CyberPanel" - -#: CLManager/templates/CLManager/notAvailable.html:13 -#: containerization/templates/containerization/notAvailable.html:13 -msgid "Not available" -msgstr "不可用" - -#: CLManager/templates/CLManager/notAvailable.html:14 -msgid "Either CageFS is not installed or you are not on CloudLinux OS." -msgstr "未安装 CageFS 或您未使用 CloudLinux 操作系统。" - -#: CLManager/templates/CLManager/notAvailable.html:22 -msgid "CageFS is only available with CloudLinux OS. " -msgstr "CageFS 仅适用于 CloudLinux 操作系统。" - -#: CLManager/templates/CLManager/notAvailable.html:24 -#: containerization/templates/containerization/notAvailable.html:24 -msgid " for conversion details." -msgstr " 为转换详情。" - -#: CLManager/templates/CLManager/notAvailable.html:34 -#: containerization/templates/containerization/notAvailable.html:34 -msgid "Install Packages" -msgstr "安装包" - -#: CLManager/templates/CLManager/notAvailable.html:39 -msgid "CageFS is not installed on this server. Please proceed to installation." -msgstr "此服务器上未安装 CageFS。请继续以安装。" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:3 -msgid " usage - CyberPanel" -msgstr " 使用量 - CyberPanel" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:14 -#: emailMarketing/templates/emailMarketing/website.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 -#: websiteFunctions/templates/websiteFunctions/website.html:43 -msgid "Usage" -msgstr "使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:15 -msgid "View CPU, Memory and Disk usage for " -msgstr "查看 CPU、内存和磁盘使用情况 " - -#: CLManager/templates/CLManager/websiteContainerLimit.html:21 -#: containerization/templates/containerization/websiteContainerLimit.html:155 -msgid "CPU Usage of" -msgstr "CPU使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:30 -#: containerization/templates/containerization/websiteContainerLimit.html:164 -msgid "Memory Usage of" -msgstr "内存使用量" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:39 -#: containerization/templates/containerization/websiteContainerLimit.html:173 -msgid "Disk Usage of" -msgstr "硬盘使用量" - -#: CyberCP/settings.py:175 -msgid "English" -msgstr "英语" - -#: CyberCP/settings.py:176 -msgid "Chinese" -msgstr "中文" - -#: CyberCP/settings.py:177 -msgid "Bulgarian" -msgstr "保加利亚语" - -#: CyberCP/settings.py:178 -msgid "Portuguese" -msgstr "葡萄牙语" - -#: CyberCP/settings.py:179 -msgid "Japanese" -msgstr "日语" - -#: CyberCP/settings.py:180 -msgid "Bosnian" -msgstr "波斯尼亚语" - -#: CyberCP/settings.py:181 -msgid "Greek" -msgstr "希腊语" - -#: CyberCP/settings.py:182 -msgid "Russian" -msgstr "俄语" - -#: CyberCP/settings.py:183 -msgid "Turkish" -msgstr "土耳其" - -#: CyberCP/settings.py:184 -msgid "Spanish" -msgstr "西班牙语" - -#: CyberCP/settings.py:185 -msgid "French" -msgstr "法语" - -#: CyberCP/settings.py:186 -msgid "Polish" -msgstr "波兰语" - -#: CyberCP/settings.py:187 -msgid "Vietnamese" -msgstr "越南语" - -#: CyberCP/settings.py:188 -msgid "Italian" -msgstr "意大利语" - -#: CyberCP/settings.py:189 -msgid "Deutsch" -msgstr "德国" - -#: IncBackups/templates/IncBackups/backupSchedule.html:3 -#: backup/templates/backup/backupSchedule.html:3 -msgid "Schedule Back up - CyberPanel" -msgstr "计划备份 - Cyberpanel" - -#: IncBackups/templates/IncBackups/backupSchedule.html:13 -#: IncBackups/templates/IncBackups/backupSchedule.html:23 -#: backup/templates/backup/backupSchedule.html:13 -#: backup/templates/backup/backupSchedule.html:23 -#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 -#: baseTemplate/templates/baseTemplate/index.html:578 -#: userManagment/templates/userManagment/createACL.html:381 -#: userManagment/templates/userManagment/modifyACL.html:385 -msgid "Schedule Back up" -msgstr "计划备份" - -#: IncBackups/templates/IncBackups/backupSchedule.html:16 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 -#: backup/templates/backup/backupDestinations.html:14 -#: backup/templates/backup/backupSchedule.html:16 -#: backup/templates/backup/remoteBackups.html:14 -#: backup/templates/backup/remoteBackups.html:21 -msgid "Remote Backups" -msgstr "远程备份" - -#: IncBackups/templates/IncBackups/backupSchedule.html:17 -#: backup/templates/backup/backupSchedule.html:17 -msgid "" -"On this page you can schedule Back ups to localhost or remote server (If you " -"have added one)." -msgstr "" -"在此页面您可以设置计划任务备份到本地或远程目录 (如果您已经添加了一个远程目" -"录)。" - -#: IncBackups/templates/IncBackups/backupSchedule.html:33 -#: backup/templates/backup/backupSchedule.html:33 -msgid "Select Destination" -msgstr "选择远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:44 -#: backup/templates/backup/backupSchedule.html:44 -msgid "Select Frequency" -msgstr "备份频率" - -#: IncBackups/templates/IncBackups/backupSchedule.html:54 -#: IncBackups/templates/IncBackups/createBackup.html:56 -msgid "Backup Content" -msgstr "备份内容" - -#: IncBackups/templates/IncBackups/backupSchedule.html:98 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 -#: backup/templates/backup/backupDestinations.html:55 -#: backup/templates/backup/backupSchedule.html:67 -#: baseTemplate/templates/baseTemplate/index.html:575 -msgid "Add Destination" -msgstr "添加远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:112 -#: backup/templates/backup/remoteBackups.html:96 -msgid "Search Accounts.." -msgstr "搜索用户..." - -#: IncBackups/templates/IncBackups/backupSchedule.html:124 -msgid "Select sites to be included in this job" -msgstr "选择要在此项备份工作中包含的网站" - -#: IncBackups/templates/IncBackups/backupSchedule.html:150 -#: IncBackups/templates/IncBackups/createBackup.html:127 -#: backup/templates/backup/backup.html:102 -#: backup/templates/backup/backupDestinations.html:96 -#: backup/templates/backup/backupSchedule.html:102 -#: databases/templates/databases/listDataBases.html:104 -#: dns/templates/dns/addDeleteDNSRecords.html:326 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 -#: emailMarketing/templates/emailMarketing/manageLists.html:141 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 -#: firewall/templates/firewall/firewall.html:119 -#: firewall/templates/firewall/modSecurityRulesPacks.html:109 -#: ftp/templates/ftp/listFTPAccounts.html:122 -#: mailServer/templates/mailServer/emailForwarding.html:117 -#: managePHP/templates/managePHP/installExtensions.html:60 -msgid "ID" -msgstr "ID" - -#: IncBackups/templates/IncBackups/backupSchedule.html:151 -#: IncBackups/templates/IncBackups/createBackup.html:44 -#: IncBackups/templates/IncBackups/createBackup.html:164 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 -#: backup/templates/backup/backup.html:41 -#: backup/templates/backup/backupSchedule.html:103 -#: mailServer/templates/mailServer/emailForwarding.html:101 -#: mailServer/templates/mailServer/emailForwarding.html:119 -msgid "Destination" -msgstr "远程目录" - -#: IncBackups/templates/IncBackups/backupSchedule.html:152 -#: backup/templates/backup/backupSchedule.html:104 -msgid "Frequency" -msgstr "频率" - -#: IncBackups/templates/IncBackups/backupSchedule.html:153 -#: IncBackups/templates/IncBackups/createBackup.html:130 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 -#: backup/templates/backup/backup.html:107 -#: backup/templates/backup/backupDestinations.html:99 -#: backup/templates/backup/backupSchedule.html:105 -#: dns/templates/dns/addDeleteDNSRecords.html:332 -#: emailMarketing/templates/emailMarketing/manageLists.html:156 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 -#: emailMarketing/templates/emailMarketing/sendEmails.html:170 -#: emailMarketing/templates/emailMarketing/website.html:533 -#: filemanager/templates/filemanager/index.html:67 -#: filemanager/templates/filemanager/index.html:696 -#: firewall/templates/firewall/firewall.html:124 -#: firewall/templates/firewall/secureSSH.html:122 -#: mailServer/templates/mailServer/listEmails.html:78 -#: packages/templates/packages/listPackages.html:63 -#: userManagment/templates/userManagment/listUsers.html:54 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 -#: websiteFunctions/templates/websiteFunctions/listCron.html:65 -#: websiteFunctions/templates/websiteFunctions/website.html:497 -msgid "Delete" -msgstr "删除" - -#: IncBackups/templates/IncBackups/createBackup.html:3 -msgid "Create Incremental Backup" -msgstr "创建增量备份" - -#: IncBackups/templates/IncBackups/createBackup.html:13 -#: IncBackups/templates/IncBackups/createBackup.html:23 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 -#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 -#: backup/templates/backup/backup.html:21 -msgid "Back up Website" -msgstr "备份网站" - -#: IncBackups/templates/IncBackups/createBackup.html:15 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 -#: backup/templates/backup/backup.html:14 -#: backup/templates/backup/restore.html:14 -msgid "Backup Docs" -msgstr "备份文档" - -#: IncBackups/templates/IncBackups/createBackup.html:17 -msgid "This page can be used to create incremental backups for your websites." -msgstr "这个页面可以用来为您的网站创建增量备份。" - -#: IncBackups/templates/IncBackups/createBackup.html:33 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 -#: backup/templates/backup/backup.html:30 -#: databases/templates/databases/createDatabase.html:26 -#: databases/templates/databases/deleteDatabase.html:26 -#: databases/templates/databases/phpMyAdmin.html:26 -#: ftp/templates/ftp/createFTPAccount.html:42 -#: mailServer/templates/mailServer/changeEmailPassword.html:44 -#: mailServer/templates/mailServer/createEmailAccount.html:44 -#: mailServer/templates/mailServer/deleteEmailAccount.html:44 -#: mailServer/templates/mailServer/dkimManager.html:83 -#: mailServer/templates/mailServer/emailForwarding.html:38 -#: manageSSL/templates/manageSSL/manageSSL.html:29 -#: manageSSL/templates/manageSSL/sslForHostName.html:29 -#: manageSSL/templates/manageSSL/sslForMailServer.html:27 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/listCron.html:28 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 -msgid "Select Website" -msgstr "选择网站" - -#: IncBackups/templates/IncBackups/createBackup.html:113 -#: backup/templates/backup/backup.html:81 -#: baseTemplate/templates/baseTemplate/index.html:569 -#: baseTemplate/templates/baseTemplate/index.html:598 -#: userManagment/templates/userManagment/createACL.html:352 -#: userManagment/templates/userManagment/modifyACL.html:356 -msgid "Create Back up" -msgstr "创建备份" - -#: IncBackups/templates/IncBackups/createBackup.html:128 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 -#: backup/templates/backup/backup.html:104 -#: emailMarketing/templates/emailMarketing/sendEmails.html:152 -msgid "Date" -msgstr "日期" - -#: IncBackups/templates/IncBackups/createBackup.html:129 -#: backup/templates/backup/index.html:46 -#: backup/templates/backup/restore.html:45 -msgid "Restore" -msgstr "还原" - -#: IncBackups/templates/IncBackups/createBackup.html:161 -#: emailMarketing/templates/emailMarketing/sendEmails.html:151 -msgid "Job ID" -msgstr "作业ID" - -#: IncBackups/templates/IncBackups/createBackup.html:162 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 -msgid "Snapshot ID" -msgstr "快照ID" - -#: IncBackups/templates/IncBackups/createBackup.html:163 -#: dns/templates/dns/addDeleteDNSRecords.html:327 -#: pluginHolder/templates/pluginHolder/plugins.html:29 -msgid "Type" -msgstr "类型" - -#: IncBackups/templates/IncBackups/createBackup.html:165 -#: websiteFunctions/templates/websiteFunctions/listCron.html:52 -msgid "Action" -msgstr "操作" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:14 -msgid "Set up Back up Destinations" -msgstr "设置远程目录" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 -msgid "Set up Incremental Back up Destinations" -msgstr "设置增量备份目的地" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 -msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" -msgstr "在此页面上,您可以设置备份目的地。(SFTP 和 AWS)" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 -msgid "Set up Back up Destinations." -msgstr "设置备份目的地。" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 -msgid "Select Type" -msgstr "选择类型" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 -#: backup/templates/backup/backupDestinations.html:30 -#: backup/templates/backup/remoteBackups.html:29 -#: dns/templates/dns/addDeleteDNSRecords.html:82 -#: dns/templates/dns/createNameServer.html:55 -#: dns/templates/dns/createNameServer.html:71 -#: firewall/templates/firewall/firewall.html:122 -msgid "IP Address" -msgstr "IP地址" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 -#: backup/templates/backup/backupDestinations.html:38 -#: backup/templates/backup/remoteBackups.html:37 -#: databases/templates/databases/createDatabase.html:56 -#: databases/templates/databases/listDataBases.html:107 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 -#: ftp/templates/ftp/listFTPAccounts.html:126 -#: mailServer/templates/mailServer/changeEmailPassword.html:68 -#: mailServer/templates/mailServer/createEmailAccount.html:68 -#: mailServer/templates/mailServer/listEmails.html:113 -#: userManagment/templates/userManagment/createUser.html:83 -#: userManagment/templates/userManagment/modifyUser.html:62 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 -msgid "Password" -msgstr "密码" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 -#: backup/templates/backup/backupDestinations.html:45 -#: dockerManager/templates/dockerManager/runContainer.html:74 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 -#: firewall/templates/firewall/firewall.html:123 -msgid "Port" -msgstr "端口" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 -#: backup/templates/backup/backupDestinations.html:47 -msgid "Backup server SSH Port, leave empty for 22." -msgstr "备份服务器的 SSH 端口,留空使用默认值 22。" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 -#: backup/templates/backup/backupDestinations.html:97 -msgid "IP" -msgstr "IP地址" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 -msgid "AWS_ACCESS_KEY_ID" -msgstr "AWS_ACCESS_KEY_ID" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 -msgid "AWS_SECRET_ACCESS_KEY" -msgstr "AWS_SECRET_ACCESS_KEY" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 -msgid "Restore Remote Incremental Backups" -msgstr "恢复远程增量备份" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 -msgid "" -"This page can be used to restore remote incremental backups for your " -"websites." -msgstr "这个页面可以用来恢复你的网站的远程增量备份。" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 -msgid "Fetch Restore Points" -msgstr "获取还原点" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 -msgid "Host" -msgstr "主机" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 -#: emailMarketing/templates/emailMarketing/createEmailList.html:33 -#: emailMarketing/templates/emailMarketing/manageLists.html:74 -#: emailMarketing/templates/emailMarketing/website.html:330 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -msgid "Path" -msgstr "路径" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 -#: dockerManager/templates/dockerManager/viewContainer.html:108 -#: emailMarketing/templates/emailMarketing/manageLists.html:145 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 -#: emailMarketing/templates/emailMarketing/sendEmails.html:157 -#: filemanager/templates/filemanager/index.html:207 -#: mailServer/templates/mailServer/emailForwarding.html:120 -#: mailServer/templates/mailServer/listEmails.html:65 -#: packages/templates/packages/listPackages.html:41 -#: serverStatus/templates/serverStatus/topProcesses.html:201 -#: userManagment/templates/userManagment/listUsers.html:37 -msgid "Actions" -msgstr "操作" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 -msgid "Terminal - CyberPanel" -msgstr "终端 - CyberPanel" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 -#: baseTemplate/templates/baseTemplate/index.html:641 -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Terminal" -msgstr "终端" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 -msgid "Web Terminal Docs" -msgstr "网页终端文档" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 -msgid "Execute your terminal commands." -msgstr "执行你的终端命令。" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 -#: baseTemplate/templates/baseTemplate/index.html:643 -msgid "Web Terminal" -msgstr "网页终端" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 -msgid "Reboot SSH Server" -msgstr "重新启动SSH服务器" - -#: backup/templates/backup/backup.html:15 -msgid "This page can be used to Back up your websites" -msgstr "这里是网站备份界面" - -#: backup/templates/backup/backup.html:44 -#: baseTemplate/templates/baseTemplate/homePage.html:12 -#: filemanager/templates/filemanager/index.html:135 -msgid "Home" -msgstr "主目录" - -#: backup/templates/backup/backup.html:60 -#: backup/templates/backup/restore.html:62 -#: filemanager/templates/filemanager/index.html:158 -msgid "File Name" -msgstr "文件名" - -#: backup/templates/backup/backup.html:61 -#: backup/templates/backup/backup.html:106 -#: backup/templates/backup/restore.html:63 -#: baseTemplate/templates/baseTemplate/homePage.html:132 -#: baseTemplate/templates/baseTemplate/index.html:311 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 -#: filemanager/templates/filemanager/index.html:206 -#: firewall/templates/firewall/firewall.html:35 -#: firewall/templates/firewall/modSecurityRulesPacks.html:112 -#: managePHP/templates/managePHP/installExtensions.html:64 -msgid "Status" -msgstr "状态" - -#: backup/templates/backup/backup.html:66 -#: serverStatus/templates/serverStatus/topProcesses.html:52 -msgid "Running" -msgstr "进行中" - -#: backup/templates/backup/backup.html:88 -msgid "Cancel Backup" -msgstr "取消备份" - -#: backup/templates/backup/backup.html:103 -msgid "File" -msgstr "文件" - -#: backup/templates/backup/backup.html:105 -#: filemanager/templates/filemanager/index.html:204 -#: ftp/templates/ftp/listFTPAccounts.html:125 -msgid "Size" -msgstr "大小" - -#: backup/templates/backup/backup.html:131 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: backup/templates/backup/backup.html:135 -msgid "Successfully Deleted" -msgstr "删除成功" - -#: backup/templates/backup/backupDestinations.html:15 -msgid "On this page you can set up your Back up destinations. (SFTP)" -msgstr "这里是远程备份页面(SFTP)" - -#: backup/templates/backup/backupDestinations.html:21 -msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" -msgstr "设置备份目的地(备份服务器上的SSH端口应为22)" - -#: backup/templates/backup/backupDestinations.html:68 -#: backup/templates/backup/backupDestinations.html:72 -msgid "Connection to" -msgstr "连接到" - -#: backup/templates/backup/backupDestinations.html:68 -msgid "failed. Please delete and re-add. " -msgstr "失败, 请删除后重新添加。" - -#: backup/templates/backup/backupDestinations.html:72 -msgid "successful." -msgstr " 成功" - -#: backup/templates/backup/backupDestinations.html:76 -msgid "Cannot add destination. Error message:" -msgstr "无法添加远程目录, 错误信息:" - -#: backup/templates/backup/backupDestinations.html:80 -msgid "Destination Added." -msgstr "远程目录已添加。" - -#: backup/templates/backup/backupDestinations.html:84 -#: backup/templates/backup/backupSchedule.html:90 -#: backup/templates/backup/restore.html:95 -#: databases/templates/databases/createDatabase.html:98 -#: databases/templates/databases/deleteDatabase.html:69 -#: databases/templates/databases/phpMyAdmin.html:50 -#: dns/templates/dns/addDeleteDNSRecords.html:384 -#: dns/templates/dns/createDNSZone.html:70 -#: dns/templates/dns/createNameServer.html:102 -#: dns/templates/dns/deleteDNSZone.html:77 -#: dockerManager/templates/dockerManager/runContainer.html:185 -#: emailMarketing/templates/emailMarketing/website.html:161 -#: emailMarketing/templates/emailMarketing/website.html:420 -#: emailMarketing/templates/emailMarketing/website.html:471 -#: emailMarketing/templates/emailMarketing/website.html:633 -#: emailMarketing/templates/emailMarketing/website.html:689 -#: emailMarketing/templates/emailMarketing/website.html:749 -#: emailMarketing/templates/emailMarketing/website.html:835 -#: emailMarketing/templates/emailMarketing/website.html:955 -#: emailPremium/templates/emailPremium/emailLimits.html:101 -#: emailPremium/templates/emailPremium/emailPage.html:119 -#: mailServer/templates/mailServer/changeEmailPassword.html:114 -#: mailServer/templates/mailServer/createEmailAccount.html:115 -#: mailServer/templates/mailServer/deleteEmailAccount.html:98 -#: mailServer/templates/mailServer/dkimManager.html:156 -#: mailServer/templates/mailServer/emailForwarding.html:83 -#: manageSSL/templates/manageSSL/manageSSL.html:60 -#: userManagment/templates/userManagment/createUser.html:137 -#: userManagment/templates/userManagment/modifyUser.html:121 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 -#: websiteFunctions/templates/websiteFunctions/website.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:383 -#: websiteFunctions/templates/websiteFunctions/website.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:581 -#: websiteFunctions/templates/websiteFunctions/website.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:778 -#: websiteFunctions/templates/websiteFunctions/website.html:884 -msgid "Could not connect to server. Please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面。" - -#: backup/templates/backup/backupDestinations.html:98 -#: backup/templates/backup/backupDestinations.html:106 -msgid "Check Connection" -msgstr "测试连接" - -#: backup/templates/backup/backupSchedule.html:54 -msgid "Local Path" -msgstr "本地路径" - -#: backup/templates/backup/backupSchedule.html:57 -msgid "Local directory where backups will be moved after creation." -msgstr "备份在创建后将移入的本地目录。" - -#: backup/templates/backup/backupSchedule.html:82 -msgid "Cannot add schedule. Error message:" -msgstr "无法添加计划任务, 错误信息:" - -#: backup/templates/backup/backupSchedule.html:86 -msgid "Schedule Added" -msgstr "计划任务已添加" - -#: backup/templates/backup/index.html:3 -msgid "Back up Home - CyberPanel" -msgstr "备份 - CyberPanel" - -#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 -#: baseTemplate/templates/baseTemplate/homePage.html:95 -#: baseTemplate/templates/baseTemplate/homePage.html:97 -#: baseTemplate/templates/baseTemplate/index.html:561 -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:616 -msgid "Back up" -msgstr "备份" - -#: backup/templates/backup/index.html:14 -msgid "Back up and restore sites." -msgstr "备份与还原网站。" - -#: backup/templates/backup/index.html:19 -#: baseTemplate/templates/baseTemplate/homePage.html:23 -#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 -#: dockerManager/templates/dockerManager/index.html:21 -#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 -#: mailServer/templates/mailServer/index.html:19 -#: managePHP/templates/managePHP/index.html:18 -#: manageSSL/templates/manageSSL/index.html:20 -#: packages/templates/packages/index.html:19 -#: serverLogs/templates/serverLogs/index.html:19 -#: serverStatus/templates/serverStatus/index.html:19 -#: tuning/templates/tuning/index.html:18 -#: userManagment/templates/userManagment/index.html:19 -#: websiteFunctions/templates/websiteFunctions/index.html:21 -msgid "Available Functions" -msgstr "可用功能" - -#: backup/templates/backup/index.html:28 -msgid "Back up Site" -msgstr "备份网站" - -#: backup/templates/backup/index.html:44 -#: baseTemplate/templates/baseTemplate/index.html:572 -#: baseTemplate/templates/baseTemplate/index.html:601 -#: userManagment/templates/userManagment/createACL.html:361 -#: userManagment/templates/userManagment/modifyACL.html:365 -msgid "Restore Back up" -msgstr "还原备份" - -#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 -msgid "Add/Delete Destinations" -msgstr "添加/删除远程目录" - -#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 -#: baseTemplate/templates/baseTemplate/index.html:581 -#: userManagment/templates/userManagment/createACL.html:391 -#: userManagment/templates/userManagment/modifyACL.html:395 -msgid "Remote Back ups" -msgstr "远程备份" - -#: backup/templates/backup/remoteBackups.html:3 -msgid "Transfer Websites from Remote Server - CyberPanel" -msgstr "从远程服务器恢复网站 - CyberPanel" - -#: backup/templates/backup/remoteBackups.html:14 -msgid "Remote Transfer" -msgstr "开始迁移" - -#: backup/templates/backup/remoteBackups.html:15 -msgid "This feature can import website(s) from remote server" -msgstr "此功能可以从远程服务器导入网站" - -#: backup/templates/backup/remoteBackups.html:46 -msgid "Fetch Accounts" -msgstr "读取" - -#: backup/templates/backup/remoteBackups.html:55 -msgid "Start Transfer" -msgstr "开始迁移" - -#: backup/templates/backup/remoteBackups.html:59 -#: emailMarketing/templates/emailMarketing/website.html:324 -#: emailMarketing/templates/emailMarketing/website.html:804 -#: emailMarketing/templates/emailMarketing/website.html:928 -#: emailPremium/templates/emailPremium/emailLimits.html:75 -#: emailPremium/templates/emailPremium/emailPage.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:93 -#: filemanager/templates/filemanager/index.html:230 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#: websiteFunctions/templates/websiteFunctions/website.html:747 -#: websiteFunctions/templates/websiteFunctions/website.html:858 -msgid "Cancel" -msgstr "取消" - -#: backup/templates/backup/remoteBackups.html:72 -msgid "Could not connect, please refresh this page." -msgstr "无法连接, 请刷新此页面。" - -#: backup/templates/backup/remoteBackups.html:76 -msgid "Accounts Successfully Fetched from remote server." -msgstr "成功读取记录。" - -#: backup/templates/backup/remoteBackups.html:80 -msgid "Backup Process successfully started." -msgstr "备份进程已成功开始。" - -#: backup/templates/backup/remoteBackups.html:84 -msgid "Backup successfully cancelled." -msgstr "已成功添加。" - -#: backup/templates/backup/remoteBackups.html:107 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Website" -msgstr "网站" - -#: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:143 -#: baseTemplate/templates/baseTemplate/index.html:768 -#: baseTemplate/templates/baseTemplate/index.html:770 -#: managePHP/templates/managePHP/installExtensions.html:61 -msgid "PHP" -msgstr "PHP" - -#: backup/templates/backup/remoteBackups.html:109 -#: packages/templates/packages/createPackage.html:112 -#: packages/templates/packages/deletePackage.html:60 -#: packages/templates/packages/listPackages.html:33 -#: packages/templates/packages/modifyPackage.html:125 -msgid "Package" -msgstr "套餐" - -#: backup/templates/backup/remoteBackups.html:110 -#: baseTemplate/templates/baseTemplate/index.html:505 -#: baseTemplate/templates/baseTemplate/index.html:507 -#: mailServer/templates/mailServer/listEmails.html:101 -#: userManagment/templates/userManagment/createUser.html:45 -#: userManagment/templates/userManagment/modifyUser.html:54 -#: userManagment/templates/userManagment/userProfile.html:41 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 -msgid "Email" -msgstr "邮箱" - -#: backup/templates/backup/restore.html:3 -msgid "Restore Website - CyberPanel" -msgstr "还原网站 - Cyberpanel" - -#: backup/templates/backup/restore.html:14 -#: backup/templates/backup/restore.html:21 -msgid "Restore Website" -msgstr "还原网站" - -#: backup/templates/backup/restore.html:15 -msgid "" -"This page can be used to restore your websites, Back up should be generated " -"from CyberPanel Back up generation tool, it will detect all Back ups under " -"/home/backup." -msgstr "" -"在此页面可以从备份中还原网站, 备份文件应当由CyberPanel备份工具创建 并且会自动" -"检测所有在/home/backup的备份。" - -#: backup/templates/backup/restore.html:30 -msgid "Select Back up" -msgstr "选择备份" - -#: backup/templates/backup/restore.html:61 -msgid "Condition" -msgstr "条件" - -#: backup/templates/backup/restore.html:86 -#: databases/templates/databases/deleteDatabase.html:60 -#: databases/templates/databases/listDataBases.html:54 -#: dockerManager/templates/dockerManager/listContainers.html:57 -#: dockerManager/templates/dockerManager/runContainer.html:176 -#: emailMarketing/templates/emailMarketing/website.html:411 -#: emailMarketing/templates/emailMarketing/website.html:947 -#: firewall/templates/firewall/firewall.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:214 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 -#: websiteFunctions/templates/websiteFunctions/website.html:374 -#: websiteFunctions/templates/websiteFunctions/website.html:876 -msgid "Error message:" -msgstr "错误信息:" - -#: backup/templates/backup/restore.html:90 -msgid "Site related to this Back up already exists." -msgstr "此备份中的网站已存在。" - -#: baseTemplate/templates/baseTemplate/homePage.html:3 -msgid "Home - CyberPanel" -msgstr "主页 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/homePage.html:13 -msgid "Use the tabs to navigate through the control panel." -msgstr "通过标签页来浏览控制面板。" - -#: baseTemplate/templates/baseTemplate/homePage.html:29 -#: userManagment/templates/userManagment/index.html:13 -msgid "User Functions" -msgstr "用户功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:31 -#: baseTemplate/templates/baseTemplate/index.html:361 -#: baseTemplate/templates/baseTemplate/index.html:362 -#: baseTemplate/templates/baseTemplate/index.html:363 -msgid "Users" -msgstr "用户" - -#: baseTemplate/templates/baseTemplate/homePage.html:40 -#: websiteFunctions/templates/websiteFunctions/index.html:13 -msgid "Website Functions" -msgstr "网站功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:51 -msgid "Add/Modify Packages" -msgstr "创建/修改套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:53 -#: baseTemplate/templates/baseTemplate/index.html:283 -#: baseTemplate/templates/baseTemplate/index.html:427 -#: baseTemplate/templates/baseTemplate/index.html:429 -#: packages/templates/packages/index.html:13 -msgid "Packages" -msgstr "套餐" - -#: baseTemplate/templates/baseTemplate/homePage.html:62 -#: databases/templates/databases/index.html:12 -msgid "Database Functions" -msgstr "数据库功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:64 -#: baseTemplate/templates/baseTemplate/index.html:452 -#: baseTemplate/templates/baseTemplate/index.html:453 -#: baseTemplate/templates/baseTemplate/index.html:454 -#: emailMarketing/templates/emailMarketing/website.html:51 -#: packages/templates/packages/createPackage.html:69 -#: packages/templates/packages/listPackages.html:37 -#: packages/templates/packages/listPackages.html:134 -#: packages/templates/packages/modifyPackage.html:73 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 -#: websiteFunctions/templates/websiteFunctions/website.html:54 -msgid "Databases" -msgstr "数据库" - -#: baseTemplate/templates/baseTemplate/homePage.html:73 -msgid "Control DNS" -msgstr "控制DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:75 -#: baseTemplate/templates/baseTemplate/index.html:290 -#: baseTemplate/templates/baseTemplate/index.html:477 -#: baseTemplate/templates/baseTemplate/index.html:479 -msgid "DNS" -msgstr "DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:84 -#: ftp/templates/ftp/index.html:12 -msgid "FTP Functions" -msgstr "FTP功能" - -#: baseTemplate/templates/baseTemplate/homePage.html:86 -#: baseTemplate/templates/baseTemplate/index.html:297 -#: baseTemplate/templates/baseTemplate/index.html:539 -#: baseTemplate/templates/baseTemplate/index.html:541 -#: emailMarketing/templates/emailMarketing/website.html:46 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 -#: websiteFunctions/templates/websiteFunctions/website.html:49 -msgid "FTP" -msgstr "FTP" - -#: baseTemplate/templates/baseTemplate/homePage.html:106 -#: baseTemplate/templates/baseTemplate/homePage.html:108 -#: mailServer/templates/mailServer/listEmails.html:64 -#: packages/templates/packages/createPackage.html:77 -#: packages/templates/packages/listPackages.html:143 -#: packages/templates/packages/modifyPackage.html:80 -msgid "Emails" -msgstr "邮箱" - -#: baseTemplate/templates/baseTemplate/homePage.html:117 -#: baseTemplate/templates/baseTemplate/homePage.html:119 -#: baseTemplate/templates/baseTemplate/index.html:617 -#: baseTemplate/templates/baseTemplate/index.html:618 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 -msgid "SSL" -msgstr "SSL" - -#: baseTemplate/templates/baseTemplate/homePage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:743 -#: baseTemplate/templates/baseTemplate/index.html:745 -#: baseTemplate/templates/baseTemplate/index.html:787 -#: emailPremium/templates/emailPremium/policyServer.html:30 -#: serverStatus/templates/serverStatus/index.html:13 -msgid "Server Status" -msgstr "服务器状态" - -#: baseTemplate/templates/baseTemplate/homePage.html:141 -msgid "PHP Configurations" -msgstr "设置PHP参数" - -#: baseTemplate/templates/baseTemplate/homePage.html:152 -#: baseTemplate/templates/baseTemplate/homePage.html:154 -#: baseTemplate/templates/baseTemplate/index.html:789 -#: dockerManager/templates/dockerManager/viewContainer.html:174 -#: emailMarketing/templates/emailMarketing/website.html:117 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 -#: websiteFunctions/templates/websiteFunctions/website.html:106 -msgid "Logs" -msgstr "日志" - -#: baseTemplate/templates/baseTemplate/homePage.html:163 -#: baseTemplate/templates/baseTemplate/homePage.html:165 -#: baseTemplate/templates/baseTemplate/index.html:811 -#: baseTemplate/templates/baseTemplate/index.html:813 -msgid "Security" -msgstr "安全" - -#: baseTemplate/templates/baseTemplate/homePage.html:188 -msgid "Resources" -msgstr "资源" - -#: baseTemplate/templates/baseTemplate/homePage.html:197 -#: baseTemplate/templates/baseTemplate/index.html:139 -#: dockerManager/templates/dockerManager/viewContainer.html:48 -msgid "CPU Usage" -msgstr "CPU使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:218 -#: baseTemplate/templates/baseTemplate/index.html:150 -msgid "Ram Usage" -msgstr "内存使用量" - -#: baseTemplate/templates/baseTemplate/homePage.html:239 -msgid "Disk Usage '/'" -msgstr "硬盘使用量 '/'" - -#: baseTemplate/templates/baseTemplate/index.html:159 -#: emailMarketing/templates/emailMarketing/website.html:58 -#: emailMarketing/templates/emailMarketing/website.html:78 -#: userManagment/templates/userManagment/listUsers.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 -#: websiteFunctions/templates/websiteFunctions/website.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:77 -msgid "Disk Usage" -msgstr "硬盘使用量" - -#: baseTemplate/templates/baseTemplate/index.html:192 -#: baseTemplate/templates/baseTemplate/index.html:195 -#: baseTemplate/templates/baseTemplate/index.html:199 -msgid "CyberPanel" -msgstr "CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:197 -#: baseTemplate/templates/baseTemplate/index.html:201 -msgid "Web Hosting Control Panel" -msgstr "Web主机控制面板" - -#: baseTemplate/templates/baseTemplate/index.html:203 -msgid "Close sidebar" -msgstr "关闭侧边栏" - -#: baseTemplate/templates/baseTemplate/index.html:209 -msgid "My Account" -msgstr "我的账号" - -#: baseTemplate/templates/baseTemplate/index.html:228 -msgid "Edit profile" -msgstr "编辑资料" - -#: baseTemplate/templates/baseTemplate/index.html:230 -#: baseTemplate/templates/baseTemplate/index.html:369 -#: userManagment/templates/userManagment/index.html:24 -#: userManagment/templates/userManagment/index.html:27 -msgid "View Profile" -msgstr "查看资料" - -#: baseTemplate/templates/baseTemplate/index.html:237 -#: baseTemplate/templates/baseTemplate/index.html:319 -msgid "Logout" -msgstr "登出" - -#: baseTemplate/templates/baseTemplate/index.html:249 -#: baseTemplate/templates/baseTemplate/index.html:254 -#: baseTemplate/templates/baseTemplate/index.html:259 -msgid "CPU Load Average" -msgstr "CPU平均负载" - -#: baseTemplate/templates/baseTemplate/index.html:265 -msgid "Dashboard Quick Menu" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:304 -#: baseTemplate/templates/baseTemplate/index.html:725 -#: baseTemplate/templates/baseTemplate/index.html:727 -msgid "Tuning" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:332 -msgid "Overview" -msgstr "概览" - -#: baseTemplate/templates/baseTemplate/index.html:334 -#: baseTemplate/templates/baseTemplate/index.html:335 -msgid "Server IP Address" -msgstr "服务器IP地址" - -#: baseTemplate/templates/baseTemplate/index.html:339 -#: baseTemplate/templates/baseTemplate/index.html:341 -msgid "Dashboard" -msgstr "仪表盘" - -#: baseTemplate/templates/baseTemplate/index.html:344 -#: baseTemplate/templates/baseTemplate/index.html:346 -#: baseTemplate/templates/baseTemplate/index.html:348 -#: baseTemplate/templates/baseTemplate/versionManagment.html:10 -#: userManagment/templates/userManagment/createACL.html:47 -#: userManagment/templates/userManagment/createACL.html:52 -#: userManagment/templates/userManagment/modifyACL.html:51 -#: userManagment/templates/userManagment/modifyACL.html:56 -msgid "Version Management" -msgstr "版本管理" - -#: baseTemplate/templates/baseTemplate/index.html:351 -#: baseTemplate/templates/baseTemplate/index.html:352 -#: baseTemplate/templates/baseTemplate/index.html:354 -msgid "Connect" -msgstr "连接" - -#: baseTemplate/templates/baseTemplate/index.html:358 -msgid "Main" -msgstr "主要功能" - -#: baseTemplate/templates/baseTemplate/index.html:372 -#: userManagment/templates/userManagment/createACL.html:64 -#: userManagment/templates/userManagment/createUser.html:12 -#: userManagment/templates/userManagment/modifyACL.html:68 -msgid "Create New User" -msgstr "创建新用户" - -#: baseTemplate/templates/baseTemplate/index.html:375 -#: userManagment/templates/userManagment/createACL.html:73 -#: userManagment/templates/userManagment/index.html:36 -#: userManagment/templates/userManagment/index.html:39 -#: userManagment/templates/userManagment/listUsers.html:13 -#: userManagment/templates/userManagment/listUsers.html:19 -#: userManagment/templates/userManagment/modifyACL.html:77 -msgid "List Users" -msgstr "列出用户" - -#: baseTemplate/templates/baseTemplate/index.html:378 -#: userManagment/templates/userManagment/index.html:61 -#: userManagment/templates/userManagment/index.html:64 -#: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:102 -msgid "Modify User" -msgstr "修改用户" - -#: baseTemplate/templates/baseTemplate/index.html:380 -#: userManagment/templates/userManagment/createACL.html:82 -#: userManagment/templates/userManagment/modifyACL.html:86 -#: userManagment/templates/userManagment/resellerCenter.html:12 -#: userManagment/templates/userManagment/resellerCenter.html:19 -msgid "Reseller Center" -msgstr "分销商中心" - -#: baseTemplate/templates/baseTemplate/index.html:383 -#: userManagment/templates/userManagment/createACL.html:12 -msgid "Create New ACL" -msgstr "创建新访问控制策略" - -#: baseTemplate/templates/baseTemplate/index.html:386 -#: userManagment/templates/userManagment/deleteACL.html:12 -#: userManagment/templates/userManagment/deleteACL.html:40 -msgid "Delete ACL" -msgstr "删除 ACL" - -#: baseTemplate/templates/baseTemplate/index.html:389 -msgid "Modify ACL" -msgstr "修改访问控制策略" - -#: baseTemplate/templates/baseTemplate/index.html:392 -#: userManagment/templates/userManagment/apiAccess.html:13 -#: userManagment/templates/userManagment/apiAccess.html:20 -msgid "API Access" -msgstr "API 权限" - -#: baseTemplate/templates/baseTemplate/index.html:408 -#: userManagment/templates/userManagment/createACL.html:112 -#: userManagment/templates/userManagment/modifyACL.html:116 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 -#: websiteFunctions/templates/websiteFunctions/index.html:43 -#: websiteFunctions/templates/websiteFunctions/index.html:45 -msgid "Create Website" -msgstr "创建网站" - -#: baseTemplate/templates/baseTemplate/index.html:414 -#: userManagment/templates/userManagment/createACL.html:121 -#: userManagment/templates/userManagment/modifyACL.html:125 -#: websiteFunctions/templates/websiteFunctions/index.html:67 -#: websiteFunctions/templates/websiteFunctions/index.html:69 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 -msgid "Modify Website" -msgstr "修改网站" - -#: baseTemplate/templates/baseTemplate/index.html:417 -#: websiteFunctions/templates/websiteFunctions/index.html:81 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 -msgid "Suspend/Unsuspend" -msgstr "禁用/启用" - -#: baseTemplate/templates/baseTemplate/index.html:420 -#: userManagment/templates/userManagment/createACL.html:139 -#: userManagment/templates/userManagment/deleteACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:143 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 -#: websiteFunctions/templates/websiteFunctions/index.html:90 -#: websiteFunctions/templates/websiteFunctions/index.html:92 -msgid "Delete Website" -msgstr "删除网站" - -#: baseTemplate/templates/baseTemplate/index.html:438 -#: baseTemplate/templates/baseTemplate/index.html:671 -#: packages/templates/packages/listPackages.html:13 -#: packages/templates/packages/listPackages.html:19 -#: userManagment/templates/userManagment/createACL.html:161 -#: userManagment/templates/userManagment/modifyACL.html:165 -msgid "List Packages" -msgstr "套餐列表" - -#: baseTemplate/templates/baseTemplate/index.html:441 -#: packages/templates/packages/deletePackage.html:12 -#: packages/templates/packages/deletePackage.html:18 -#: packages/templates/packages/deletePackage.html:39 -#: packages/templates/packages/index.html:38 -#: packages/templates/packages/index.html:41 -#: userManagment/templates/userManagment/createACL.html:170 -#: userManagment/templates/userManagment/modifyACL.html:174 -msgid "Delete Package" -msgstr "删除套餐" - -#: baseTemplate/templates/baseTemplate/index.html:444 -#: packages/templates/packages/index.html:51 -#: packages/templates/packages/index.html:54 -#: packages/templates/packages/modifyPackage.html:9 -#: packages/templates/packages/modifyPackage.html:15 -#: packages/templates/packages/modifyPackage.html:108 -#: userManagment/templates/userManagment/createACL.html:179 -#: userManagment/templates/userManagment/modifyACL.html:183 -msgid "Modify Package" -msgstr "修改套餐" - -#: baseTemplate/templates/baseTemplate/index.html:460 -#: databases/templates/databases/createDatabase.html:12 -#: databases/templates/databases/createDatabase.html:19 -#: databases/templates/databases/createDatabase.html:79 -#: databases/templates/databases/index.html:25 -#: databases/templates/databases/index.html:27 -#: databases/templates/databases/phpMyAdmin.html:12 -#: databases/templates/databases/phpMyAdmin.html:19 -#: userManagment/templates/userManagment/createACL.html:191 -#: userManagment/templates/userManagment/modifyACL.html:195 -msgid "Create Database" -msgstr "创建数据库" - -#: baseTemplate/templates/baseTemplate/index.html:463 -#: databases/templates/databases/deleteDatabase.html:12 -#: databases/templates/databases/deleteDatabase.html:19 -#: databases/templates/databases/deleteDatabase.html:51 -#: databases/templates/databases/index.html:37 -#: databases/templates/databases/index.html:39 -#: userManagment/templates/userManagment/createACL.html:200 -#: userManagment/templates/userManagment/modifyACL.html:204 -msgid "Delete Database" -msgstr "删除数据库" - -#: baseTemplate/templates/baseTemplate/index.html:466 -#: databases/templates/databases/index.html:48 -#: databases/templates/databases/index.html:50 -#: databases/templates/databases/listDataBases.html:13 -#: databases/templates/databases/listDataBases.html:19 -#: userManagment/templates/userManagment/createACL.html:209 -#: userManagment/templates/userManagment/modifyACL.html:213 -msgid "List Databases" -msgstr "查看数据库" - -#: baseTemplate/templates/baseTemplate/index.html:468 -#: baseTemplate/templates/baseTemplate/index.html:469 -#: databases/templates/databases/index.html:59 -#: databases/templates/databases/index.html:61 -msgid "PHPMYAdmin" -msgstr "PHPMYADMIN" - -#: baseTemplate/templates/baseTemplate/index.html:485 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 -#: dns/templates/dns/index.html:74 -#: userManagment/templates/userManagment/createACL.html:221 -#: userManagment/templates/userManagment/modifyACL.html:225 -msgid "Create Nameserver" -msgstr "创建名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:488 -msgid "Configure Default Nameservers" -msgstr "创建默认名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:488 -msgid "Config Default Nameservers" -msgstr "设置默认名称服务器(NS)" - -#: baseTemplate/templates/baseTemplate/index.html:491 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 -#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 -#: dns/templates/dns/index.html:86 -msgid "Create DNS Zone" -msgstr "创建DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:494 -#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 -#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 -#: dns/templates/dns/index.html:98 -#: userManagment/templates/userManagment/createACL.html:239 -#: userManagment/templates/userManagment/modifyACL.html:243 -msgid "Delete Zone" -msgstr "删除DNS区域" - -#: baseTemplate/templates/baseTemplate/index.html:497 -msgid "Add/Delete Records" -msgstr "添加/删除记录" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:12 -#: mailServer/templates/mailServer/createEmailAccount.html:19 -msgid "Create Email Account" -msgstr "创建邮箱用户" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:98 -#: mailServer/templates/mailServer/index.html:25 -#: mailServer/templates/mailServer/index.html:28 -#: userManagment/templates/userManagment/createACL.html:262 -#: userManagment/templates/userManagment/modifyACL.html:266 -msgid "Create Email" -msgstr "创建邮箱" - -#: baseTemplate/templates/baseTemplate/index.html:516 -#: userManagment/templates/userManagment/createACL.html:271 -#: userManagment/templates/userManagment/modifyACL.html:275 -msgid "List Emails" -msgstr "邮箱列表" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:12 -#: mailServer/templates/mailServer/deleteEmailAccount.html:19 -msgid "Delete Email Account" -msgstr "删除邮箱用户" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:73 -#: mailServer/templates/mailServer/index.html:38 -#: mailServer/templates/mailServer/index.html:41 -#: userManagment/templates/userManagment/createACL.html:280 -#: userManagment/templates/userManagment/modifyACL.html:284 -msgid "Delete Email" -msgstr "删除邮箱" - -#: baseTemplate/templates/baseTemplate/index.html:522 -#: userManagment/templates/userManagment/createACL.html:289 -#: userManagment/templates/userManagment/modifyACL.html:293 -msgid "Email Forwarding" -msgstr "邮件转发" - -#: baseTemplate/templates/baseTemplate/index.html:525 -#: databases/templates/databases/listDataBases.html:90 -#: ftp/templates/ftp/listFTPAccounts.html:108 -#: mailServer/templates/mailServer/changeEmailPassword.html:97 -#: mailServer/templates/mailServer/index.html:51 -#: mailServer/templates/mailServer/index.html:54 -#: mailServer/templates/mailServer/listEmails.html:76 -msgid "Change Password" -msgstr "修改邮箱" - -#: baseTemplate/templates/baseTemplate/index.html:528 -#: mailServer/templates/mailServer/dkimManager.html:13 -#: mailServer/templates/mailServer/dkimManager.html:22 -#: mailServer/templates/mailServer/dkimManager.html:75 -#: userManagment/templates/userManagment/createACL.html:309 -#: userManagment/templates/userManagment/modifyACL.html:313 -msgid "DKIM Manager" -msgstr "DKIM管理" - -#: baseTemplate/templates/baseTemplate/index.html:530 -#: baseTemplate/templates/baseTemplate/index.html:531 -msgid "Access Webmail" -msgstr "进入Webmail" - -#: baseTemplate/templates/baseTemplate/index.html:547 -#: emailMarketing/templates/emailMarketing/website.html:886 -#: emailMarketing/templates/emailMarketing/website.html:889 -#: ftp/templates/ftp/createFTPAccount.html:12 -#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 -#: ftp/templates/ftp/index.html:26 -#: userManagment/templates/userManagment/createACL.html:322 -#: userManagment/templates/userManagment/modifyACL.html:326 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 -#: websiteFunctions/templates/websiteFunctions/website.html:821 -#: websiteFunctions/templates/websiteFunctions/website.html:824 -msgid "Create FTP Account" -msgstr "创建FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:550 -#: emailMarketing/templates/emailMarketing/website.html:898 -#: emailMarketing/templates/emailMarketing/website.html:901 -#: ftp/templates/ftp/deleteFTPAccount.html:12 -#: ftp/templates/ftp/deleteFTPAccount.html:18 -#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 -#: ftp/templates/ftp/index.html:37 -#: userManagment/templates/userManagment/createACL.html:331 -#: userManagment/templates/userManagment/modifyACL.html:335 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 -#: websiteFunctions/templates/websiteFunctions/website.html:830 -#: websiteFunctions/templates/websiteFunctions/website.html:833 -msgid "Delete FTP Account" -msgstr "删除FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:553 -#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 -#: ftp/templates/ftp/listFTPAccounts.html:13 -#: ftp/templates/ftp/listFTPAccounts.html:19 -#: userManagment/templates/userManagment/createACL.html:340 -#: userManagment/templates/userManagment/modifyACL.html:344 -msgid "List FTP Accounts" -msgstr "查看FTP用户" - -#: baseTemplate/templates/baseTemplate/index.html:575 -#: userManagment/templates/userManagment/createACL.html:370 -#: userManagment/templates/userManagment/modifyACL.html:374 -msgid "Add/Delete Destination" -msgstr "添加/删除远程目录" - -#: baseTemplate/templates/baseTemplate/index.html:590 -msgid "Incremental Back up - Beta" -msgstr "增量备份 - Beta" - -#: baseTemplate/templates/baseTemplate/index.html:592 -msgid "Incremental Back up" -msgstr "增量式备份" - -#: baseTemplate/templates/baseTemplate/index.html:598 -msgid "Create/Restore Back up" -msgstr "创建/恢复备份" - -#: baseTemplate/templates/baseTemplate/index.html:601 -msgid "Add/Remove Destinations" -msgstr "添加/删除远程目标" - -#: baseTemplate/templates/baseTemplate/index.html:604 -msgid "Schedule Back ups" -msgstr "计划备份" - -#: baseTemplate/templates/baseTemplate/index.html:607 -msgid "Restore from Remote Server" -msgstr "从远程服务器恢复" - -#: baseTemplate/templates/baseTemplate/index.html:607 -msgid "Restore from Remote" -msgstr "从远程恢复" - -#: baseTemplate/templates/baseTemplate/index.html:624 -#: manageSSL/templates/manageSSL/index.html:29 -#: manageSSL/templates/manageSSL/index.html:31 -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/manageSSL.html:20 -#: userManagment/templates/userManagment/createACL.html:404 -#: userManagment/templates/userManagment/modifyACL.html:408 -msgid "Manage SSL" -msgstr "管理SSL" - -#: baseTemplate/templates/baseTemplate/index.html:627 -#: manageSSL/templates/manageSSL/index.html:45 -#: manageSSL/templates/manageSSL/index.html:47 -#: userManagment/templates/userManagment/createACL.html:413 -#: userManagment/templates/userManagment/modifyACL.html:417 -msgid "Hostname SSL" -msgstr "主机名SSL" - -#: baseTemplate/templates/baseTemplate/index.html:630 -#: manageSSL/templates/manageSSL/index.html:60 -#: manageSSL/templates/manageSSL/index.html:62 -#: userManagment/templates/userManagment/createACL.html:422 -#: userManagment/templates/userManagment/modifyACL.html:426 -msgid "MailServer SSL" -msgstr "邮件服务器SSL" - -#: baseTemplate/templates/baseTemplate/index.html:637 -msgid "Server" -msgstr "服务器设置" - -#: baseTemplate/templates/baseTemplate/index.html:644 -#: baseTemplate/templates/baseTemplate/index.html:660 -#: baseTemplate/templates/baseTemplate/index.html:688 -#: baseTemplate/templates/baseTemplate/index.html:705 -#: baseTemplate/templates/baseTemplate/index.html:846 -msgid "NEW" -msgstr "新功能" - -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Web Based Terminal" -msgstr "网络终端" - -#: baseTemplate/templates/baseTemplate/index.html:657 -#: baseTemplate/templates/baseTemplate/index.html:659 -msgid "CloudLinux" -msgstr "CloudLinux" - -#: baseTemplate/templates/baseTemplate/index.html:666 -msgid "Create Cloud Linux Package" -msgstr "创建Cloud Linux 包" - -#: baseTemplate/templates/baseTemplate/index.html:671 -msgid "List Cloud Linux Package" -msgstr "列出套餐" - -#: baseTemplate/templates/baseTemplate/index.html:676 -msgid "Monitor Usage of your Websites" -msgstr "监控您的网站使用情况" - -#: baseTemplate/templates/baseTemplate/index.html:676 -msgid "Monitor Usage" -msgstr "监测使用情况" - -#: baseTemplate/templates/baseTemplate/index.html:685 -#: baseTemplate/templates/baseTemplate/index.html:687 -msgid "Containerization" -msgstr "容器化技术" - -#: baseTemplate/templates/baseTemplate/index.html:694 -msgid "Create Website Limits" -msgstr "创建网站限制" - -#: baseTemplate/templates/baseTemplate/index.html:694 -msgid "Create Limits" -msgstr "创建限制" - -#: baseTemplate/templates/baseTemplate/index.html:702 -msgid "Docker" -msgstr "Docker" - -#: baseTemplate/templates/baseTemplate/index.html:704 -msgid "Docker Manager" -msgstr "Docker 管理器" - -#: baseTemplate/templates/baseTemplate/index.html:711 -msgid "Manage Docker Images" -msgstr "管理Docker 镜像" - -#: baseTemplate/templates/baseTemplate/index.html:711 -#: dockerManager/templates/dockerManager/index.html:49 -#: dockerManager/templates/dockerManager/index.html:51 -#: dockerManager/templates/dockerManager/manageImages.html:14 -msgid "Manage Images" -msgstr "管理映像" - -#: baseTemplate/templates/baseTemplate/index.html:714 -msgid "Manage Docker Containers" -msgstr "管理Docker容器" - -#: baseTemplate/templates/baseTemplate/index.html:714 -#: dockerManager/templates/dockerManager/index.html:29 -#: dockerManager/templates/dockerManager/index.html:31 -msgid "Manage Containers" -msgstr "管理容器" - -#: baseTemplate/templates/baseTemplate/index.html:717 -msgid "Create New Docker Container" -msgstr "创建新的Docker容器" - -#: baseTemplate/templates/baseTemplate/index.html:717 -msgid "Create New Container" -msgstr "创建新容器" - -#: baseTemplate/templates/baseTemplate/index.html:733 -#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 -#: tuning/templates/tuning/liteSpeedTuning.html:12 -msgid "LiteSpeed Tuning" -msgstr "LiteSpeed设置" - -#: baseTemplate/templates/baseTemplate/index.html:736 -#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 -#: tuning/templates/tuning/phpTuning.html:13 -#: tuning/templates/tuning/phpTuning.html:149 -msgid "PHP Tuning" -msgstr "PHP设置" - -#: baseTemplate/templates/baseTemplate/index.html:751 -#: serverStatus/templates/serverStatus/topProcesses.html:14 -#: serverStatus/templates/serverStatus/topProcesses.html:179 -msgid "Top Processes" -msgstr "顶级进程" - -#: baseTemplate/templates/baseTemplate/index.html:754 -#: serverStatus/templates/serverStatus/index.html:25 -#: serverStatus/templates/serverStatus/index.html:28 -msgid "LiteSpeed Status" -msgstr "LiteSpeed状态" - -#: baseTemplate/templates/baseTemplate/index.html:757 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 -#: serverStatus/templates/serverStatus/index.html:38 -msgid "CyberPanel Main Log File" -msgstr "Cybapenl主日志" - -#: baseTemplate/templates/baseTemplate/index.html:760 -msgid "Services Status" -msgstr "服务状态" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/installExtensions.html:13 -msgid "Install PHP Extensions" -msgstr "安装PHP扩展" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/index.html:24 -#: managePHP/templates/managePHP/index.html:26 -msgid "Install Extensions" -msgstr "安装扩展" - -#: baseTemplate/templates/baseTemplate/index.html:779 -#: managePHP/templates/managePHP/index.html:35 -#: managePHP/templates/managePHP/index.html:37 -msgid "Edit PHP Configs" -msgstr "编辑PHP配置" - -#: baseTemplate/templates/baseTemplate/index.html:795 -msgid "Access Log" -msgstr "访问日志" - -#: baseTemplate/templates/baseTemplate/index.html:797 -#: emailMarketing/templates/emailMarketing/website.html:139 -#: serverLogs/templates/serverLogs/errorLogs.html:13 -#: serverLogs/templates/serverLogs/index.html:37 -#: serverLogs/templates/serverLogs/index.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Error Logs" -msgstr "错误日志" - -#: baseTemplate/templates/baseTemplate/index.html:799 -#: emailPremium/templates/emailPremium/emailPage.html:144 -#: serverLogs/templates/serverLogs/emailLogs.html:14 -#: serverLogs/templates/serverLogs/index.html:49 -#: serverLogs/templates/serverLogs/index.html:52 -msgid "Email Logs" -msgstr "邮箱日志" - -#: baseTemplate/templates/baseTemplate/index.html:799 -msgid "Email Log" -msgstr "邮箱日志" - -#: baseTemplate/templates/baseTemplate/index.html:801 -#: serverLogs/templates/serverLogs/ftplogs.html:13 -#: serverLogs/templates/serverLogs/index.html:61 -#: serverLogs/templates/serverLogs/index.html:64 -msgid "FTP Logs" -msgstr "FTP日志" - -#: baseTemplate/templates/baseTemplate/index.html:803 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 -msgid "ModSecurity Audit Logs" -msgstr "ModSecurity审计日志" - -#: baseTemplate/templates/baseTemplate/index.html:803 -msgid "ModSec Audit Logs" -msgstr "ModSecurity 审查日志" - -#: baseTemplate/templates/baseTemplate/index.html:819 -msgid "Firewall Home" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:819 -#: firewall/templates/firewall/csf.html:119 -#: firewall/templates/firewall/index.html:25 -#: firewall/templates/firewall/index.html:27 -msgid "Firewall" -msgstr "防火墙" - -#: baseTemplate/templates/baseTemplate/index.html:821 -#: firewall/templates/firewall/index.html:36 -#: firewall/templates/firewall/index.html:38 -#: firewall/templates/firewall/secureSSH.html:13 -#: firewall/templates/firewall/secureSSH.html:20 -msgid "Secure SSH" -msgstr "SSH加固" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:58 -msgid "ModSecurity Configurations" -msgstr "ModSecurity 设置" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:60 -msgid "ModSecurity Conf" -msgstr "ModSecurity 设置" - -#: baseTemplate/templates/baseTemplate/index.html:826 -#: firewall/templates/firewall/index.html:69 -#: firewall/templates/firewall/index.html:71 -#: firewall/templates/firewall/modSecurityRules.html:20 -msgid "ModSecurity Rules" -msgstr "ModSecurity 规则" - -#: baseTemplate/templates/baseTemplate/index.html:829 -#: firewall/templates/firewall/index.html:80 -#: firewall/templates/firewall/index.html:82 -msgid "ModSecurity Rules Packs" -msgstr "ModSecurity 规则包" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/index.html:47 -msgid "ConfigServer Security & Firewall (CSF)" -msgstr "配置服务器安全和防火墙(CSF)" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/csf.html:21 -#: firewall/templates/firewall/csf.html:86 -#: firewall/templates/firewall/csf.html:95 -#: firewall/templates/firewall/index.html:49 -msgid "CSF" -msgstr "CSF" - -#: baseTemplate/templates/baseTemplate/index.html:835 -msgid "CageFS Configurations" -msgstr "CageFS 配置" - -#: baseTemplate/templates/baseTemplate/index.html:835 -msgid "CageFS" -msgstr "CageFS" - -#: baseTemplate/templates/baseTemplate/index.html:843 -#: baseTemplate/templates/baseTemplate/index.html:845 -msgid "Mail Settings" -msgstr "邮件设置" - -#: baseTemplate/templates/baseTemplate/index.html:852 -#: emailPremium/templates/emailPremium/policyServer.html:20 -msgid "Email Policy Server" -msgstr "邮箱策略服务器" - -#: baseTemplate/templates/baseTemplate/index.html:855 -msgid "Email Limits" -msgstr "邮箱限制" - -#: baseTemplate/templates/baseTemplate/index.html:858 -msgid "SpamAssassin Configurations" -msgstr "SpamAssassin 设置" - -#: baseTemplate/templates/baseTemplate/index.html:858 -#: emailPremium/templates/emailPremium/SpamAssassin.html:25 -#: firewall/templates/firewall/spamassassin.html:20 -msgid "SpamAssassin" -msgstr "SpamAssassin垃圾邮件过滤" - -#: baseTemplate/templates/baseTemplate/index.html:861 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 -#: emailMarketing/templates/emailMarketing/website.html:978 -#: websiteFunctions/templates/websiteFunctions/website.html:909 -msgid "Email Marketing" -msgstr "邮箱营销" - -#: baseTemplate/templates/baseTemplate/index.html:869 -#: baseTemplate/templates/baseTemplate/index.html:871 -msgid "Manage Services" -msgstr "管理服务" - -#: baseTemplate/templates/baseTemplate/index.html:877 -#: manageServices/templates/manageServices/managePowerDNS.html:25 -msgid "Manage PowerDNS" -msgstr "管理 PowerDNS" - -#: baseTemplate/templates/baseTemplate/index.html:880 -#: manageServices/templates/manageServices/managePostfix.html:22 -msgid "Manage Postfix" -msgstr "管理Postfix" - -#: baseTemplate/templates/baseTemplate/index.html:883 -msgid "Manage FTP" -msgstr "管理FTP" - -#: baseTemplate/templates/baseTemplate/index.html:890 -#: baseTemplate/templates/baseTemplate/index.html:892 -#: pluginHolder/templates/pluginHolder/plugins.html:14 -#: pluginHolder/templates/pluginHolder/plugins.html:21 -msgid "Plugins" -msgstr "扩展" - -#: baseTemplate/templates/baseTemplate/index.html:898 -msgid "Installed Plugins" -msgstr "安装插件" - -#: baseTemplate/templates/baseTemplate/index.html:898 -msgid "Installed" -msgstr "已安装" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:3 -msgid "Version Management - CyberPanel" -msgstr "版本管理 - Cyberpanel" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:11 -msgid "" -"On this page you can manage versions and or upgrade to latest version of " -"CyberPanel" -msgstr "此页面可以查看并更新至CyberPanel最新版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:25 -msgid "Current Version" -msgstr "当前版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:33 -msgid "Build" -msgstr "编译" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:42 -msgid "Latest Version" -msgstr "最新版本" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:50 -msgid "Latest Build" -msgstr "最新编译" - -#: containerization/templates/containerization/listWebsites.html:3 -msgid "Limits - CyberPanel" -msgstr "限制 - Cyberpanel" - -#: containerization/templates/containerization/listWebsites.html:15 -msgid "Launch and set limits for the websites." -msgstr "启动并设置网站限制。" - -#: containerization/templates/containerization/notAvailable.html:14 -msgid "CyberPanel Ent is required for Containerization." -msgstr "容器化需要CyberPanel Ent。" - -#: containerization/templates/containerization/notAvailable.html:22 -msgid "Containerization is only available on CyberPanel Ent. " -msgstr "容器化仅在CyberPanel企业版上可用。" - -#: containerization/templates/containerization/notAvailable.html:39 -msgid "" -"Required packages are not installed on this server. Please proceed to " -"installation." -msgstr "此服务器上未安装所需的包。请继续以安装。" - -#: containerization/templates/containerization/websiteContainerLimit.html:3 -msgid " limits - CyberPanel" -msgstr " 限制 - Cyberpanel" - -#: containerization/templates/containerization/websiteContainerLimit.html:14 -msgid "Limits/Usage" -msgstr "限制/使用量" - -#: containerization/templates/containerization/websiteContainerLimit.html:16 -msgid "Set limits and view usage for " -msgstr "设置限制并查看使用情况 " - -#: containerization/templates/containerization/websiteContainerLimit.html:25 -msgid "" -"Limits are not being inforced, click Edit Limits to inforace the limits." -msgstr "限制并未强制使用,请单击 编辑限制 来进行管理。" - -#: containerization/templates/containerization/websiteContainerLimit.html:33 -msgid "Limit" -msgstr "限制" - -#: containerization/templates/containerization/websiteContainerLimit.html:34 -#: dns/templates/dns/addDeleteDNSRecords.html:330 -msgid "Value" -msgstr "内容" - -#: containerization/templates/containerization/websiteContainerLimit.html:40 -#: containerization/templates/containerization/websiteContainerLimit.html:77 -msgid "CPU Percentage" -msgstr "CPU百分比" - -#: containerization/templates/containerization/websiteContainerLimit.html:44 -#: serverStatus/templates/serverStatus/topProcesses.html:131 -msgid "Memory" -msgstr "内存" - -#: containerization/templates/containerization/websiteContainerLimit.html:48 -#: containerization/templates/containerization/websiteContainerLimit.html:91 -msgid "I/O" -msgstr "I/O" - -#: containerization/templates/containerization/websiteContainerLimit.html:56 -#: containerization/templates/containerization/websiteContainerLimit.html:107 -msgid "Network Speed" -msgstr "网络速度" - -#: containerization/templates/containerization/websiteContainerLimit.html:84 -msgid "Memory Limit" -msgstr "内存限制" - -#: databases/templates/databases/createDatabase.html:3 -msgid "Create New Database - CyberPanel" -msgstr "创建数据库 - CyberPanel" - -#: databases/templates/databases/createDatabase.html:13 -#: databases/templates/databases/phpMyAdmin.html:13 -msgid "Create a new database on this page." -msgstr "在此页面新建数据库。" - -#: databases/templates/databases/createDatabase.html:40 -#: databases/templates/databases/listDataBases.html:105 -msgid "Database Name" -msgstr "数据库名字" - -#: databases/templates/databases/createDatabase.html:48 -#: firewall/templates/firewall/secureSSH.html:120 -#: ftp/templates/ftp/createFTPAccount.html:57 -#: ftp/templates/ftp/listFTPAccounts.html:123 -#: mailServer/templates/mailServer/createEmailAccount.html:59 -msgid "User Name" -msgstr "用户名" - -#: databases/templates/databases/createDatabase.html:61 -#: databases/templates/databases/listDataBases.html:74 -#: ftp/templates/ftp/createFTPAccount.html:73 -#: ftp/templates/ftp/listFTPAccounts.html:92 -#: mailServer/templates/mailServer/changeEmailPassword.html:74 -#: mailServer/templates/mailServer/createEmailAccount.html:74 -#: userManagment/templates/userManagment/createUser.html:90 -#: userManagment/templates/userManagment/modifyUser.html:68 -msgid "Generate" -msgstr "生成" - -#: databases/templates/databases/createDatabase.html:66 -#: databases/templates/databases/listDataBases.html:77 -#: ftp/templates/ftp/createFTPAccount.html:78 -#: ftp/templates/ftp/listFTPAccounts.html:96 -#: mailServer/templates/mailServer/changeEmailPassword.html:79 -#: mailServer/templates/mailServer/createEmailAccount.html:79 -#: userManagment/templates/userManagment/createUser.html:95 -#: userManagment/templates/userManagment/modifyUser.html:73 -msgid "Generated Password" -msgstr "生成的密码" - -#: databases/templates/databases/createDatabase.html:71 -#: databases/templates/databases/listDataBases.html:84 -#: ftp/templates/ftp/createFTPAccount.html:85 -#: ftp/templates/ftp/listFTPAccounts.html:103 -#: mailServer/templates/mailServer/changeEmailPassword.html:86 -#: mailServer/templates/mailServer/createEmailAccount.html:86 -#: userManagment/templates/userManagment/createUser.html:101 -#: userManagment/templates/userManagment/modifyUser.html:79 -msgid "Use" -msgstr "使用" - -#: databases/templates/databases/createDatabase.html:89 -#: databases/templates/databases/phpMyAdmin.html:41 -msgid "Cannot create database. Error message:" -msgstr "无法创建数据库, 错误提示:" - -#: databases/templates/databases/createDatabase.html:93 -#: databases/templates/databases/phpMyAdmin.html:45 -msgid "Database created successfully." -msgstr "成功创建数据库。" - -#: databases/templates/databases/deleteDatabase.html:3 -msgid "Delete Database - CyberPanel" -msgstr "删除数据库 - CyberPanel" - -#: databases/templates/databases/deleteDatabase.html:13 -msgid "Delete an existing database on this page." -msgstr "在此页面删除已有数据库。" - -#: databases/templates/databases/deleteDatabase.html:38 -msgid "Select Database" -msgstr "选择数据库" - -#: databases/templates/databases/deleteDatabase.html:64 -msgid "Database deleted successfully." -msgstr "成功删除数据库。" - -#: databases/templates/databases/index.html:3 -msgid "Database Functions - CyberPanel" -msgstr "数据库功能 - CyberPanel" - -#: databases/templates/databases/index.html:13 -msgid "Create, edit and delete databases on this page." -msgstr "在此页面创建, 编辑和删除数据库。" - -#: databases/templates/databases/listDataBases.html:3 -msgid "List Databases - CyberPanel" -msgstr "查看数据库 - CyberPanel" - -#: databases/templates/databases/listDataBases.html:14 -msgid "List Databases or change their passwords." -msgstr "查看数据库或修改密码。" - -#: databases/templates/databases/listDataBases.html:26 -#: dns/templates/dns/addDeleteDNSRecords.html:42 -#: ftp/templates/ftp/deleteFTPAccount.html:39 -#: ftp/templates/ftp/listFTPAccounts.html:42 -#: mailServer/templates/mailServer/listEmails.html:43 -#: tuning/templates/tuning/phpTuning.html:30 -msgid "Select Domain" -msgstr "选择域名" - -#: databases/templates/databases/listDataBases.html:44 -#: dns/templates/dns/addDeleteDNSRecords.html:367 -#: ftp/templates/ftp/listFTPAccounts.html:61 -msgid "Records successfully fetched for" -msgstr "成功读取记录" - -#: databases/templates/databases/listDataBases.html:49 -msgid "Password changed for: " -msgstr "已为修改密码 " - -#: databases/templates/databases/listDataBases.html:53 -msgid "Cannot change password for " -msgstr "无法为修改密码 " - -#: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:161 -#: ftp/templates/ftp/listFTPAccounts.html:76 -msgid "Could Not Connect to server. Please refresh this page" -msgstr "无法连接到服务器, 请刷新此页面" - -#: databases/templates/databases/listDataBases.html:106 -msgid "Database User" -msgstr "数据库用户" - -#: databases/templates/databases/listDataBases.html:117 -#: ftp/templates/ftp/listFTPAccounts.html:139 -msgid "Change" -msgstr "修改" - -#: databases/templates/databases/phpMyAdmin.html:3 -msgid "phpMyAdmin - CyberPanel" -msgstr "phpMyAdmin - Cyberpanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:3 -msgid "Add/Modify DNS Records - CyberPanel" -msgstr "添加/删除DNS记录 - Cyberpanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -msgid "Add/Modify DNS Zone" -msgstr "添加/修改DNS区域" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -#: dns/templates/dns/configureDefaultNameServers.html:12 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/deleteDNSZone.html:12 -msgid "DNS Docs" -msgstr "DNS文档" - -#: dns/templates/dns/addDeleteDNSRecords.html:14 -msgid "" -"On this page you can add/modify dns records for domains whose dns zone is " -"already created." -msgstr "此页面可以为已创建DNS区域的域名添加/编辑DNS记录。" - -#: dns/templates/dns/addDeleteDNSRecords.html:19 -msgid "Add Records" -msgstr "添加记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:27 -#: dns/templates/dns/configureDefaultNameServers.html:24 -#: dns/templates/dns/createDNSZone.html:24 -#: dns/templates/dns/createNameServer.html:24 -#: dns/templates/dns/deleteDNSZone.html:25 -msgid "PowerDNS is disabled." -msgstr "PowerDNS已被禁用。" - -#: dns/templates/dns/addDeleteDNSRecords.html:29 -#: dns/templates/dns/configureDefaultNameServers.html:26 -#: dns/templates/dns/createDNSZone.html:26 -#: dns/templates/dns/createNameServer.html:26 -#: dns/templates/dns/deleteDNSZone.html:27 -#: ftp/templates/ftp/createFTPAccount.html:29 -#: ftp/templates/ftp/deleteFTPAccount.html:27 -#: ftp/templates/ftp/listFTPAccounts.html:29 -#: mailServer/templates/mailServer/changeEmailPassword.html:30 -#: mailServer/templates/mailServer/createEmailAccount.html:30 -#: mailServer/templates/mailServer/deleteEmailAccount.html:30 -#: mailServer/templates/mailServer/emailForwarding.html:28 -#: mailServer/templates/mailServer/listEmails.html:30 -msgid "Enable Now" -msgstr "现在启用" - -#: dns/templates/dns/addDeleteDNSRecords.html:78 -#: dns/templates/dns/addDeleteDNSRecords.html:101 -#: dns/templates/dns/addDeleteDNSRecords.html:125 -#: dns/templates/dns/addDeleteDNSRecords.html:148 -#: dns/templates/dns/addDeleteDNSRecords.html:176 -#: dns/templates/dns/addDeleteDNSRecords.html:200 -#: dns/templates/dns/addDeleteDNSRecords.html:224 -#: dns/templates/dns/addDeleteDNSRecords.html:248 -#: dns/templates/dns/addDeleteDNSRecords.html:272 -#: dns/templates/dns/addDeleteDNSRecords.html:298 -#: dns/templates/dns/addDeleteDNSRecords.html:329 -msgid "TTL" -msgstr "TTL" - -#: dns/templates/dns/addDeleteDNSRecords.html:88 -#: dns/templates/dns/addDeleteDNSRecords.html:111 -#: dns/templates/dns/addDeleteDNSRecords.html:135 -#: dns/templates/dns/addDeleteDNSRecords.html:162 -#: dns/templates/dns/addDeleteDNSRecords.html:187 -#: dns/templates/dns/addDeleteDNSRecords.html:211 -#: dns/templates/dns/addDeleteDNSRecords.html:235 -#: dns/templates/dns/addDeleteDNSRecords.html:259 -#: dns/templates/dns/addDeleteDNSRecords.html:287 -#: dns/templates/dns/addDeleteDNSRecords.html:304 -#: firewall/templates/firewall/firewall.html:104 -msgid "Add" -msgstr "添加" - -#: dns/templates/dns/addDeleteDNSRecords.html:105 -msgid "IPV6 Address" -msgstr "IPV6地址" - -#: dns/templates/dns/addDeleteDNSRecords.html:129 -#: dns/templates/dns/addDeleteDNSRecords.html:156 -#: dns/templates/dns/createDNSZone.html:38 -#: dns/templates/dns/createNameServer.html:36 -#: emailMarketing/templates/emailMarketing/website.html:318 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 -#: websiteFunctions/templates/websiteFunctions/website.html:280 -msgid "Domain Name" -msgstr "域名" - -#: dns/templates/dns/addDeleteDNSRecords.html:152 -#: dns/templates/dns/addDeleteDNSRecords.html:331 -msgid "Priority" -msgstr "优先级" - -#: dns/templates/dns/addDeleteDNSRecords.html:181 -msgid "Policy" -msgstr "政策" - -#: dns/templates/dns/addDeleteDNSRecords.html:205 -msgid "Text" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:229 -msgid "SOA Value" -msgstr "SOA值" - -#: dns/templates/dns/addDeleteDNSRecords.html:253 -msgid "Name server" -msgstr "名称服务器" - -#: dns/templates/dns/addDeleteDNSRecords.html:276 -msgid "Prioirty" -msgstr "Prioirty" - -#: dns/templates/dns/addDeleteDNSRecords.html:281 -msgid "Content" -msgstr "内容" - -#: dns/templates/dns/addDeleteDNSRecords.html:359 -msgid "Cannot fetch records. Error message:" -msgstr "无法获取记录, 错误信息:" - -#: dns/templates/dns/addDeleteDNSRecords.html:363 -msgid "Cannot add record. Error message: " -msgstr "无法添加记录, 错误信息: " - -#: dns/templates/dns/addDeleteDNSRecords.html:371 -msgid "Record Successfully Deleted" -msgstr "成功删除记录" - -#: dns/templates/dns/addDeleteDNSRecords.html:375 -msgid "Cannot delete record. Error message:" -msgstr "无法删除记录, 错误信息:" - -#: dns/templates/dns/addDeleteDNSRecords.html:379 -msgid "Record Successfully Added." -msgstr "成功添加记录。" - -#: dns/templates/dns/configureDefaultNameServers.html:3 -msgid "Configure Default Nameserver - CyberPanel" -msgstr "设置默认名称服务器(NS) - CyberPanel" - -#: dns/templates/dns/configureDefaultNameServers.html:12 -msgid "Configure Default Nameserver" -msgstr "配置默认名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:13 -#: dns/templates/dns/createNameServer.html:13 -msgid "" -"You can use this page to setup nameservers using which people on the " -"internet can resolve websites hosted on this server." -msgstr "您可以在此页面创建名称服务器(NS)以解析您的域名。" - -#: dns/templates/dns/configureDefaultNameServers.html:18 -#: dns/templates/dns/createDNSZone.html:18 -#: dns/templates/dns/createNameServer.html:18 -#: userManagment/templates/userManagment/modifyUser.html:19 -msgid "Details" -msgstr "详情" - -#: dns/templates/dns/configureDefaultNameServers.html:36 -#: dns/templates/dns/createNameServer.html:46 -msgid "First Nameserver" -msgstr "第一名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:45 -msgid "Second Nameserver" -msgstr "第二名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:52 -msgid "Third Nameserver" -msgstr "第三名字服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:59 -msgid "Forth Nameserver" -msgstr "第四名称服务器" - -#: dns/templates/dns/configureDefaultNameServers.html:68 -#: emailMarketing/templates/emailMarketing/website.html:656 -#: emailMarketing/templates/emailMarketing/website.html:716 -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:654 -msgid "Save" -msgstr "保存" - -#: dns/templates/dns/createDNSZone.html:3 -msgid "Create DNS Zone - CyberPanel" -msgstr "创建DNS区域 - CyberPanel" - -#: dns/templates/dns/createDNSZone.html:13 -msgid "" -"This page is used to create DNS zone, to edit dns zone you can visit Modify " -"DNS Zone Page." -msgstr "在此页面创建DNS区域, 您可以在“修改DNS区域”编辑DNS区域。" - -#: dns/templates/dns/createDNSZone.html:61 -msgid "Cannot create DNS Zone. Error message:" -msgstr "无法创建DNS区域, 错误信息:" - -#: dns/templates/dns/createDNSZone.html:65 -msgid "DNS Zone for domain:" -msgstr "域名DNS区域:" - -#: dns/templates/dns/createNameServer.html:3 -msgid "Create Nameserver - CyberPanel" -msgstr "创建名称服务器(NS) - CyberPanel" - -#: dns/templates/dns/createNameServer.html:62 -msgid "Second Nameserver (Back up)" -msgstr "第二名称服务器(备用)" - -#: dns/templates/dns/createNameServer.html:89 -msgid "Nameserver cannot be created. Error message:" -msgstr "名称服务器无法创建, 错误信息:" - -#: dns/templates/dns/createNameServer.html:93 -msgid "The following nameservers were successfully created:" -msgstr "以下名称服务器已成功创建:" - -#: dns/templates/dns/deleteDNSZone.html:3 -msgid "Delete DNS Zone - CyberPanel" -msgstr "删除DNS区域 - CyberPanel" - -#: dns/templates/dns/deleteDNSZone.html:12 -#: dns/templates/dns/deleteDNSZone.html:18 -#: userManagment/templates/userManagment/createACL.html:230 -#: userManagment/templates/userManagment/modifyACL.html:234 -msgid "Delete DNS Zone" -msgstr "删除DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:13 -msgid "" -"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " -"all its related records as well." -msgstr "此页面可以删除DNS区域, 删除DNS区域时所有相关的DNS记录也将会被删除。" - -#: dns/templates/dns/deleteDNSZone.html:37 -msgid "Select Zone" -msgstr "选择DNS区域" - -#: dns/templates/dns/deleteDNSZone.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:51 -#: emailMarketing/templates/emailMarketing/sendEmails.html:51 -#: ftp/templates/ftp/deleteFTPAccount.html:73 -#: mailServer/templates/mailServer/deleteEmailAccount.html:82 -#: packages/templates/packages/deletePackage.html:47 -#: userManagment/templates/userManagment/deleteACL.html:49 -#: userManagment/templates/userManagment/deleteUser.html:51 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 -msgid "Are you sure?" -msgstr "您确定?" - -#: dns/templates/dns/deleteDNSZone.html:69 -msgid "Cannot delete zone. Error message: " -msgstr "无法删除DNS区域, 错误信息: " - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "Zone for domain:" -msgstr "域名DNS区域:" - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "is successfully erased." -msgstr "已成功删除。" - -#: dns/templates/dns/index.html:3 -msgid "DNS Functions - CyberPanel" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:12 -msgid "DNS Functions" -msgstr "DNS功能" - -#: dns/templates/dns/index.html:13 -msgid "Create, edit and delete DNS zones on this page." -msgstr "在此页面添加, 修改, 删除DNS区域。" - -#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 -msgid "Add Delete Records" -msgstr "添加/删除记录" - -#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 -msgid "Add Delete/Records" -msgstr "添加/删除记录" - -#: dockerManager/templates/dockerManager/images.html:3 -#: dockerManager/templates/dockerManager/manageImages.html:3 -msgid "Docker Manage Images - CyberPanel" -msgstr "管理Docker 镜像 - CyberPanel" - -#: dockerManager/templates/dockerManager/images.html:14 -#: dockerManager/templates/dockerManager/index.html:39 -msgid "Create new container" -msgstr "创建新容器" - -#: dockerManager/templates/dockerManager/images.html:15 -msgid "Search new images and manage existing ones" -msgstr "搜索并管理镜像" - -#: dockerManager/templates/dockerManager/images.html:22 -msgid "Locally Available Images" -msgstr "可用的本地镜像" - -#: dockerManager/templates/dockerManager/images.html:48 -msgid "Create" -msgstr "创建" - -#: dockerManager/templates/dockerManager/index.html:3 -msgid "Docker Container Management - CyberPanel" -msgstr "Docker 容器管理 - CyberPanel" - -#: dockerManager/templates/dockerManager/index.html:13 -msgid "Docker Container Management" -msgstr "Docker 容器管理" - -#: dockerManager/templates/dockerManager/index.html:41 -msgid "New Container" -msgstr "新建容器" - -#: dockerManager/templates/dockerManager/install.html:3 -msgid "Install Docker - CyberPanel" -msgstr "安装 Docker - CyberPanel" - -#: dockerManager/templates/dockerManager/install.html:12 -#: dockerManager/templates/dockerManager/install.html:18 -msgid "Install Docker" -msgstr "安装Docker" - -#: dockerManager/templates/dockerManager/install.html:26 -msgid "" -"Unable to connect to docker daemon, please try restarting docker from " -"service page" -msgstr "无法连接到Docker守护程序,请尝试在服务页面重启Docker" - -#: dockerManager/templates/dockerManager/install.html:28 -msgid "You do not have sufficient permissions to access this page" -msgstr "您没有足够的权限访问此页面" - -#: dockerManager/templates/dockerManager/install.html:32 -msgid "" -"Docker is currently not installed on this server. To manage containers, you " -"must first install it." -msgstr "该服务器当前未安装Docker。你必须先安装Docker才能管理容器。" - -#: dockerManager/templates/dockerManager/install.html:53 -msgid "" -"You do not have permissions to install Docker. Please contact your system " -"administrator" -msgstr "您没有安装Docker的权限。 请与您的系统管理员联系" - -#: dockerManager/templates/dockerManager/listContainers.html:3 -msgid "Containers List - CyberPanel" -msgstr "容器列表 - CyberPanel" - -#: dockerManager/templates/dockerManager/listContainers.html:14 -msgid "List Containers" -msgstr "容器列表" - -#: dockerManager/templates/dockerManager/listContainers.html:17 -msgid "Manage containers on server" -msgstr "管理服务器上的容器" - -#: dockerManager/templates/dockerManager/listContainers.html:23 -msgid "Containers" -msgstr "容器" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "Unlisted Containers" -msgstr "卸载容器" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "" -"Containers listed below were either not created through panel or were not " -"saved to database properly" -msgstr "下面列出的容器不是通过面板创建的,或者没有正确保存到数据库中" - -#: dockerManager/templates/dockerManager/listContainers.html:148 -#: dockerManager/templates/dockerManager/runContainer.html:52 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 -msgid "Select Owner" -msgstr "选择拥有者" - -#: dockerManager/templates/dockerManager/manageImages.html:17 -msgid "On this page you can manage docker images." -msgstr "在此页上,您可以管理 Docker 镜像。" - -#: dockerManager/templates/dockerManager/manageImages.html:65 -#: dockerManager/templates/dockerManager/manageImages.html:66 -msgid "Images" -msgstr "镜像" - -#: dockerManager/templates/dockerManager/manageImages.html:67 -msgid "Delete unused images" -msgstr "删除未使用的镜像" - -#: dockerManager/templates/dockerManager/manageImages.html:95 -msgid "Official image" -msgstr "官方镜像" - -#: dockerManager/templates/dockerManager/manageImages.html:104 -msgid "Pull" -msgstr "拉取" - -#: dockerManager/templates/dockerManager/runContainer.html:3 -msgid "Run new container - CyberPanel" -msgstr "运行新容器 - CyberPanel" - -#: dockerManager/templates/dockerManager/runContainer.html:12 -msgid "Run Container" -msgstr "运行容器" - -#: dockerManager/templates/dockerManager/runContainer.html:13 -msgid "Modify parameters for your new container" -msgstr "修改新容器的参数" - -#: dockerManager/templates/dockerManager/runContainer.html:20 -msgid "Container Details" -msgstr "容器详情" - -#: dockerManager/templates/dockerManager/runContainer.html:36 -#: dockerManager/templates/dockerManager/viewContainer.html:70 -msgid "Image" -msgstr "镜像" - -#: dockerManager/templates/dockerManager/runContainer.html:44 -msgid "Tag" -msgstr "标签" - -#: dockerManager/templates/dockerManager/runContainer.html:64 -#: dockerManager/templates/dockerManager/viewContainer.html:206 -msgid "Memory limit" -msgstr "内存限制" - -#: dockerManager/templates/dockerManager/runContainer.html:104 -#: dockerManager/templates/dockerManager/viewContainer.html:250 -msgid "ENV" -msgstr "ENV" - -#: dockerManager/templates/dockerManager/runContainer.html:125 -#: dockerManager/templates/dockerManager/viewContainer.html:283 -msgid "Map Volumes" -msgstr "Map Volumes" - -#: dockerManager/templates/dockerManager/runContainer.html:153 -#: dockerManager/templates/dockerManager/viewContainer.html:310 -msgid "Add field" -msgstr "添加字段" - -#: dockerManager/templates/dockerManager/runContainer.html:161 -msgid "Create Container" -msgstr "创建容器" - -#: dockerManager/templates/dockerManager/runContainer.html:180 -msgid "Container succesfully created." -msgstr "容器已成功创建。" - -#: dockerManager/templates/dockerManager/runContainer.html:196 -#: emailMarketing/templates/emailMarketing/createEmailList.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:100 -#: emailMarketing/templates/emailMarketing/sendEmails.html:135 -#: emailMarketing/templates/emailMarketing/website.html:431 -#: managePHP/templates/managePHP/installExtensions.html:103 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 -#: websiteFunctions/templates/websiteFunctions/website.html:394 -msgid "Go Back" -msgstr "返回" - -#: dockerManager/templates/dockerManager/viewContainer.html:3 -msgid "Container Home - CyberPanel" -msgstr "容器主页 - Cyberpanel" - -#: dockerManager/templates/dockerManager/viewContainer.html:14 -msgid "Manage Container" -msgstr "管理容器" - -#: dockerManager/templates/dockerManager/viewContainer.html:15 -msgid "Currently managing: " -msgstr "当前正在管理: " - -#: dockerManager/templates/dockerManager/viewContainer.html:24 -msgid "Container Information" -msgstr "容器信息" - -#: dockerManager/templates/dockerManager/viewContainer.html:37 -msgid "Memory Usage" -msgstr "内存使用情况" - -#: dockerManager/templates/dockerManager/viewContainer.html:68 -msgid "Container ID" -msgstr "容器ID" - -#: dockerManager/templates/dockerManager/viewContainer.html:77 -msgid "Ports" -msgstr "端口" - -#: dockerManager/templates/dockerManager/viewContainer.html:79 -msgid "to" -msgstr "到" - -#: dockerManager/templates/dockerManager/viewContainer.html:227 -msgid "Confirmation" -msgstr "确认" - -#: emailMarketing/templates/emailMarketing/composeMessages.html:3 -msgid "Compose Email Message - CyberPanel" -msgstr "撰写邮箱- CyberPanel" - -#: 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 "创建邮箱列表 -CyberPanel" - -#: emailMarketing/templates/emailMarketing/createEmailList.html:13 -#: emailMarketing/templates/emailMarketing/createEmailList.html:19 -msgid "Create Email List" -msgstr "创建邮箱列表" - -#: emailMarketing/templates/emailMarketing/createEmailList.html:14 -msgid "Create email list, to send out news letters and marketing emails." -msgstr "创建邮箱列表,以发送市场营销邮箱。" - -#: emailMarketing/templates/emailMarketing/createEmailList.html:26 -msgid "List Name" -msgstr "列表名称" - -#: emailMarketing/templates/emailMarketing/createEmailList.html:42 -msgid "Create List" -msgstr "创建列表" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 -msgid "Email Marketing - CyberPanel" -msgstr "邮箱营销 - 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:33 -msgid "Enable Now." -msgstr "立即启用。" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 -#: userManagment/templates/userManagment/createUser.html:76 -#: userManagment/templates/userManagment/listUsers.html:32 -#: userManagment/templates/userManagment/userProfile.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 -msgid "Username" -msgstr "用户名" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 -msgid "Email Marketing Enabled." -msgstr "邮箱营销已启用。" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:53 -#: emailPremium/templates/emailPremium/emailLimits.html:159 -#: emailPremium/templates/emailPremium/emailPage.html:55 -#: emailPremium/templates/emailPremium/emailPage.html:61 -#: emailPremium/templates/emailPremium/listDomains.html:62 -#: tuning/templates/tuning/phpTuning.html:94 -#: tuning/templates/tuning/phpTuning.html:234 -msgid "Disable" -msgstr "关闭" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 -msgid "Email Marketing Disabled." -msgstr "邮箱营销已禁用。" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:161 -#: emailPremium/templates/emailPremium/emailPage.html:57 -#: emailPremium/templates/emailPremium/emailPage.html:63 -#: emailPremium/templates/emailPremium/listDomains.html:64 -#: tuning/templates/tuning/phpTuning.html:93 -#: tuning/templates/tuning/phpTuning.html:233 -msgid "Enable" -msgstr "开启" - -#: emailMarketing/templates/emailMarketing/manageLists.html:3 -msgid "Manage Email Lists - CyberPanel" -msgstr "管理邮箱列表 - CyberPanel" - -#: emailMarketing/templates/emailMarketing/manageLists.html:13 -#: emailMarketing/templates/emailMarketing/manageLists.html:19 -msgid "Manage Email Lists" -msgstr "管理邮箱列表" - -#: emailMarketing/templates/emailMarketing/manageLists.html:14 -msgid "" -"On this page you can manage your email lists (Delete, Verify, Add More " -"Emails)." -msgstr "在这个页面上,你可以管理你的邮箱列表(删除、验证、添加更多电子邮件)。" - -#: emailMarketing/templates/emailMarketing/manageLists.html:28 -#: emailMarketing/templates/emailMarketing/sendEmails.html:71 -msgid "Select List" -msgstr "选择列表" - -#: emailMarketing/templates/emailMarketing/manageLists.html:41 -msgid "Delete This List" -msgstr "删除此列表" - -#: emailMarketing/templates/emailMarketing/manageLists.html:48 -msgid "You are doing to delete this list.." -msgstr "您正在删除此列表。" - -#: emailMarketing/templates/emailMarketing/manageLists.html:54 -#: emailMarketing/templates/emailMarketing/sendEmails.html:54 -#: emailMarketing/templates/emailMarketing/website.html:484 -#: filemanager/templates/filemanager/index.html:417 -#: filemanager/templates/filemanager/index.html:460 -#: filemanager/templates/filemanager/index.html:523 -#: filemanager/templates/filemanager/index.html:558 -#: filemanager/templates/filemanager/index.html:588 -#: filemanager/templates/filemanager/index.html:649 -#: websiteFunctions/templates/websiteFunctions/website.html:447 -msgid "Close" -msgstr "关闭" - -#: emailMarketing/templates/emailMarketing/manageLists.html:55 -#: emailMarketing/templates/emailMarketing/sendEmails.html:55 -#: filemanager/templates/filemanager/index.html:416 -msgid "Confirm" -msgstr "确定" - -#: emailMarketing/templates/emailMarketing/manageLists.html:63 -msgid "Verify This List" -msgstr "检查此列表" - -#: emailMarketing/templates/emailMarketing/manageLists.html:66 -msgid "Add More Emails" -msgstr "添加更多的邮箱" - -#: emailMarketing/templates/emailMarketing/manageLists.html:83 -msgid "Load Emails" -msgstr "加载邮箱" - -#: emailMarketing/templates/emailMarketing/manageLists.html:142 -msgid "email" -msgstr "邮箱" - -#: emailMarketing/templates/emailMarketing/manageLists.html:143 -msgid "Verification Status" -msgstr "验证状态" - -#: emailMarketing/templates/emailMarketing/manageLists.html:144 -msgid "Date Created" -msgstr "创建日期" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 -msgid "Manage SMTP Hosts - CyberPanel" -msgstr "管理 SMTP 主机 - CyberPanel" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 -msgid "Manage SMTP Hosts" -msgstr "管理SMTP主机" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 -msgid "" -"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" -msgstr "在此页面上,您可以管理 STMP 主机。(SMTP 主机将用于发送邮箱)" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 -#: emailMarketing/templates/emailMarketing/sendEmails.html:153 -msgid "SMTP Host" -msgstr "SMTP服务器" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 -msgid "Save Host" -msgstr "保存主机" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 -#: userManagment/templates/userManagment/listUsers.html:36 -msgid "Owner" -msgstr "所有者" - -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 -msgid "Verify Host" -msgstr "验证主机" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:3 -msgid "Send Emails - CyberPanel" -msgstr "发送邮箱 - CyberPanel" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:13 -#: emailMarketing/templates/emailMarketing/sendEmails.html:19 -#: emailMarketing/templates/emailMarketing/sendEmails.html:66 -#: emailMarketing/templates/emailMarketing/website.html:1030 -#: emailMarketing/templates/emailMarketing/website.html:1033 -#: emailMarketing/templates/emailMarketing/website.html:1034 -#: websiteFunctions/templates/websiteFunctions/website.html:956 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -msgid "Send Emails" -msgstr "发送邮件" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:14 -msgid "" -"On this page you can send emails to the lists you created using SMTP Hosts." -msgstr "在此页面上,您可以通过该 SMTP 主机将邮箱发送到创建的列表。" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:28 -#: websiteFunctions/templates/websiteFunctions/website.html:677 -msgid "Select Template" -msgstr "选择模板" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:41 -msgid "Delete This Template" -msgstr "删除此模板" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:48 -msgid "You are doing to delete this template.." -msgstr "你正在删除此模板。" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:63 -msgid "Preview Template" -msgstr "预览模板" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:82 -msgid "Select STMP Host" -msgstr "选择STMP主机" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:98 -msgid "Send to un-verified email addresses." -msgstr "发送到未经验证的邮箱地址。" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:107 -msgid "Include unsubscribe link." -msgstr "包含退订链接。" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:116 -msgid "Start Job" -msgstr "开始任务" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:154 -msgid "Total Emails" -msgstr "全部邮件" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:155 -msgid "Sent" -msgstr "发送成功" - -#: emailMarketing/templates/emailMarketing/sendEmails.html:156 -msgid "Failed" -msgstr "发送失败" - -#: emailMarketing/templates/emailMarketing/website.html:16 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 -#: websiteFunctions/templates/websiteFunctions/website.html:16 -msgid "Preview" -msgstr "预览" - -#: emailMarketing/templates/emailMarketing/website.html:17 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 -#: websiteFunctions/templates/websiteFunctions/website.html:17 -msgid "All functions related to a particular site." -msgstr "所有与网站相关的功能。" - -#: emailMarketing/templates/emailMarketing/website.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 -#: websiteFunctions/templates/websiteFunctions/website.html:28 -msgid "Resource Usage" -msgstr "资源使用量" - -#: emailMarketing/templates/emailMarketing/website.html:39 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 -#: websiteFunctions/templates/websiteFunctions/website.html:42 -msgid "Resource" -msgstr "资源" - -#: emailMarketing/templates/emailMarketing/website.html:41 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 -#: websiteFunctions/templates/websiteFunctions/website.html:44 -msgid "Allowed" -msgstr "可用" - -#: emailMarketing/templates/emailMarketing/website.html:63 -#: emailMarketing/templates/emailMarketing/website.html:89 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 -#: websiteFunctions/templates/websiteFunctions/website.html:64 -#: websiteFunctions/templates/websiteFunctions/website.html:86 -msgid "Bandwidth Usage" -msgstr "流量使用量" - -#: emailMarketing/templates/emailMarketing/website.html:124 -#: emailMarketing/templates/emailMarketing/website.html:127 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:112 -#: websiteFunctions/templates/websiteFunctions/website.html:116 -msgid "Load Access Logs" -msgstr "读取访问日志" - -#: emailMarketing/templates/emailMarketing/website.html:128 -#: serverLogs/templates/serverLogs/accessLogs.html:16 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 -#: websiteFunctions/templates/websiteFunctions/website.html:117 -msgid "Access Logs" -msgstr "访问日志" - -#: emailMarketing/templates/emailMarketing/website.html:135 -#: emailMarketing/templates/emailMarketing/website.html:138 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:121 -#: websiteFunctions/templates/websiteFunctions/website.html:125 -msgid "Load Error Logs" -msgstr "读取错误日志" - -#: emailMarketing/templates/emailMarketing/website.html:150 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 -#: websiteFunctions/templates/websiteFunctions/website.html:133 -msgid "Logs Fetched" -msgstr "日志读取成功" - -#: emailMarketing/templates/emailMarketing/website.html:155 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 -#: websiteFunctions/templates/websiteFunctions/website.html:136 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:179 -#: emailMarketing/templates/emailMarketing/website.html:221 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:199 -msgid "Next" -msgstr "下一个" - -#: emailMarketing/templates/emailMarketing/website.html:181 -#: emailMarketing/templates/emailMarketing/website.html:223 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 -#: websiteFunctions/templates/websiteFunctions/website.html:156 -#: websiteFunctions/templates/websiteFunctions/website.html:201 -msgid "Previous" -msgstr "上一个" - -#: emailMarketing/templates/emailMarketing/website.html:254 -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:36 -#: packages/templates/packages/listPackages.html:93 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:225 -msgid "Domains" -msgstr "域名" - -#: emailMarketing/templates/emailMarketing/website.html:262 -#: emailMarketing/templates/emailMarketing/website.html:265 -#: emailMarketing/templates/emailMarketing/website.html:266 -#: emailMarketing/templates/emailMarketing/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:233 -#: websiteFunctions/templates/websiteFunctions/website.html:234 -#: websiteFunctions/templates/websiteFunctions/website.html:235 -msgid "Add Domains" -msgstr "添加域名" - -#: emailMarketing/templates/emailMarketing/website.html:274 -#: emailMarketing/templates/emailMarketing/website.html:275 -#: emailMarketing/templates/emailMarketing/website.html:278 -#: emailMarketing/templates/emailMarketing/website.html:279 -#: emailMarketing/templates/emailMarketing/website.html:280 -#: emailMarketing/templates/emailMarketing/website.html:300 -#: emailMarketing/templates/emailMarketing/website.html:303 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:240 -#: websiteFunctions/templates/websiteFunctions/website.html:241 -#: websiteFunctions/templates/websiteFunctions/website.html:244 -#: websiteFunctions/templates/websiteFunctions/website.html:245 -#: websiteFunctions/templates/websiteFunctions/website.html:246 -#: websiteFunctions/templates/websiteFunctions/website.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:266 -msgid "List Domains" -msgstr "查看域名" - -#: emailMarketing/templates/emailMarketing/website.html:286 -#: emailMarketing/templates/emailMarketing/website.html:287 -#: emailMarketing/templates/emailMarketing/website.html:290 -#: emailMarketing/templates/emailMarketing/website.html:291 -#: emailMarketing/templates/emailMarketing/website.html:292 -#: websiteFunctions/templates/websiteFunctions/website.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:252 -#: websiteFunctions/templates/websiteFunctions/website.html:255 -#: websiteFunctions/templates/websiteFunctions/website.html:256 -#: websiteFunctions/templates/websiteFunctions/website.html:257 -msgid "Domain Alias" -msgstr "域名别名" - -#: emailMarketing/templates/emailMarketing/website.html:299 -#: emailMarketing/templates/emailMarketing/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:262 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -msgid "Add new Cron Job" -msgstr "添加新的定时任务" - -#: emailMarketing/templates/emailMarketing/website.html:305 -#: websiteFunctions/templates/websiteFunctions/website.html:268 -msgid "Cron Jobs" -msgstr "定时任务" - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "This path is relative to: " -msgstr "此目录相对与:" - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "Leave empty to set default." -msgstr "留空则设置为默认根目录。" - -#: emailMarketing/templates/emailMarketing/website.html:336 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 -#: websiteFunctions/templates/websiteFunctions/website.html:299 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "无效域名(注意: 不需要添加http或https)" - -#: emailMarketing/templates/emailMarketing/website.html:341 -#: emailMarketing/templates/emailMarketing/website.html:794 -#: managePHP/templates/managePHP/editPHPConfig.html:49 -#: managePHP/templates/managePHP/editPHPConfig.html:177 -#: managePHP/templates/managePHP/installExtensions.html:29 -#: tuning/templates/tuning/phpTuning.html:166 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:737 -msgid "Select PHP" -msgstr "选择PHP版本" - -#: emailMarketing/templates/emailMarketing/website.html:354 -#: packages/templates/packages/createPackage.html:84 -#: packages/templates/packages/modifyPackage.html:87 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 -#: websiteFunctions/templates/websiteFunctions/website.html:317 -msgid "Additional Features" -msgstr "额外功能" - -#: emailMarketing/templates/emailMarketing/website.html:388 -#: websiteFunctions/templates/websiteFunctions/website.html:351 -msgid "Create Domain" -msgstr "创建域名" - -#: emailMarketing/templates/emailMarketing/website.html:415 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -msgid "Website succesfully created." -msgstr "网站成功创建。" - -#: emailMarketing/templates/emailMarketing/website.html:449 -#: websiteFunctions/templates/websiteFunctions/website.html:412 -msgid "PHP Version Changed to:" -msgstr "版本管理:" - -#: emailMarketing/templates/emailMarketing/website.html:453 -#: websiteFunctions/templates/websiteFunctions/website.html:416 -msgid "Deleted:" -msgstr "删除:" - -#: emailMarketing/templates/emailMarketing/website.html:457 -#: websiteFunctions/templates/websiteFunctions/website.html:420 -msgid "SSL Issued:" -msgstr "已为签发证书:" - -#: emailMarketing/templates/emailMarketing/website.html:461 -#: websiteFunctions/templates/websiteFunctions/website.html:424 -msgid "Changes applied successfully." -msgstr "更改应用成功。" - -#: emailMarketing/templates/emailMarketing/website.html:528 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:492 -msgid "Issue" -msgstr "签发SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:558 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:520 -msgid "Configurations" -msgstr "配置" - -#: emailMarketing/templates/emailMarketing/website.html:568 -#: emailMarketing/templates/emailMarketing/website.html:572 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:526 -#: websiteFunctions/templates/websiteFunctions/website.html:530 -msgid "Edit vHost Main Configurations" -msgstr "编辑vHost主配置" - -#: emailMarketing/templates/emailMarketing/website.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:531 -msgid "vHost Conf" -msgstr "虚拟主机配置" - -#: emailMarketing/templates/emailMarketing/website.html:582 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:537 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "添加Rewrite Rules (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:586 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:541 -msgid "Rewrite Rules (.htaccess)" -msgstr "重写规则 (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:587 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:542 -msgid "Rewrite Rules" -msgstr "重写规则" - -#: emailMarketing/templates/emailMarketing/website.html:595 -#: emailMarketing/templates/emailMarketing/website.html:598 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 -#: websiteFunctions/templates/websiteFunctions/website.html:547 -#: websiteFunctions/templates/websiteFunctions/website.html:550 -msgid "Add Your Own SSL" -msgstr "添加SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:599 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:551 -msgid "Add SSL" -msgstr "添加SSL证书" - -#: emailMarketing/templates/emailMarketing/website.html:607 -#: emailMarketing/templates/emailMarketing/website.html:610 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 -#: websiteFunctions/templates/websiteFunctions/website.html:556 -#: websiteFunctions/templates/websiteFunctions/website.html:559 -msgid "Change PHP Version" -msgstr "更改PHP版本" - -#: emailMarketing/templates/emailMarketing/website.html:611 -#: emailMarketing/templates/emailMarketing/website.html:815 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 -#: websiteFunctions/templates/websiteFunctions/website.html:560 -#: websiteFunctions/templates/websiteFunctions/website.html:758 -msgid "Change PHP" -msgstr "修改PHP" - -#: emailMarketing/templates/emailMarketing/website.html:623 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 -#: websiteFunctions/templates/websiteFunctions/website.html:571 -msgid "SSL Saved" -msgstr "SSL证书已保存" - -#: emailMarketing/templates/emailMarketing/website.html:628 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Could not save SSL. Error message:" -msgstr "无法保存SSL证书, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:678 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:619 -msgid "Current configuration in the file fetched." -msgstr "当前配置读取成功。" - -#: emailMarketing/templates/emailMarketing/website.html:683 -#: emailMarketing/templates/emailMarketing/website.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 -#: websiteFunctions/templates/websiteFunctions/website.html:623 -#: websiteFunctions/templates/websiteFunctions/website.html:636 -msgid "Could not fetch current configuration. Error message:" -msgstr "无法读取当前配置, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:693 -#: emailMarketing/templates/emailMarketing/website.html:753 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 -#: websiteFunctions/templates/websiteFunctions/website.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:699 -msgid "Configurations saved." -msgstr "配置已保存。" - -#: emailMarketing/templates/emailMarketing/website.html:734 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 -msgid "Current rewrite rules in the file fetched." -msgstr "当前Rewrite rules读取成功。" - -#: emailMarketing/templates/emailMarketing/website.html:743 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 -#: websiteFunctions/templates/websiteFunctions/website.html:690 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "无法读取当前Rewrite rules, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:757 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 -#: websiteFunctions/templates/websiteFunctions/website.html:703 -msgid "Could not save rewrite rules. Error message:" -msgstr "无法保存Rewrite rules, 错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:776 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Save Rewrite Rules" -msgstr "保存Rewrite rules" - -#: emailMarketing/templates/emailMarketing/website.html:825 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 -#: websiteFunctions/templates/websiteFunctions/website.html:768 -msgid "Failed to change PHP version. Error message:" -msgstr "修改PHP版本失败。错误信息:" - -#: emailMarketing/templates/emailMarketing/website.html:830 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 -#: websiteFunctions/templates/websiteFunctions/website.html:773 -msgid "PHP successfully changed for: " -msgstr "PHP 已成功更改为: " - -#: emailMarketing/templates/emailMarketing/website.html:855 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 -#: websiteFunctions/templates/websiteFunctions/website.html:795 -msgid "Files" -msgstr "文件" - -#: emailMarketing/templates/emailMarketing/website.html:863 -#: emailMarketing/templates/emailMarketing/website.html:866 -#: emailMarketing/templates/emailMarketing/website.html:867 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#: websiteFunctions/templates/websiteFunctions/website.html:803 -#: websiteFunctions/templates/websiteFunctions/website.html:804 -msgid "File Manager" -msgstr "文件管理" - -#: emailMarketing/templates/emailMarketing/website.html:874 -#: emailMarketing/templates/emailMarketing/website.html:877 -#: emailMarketing/templates/emailMarketing/website.html:915 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:809 -#: websiteFunctions/templates/websiteFunctions/website.html:812 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -msgid "open_basedir Protection" -msgstr "open_basedir 保护" - -#: emailMarketing/templates/emailMarketing/website.html:878 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 -#: websiteFunctions/templates/websiteFunctions/website.html:813 -msgid "open_basedir" -msgstr "防跨站" - -#: emailMarketing/templates/emailMarketing/website.html:890 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 -#: websiteFunctions/templates/websiteFunctions/website.html:825 -msgid "Create FTP Acct" -msgstr "创建FTP用户" - -#: emailMarketing/templates/emailMarketing/website.html:902 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -msgid "Delete FTP Acct" -msgstr "删除FTP用户" - -#: emailMarketing/templates/emailMarketing/website.html:939 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:868 -msgid "Apply Changes" -msgstr "应用更改" - -#: emailMarketing/templates/emailMarketing/website.html:951 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 -#: websiteFunctions/templates/websiteFunctions/website.html:880 -msgid "Changes successfully saved." -msgstr "更改成功保存。" - -#: emailMarketing/templates/emailMarketing/website.html:986 -#: emailMarketing/templates/emailMarketing/website.html:989 -#: emailMarketing/templates/emailMarketing/website.html:990 -#: websiteFunctions/templates/websiteFunctions/website.html:915 -#: websiteFunctions/templates/websiteFunctions/website.html:919 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -msgid "Create Lists" -msgstr "创建列表" - -#: emailMarketing/templates/emailMarketing/website.html:997 -#: emailMarketing/templates/emailMarketing/website.html:1000 -#: emailMarketing/templates/emailMarketing/website.html:1001 -#: websiteFunctions/templates/websiteFunctions/website.html:925 -#: websiteFunctions/templates/websiteFunctions/website.html:929 -#: websiteFunctions/templates/websiteFunctions/website.html:930 -msgid "Manage Lists" -msgstr "管理列表" - -#: emailMarketing/templates/emailMarketing/website.html:1008 -#: emailMarketing/templates/emailMarketing/website.html:1011 -#: emailMarketing/templates/emailMarketing/website.html:1012 -#: websiteFunctions/templates/websiteFunctions/website.html:935 -#: websiteFunctions/templates/websiteFunctions/website.html:939 -#: websiteFunctions/templates/websiteFunctions/website.html:940 -msgid "SMTP Hosts" -msgstr "SMTP主机" - -#: emailMarketing/templates/emailMarketing/website.html:1019 -#: emailMarketing/templates/emailMarketing/website.html:1022 -#: websiteFunctions/templates/websiteFunctions/website.html:945 -#: websiteFunctions/templates/websiteFunctions/website.html:950 -msgid "Compose Message" -msgstr "撰写信息" - -#: emailMarketing/templates/emailMarketing/website.html:1023 -#: websiteFunctions/templates/websiteFunctions/website.html:951 -msgid "Compose" -msgstr "撰写" - -#: emailMarketing/templates/emailMarketing/website.html:1050 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 -#: websiteFunctions/templates/websiteFunctions/website.html:977 -msgid "Application Installer" -msgstr "应用安装器" - -#: emailMarketing/templates/emailMarketing/website.html:1061 -#: emailMarketing/templates/emailMarketing/website.html:1065 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -#: websiteFunctions/templates/websiteFunctions/website.html:989 -msgid "Install wordpress with LSCache" -msgstr "安装Wordpress和LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1066 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -msgid "Wordpress with LSCache" -msgstr "Wordpress和LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1075 -#: emailMarketing/templates/emailMarketing/website.html:1079 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 -#: websiteFunctions/templates/websiteFunctions/website.html:996 -#: websiteFunctions/templates/websiteFunctions/website.html:1000 -msgid "Install Joomla with LSCache" -msgstr "安装 Joomla 伴随LS Cache" - -#: emailMarketing/templates/emailMarketing/website.html:1080 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 -#: websiteFunctions/templates/websiteFunctions/website.html:1001 -msgid "Joomla" -msgstr "Joomla" - -#: emailMarketing/templates/emailMarketing/website.html:1089 -#: emailMarketing/templates/emailMarketing/website.html:1093 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 -#: websiteFunctions/templates/websiteFunctions/website.html:1007 -#: websiteFunctions/templates/websiteFunctions/website.html:1011 -msgid "Attach Git with this website!" -msgstr "为此网站填加Git!" - -#: emailMarketing/templates/emailMarketing/website.html:1094 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 -#: websiteFunctions/templates/websiteFunctions/website.html:1012 -msgid "Git" -msgstr "Git" - -#: emailMarketing/templates/emailMarketing/website.html:1103 -#: emailMarketing/templates/emailMarketing/website.html:1107 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 -#: websiteFunctions/templates/websiteFunctions/website.html:1018 -#: websiteFunctions/templates/websiteFunctions/website.html:1022 -msgid "Install Prestashop" -msgstr "安装Prestashop" - -#: emailMarketing/templates/emailMarketing/website.html:1108 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 -#: websiteFunctions/templates/websiteFunctions/website.html:1023 -msgid "Prestashop" -msgstr "Prestashop" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:3 -#: firewall/templates/firewall/spamassassin.html:3 -msgid "SpamAssassin - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:13 -#: firewall/templates/firewall/spamassassin.html:13 -msgid "SpamAssassin Configurations!" -msgstr "SpamAssassin 设置!" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:17 -msgid "SpamAssassin Docs" -msgstr "SpamAssassin文档" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:19 -#: firewall/templates/firewall/spamassassin.html:14 -msgid "On this page you can configure SpamAssassin settings." -msgstr "在此页上,您可以配置 SpamAssassin 设置。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:34 -msgid "SpamAssassin is not installed " -msgstr "未安装SpamAssassin " - -#: emailPremium/templates/emailPremium/SpamAssassin.html:37 -#: firewall/templates/firewall/csf.html:31 -#: firewall/templates/firewall/modSecurity.html:35 -#: firewall/templates/firewall/modSecurity.html:231 -#: firewall/templates/firewall/modSecurityRules.html:73 -#: firewall/templates/firewall/modSecurityRulesPacks.html:31 -#: firewall/templates/firewall/spamassassin.html:31 -msgid "Install Now." -msgstr "现在安装。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:49 -#: firewall/templates/firewall/csf.html:43 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:244 -#: firewall/templates/firewall/spamassassin.html:43 -msgid "Failed to start installation, Error message: " -msgstr "无法启动安装,错误消息: " - -#: emailPremium/templates/emailPremium/SpamAssassin.html:54 -#: emailPremium/templates/emailPremium/SpamAssassin.html:146 -#: emailPremium/templates/emailPremium/policyServer.html:60 -#: firewall/templates/firewall/csf.html:47 -#: firewall/templates/firewall/modSecurity.html:53 -#: firewall/templates/firewall/modSecurity.html:183 -#: firewall/templates/firewall/modSecurity.html:249 -#: firewall/templates/firewall/modSecurity.html:371 -#: firewall/templates/firewall/modSecurityRules.html:53 -#: firewall/templates/firewall/modSecurityRulesPacks.html:88 -#: firewall/templates/firewall/secureSSH.html:87 -#: firewall/templates/firewall/secureSSH.html:172 -#: firewall/templates/firewall/spamassassin.html:47 -#: firewall/templates/firewall/spamassassin.html:177 -#: mailServer/templates/mailServer/dkimManager.html:44 -#: managePHP/templates/managePHP/editPHPConfig.html:157 -#: managePHP/templates/managePHP/editPHPConfig.html:223 -#: managePHP/templates/managePHP/installExtensions.html:124 -#: manageServices/templates/manageServices/managePostfix.html:59 -#: manageServices/templates/manageServices/managePowerDNS.html:130 -#: manageServices/templates/manageServices/managePureFtpd.html:59 -msgid "Could not connect. Please refresh this page." -msgstr "无法连接。请刷新此页面。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:58 -#: firewall/templates/firewall/csf.html:51 -#: firewall/templates/firewall/modSecurity.html:57 -#: firewall/templates/firewall/modSecurity.html:253 -#: firewall/templates/firewall/spamassassin.html:51 -msgid "Installation failed." -msgstr "安装失败。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:62 -msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." -msgstr "SpamAssassin成功安装,在3秒内刷新页面。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:74 -msgid "Winter is coming, but so is SpamAssassin." -msgstr "网络暗潮涌动,但我们有SpamAssassin保护您。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:126 -#: firewall/templates/firewall/modSecurity.html:163 -#: firewall/templates/firewall/modSecurity.html:351 -#: firewall/templates/firewall/spamassassin.html:157 -msgid "Save changes." -msgstr "保存更改。" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:137 -msgid "Failed to save SpamAssassin configurations. Error message: " -msgstr "无法保存 SpamAssassin 配置。错误消息: " - -#: emailPremium/templates/emailPremium/SpamAssassin.html:142 -msgid "SpamAssassin configurations successfully saved." -msgstr "SpamAssassin的配置成功保存。" - -#: emailPremium/templates/emailPremium/emailLimits.html:13 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: emailPremium/templates/emailPremium/policyServer.html:13 -msgid "Email Limits Docs" -msgstr "邮箱限制文档" - -#: emailPremium/templates/emailPremium/emailLimits.html:14 -msgid "View and change email limits for a domain name." -msgstr "查看和改变域名的电子邮件限制。" - -#: emailPremium/templates/emailPremium/emailLimits.html:25 -msgid "Domain Resource Usage" -msgstr "领域资源使用情况" - -#: emailPremium/templates/emailPremium/emailLimits.html:52 -#: emailPremium/templates/emailPremium/emailLimits.html:158 -#: emailPremium/templates/emailPremium/emailPage.html:54 -#: emailPremium/templates/emailPremium/listDomains.html:61 -msgid "Limits are being Applied!" -msgstr "限制已被应用!" - -#: emailPremium/templates/emailPremium/emailLimits.html:54 -#: emailPremium/templates/emailPremium/emailLimits.html:160 -#: emailPremium/templates/emailPremium/emailPage.html:56 -#: emailPremium/templates/emailPremium/listDomains.html:63 -msgid "Limits are not being applied!" -msgstr "限制未被应用!" - -#: emailPremium/templates/emailPremium/emailLimits.html:58 -#: emailPremium/templates/emailPremium/emailPage.html:66 -#: filemanager/templates/filemanager/index.html:79 -#: filemanager/templates/filemanager/index.html:699 -#: packages/templates/packages/listPackages.html:60 -#: userManagment/templates/userManagment/listUsers.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:66 -msgid "Edit" -msgstr "编辑" - -#: emailPremium/templates/emailPremium/emailLimits.html:70 -#: emailPremium/templates/emailPremium/emailPage.html:78 -msgid "Monthly Limit" -msgstr "每月限制" - -#: emailPremium/templates/emailPremium/emailLimits.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:101 -msgid "Change Limits" -msgstr "更改限制" - -#: emailPremium/templates/emailPremium/emailLimits.html:93 -#: emailPremium/templates/emailPremium/emailPage.html:111 -msgid "Can not change limits. Error message:" -msgstr "无法改变限制。错误信息:" - -#: emailPremium/templates/emailPremium/emailLimits.html:97 -msgid "Limits successfully changed, refreshing in 3 seconds." -msgstr "限制成功更改,将在 3 秒内刷新。" - -#: emailPremium/templates/emailPremium/emailLimits.html:126 -#: emailPremium/templates/emailPremium/emailPage.html:25 -msgid "Email Resource Usage" -msgstr "邮箱资源使用量" - -#: emailPremium/templates/emailPremium/emailLimits.html:133 -msgid "Search Emails.." -msgstr "搜索邮箱..." - -#: emailPremium/templates/emailPremium/emailLimits.html:164 -#: emailPremium/templates/emailPremium/listDomains.html:67 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 -msgid "Manage" -msgstr "管理" - -#: emailPremium/templates/emailPremium/emailPage.html:13 -msgid "Emai Limits Docs" -msgstr "邮件限制文档" - -#: emailPremium/templates/emailPremium/emailPage.html:14 -msgid "View and change limits for an Email Address." -msgstr "查看和更改邮箱地址的限制。" - -#: emailPremium/templates/emailPremium/emailPage.html:60 -msgid "Logging in ON!" -msgstr "已开启注册!" - -#: emailPremium/templates/emailPremium/emailPage.html:62 -msgid "Logging is Off" -msgstr "已关闭注册" - -#: emailPremium/templates/emailPremium/emailPage.html:88 -msgid "Hourly Limit" -msgstr "每小时限额" - -#: emailPremium/templates/emailPremium/emailPage.html:115 -msgid "Limits successfully changed." -msgstr "限制成功改变。" - -#: emailPremium/templates/emailPremium/emailPage.html:151 -msgid "Search Emails Logs.." -msgstr "搜索邮箱日志..." - -#: emailPremium/templates/emailPremium/emailPage.html:155 -msgid "Flush Logs" -msgstr "刷新日志" - -#: emailPremium/templates/emailPremium/listDomains.html:3 -msgid "Domains - CyberPanel" -msgstr "域名 - Cyberpanel" - -#: emailPremium/templates/emailPremium/listDomains.html:15 -msgid "On this page you manage emails limits for Domains/Email Addresses" -msgstr "在此页面上,您可以管理域/邮箱地址的邮箱的限制" - -#: emailPremium/templates/emailPremium/policyServer.html:3 -msgid "Email Policy Server - CyberPanel" -msgstr "邮箱策略服务器 - CyberPanel" - -#: emailPremium/templates/emailPremium/policyServer.html:13 -msgid "Email Policy Server Configurations!" -msgstr "电子邮件策略服务器配置!" - -#: emailPremium/templates/emailPremium/policyServer.html:14 -msgid "Turn ON Email Policy Server to use Email Limits Feature. " -msgstr "打开邮箱策略服务器以使用邮箱限制功能。 " - -#: emailPremium/templates/emailPremium/policyServer.html:40 -#: manageServices/templates/manageServices/managePostfix.html:41 -#: manageServices/templates/manageServices/managePowerDNS.html:112 -#: manageServices/templates/manageServices/managePureFtpd.html:41 -msgid "Save changes" -msgstr "保存更改" - -#: emailPremium/templates/emailPremium/policyServer.html:52 -#: firewall/templates/firewall/secureSSH.html:78 -#: mailServer/templates/mailServer/dkimManager.html:40 -#: managePHP/templates/managePHP/editPHPConfig.html:148 -#: manageServices/templates/manageServices/managePostfix.html:51 -#: manageServices/templates/manageServices/managePowerDNS.html:122 -#: manageServices/templates/manageServices/managePureFtpd.html:51 -msgid "Error message: " -msgstr "错误信息: " - -#: emailPremium/templates/emailPremium/policyServer.html:56 -#: manageServices/templates/manageServices/managePostfix.html:55 -#: manageServices/templates/manageServices/managePowerDNS.html:126 -#: manageServices/templates/manageServices/managePureFtpd.html:55 -msgid "Changes successfully applied." -msgstr "已成功应用更改。" - -#: filemanager/templates/filemanager/index.html:5 -msgid "File Manager - CyberPanel" -msgstr "文件管理器 - CyberPanel" - -#: filemanager/templates/filemanager/index.html:54 -msgid " File Manager" -msgstr " 文件管理器" - -#: filemanager/templates/filemanager/index.html:58 -#: filemanager/templates/filemanager/index.html:197 -#: filemanager/templates/filemanager/index.html:227 -msgid "Upload" -msgstr "上传" - -#: filemanager/templates/filemanager/index.html:61 -msgid "New File" -msgstr "新文件" - -#: filemanager/templates/filemanager/index.html:64 -msgid "New Folder" -msgstr "新文件夹" - -#: filemanager/templates/filemanager/index.html:70 -#: filemanager/templates/filemanager/index.html:557 -#: filemanager/templates/filemanager/index.html:693 -msgid "Copy" -msgstr "复制" - -#: filemanager/templates/filemanager/index.html:73 -#: filemanager/templates/filemanager/index.html:522 -#: filemanager/templates/filemanager/index.html:691 -msgid "Move" -msgstr "移动" - -#: filemanager/templates/filemanager/index.html:76 -#: filemanager/templates/filemanager/index.html:587 -#: filemanager/templates/filemanager/index.html:694 -msgid "Rename" -msgstr "重命名" - -#: filemanager/templates/filemanager/index.html:82 -#: filemanager/templates/filemanager/index.html:432 -#: filemanager/templates/filemanager/index.html:459 -#: filemanager/templates/filemanager/index.html:697 -msgid "Compress" -msgstr "压缩" - -#: filemanager/templates/filemanager/index.html:85 -#: filemanager/templates/filemanager/index.html:487 -#: filemanager/templates/filemanager/index.html:698 -msgid "Extract" -msgstr "解压" - -#: filemanager/templates/filemanager/index.html:88 -msgid "Fix Permissions" -msgstr "修复权限" - -#: filemanager/templates/filemanager/index.html:113 -msgid "Current Path" -msgstr "当前路径" - -#: filemanager/templates/filemanager/index.html:138 -msgid "Back" -msgstr "返回" - -#: filemanager/templates/filemanager/index.html:142 -#: serverLogs/templates/serverLogs/accessLogs.html:38 -#: serverLogs/templates/serverLogs/emailLogs.html:39 -#: serverLogs/templates/serverLogs/errorLogs.html:35 -#: serverLogs/templates/serverLogs/ftplogs.html:35 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 -#: websiteFunctions/templates/websiteFunctions/listCron.html:36 -msgid "Refresh" -msgstr "刷新" - -#: filemanager/templates/filemanager/index.html:146 -msgid "Select All" -msgstr "全选" - -#: filemanager/templates/filemanager/index.html:150 -msgid "UnSelect All" -msgstr "取消全选" - -#: filemanager/templates/filemanager/index.html:159 -msgid "Size (KB)" -msgstr "大小(KB)" - -#: filemanager/templates/filemanager/index.html:160 -msgid "Last Modified" -msgstr "最后修改时间" - -#: filemanager/templates/filemanager/index.html:161 -msgid "Permissions" -msgstr "权限" - -#: filemanager/templates/filemanager/index.html:181 -msgid "Upload File" -msgstr "上传文件" - -#: filemanager/templates/filemanager/index.html:181 -msgid "Upload Limits" -msgstr "上传限制" - -#: filemanager/templates/filemanager/index.html:187 -msgid "Upload queue" -msgstr "上传队列" - -#: filemanager/templates/filemanager/index.html:188 -msgid "Queue length:" -msgstr "队列进度:" - -#: filemanager/templates/filemanager/index.html:192 -msgid "Drop" -msgstr "下降" - -#: filemanager/templates/filemanager/index.html:193 -msgid "Drop Files here to upload them." -msgstr "拖拽文件到此来上传。" - -#: filemanager/templates/filemanager/index.html:205 -msgid "Progress" -msgstr "进度" - -#: filemanager/templates/filemanager/index.html:233 -msgid "Remove" -msgstr "移除" - -#: filemanager/templates/filemanager/index.html:243 -msgid "Queue progress:" -msgstr "队列进度:" - -#: filemanager/templates/filemanager/index.html:252 -msgid "can not be uploaded, Error message:" -msgstr "无法上传,错误消息:" - -#: filemanager/templates/filemanager/index.html:256 -msgid "Upload all" -msgstr "全部上传" - -#: filemanager/templates/filemanager/index.html:259 -msgid "Cancel all" -msgstr "取消所有" - -#: filemanager/templates/filemanager/index.html:262 -msgid "Remove all" -msgstr "移除所有" - -#: filemanager/templates/filemanager/index.html:298 -msgid "File Successfully saved." -msgstr "文件成功保存。" - -#: filemanager/templates/filemanager/index.html:305 -#: firewall/templates/firewall/secureSSH.html:68 -#: managePHP/templates/managePHP/editPHPConfig.html:138 -#: managePHP/templates/managePHP/editPHPConfig.html:205 -#: userManagment/templates/userManagment/apiAccess.html:53 -#: userManagment/templates/userManagment/modifyACL.html:436 -#: userManagment/templates/userManagment/resellerCenter.html:58 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 -msgid "Save Changes" -msgstr "保存修改" - -#: filemanager/templates/filemanager/index.html:322 -msgid "Create new folder!" -msgstr "创建新的文件夹!" - -#: filemanager/templates/filemanager/index.html:330 -msgid "New Folder Name" -msgstr "新文件夹名称" - -#: filemanager/templates/filemanager/index.html:332 -msgid "Folder will be created in your current directory" -msgstr "文件夹将在当前目录中创建" - -#: filemanager/templates/filemanager/index.html:334 -msgid "Create Folder" -msgstr "创建文件夹" - -#: filemanager/templates/filemanager/index.html:347 -msgid "Folder Successfully created." -msgstr "文件夹创建成功。" - -#: filemanager/templates/filemanager/index.html:366 -msgid "Create new file!" -msgstr "创建新文件!" - -#: filemanager/templates/filemanager/index.html:374 -msgid "New File Name" -msgstr "新文件名" - -#: filemanager/templates/filemanager/index.html:376 -msgid "" -"File will be created in your current directory, if it already exists it will " -"not overwirte." -msgstr "文件将在当前目录中创建,如果它已存在将不会被覆盖。" - -#: filemanager/templates/filemanager/index.html:378 -msgid "Create File" -msgstr "创建文件" - -#: filemanager/templates/filemanager/index.html:391 -msgid "File Successfully created." -msgstr "文件已成功创建。" - -#: filemanager/templates/filemanager/index.html:407 -msgid "Confirm Deletion!" -msgstr "确认删除!" - -#: filemanager/templates/filemanager/index.html:440 -msgid "List of files/folder!" -msgstr "文件/文件夹列表!" - -#: filemanager/templates/filemanager/index.html:444 -msgid "Compressed File Name" -msgstr "压缩包文件名" - -#: filemanager/templates/filemanager/index.html:446 -msgid "Enter without extension name!" -msgstr "请不要输入扩展名!" - -#: filemanager/templates/filemanager/index.html:450 -msgid "Compression Type" -msgstr "压缩类型" - -#: filemanager/templates/filemanager/index.html:475 -msgid "Extracting" -msgstr "解压中" - -#: filemanager/templates/filemanager/index.html:483 -msgid "Extract in" -msgstr "提取至" - -#: filemanager/templates/filemanager/index.html:485 -msgid "You can enter . to extract in current directory!" -msgstr "您可以输入 . 解压至当前目录!" - -#: filemanager/templates/filemanager/index.html:503 -msgid "Move Files" -msgstr "移动文件" - -#: filemanager/templates/filemanager/index.html:511 -#: filemanager/templates/filemanager/index.html:546 -msgid "List of files/folders!" -msgstr "文件(夹)列表!" - -#: filemanager/templates/filemanager/index.html:515 -msgid "Move to" -msgstr "移动到" - -#: filemanager/templates/filemanager/index.html:517 -msgid "Enter a path to move your files!" -msgstr "输入新文件夹的路径!" - -#: filemanager/templates/filemanager/index.html:538 -msgid "Copy Files" -msgstr "复制文件" - -#: filemanager/templates/filemanager/index.html:550 -msgid "Copy to" -msgstr "复制到" - -#: filemanager/templates/filemanager/index.html:552 -msgid "Enter a path to copy your files to!" -msgstr "输入目的路径以复制文件!" - -#: filemanager/templates/filemanager/index.html:572 -msgid "Renaming" -msgstr "重命名" - -#: filemanager/templates/filemanager/index.html:580 -msgid "New Name" -msgstr "新建名称" - -#: filemanager/templates/filemanager/index.html:582 -msgid "Enter new name of file!" -msgstr "输入新的文件名!" - -#: filemanager/templates/filemanager/index.html:602 -msgid "Changing permissions for" -msgstr "修改权限对于" - -#: filemanager/templates/filemanager/index.html:611 -msgid "Mode" -msgstr "模式" - -#: filemanager/templates/filemanager/index.html:612 -#: serverStatus/templates/serverStatus/topProcesses.html:193 -msgid "User" -msgstr "用户" - -#: filemanager/templates/filemanager/index.html:613 -msgid "Group" -msgstr "组" - -#: filemanager/templates/filemanager/index.html:614 -msgid "World" -msgstr "世界" - -#: filemanager/templates/filemanager/index.html:619 -msgid "Read" -msgstr "已读" - -#: filemanager/templates/filemanager/index.html:625 -msgid "Write" -msgstr "写入" - -#: filemanager/templates/filemanager/index.html:631 -msgid "Execute" -msgstr "执行" - -#: filemanager/templates/filemanager/index.html:647 -#: filemanager/templates/filemanager/index.html:695 -msgid "Change Permissions" -msgstr "改变权限" - -#: filemanager/templates/filemanager/index.html:648 -msgid "Change Recursively" -msgstr "向下递归改变" - -#: filemanager/templates/filemanager/index.html:692 -msgid "Download" -msgstr "下载" - -#: firewall/templates/firewall/csf.html:3 -msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" -msgstr "CSF(配置服务器安全和防火墙)- CyberPanel" - -#: firewall/templates/firewall/csf.html:13 -msgid "CSF (ConfigServer Security and Firewall)!" -msgstr "CSF(ConfigServer 安全与防火墙)!" - -#: firewall/templates/firewall/csf.html:14 -msgid "" -"On this page you can configure CSF (ConfigServer Security and Firewall) " -"settings." -msgstr "在此页面,您可以配置CSF(ConfigServer 安全与防火墙)设置。" - -#: firewall/templates/firewall/csf.html:28 -msgid "CSF is not installed " -msgstr "CSF未被安装 " - -#: firewall/templates/firewall/csf.html:55 -msgid "CSF successfully installed, refreshing page in 3 seconds.." -msgstr "CSF 已成功安装, 将在 3 秒内刷新页面。" - -#: firewall/templates/firewall/csf.html:66 -msgid "In winter we must protect each other.." -msgstr "我们必须在黑暗中守望相助。" - -#: firewall/templates/firewall/csf.html:90 -msgid "General" -msgstr "常规" - -#: firewall/templates/firewall/csf.html:100 -msgid "LFD" -msgstr "登录失败守护程序" - -#: firewall/templates/firewall/csf.html:109 -msgid "Remove CSF" -msgstr "移除 CSF" - -#: firewall/templates/firewall/csf.html:112 -msgid "Completely Remove CSF" -msgstr "彻底清除CSF" - -#: firewall/templates/firewall/csf.html:126 -msgid "Testing Mode" -msgstr "测试模式" - -#: firewall/templates/firewall/csf.html:133 -msgid "TCP IN Ports" -msgstr "TCP传入端口" - -#: firewall/templates/firewall/csf.html:143 -msgid "TCP Out Ports" -msgstr "TCP传出端口" - -#: firewall/templates/firewall/csf.html:153 -msgid "UDP In Ports" -msgstr "UDP传入端口" - -#: firewall/templates/firewall/csf.html:163 -msgid "UDP Out Ports" -msgstr "UDP传出端口" - -#: firewall/templates/firewall/csf.html:181 -msgid "Allow IP" -msgstr "允许 IP" - -#: firewall/templates/firewall/csf.html:191 -msgid "Block IP Address" -msgstr "阻止 IP 地址" - -#: firewall/templates/firewall/csf.html:203 -msgid "Coming Soon." -msgstr "即将来临" - -#: firewall/templates/firewall/firewall.html:3 -msgid "Firewall - CyberPanel" -msgstr "防火墙 - CyberPanel" - -#: firewall/templates/firewall/firewall.html:13 -msgid "Add/Delete Firewall Rules" -msgstr "添加/删除防火墙规则" - -#: firewall/templates/firewall/firewall.html:14 -msgid "" -"On this page you can add/delete firewall rules. (By default all ports are " -"blocked, except mentioned below)" -msgstr "此页面可以添加/删除防火墙规则(除以下端口外, 所有端口默认关闭)" - -#: firewall/templates/firewall/firewall.html:19 -msgid "Add/Delete Rules" -msgstr "添加/删除规则" - -#: firewall/templates/firewall/firewall.html:56 -msgid "Action failed. Error message:" -msgstr "操作失败, 错误信息:" - -#: firewall/templates/firewall/firewall.html:61 -#: serverStatus/templates/serverStatus/litespeedStatus.html:82 -#: serverStatus/templates/serverStatus/litespeedStatus.html:305 -msgid "Action successful." -msgstr "操作成功。" - -#: firewall/templates/firewall/firewall.html:121 -msgid "Protocol" -msgstr "协议" - -#: firewall/templates/firewall/firewall.html:157 -msgid "Rule successfully added." -msgstr "成功添加规则。" - -#: firewall/templates/firewall/index.html:3 -msgid "Security - CyberPanel" -msgstr "安全 - CyberPanel" - -#: firewall/templates/firewall/index.html:12 -msgid "Security Functions" -msgstr "安全" - -#: firewall/templates/firewall/index.html:13 -msgid "Manage the security of the server on this page." -msgstr "在此页面管理服务器安全相关内容。" - -#: firewall/templates/firewall/modSecurity.html:3 -msgid "ModSecurity - CyberPanel" -msgstr "ModSecurity - CyberPanel" - -#: firewall/templates/firewall/modSecurity.html:14 -#: firewall/templates/firewall/modSecurity.html:208 -msgid "ModSecurity Configurations!" -msgstr "ModSecurity 设置!" - -#: firewall/templates/firewall/modSecurity.html:18 -#: firewall/templates/firewall/modSecurity.html:212 -#: firewall/templates/firewall/modSecurityRules.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -msgid "ModSec Docs" -msgstr "ModSecurity 文档" - -#: firewall/templates/firewall/modSecurity.html:20 -#: firewall/templates/firewall/modSecurity.html:214 -msgid "On this page you can configure ModSecurity settings." -msgstr "在这一页,你可以配置ModSecurity的设置。" - -#: firewall/templates/firewall/modSecurity.html:26 -#: firewall/templates/firewall/modSecurity.html:220 -msgid "ModSecurity" -msgstr "ModSecurity" - -#: firewall/templates/firewall/modSecurity.html:32 -#: firewall/templates/firewall/modSecurity.html:229 -#: firewall/templates/firewall/modSecurityRules.html:70 -#: firewall/templates/firewall/modSecurityRulesPacks.html:28 -#: firewall/templates/firewall/spamassassin.html:29 -msgid "ModSecurity is not installed " -msgstr "ModSecurity未被安装 " - -#: firewall/templates/firewall/modSecurity.html:61 -#: firewall/templates/firewall/modSecurity.html:257 -#: firewall/templates/firewall/spamassassin.html:55 -msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." -msgstr "ModSecurity安装成功,将在3秒内刷新页面..." - -#: firewall/templates/firewall/modSecurity.html:73 -#: firewall/templates/firewall/modSecurity.html:269 -#: firewall/templates/firewall/spamassassin.html:66 -msgid "Winter is coming, but so is ModSecurity." -msgstr "网络时代风起云涌,但我们有ModSecurity保护您。" - -#: firewall/templates/firewall/modSecurity.html:174 -#: firewall/templates/firewall/modSecurity.html:362 -#: firewall/templates/firewall/spamassassin.html:169 -msgid "Failed to save ModSecurity configurations. Error message: " -msgstr "无法保存 ModSecurity 配置。错误消息: " - -#: firewall/templates/firewall/modSecurity.html:179 -#: firewall/templates/firewall/modSecurity.html:367 -#: firewall/templates/firewall/spamassassin.html:173 -msgid "ModSecurity configurations successfully saved." -msgstr "ModSecurity的配置成功保存。" - -#: firewall/templates/firewall/modSecurityRules.html:3 -msgid "ModSecurity Rules - CyberPanel" -msgstr "ModSecurity 规则 - CyberPanel" - -#: firewall/templates/firewall/modSecurityRules.html:13 -msgid "ModSecurity Rules!" -msgstr "ModSecurity 规则!" - -#: firewall/templates/firewall/modSecurityRules.html:14 -msgid "On this page you can add/delete ModSecurity rules." -msgstr "在这个页面,你可以添加/删除ModSecurity规则。" - -#: firewall/templates/firewall/modSecurityRules.html:42 -msgid "Save Rules!" -msgstr "保存规则!" - -#: firewall/templates/firewall/modSecurityRules.html:49 -msgid "ModSecurity Rules Saved" -msgstr "已保存 ModSecurity 规则" - -#: firewall/templates/firewall/modSecurityRules.html:58 -msgid "Could not save rules, Error message: " -msgstr "无法保存规则,错误消息: " - -#: firewall/templates/firewall/modSecurityRulesPacks.html:3 -msgid "ModSecurity Rules Packs - CyberPanel" -msgstr "ModSecurity 规则包 - 网络面板" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:20 -msgid "ModSecurity Rules Packages!" -msgstr "ModSecurity 规则包!" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:14 -msgid "Install/Un-install ModSecurity rules packages." -msgstr "安装/卸载 ModSecurity 规则包。" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:60 -#: firewall/templates/firewall/modSecurityRulesPacks.html:71 -msgid "Configure" -msgstr "配置" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:84 -#: firewall/templates/firewall/modSecurityRulesPacks.html:96 -msgid "Operation successful." -msgstr "操作成功。" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:92 -msgid "Operation failed, Error message: " -msgstr "操作失败,错误消息: " - -#: firewall/templates/firewall/modSecurityRulesPacks.html:110 -msgid "Supplier" -msgstr "供应商" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:111 -msgid "Filename" -msgstr "文件名" - -#: firewall/templates/firewall/secureSSH.html:3 -msgid "Secure SSH - CyberPanel" -msgstr "SSH加固 - CyberPanel" - -#: firewall/templates/firewall/secureSSH.html:13 -msgid "SSH Docs" -msgstr "SSH 文档" - -#: firewall/templates/firewall/secureSSH.html:14 -msgid "Secure or harden SSH Configurations." -msgstr "SSH设置已保存。" - -#: firewall/templates/firewall/secureSSH.html:28 -#: managePHP/templates/managePHP/editPHPConfig.html:29 -msgid "Basic" -msgstr "基础" - -#: firewall/templates/firewall/secureSSH.html:34 -msgid "SSH Keys" -msgstr "SSH密钥" - -#: firewall/templates/firewall/secureSSH.html:47 -msgid "SSH Port" -msgstr "SSH端口" - -#: firewall/templates/firewall/secureSSH.html:56 -msgid "Permit Root Login" -msgstr "允许ROOT登陆" - -#: firewall/templates/firewall/secureSSH.html:60 -msgid "" -"Before disabling root login, make sure you have another account with sudo " -"priviliges on server." -msgstr "禁用ROOT登陆前,请确保您在服务器上拥有另一个sudo权限的用户。" - -#: firewall/templates/firewall/secureSSH.html:82 -msgid "SSH Configurations Saved." -msgstr "SSH设置已保存。" - -#: firewall/templates/firewall/secureSSH.html:121 -msgid "Key" -msgstr "密钥" - -#: firewall/templates/firewall/secureSSH.html:150 -msgid "Add Key" -msgstr "添加密钥" - -#: firewall/templates/firewall/secureSSH.html:167 -msgid "SSH Key Deleted" -msgstr "SSH密钥已删除" - -#: ftp/templates/ftp/createFTPAccount.html:3 -msgid "Create FTP Account - CyberPanel" -msgstr "创建FTP用户 - CyberPanel" - -#: ftp/templates/ftp/createFTPAccount.html:13 -msgid "" -"Select the website from list, and its home directory will be set as the path " -"to ftp account." -msgstr "在列表中选择一个网站, 它的根目录将会设为FTP的根目录。" - -#: ftp/templates/ftp/createFTPAccount.html:26 -#: ftp/templates/ftp/deleteFTPAccount.html:25 -#: ftp/templates/ftp/listFTPAccounts.html:26 -msgid "PureFTPD is disabled." -msgstr "PureFTPD已被禁用。" - -#: ftp/templates/ftp/createFTPAccount.html:67 -msgid "FTP Password" -msgstr "FTP密码" - -#: ftp/templates/ftp/createFTPAccount.html:90 -msgid "Path (Relative)" -msgstr "相对路径" - -#: ftp/templates/ftp/createFTPAccount.html:92 -msgid "Leave empty to select default home directory." -msgstr "留空则设置为默认根目录。" - -#: ftp/templates/ftp/createFTPAccount.html:105 -msgid "Create FTP" -msgstr "创建FTP用户" - -#: ftp/templates/ftp/createFTPAccount.html:113 -msgid "Cannot create FTP account. Error message:" -msgstr "无法创建FTP用户, 错误信息:" - -#: ftp/templates/ftp/createFTPAccount.html:118 -#: ftp/templates/ftp/createFTPAccount.html:122 -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid "FTP Account with username:" -msgstr "FTP账户用户名:" - -#: ftp/templates/ftp/createFTPAccount.html:119 -#: ftp/templates/ftp/createFTPAccount.html:123 -#: userManagment/templates/userManagment/createUser.html:129 -msgid "is successfully created." -msgstr "已成功创建。" - -#: ftp/templates/ftp/deleteFTPAccount.html:3 -msgid "Delete FTP Account - CyberPanel" -msgstr "删除FTP用户 - CyberPanel" - -#: ftp/templates/ftp/deleteFTPAccount.html:13 -msgid "Select domain and delete its related FTP accounts." -msgstr "选择域名并删除与之相关的FTP账户。" - -#: ftp/templates/ftp/deleteFTPAccount.html:52 -msgid "Select FTP Account" -msgstr "选择FTP用户" - -#: ftp/templates/ftp/deleteFTPAccount.html:83 -msgid "Cannot delete account. Error message:" -msgstr "无法删除账户, 错误信息:" - -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid " is successfully deleted." -msgstr " 已成功删除。" - -#: ftp/templates/ftp/deleteFTPAccount.html:91 -#: userManagment/templates/userManagment/deleteUser.html:70 -msgid "Could not connect to the server. Please refresh this page." -msgstr "无法连接到服务器,请刷新此页面。" - -#: ftp/templates/ftp/index.html:3 -msgid "FTP Functions - CyberPanel" -msgstr "FTP功能 - CyberPanel" - -#: ftp/templates/ftp/index.html:13 -msgid "Delete and create FTP accounts on this page." -msgstr "在此页面添加, 编辑和删除FTP账户。" - -#: ftp/templates/ftp/listFTPAccounts.html:3 -msgid "List FTP Accounts - CyberPanel" -msgstr "查看FTP用户 - CyberPanel" - -#: ftp/templates/ftp/listFTPAccounts.html:14 -msgid "List FTP Accounts or change their passwords." -msgstr "列出FTP账户或修改密码。" - -#: ftp/templates/ftp/listFTPAccounts.html:66 -msgid "Password changed for" -msgstr "已为修改密码" - -#: ftp/templates/ftp/listFTPAccounts.html:70 -msgid "" -"Cannot change password for {$ ftpUsername $}. Error message:" -msgstr "无法修改 {$ ftpUsername $} 的密码, 错误信息:" - -#: ftp/templates/ftp/listFTPAccounts.html:124 -msgid "Directory" -msgstr "目录" - -#: mailServer/templates/mailServer/changeEmailPassword.html:3 -msgid "Change Email Password - CyberPanel" -msgstr "修改邮箱密码 - CyberPanel" - -#: mailServer/templates/mailServer/changeEmailPassword.html:12 -#: mailServer/templates/mailServer/changeEmailPassword.html:19 -#: userManagment/templates/userManagment/createACL.html:299 -#: userManagment/templates/userManagment/modifyACL.html:303 -msgid "Change Email Password" -msgstr "修改邮箱密码" - -#: mailServer/templates/mailServer/changeEmailPassword.html:13 -msgid "Select a website from the list, to change its password." -msgstr "在列表中选择网站并修改密码。" - -#: mailServer/templates/mailServer/changeEmailPassword.html:27 -#: mailServer/templates/mailServer/createEmailAccount.html:27 -#: mailServer/templates/mailServer/deleteEmailAccount.html:27 -#: mailServer/templates/mailServer/emailForwarding.html:26 -#: mailServer/templates/mailServer/listEmails.html:27 -msgid "Postfix is disabled." -msgstr "Postfix已被禁用。" - -#: mailServer/templates/mailServer/changeEmailPassword.html:58 -#: mailServer/templates/mailServer/deleteEmailAccount.html:58 -#: mailServer/templates/mailServer/emailForwarding.html:52 -msgid "Select Email" -msgstr "选择邮箱" - -#: mailServer/templates/mailServer/changeEmailPassword.html:106 -#: mailServer/templates/mailServer/deleteEmailAccount.html:90 -msgid "Cannot delete email account. Error message:" -msgstr "无法删除邮箱账户。错误信息:" - -#: mailServer/templates/mailServer/changeEmailPassword.html:111 -msgid "Password successfully changed for :" -msgstr "已成功为修改密码 :" - -#: mailServer/templates/mailServer/changeEmailPassword.html:118 -#: mailServer/templates/mailServer/deleteEmailAccount.html:102 -msgid "Currently no email accounts exist for this domain." -msgstr "目前此域名并没有邮箱账户。" - -#: mailServer/templates/mailServer/createEmailAccount.html:3 -msgid "Create Email Account - CyberPanel" -msgstr "创建邮箱用户 - CyberPanel" - -#: mailServer/templates/mailServer/createEmailAccount.html:13 -msgid "Select a website from the list, to create an email account." -msgstr "请从列表中选择一个网站来创建邮箱账户。" - -#: mailServer/templates/mailServer/createEmailAccount.html:106 -msgid "Cannot create email account. Error message:" -msgstr "无法创建邮箱账户,错误信息:" - -#: mailServer/templates/mailServer/createEmailAccount.html:111 -msgid "Email with id :" -msgstr "邮箱 ID:" - -#: mailServer/templates/mailServer/createEmailAccount.html:112 -msgid " is successfully created." -msgstr " 已成功创建。" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:3 -msgid "Delete Email Account - CyberPanel" -msgstr "删除邮箱用户 - CyberPanel" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:13 -msgid "Select a website from the list, to delete an email account." -msgstr "请从列表中选择一个网站,来删除邮箱账号。" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:95 -msgid "Email with id : {$ deletedID $} is successfully deleted." -msgstr "邮件ID: {$ deletedID $} 已成功删除。" - -#: mailServer/templates/mailServer/dkimManager.html:3 -msgid "DKIM Manager - CyberPanel" -msgstr "DKIM 管理器 - CyberPanel" - -#: mailServer/templates/mailServer/dkimManager.html:13 -msgid "DKIM Docs" -msgstr "DKIM文档" - -#: mailServer/templates/mailServer/dkimManager.html:14 -msgid "This page can be used to generate and view DKIM keys for Domains" -msgstr "本页可用于生成和查看域名的DKIM密钥" - -#: mailServer/templates/mailServer/dkimManager.html:27 -msgid "OpenDKIM is not installed. " -msgstr "OpenDKIM未安装。" - -#: mailServer/templates/mailServer/dkimManager.html:28 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 -msgid "Install Now" -msgstr "现在安装" - -#: mailServer/templates/mailServer/dkimManager.html:48 -msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." -msgstr "OpenDKIM成功安装,页面将在3秒内刷新..." - -#: mailServer/templates/mailServer/dkimManager.html:97 -msgid "Keys not available for this domain." -msgstr "此域没有密钥。" - -#: mailServer/templates/mailServer/dkimManager.html:98 -msgid "Generate Now" -msgstr "立即生成" - -#: mailServer/templates/mailServer/dkimManager.html:110 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 -msgid "Domain" -msgstr "域名" - -#: mailServer/templates/mailServer/dkimManager.html:111 -msgid "Private Key" -msgstr "私匙" - -#: mailServer/templates/mailServer/dkimManager.html:112 -msgid "Public Key" -msgstr "公匙" - -#: mailServer/templates/mailServer/emailForwarding.html:3 -msgid "Setup Email Forwarding - CyberPanel" -msgstr "设置邮箱转发 - CyberPanel" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -#: mailServer/templates/mailServer/emailForwarding.html:19 -msgid "Setup Email Forwarding" -msgstr "设置邮件转发" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -msgid "Forwarding Docs" -msgstr "转发文档" - -#: mailServer/templates/mailServer/emailForwarding.html:13 -msgid "This page help you setup email forwarding for your emails." -msgstr "此页面可帮助您设置邮箱转发。" - -#: mailServer/templates/mailServer/emailForwarding.html:61 -msgid "Forwarding Options" -msgstr "转发设置" - -#: mailServer/templates/mailServer/emailForwarding.html:97 -#: mailServer/templates/mailServer/emailForwarding.html:118 -msgid "Source" -msgstr "来源" - -#: mailServer/templates/mailServer/emailForwarding.html:101 -msgid "or path to the program" -msgstr "或程序的路径" - -#: mailServer/templates/mailServer/emailForwarding.html:106 -msgid "Forward Email" -msgstr "转发邮箱" - -#: mailServer/templates/mailServer/index.html:3 -msgid "Mail Functions - CyberPanel" -msgstr "邮件功能 - CyberPanel" - -#: mailServer/templates/mailServer/index.html:12 -msgid "Mail Functions" -msgstr "邮件功能" - -#: mailServer/templates/mailServer/index.html:13 -msgid "Manage email accounts on this page." -msgstr "在此页面管理邮箱账号。" - -#: mailServer/templates/mailServer/listEmails.html:3 -msgid "List Email Accounts - CyberPanel" -msgstr "列出邮箱帐户 - CyberPanel" - -#: mailServer/templates/mailServer/listEmails.html:13 -#: mailServer/templates/mailServer/listEmails.html:19 -msgid "List Email Accounts" -msgstr "列出邮箱账户" - -#: mailServer/templates/mailServer/listEmails.html:14 -msgid "List Emails Accounts. Change their passwords or delete them." -msgstr "列出邮箱帐户。更改他们的密码或删除他们。" - -#: managePHP/templates/managePHP/editPHPConfig.html:3 -msgid "Edit PHP Configurations - CyberPanel" -msgstr "设置PHP参数 - CyberPanel" - -#: managePHP/templates/managePHP/editPHPConfig.html:14 -#: managePHP/templates/managePHP/editPHPConfig.html:21 -msgid "Edit PHP Configurations" -msgstr "设置PHP参数" - -#: managePHP/templates/managePHP/editPHPConfig.html:15 -msgid "Edit PHP Configurations on this page." -msgstr "在此页面设置PHP参数。" - -#: managePHP/templates/managePHP/editPHPConfig.html:36 -msgid "Advanced" -msgstr "高级" - -#: managePHP/templates/managePHP/editPHPConfig.html:65 -msgid "display_errors" -msgstr "display_errors" - -#: managePHP/templates/managePHP/editPHPConfig.html:72 -msgid "file_uploads" -msgstr "file_uploads" - -#: managePHP/templates/managePHP/editPHPConfig.html:80 -msgid "allow_url_fopen" -msgstr "allow_url_fopen" - -#: managePHP/templates/managePHP/editPHPConfig.html:88 -msgid "allow_url_include" -msgstr "allow_url_include" - -#: managePHP/templates/managePHP/editPHPConfig.html:96 -msgid "memory_limit" -msgstr "memory_limit" - -#: managePHP/templates/managePHP/editPHPConfig.html:103 -msgid "max_execution_time" -msgstr "max_execution_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:111 -msgid "upload_max_filesize" -msgstr "upload_max_filesize" - -#: managePHP/templates/managePHP/editPHPConfig.html:119 -msgid "post_max_size" -msgstr "post_max_size" - -#: managePHP/templates/managePHP/editPHPConfig.html:126 -msgid "max_input_time" -msgstr "max_input_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:218 -msgid "PHP Configs Saved." -msgstr "PHP参数已保存。" - -#: managePHP/templates/managePHP/index.html:3 -msgid "Manage PHP Installations - CyberPanel" -msgstr "管理PHP - CyberPanel" - -#: managePHP/templates/managePHP/index.html:12 -msgid "Manage PHP Installations" -msgstr "管理PHP" - -#: managePHP/templates/managePHP/index.html:13 -msgid "Edit your PHP Configurations to suit your needs." -msgstr "调整PHP参数以满足您的需求。" - -#: managePHP/templates/managePHP/installExtensions.html:3 -msgid "Install PHP Extensions - CyberPanel" -msgstr "安装PHP扩展 - CyberPanel" - -#: managePHP/templates/managePHP/installExtensions.html:14 -msgid "Install/uninstall php extensions on this page." -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版本" - -#: managePHP/templates/managePHP/installExtensions.html:47 -msgid "Search Extensions.." -msgstr "搜索扩展..." - -#: managePHP/templates/managePHP/installExtensions.html:62 -msgid "Extension Name" -msgstr "扩展名称" - -#: managePHP/templates/managePHP/installExtensions.html:63 -#: pluginHolder/templates/pluginHolder/plugins.html:30 -msgid "Description" -msgstr "描述" - -#: managePHP/templates/managePHP/installExtensions.html:65 -#: managePHP/templates/managePHP/installExtensions.html:81 -msgid "Install" -msgstr "安装" - -#: managePHP/templates/managePHP/installExtensions.html:66 -#: managePHP/templates/managePHP/installExtensions.html:86 -msgid "Uninstall" -msgstr "卸载" - -#: managePHP/templates/managePHP/installExtensions.html:115 -#: tuning/templates/tuning/phpTuning.html:115 -#: tuning/templates/tuning/phpTuning.html:255 -#: userManagment/templates/userManagment/modifyUser.html:126 -msgid "Cannot fetch details. Error message:" -msgstr "无法获取详情,错误信息:" - -#: managePHP/templates/managePHP/installExtensions.html:119 -msgid "Cannot perform operation. Error message:" -msgstr "无法完成操作,错误信息:" - -#: manageSSL/templates/manageSSL/index.html:3 -msgid "SSL Functions - CyberPanel" -msgstr "SSL功能 - CyberPanel" - -#: manageSSL/templates/manageSSL/index.html:13 -msgid "SSL Functions" -msgstr "SSL功能" - -#: manageSSL/templates/manageSSL/index.html:14 -msgid "Issue Let’s Encrypt SSLs for websites and hostname." -msgstr "为网站以及主机申请签发Let's Encrypt的SSL证书。" - -#: manageSSL/templates/manageSSL/manageSSL.html:3 -msgid "Manage SSL - CyberPanel" -msgstr "管理SSL - CyberPanel" - -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -msgid "SSL Docs" -msgstr "SSL文档" - -#: manageSSL/templates/manageSSL/manageSSL.html:14 -msgid "" -"This page can be used to issue Let’s Encrypt SSL for existing websites on " -"server." -msgstr "在此页面可以为已在服务器上创建的网站申请签发Let's Encrypt的SSL证书。" - -#: manageSSL/templates/manageSSL/manageSSL.html:42 -#: manageSSL/templates/manageSSL/sslForHostName.html:42 -#: manageSSL/templates/manageSSL/sslForMailServer.html:40 -msgid "Issue SSL" -msgstr "签发SSL证书" - -#: manageSSL/templates/manageSSL/manageSSL.html:52 -#: manageSSL/templates/manageSSL/sslForHostName.html:52 -#: manageSSL/templates/manageSSL/sslForMailServer.html:50 -msgid "Cannot issue SSL. Error message:" -msgstr "无法签发SSL证书,错误信息:" - -#: manageSSL/templates/manageSSL/manageSSL.html:56 -msgid "SSL Issued for" -msgstr "已为签发证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:3 -msgid "Issue SSL For Hostname - CyberPanel" -msgstr "为面板主机签发SSL证书 - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:20 -msgid "Issue SSL For Hostname" -msgstr "为面板主机签发SSL证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:14 -msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." -msgstr "用于在认证的SSL中访问CyberPanel的Let's Encrypt SSL域名证书" - -#: manageSSL/templates/manageSSL/sslForHostName.html:56 -#: manageSSL/templates/manageSSL/sslForHostName.html:60 -msgid "SSL Issued. You can now access CyberPanel at:" -msgstr "SSL证书已签发, 您可以通过此域名登陆CyberPanel:" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:3 -msgid "Issue SSL For MailServer - CyberPanel" -msgstr "签发邮件服务器 SSL - 网络面板" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:20 -msgid "Issue SSL For MailServer" -msgstr "签发邮件服务器 SSL" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:14 -msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." -msgstr "Let’s Encrypt SSL 给邮件服务器 (Postfix/Dovecot) 。" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:54 -msgid "SSL Issued, your mail server now uses Lets Encrypt!" -msgstr "SSL成功签发,您的邮件服务器现在使用Lets Encrypt!" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:58 -msgid "Could not connect to server, please refresh this page." -msgstr "无法连接到服务器, 请刷新此页面。" - -#: manageServices/templates/manageServices/managePostfix.html:3 -msgid "Manage Email Server (Postfix) - CyberPanel" -msgstr "管理邮箱服务器 (Postfix) - CyberPanel" - -#: manageServices/templates/manageServices/managePostfix.html:13 -msgid "Manage Email Server (Postfix)!" -msgstr "管理邮件服务器(Postfix)" - -#: manageServices/templates/manageServices/managePostfix.html:13 -#: manageServices/templates/manageServices/managePowerDNS.html:16 -#: manageServices/templates/manageServices/managePureFtpd.html:13 -msgid "Services Docs" -msgstr "服务文档" - -#: manageServices/templates/manageServices/managePostfix.html:14 -msgid "Enable or disable Email services. " -msgstr "启用或禁用邮件服务。" - -#: manageServices/templates/manageServices/managePostfix.html:79 -#: manageServices/templates/manageServices/managePowerDNS.html:149 -#: manageServices/templates/manageServices/managePureFtpd.html:79 -msgid "Only administrator can manage services." -msgstr "只有管理员可以管理服务。" - -#: manageServices/templates/manageServices/managePowerDNS.html:3 -msgid "Manage PowerDNS - CyberPanel" -msgstr "管理 PowerDNS - CyberPanel" - -#: manageServices/templates/manageServices/managePowerDNS.html:13 -msgid "Manage PowerDNS!" -msgstr "管理 PowerDNS!" - -#: manageServices/templates/manageServices/managePowerDNS.html:17 -msgid "Enable or disable DNS services. " -msgstr "启用或禁用DNS服务。" - -#: manageServices/templates/manageServices/managePowerDNS.html:42 -msgid "Select Function Mode" -msgstr "选择功能模式" - -#: manageServices/templates/manageServices/managePowerDNS.html:53 -msgid "Slave Server" -msgstr "副服务器" - -#: manageServices/templates/manageServices/managePowerDNS.html:60 -msgid "Master Server IP" -msgstr "主服务器IP" - -#: manageServices/templates/manageServices/managePowerDNS.html:67 -msgid "Slave Server 1" -msgstr "副服务器1" - -#: manageServices/templates/manageServices/managePowerDNS.html:74 -msgid "Slave Server IP" -msgstr "副服务器IP" - -#: manageServices/templates/manageServices/managePowerDNS.html:81 -msgid "Slave Server 2 (Optional)" -msgstr "副服务器2(可选)" - -#: manageServices/templates/manageServices/managePowerDNS.html:88 -msgid "Slave Server IP 2 (Optional)" -msgstr "副服务器IP 2(可选)" - -#: manageServices/templates/manageServices/managePowerDNS.html:95 -msgid "Slave Server 3 (Optional)" -msgstr "副服务器3(可选)" - -#: manageServices/templates/manageServices/managePowerDNS.html:102 -msgid "Slave Server IP 3 (Optional)" -msgstr "副服务器IP 3(可选)" - -#: manageServices/templates/manageServices/managePureFtpd.html:3 -msgid "Manage FTP Server (Pure FTPD) - CyberPanel" -msgstr "管理 FTP 服务器 (Pure FTPD) - CyberPanel" - -#: manageServices/templates/manageServices/managePureFtpd.html:13 -msgid "Manage FTP Server (Pure FTPD)!" -msgstr "管理FTP服务(Pure FTPD)" - -#: manageServices/templates/manageServices/managePureFtpd.html:14 -msgid "Enable or disable FTP services. " -msgstr "启用或禁用FTP服务。" - -#: manageServices/templates/manageServices/managePureFtpd.html:22 -msgid "Manage PureFTPD" -msgstr "管理PureFTPD" - -#: packages/templates/packages/createPackage.html:3 -msgid "Create Package - CyberPanel" -msgstr "创建套餐 - CyberPanel" - -#: packages/templates/packages/createPackage.html:14 -#: packages/templates/packages/deletePackage.html:13 -#: packages/templates/packages/index.html:14 -#: packages/templates/packages/modifyPackage.html:10 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 -msgid "" -"Packages define resources for your websites, you need to add package before " -"creating a website." -msgstr "套餐规定了您的网站可以使用的资源量,在创建网站前请先创建一个套餐。" - -#: packages/templates/packages/createPackage.html:19 -msgid "Package Details" -msgstr "套餐详情" - -#: packages/templates/packages/createPackage.html:41 -#: packages/templates/packages/listPackages.html:98 -#: packages/templates/packages/modifyPackage.html:44 -msgid "(0 = Unlimited)" -msgstr "(0为无限制 )" - -#: packages/templates/packages/createPackage.html:45 -#: packages/templates/packages/listPackages.html:104 -#: packages/templates/packages/modifyPackage.html:49 -msgid "Disk Space" -msgstr "硬盘空间" - -#: packages/templates/packages/createPackage.html:49 -#: packages/templates/packages/createPackage.html:57 -#: packages/templates/packages/listPackages.html:109 -#: packages/templates/packages/listPackages.html:119 -#: packages/templates/packages/modifyPackage.html:53 -#: packages/templates/packages/modifyPackage.html:61 -msgid "MB (0 = Unlimited)" -msgstr "MB (0为无限制)" - -#: packages/templates/packages/createPackage.html:53 -#: packages/templates/packages/listPackages.html:35 -#: packages/templates/packages/listPackages.html:114 -#: packages/templates/packages/modifyPackage.html:57 -msgid "Bandwidth" -msgstr "流量" - -#: packages/templates/packages/createPackage.html:62 -#: packages/templates/packages/listPackages.html:125 -#: packages/templates/packages/modifyPackage.html:66 -msgid "FTP Accounts" -msgstr "FTP用户数量" - -#: packages/templates/packages/createPackage.html:108 -msgid "Cannot create package. Error message:" -msgstr "无法创建套餐,错误信息:" - -#: packages/templates/packages/createPackage.html:113 -msgid "Successfully Created" -msgstr "已成功创建" - -#: packages/templates/packages/deletePackage.html:3 -msgid "Delete Package - CyberPanel" -msgstr "删除套餐 - CyberPanel" - -#: packages/templates/packages/deletePackage.html:56 -msgid "Cannot delete package. Error message:" -msgstr "无法删除套餐,错误信息:" - -#: packages/templates/packages/deletePackage.html:60 -msgid " Successfully Deleted." -msgstr " 已成功删除。" - -#: packages/templates/packages/index.html:3 -msgid "Packages - CyberPanel" -msgstr "套餐 - CyberPanel" - -#: packages/templates/packages/listPackages.html:3 -msgid "List Packages - CyberPanel" -msgstr "列出套餐 - CyberPanel" - -#: packages/templates/packages/listPackages.html:14 -msgid "List Packages and delete or edit them." -msgstr "列出软件包并删除或编辑它们。" - -#: packages/templates/packages/listPackages.html:34 -msgid "Diskspace" -msgstr "磁盘空间" - -#: packages/templates/packages/listPackages.html:36 -msgid "Email Accounts" -msgstr "邮件帐户" - -#: packages/templates/packages/listPackages.html:38 -msgid "FTPs" -msgstr "FTPS" - -#: packages/templates/packages/listPackages.html:39 -msgid "Child Domains" -msgstr "子域名" - -#: packages/templates/packages/listPackages.html:40 -msgid "Allow FQDN as Childs" -msgstr "允许FQDN作为Childs" - -#: packages/templates/packages/listPackages.html:152 -msgid "Additional" -msgstr "附加" - -#: packages/templates/packages/modifyPackage.html:3 -msgid "Modify Package - CyberPanel" -msgstr "修改套餐 - CyberPanel" - -#: packages/templates/packages/modifyPackage.html:117 -msgid "Cannot fetch package details. Error message:" -msgstr "无法获取套餐资料。错误信息:" - -#: packages/templates/packages/modifyPackage.html:121 -msgid "Package Details Successfully Fetched" -msgstr "套餐详情成功读取" - -#: packages/templates/packages/modifyPackage.html:125 -msgid "Successfully Modified" -msgstr "已成功修改" - -#: pluginHolder/templates/pluginHolder/plugins.html:15 -msgid "List of installed plugins on your CyberPanel." -msgstr "CyberPanel 上已安装插件的列表。" - -#: pluginHolder/templates/pluginHolder/plugins.html:31 -msgid "Version" -msgstr "版本" - -#: serverLogs/templates/serverLogs/accessLogs.html:3 -msgid "Access Logs - CyberPanel" -msgstr "访问日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/accessLogs.html:17 -msgid "Access Logs for main web server." -msgstr "主Web服务器日志。" - -#: serverLogs/templates/serverLogs/accessLogs.html:24 -#: serverLogs/templates/serverLogs/emailLogs.html:23 -#: serverLogs/templates/serverLogs/errorLogs.html:21 -#: serverLogs/templates/serverLogs/ftplogs.html:21 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 -msgid "Last 50 Lines" -msgstr "最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:41 -#: serverLogs/templates/serverLogs/emailLogs.html:42 -#: serverLogs/templates/serverLogs/errorLogs.html:38 -#: serverLogs/templates/serverLogs/ftplogs.html:38 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 -msgid "Clear Logs" -msgstr "清除日志" - -#: serverLogs/templates/serverLogs/accessLogs.html:47 -#: serverLogs/templates/serverLogs/emailLogs.html:49 -#: serverLogs/templates/serverLogs/errorLogs.html:45 -#: serverLogs/templates/serverLogs/ftplogs.html:44 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 -msgid "Last 50 Lines Fetched" -msgstr "成功获取最后50行" - -#: serverLogs/templates/serverLogs/accessLogs.html:52 -#: serverLogs/templates/serverLogs/emailLogs.html:54 -#: serverLogs/templates/serverLogs/errorLogs.html:50 -#: serverLogs/templates/serverLogs/ftplogs.html:49 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 -msgid "Could not fetch logs. Use the command line to view the log file." -msgstr "无法获取日志。请使用命令行模式查看日志文件。" - -#: serverLogs/templates/serverLogs/emailLogs.html:3 -#: serverLogs/templates/serverLogs/errorLogs.html:3 -msgid "Error Logs - CyberPanel" -msgstr "错误日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/emailLogs.html:15 -msgid "Email Logs for main web server." -msgstr "主服务器邮箱日志。" - -#: serverLogs/templates/serverLogs/errorLogs.html:14 -msgid "Error Logs for main web server." -msgstr "主服务器错误日志。" - -#: serverLogs/templates/serverLogs/ftplogs.html:3 -msgid "FTP Logs - CyberPanel" -msgstr "FTP日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/ftplogs.html:14 -msgid "FTP Logs for main web server." -msgstr "主服务器FTP日志。" - -#: serverLogs/templates/serverLogs/index.html:3 -msgid "Server Logs - CyberPanel" -msgstr "服务器日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/index.html:13 -msgid "Server Logs" -msgstr "服务器日志" - -#: serverLogs/templates/serverLogs/index.html:14 -msgid "" -"These are the logs from main server, to see logs for your website navigate " -"to: Websites -> List Websites -> Select Website -> View Logs." -msgstr "" -"此为主服务器日志,要查看网站日志请前往 网站 -> 网站列表 -> 选择网站 -> 查看日" -"志。" - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 -msgid "ModSecurity Audit Logs - CyberPanel" -msgstr "ModSecurity 审核日志 - CyberPanel" - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 -msgid "ModSecurity Audit logs" -msgstr "ModSecurity 审核日志" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 -msgid "CyberPanel Main Log File - CyberPanel" -msgstr "Cyberpanel主日志 - CyberPanel" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 -msgid "" -"This log file corresponds to errors generated by CyberPanel for your domain " -"errors log you can look into /home/domain/logs." -msgstr "" -"此日志是CyberPanel为您的域名记录的错误,您可以在/home/domain/logs查看。" - -#: serverStatus/templates/serverStatus/index.html:3 -msgid "Server Status - CyberPanel" -msgstr "服务器状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/index.html:14 -msgid "View LiteSpeed status and log files." -msgstr "查看LiteSpeed状态与日志。" - -#: serverStatus/templates/serverStatus/index.html:41 -msgid "CyberPanel Main Log" -msgstr "CyberPanel主日志" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:3 -msgid "LiteSpeed Status - CyberPanel" -msgstr "LiteSpeed状态 - CyberPanel" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:14 -#: serverStatus/templates/serverStatus/litespeedStatus.html:221 -msgid "LiteSpeed Status:" -msgstr "LiteSpeed状态:" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 -#: serverStatus/templates/serverStatus/litespeedStatus.html:222 -msgid "" -"On this page you can get information regarding your LiteSpeed processes." -msgstr "此页面可以查看LiteSpeed进程信息。" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:30 -#: serverStatus/templates/serverStatus/litespeedStatus.html:254 -msgid "LiteSpeed Processes" -msgstr "LiteSpeed进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:37 -#: serverStatus/templates/serverStatus/litespeedStatus.html:261 -msgid "Process ID" -msgstr "进程ID" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:49 -#: serverStatus/templates/serverStatus/litespeedStatus.html:273 -msgid "Main Process" -msgstr "主进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:52 -#: serverStatus/templates/serverStatus/litespeedStatus.html:276 -msgid "lscgid Process" -msgstr "lscgid进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:55 -#: serverStatus/templates/serverStatus/litespeedStatus.html:279 -msgid "Worker Process" -msgstr "工作进程" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:291 -msgid "Reboot Litespeed" -msgstr "重启LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:73 -#: serverStatus/templates/serverStatus/litespeedStatus.html:297 -msgid "Stop LiteSpeed" -msgstr "停止LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:87 -#: serverStatus/templates/serverStatus/litespeedStatus.html:310 -msgid "Error Occurred. See CyberPanel main log file." -msgstr "发生错误, 请查看CyberPanel主日志。" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:92 -#: serverStatus/templates/serverStatus/litespeedStatus.html:315 -msgid "Could not connect to server." -msgstr "无法连接到服务器。" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:138 -msgid "Switch to LiteSpeed Enterprise Web Server" -msgstr "切换到LiteSpeed企业 Web 服务器" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:149 -msgid "LiteSpeed Serial No. (License Key)" -msgstr "LiteSpeed 序列号(许可证密钥)" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:160 -msgid "Switch" -msgstr "开关" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:162 -msgid "Get 15 Days Trial" -msgstr "获得15天试用期" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:175 -msgid "" -"Note: If you select 15 days trial there is no need to enter the serial key, " -"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " -"have not used trial already." -msgstr "" -"注意:如果您选择 15 天试用版,则无需输入串行密钥,CyberPanel 将自动获取 15 天" -"试用密钥。确保此服务器尚未使用过试用版。" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:193 -msgid "With great wisdom comes great responsibility." -msgstr "能力越大,责任越大。" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:329 -msgid "License Manager" -msgstr "许可证管理器" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:336 -#: serverStatus/templates/serverStatus/litespeedStatus.html:340 -#: serverStatus/templates/serverStatus/litespeedStatus.html:341 -msgid "License Status" -msgstr "许可证状态" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:346 -#: serverStatus/templates/serverStatus/litespeedStatus.html:350 -#: serverStatus/templates/serverStatus/litespeedStatus.html:351 -msgid "Change License" -msgstr "更改许可证" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:378 -msgid "New key" -msgstr "新密钥" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:388 -msgid "Change Key" -msgstr "更改密钥" - -#: serverStatus/templates/serverStatus/services.html:3 -msgid "Services - CyberPanel" -msgstr "服务 - CyberPanel" - -#: serverStatus/templates/serverStatus/services.html:25 -msgid "Show stats for services and actions (Start, Stop, Restart)" -msgstr "显示服务状态和操作(开始、停止、重新启动)" - -#: serverStatus/templates/serverStatus/topProcesses.html:3 -msgid "Top Processes - CyberPanel" -msgstr "主进程 - CyberPanel" - -#: serverStatus/templates/serverStatus/topProcesses.html:16 -msgid "List of top processes on your server. (Refresh every 3 seconds)" -msgstr "你服务器上的顶级进程列表。(每3秒刷新一次)" - -#: serverStatus/templates/serverStatus/topProcesses.html:27 -msgid "Cores" -msgstr "核心" - -#: serverStatus/templates/serverStatus/topProcesses.html:28 -msgid "Model Name" -msgstr "模型名称" - -#: serverStatus/templates/serverStatus/topProcesses.html:29 -msgid "CPU Mhz" -msgstr "CPU Mhz" - -#: serverStatus/templates/serverStatus/topProcesses.html:30 -msgid "Cache Size" -msgstr "缓存的大小" - -#: serverStatus/templates/serverStatus/topProcesses.html:51 -msgid "Processes" -msgstr "流程" - -#: serverStatus/templates/serverStatus/topProcesses.html:53 -msgid "Sleeping" -msgstr "休眠" - -#: serverStatus/templates/serverStatus/topProcesses.html:54 -msgid "Stopped" -msgstr "停止" - -#: serverStatus/templates/serverStatus/topProcesses.html:55 -msgid "Zombie" -msgstr "僵尸进程" - -#: serverStatus/templates/serverStatus/topProcesses.html:80 -msgid "CPU Load" -msgstr "CPU负载" - -#: serverStatus/templates/serverStatus/topProcesses.html:81 -msgid "1 Min" -msgstr "1分钟" - -#: serverStatus/templates/serverStatus/topProcesses.html:82 -msgid "5 Min" -msgstr "5分钟" - -#: serverStatus/templates/serverStatus/topProcesses.html:83 -msgid "15 Min" -msgstr "15分钟" - -#: serverStatus/templates/serverStatus/topProcesses.html:104 -msgid "I/O Wait" -msgstr "I/O等待" - -#: serverStatus/templates/serverStatus/topProcesses.html:105 -msgid "Idle Time" -msgstr "空闲时间" - -#: serverStatus/templates/serverStatus/topProcesses.html:106 -msgid "HW Interrupts" -msgstr "HW中断" - -#: serverStatus/templates/serverStatus/topProcesses.html:107 -msgid "Softirqs" -msgstr "软件中断" - -#: serverStatus/templates/serverStatus/topProcesses.html:132 -#: serverStatus/templates/serverStatus/topProcesses.html:156 -msgid "Free" -msgstr "免费" - -#: serverStatus/templates/serverStatus/topProcesses.html:133 -#: serverStatus/templates/serverStatus/topProcesses.html:157 -msgid "Used" -msgstr "已使用" - -#: serverStatus/templates/serverStatus/topProcesses.html:134 -#: serverStatus/templates/serverStatus/topProcesses.html:158 -msgid "buff/cache" -msgstr "缓冲/缓存" - -#: serverStatus/templates/serverStatus/topProcesses.html:155 -msgid "SWAP" -msgstr "SWAP" - -#: serverStatus/templates/serverStatus/topProcesses.html:192 -msgid "PID" -msgstr "PID" - -#: serverStatus/templates/serverStatus/topProcesses.html:194 -msgid "VIRT" -msgstr "VIRT" - -#: serverStatus/templates/serverStatus/topProcesses.html:195 -msgid "RES" -msgstr "RES" - -#: serverStatus/templates/serverStatus/topProcesses.html:196 -msgid "State" -msgstr "状态" - -#: serverStatus/templates/serverStatus/topProcesses.html:197 -#, python-format -msgid "%%CPU" -msgstr "%%CPU" - -#: serverStatus/templates/serverStatus/topProcesses.html:198 -#, python-format -msgid "%%MEM" -msgstr "%%MEM" - -#: serverStatus/templates/serverStatus/topProcesses.html:199 -msgid "Time" -msgstr "时间" - -#: serverStatus/templates/serverStatus/topProcesses.html:200 -#: websiteFunctions/templates/websiteFunctions/listCron.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:126 -msgid "Command" -msgstr "命令" - -#: tuning/templates/tuning/index.html:3 -msgid "Server Tuning - CyberPanel" -msgstr "服务器设置 - CyberPanel" - -#: tuning/templates/tuning/index.html:12 -msgid "Server Tuning" -msgstr "服务器设置" - -#: tuning/templates/tuning/index.html:13 -msgid "" -"On this page you can set runing parameters for your webserver depending on " -"your hardware." -msgstr "此页面您可以根据您的服务器硬件调整Web服务器参数。" - -#: tuning/templates/tuning/liteSpeedTuning.html:3 -msgid "LiteSpeed Tuning - CyberPanel" -msgstr "LiteSpeed设置 - CyberPanel" - -#: tuning/templates/tuning/liteSpeedTuning.html:13 -msgid "" -"You can use this page to tweak your server according to your website " -"requirments." -msgstr "此页面您可以根据您的网站要求调整服务器参数。" - -#: tuning/templates/tuning/liteSpeedTuning.html:18 -msgid "Tuning Details" -msgstr "设置详情" - -#: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:52 -#: tuning/templates/tuning/phpTuning.html:192 -msgid "Max Connections" -msgstr "最大连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:36 -msgid "Max SSL Connections" -msgstr "最大SSL连接数" - -#: tuning/templates/tuning/liteSpeedTuning.html:44 -msgid "Connection Timeout" -msgstr "连接超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:52 -msgid "Keep Alive Timeout" -msgstr "Kepp Alive超时" - -#: tuning/templates/tuning/liteSpeedTuning.html:60 -msgid "Cache Size in memory" -msgstr "内存缓存大小" - -#: tuning/templates/tuning/liteSpeedTuning.html:67 -msgid "Enable GZIP Compression" -msgstr "开启GZIP压缩" - -#: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:97 -#: tuning/templates/tuning/phpTuning.html:237 -msgid "Currently:" -msgstr "当前:" - -#: tuning/templates/tuning/liteSpeedTuning.html:82 -msgid "Tune Web Server" -msgstr "调整Web服务器" - -#: tuning/templates/tuning/liteSpeedTuning.html:92 -msgid "" -"Cannot fetch Current Value, but you can still submit new changes, error " -"reported from server:" -msgstr "" -"无法读取当前参数, 但是您可以继续提交修改,服务器错误消息: reported from " -"server:" - -#: tuning/templates/tuning/liteSpeedTuning.html:96 -msgid "Cannot save details, Error Message: " -msgstr "无法保存设置, 错误信息: " - -#: tuning/templates/tuning/liteSpeedTuning.html:101 -msgid "Web Server Successfully tuned." -msgstr "Web服务器设置成功保存。" - -#: tuning/templates/tuning/phpTuning.html:3 -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:45 -#: tuning/templates/tuning/phpTuning.html:185 -msgid "Initial Request Timeout (secs)" -msgstr "初始化请求超时 (秒)" - -#: tuning/templates/tuning/phpTuning.html:60 -#: tuning/templates/tuning/phpTuning.html:200 -msgid "Memory Soft Limit" -msgstr "内存软限制" - -#: tuning/templates/tuning/phpTuning.html:67 -#: tuning/templates/tuning/phpTuning.html:207 -msgid "Memory Hard Limit" -msgstr "内存硬限制" - -#: tuning/templates/tuning/phpTuning.html:75 -#: tuning/templates/tuning/phpTuning.html:215 -msgid "Process Soft Limit" -msgstr "进程软限制" - -#: tuning/templates/tuning/phpTuning.html:82 -#: tuning/templates/tuning/phpTuning.html:222 -msgid "Process Hard Limit" -msgstr "进程硬限制" - -#: tuning/templates/tuning/phpTuning.html:90 -#: tuning/templates/tuning/phpTuning.html:230 -msgid "Persistent Connection" -msgstr "数据库持久连接" - -#: tuning/templates/tuning/phpTuning.html:106 -#: tuning/templates/tuning/phpTuning.html:246 -msgid "Tune PHP" -msgstr "设置PHP" - -#: tuning/templates/tuning/phpTuning.html:119 -#: tuning/templates/tuning/phpTuning.html:259 -msgid "Cannot tune. Error message:" -msgstr "无法保存设置, 错误信息:" - -#: tuning/templates/tuning/phpTuning.html:124 -#: tuning/templates/tuning/phpTuning.html:264 -msgid "Details Successfully fetched." -msgstr "详情读取成功。" - -#: tuning/templates/tuning/phpTuning.html:128 -#: tuning/templates/tuning/phpTuning.html:268 -msgid "PHP for " -msgstr "PHP对 " - -#: tuning/templates/tuning/phpTuning.html:129 -#: tuning/templates/tuning/phpTuning.html:269 -msgid "Successfully tuned." -msgstr "已成功保存。" - -#: userManagment/templates/userManagment/apiAccess.html:3 -msgid "API Access for User - CyberPanel" -msgstr "用户 API 权限 - CyberPanel" - -#: userManagment/templates/userManagment/apiAccess.html:14 -msgid "" -"Allow/Remove API access for account, this effects Cloud Platform Connection " -"and Third Party Modules." -msgstr "允许/删除帐户的 API 权限将会影响云平台连接和第三方模块。" - -#: userManagment/templates/userManagment/apiAccess.html:29 -#: userManagment/templates/userManagment/changeUserACL.html:28 -#: userManagment/templates/userManagment/deleteUser.html:29 -#: userManagment/templates/userManagment/resellerCenter.html:25 -msgid "Select User" -msgstr "选择用户" - -#: userManagment/templates/userManagment/apiAccess.html:40 -msgid "Access" -msgstr "访问" - -#: userManagment/templates/userManagment/changeUserACL.html:3 -msgid "Change User ACL - CyberPanel" -msgstr "更改用户访问控制策略 - CyberPanel" - -#: userManagment/templates/userManagment/changeUserACL.html:12 -#: userManagment/templates/userManagment/changeUserACL.html:19 -#: userManagment/templates/userManagment/createACL.html:100 -#: userManagment/templates/userManagment/modifyACL.html:104 -msgid "Change User ACL" -msgstr "更改用户访问控制策略" - -#: userManagment/templates/userManagment/changeUserACL.html:13 -msgid "This page can be used to change ACL for CyberPanel users." -msgstr "此页面可用于更改 CyberPanel 用户的访问控制策略。" - -#: userManagment/templates/userManagment/changeUserACL.html:39 -#: userManagment/templates/userManagment/createUser.html:56 -#: userManagment/templates/userManagment/deleteACL.html:26 -#: userManagment/templates/userManagment/listUsers.html:99 -#: userManagment/templates/userManagment/modifyACL.html:28 -msgid "Select ACL" -msgstr "选择访问控制策略" - -#: userManagment/templates/userManagment/changeUserACL.html:55 -msgid "Change ACL" -msgstr "修改访问控制策略" - -#: userManagment/templates/userManagment/createACL.html:3 -msgid "Create new ACL - CyberPanel" -msgstr "创建新访问控制策略 - CyberPanel" - -#: userManagment/templates/userManagment/createACL.html:13 -msgid "" -"Create new Access Control defination, that specifies what CyberPanel users " -"can do." -msgstr "创建新的权限控制自定义,指定 CyberPanel 用户可以做什么。" - -#: userManagment/templates/userManagment/createACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:19 -msgid "ACL Details" -msgstr "访问控制策略细节" - -#: userManagment/templates/userManagment/createACL.html:26 -msgid "ACL Name" -msgstr "访问控制策略名称" - -#: userManagment/templates/userManagment/createACL.html:40 -#: userManagment/templates/userManagment/modifyACL.html:44 -msgid "Make Admin" -msgstr "新建管理员" - -#: userManagment/templates/userManagment/createACL.html:59 -#: userManagment/templates/userManagment/modifyACL.html:63 -msgid "User Management" -msgstr "用户管理" - -#: userManagment/templates/userManagment/createACL.html:91 -#: userManagment/templates/userManagment/deleteUser.html:13 -#: userManagment/templates/userManagment/deleteUser.html:20 -#: userManagment/templates/userManagment/deleteUser.html:42 -#: userManagment/templates/userManagment/index.html:78 -#: userManagment/templates/userManagment/index.html:81 -#: userManagment/templates/userManagment/modifyACL.html:95 -msgid "Delete User" -msgstr "删除用户" - -#: userManagment/templates/userManagment/createACL.html:107 -#: userManagment/templates/userManagment/modifyACL.html:111 -msgid "Website Management" -msgstr "网站管理" - -#: userManagment/templates/userManagment/createACL.html:130 -#: userManagment/templates/userManagment/modifyACL.html:134 -msgid "Suspend Website" -msgstr "暂停网站" - -#: userManagment/templates/userManagment/createACL.html:147 -#: userManagment/templates/userManagment/modifyACL.html:151 -msgid "Package Management" -msgstr "套餐管理" - -#: userManagment/templates/userManagment/createACL.html:186 -#: userManagment/templates/userManagment/modifyACL.html:190 -msgid "Database Management" -msgstr "数据库管理" - -#: userManagment/templates/userManagment/createACL.html:216 -#: userManagment/templates/userManagment/modifyACL.html:220 -msgid "DNS Management" -msgstr "DNS 管理" - -#: userManagment/templates/userManagment/createACL.html:249 -#: userManagment/templates/userManagment/modifyACL.html:253 -msgid "Add/Delete" -msgstr "添加/删除" - -#: userManagment/templates/userManagment/createACL.html:257 -#: userManagment/templates/userManagment/modifyACL.html:261 -msgid "Email Management" -msgstr "邮箱管理" - -#: userManagment/templates/userManagment/createACL.html:317 -#: userManagment/templates/userManagment/modifyACL.html:321 -msgid "FTP Management" -msgstr "FTP管理" - -#: userManagment/templates/userManagment/createACL.html:347 -#: userManagment/templates/userManagment/modifyACL.html:351 -msgid "Backup Management" -msgstr "备份管理" - -#: userManagment/templates/userManagment/createACL.html:399 -#: userManagment/templates/userManagment/modifyACL.html:403 -msgid "SSL Management" -msgstr "SSL 证书管理" - -#: userManagment/templates/userManagment/createACL.html:432 -msgid "Create ACL" -msgstr "创建访问控制策略" - -#: userManagment/templates/userManagment/createUser.html:3 -msgid "Create New User - CyberPanel" -msgstr "创建新用户 - CyberPanel" - -#: userManagment/templates/userManagment/createUser.html:13 -msgid "Create root, reseller or normal users on this page." -msgstr "在此页面创建管理员,分销商以及普通用户。" - -#: userManagment/templates/userManagment/createUser.html:19 -msgid "User Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/createUser.html:25 -#: userManagment/templates/userManagment/modifyUser.html:39 -#: userManagment/templates/userManagment/userProfile.html:24 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 -msgid "First Name" -msgstr "名" - -#: userManagment/templates/userManagment/createUser.html:31 -msgid "First Name should contain only alphabetic characters." -msgstr "名中只能包含字母。" - -#: userManagment/templates/userManagment/createUser.html:35 -#: userManagment/templates/userManagment/modifyUser.html:46 -#: userManagment/templates/userManagment/userProfile.html:29 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 -msgid "Last Name" -msgstr "姓" - -#: userManagment/templates/userManagment/createUser.html:41 -msgid "Last Name should contain only alphabetic characters." -msgstr "姓中只能包含字母。" - -#: userManagment/templates/userManagment/createUser.html:50 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 -msgid "Invalid Email" -msgstr "无效的邮箱" - -#: userManagment/templates/userManagment/createUser.html:68 -#: userManagment/templates/userManagment/listUsers.html:33 -#: userManagment/templates/userManagment/resellerCenter.html:48 -#: userManagment/templates/userManagment/userProfile.html:53 -msgid "Websites Limit" -msgstr "网站数量限制" - -#: userManagment/templates/userManagment/createUser.html:107 -#: userManagment/templates/userManagment/modifyUser.html:85 -msgid "Security Level" -msgstr "安全级别" - -#: userManagment/templates/userManagment/createUser.html:120 -#: userManagment/templates/userManagment/index.html:49 -#: userManagment/templates/userManagment/index.html:52 -msgid "Create User" -msgstr "创建用户" - -#: userManagment/templates/userManagment/createUser.html:128 -#: userManagment/templates/userManagment/modifyUser.html:112 -msgid "Account with username:" -msgstr "用户名为:" - -#: userManagment/templates/userManagment/createUser.html:133 -msgid "Cannot create user. Error message:" -msgstr "无法创建用户, 错误信息:" - -#: userManagment/templates/userManagment/createUser.html:141 -msgid "" -"Length of first and last name combined should be less than or equal to 20 " -"characters" -msgstr "姓名总和的长度应该小于或等于20" - -#: userManagment/templates/userManagment/deleteACL.html:3 -msgid "Delete ACL - CyberPanel" -msgstr "删除访问控制策略 - CyberPanel" - -#: userManagment/templates/userManagment/deleteACL.html:13 -msgid "This page can be used to delete ACL." -msgstr "此页面可用于删除访问控制策略。" - -#: userManagment/templates/userManagment/deleteUser.html:3 -msgid "Delete User - CyberPanel" -msgstr "删除用户 - CyberPanel" - -#: userManagment/templates/userManagment/deleteUser.html:14 -msgid "Websites owned by this user will automatically transfer to the root." -msgstr "此用户拥有的网站将自动移动到根目录。" - -#: userManagment/templates/userManagment/deleteUser.html:61 -msgid "Cannot delete user. Error message:" -msgstr "无法删除用户, 错误信息:" - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid "User " -msgstr "用户 " - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid " Successfully Deleted" -msgstr " 已成功删除" - -#: userManagment/templates/userManagment/index.html:3 -msgid "User Functions - CyberPanel" -msgstr "用户功能 - CyberPanel" - -#: userManagment/templates/userManagment/index.html:14 -msgid "Create, edit and delete users on this page." -msgstr "在此页面创建, 编辑和删除用户。" - -#: userManagment/templates/userManagment/listUsers.html:3 -msgid "List Users - CyberPanel" -msgstr "列出用户 - CyberPanel" - -#: userManagment/templates/userManagment/listUsers.html:14 -msgid "List Users that you own." -msgstr "列出你拥有的用户。" - -#: userManagment/templates/userManagment/listUsers.html:35 -msgid "ACL" -msgstr "访问控制策略" - -#: userManagment/templates/userManagment/listUsers.html:84 -#: userManagment/templates/userManagment/resellerCenter.html:37 -msgid "New Owner" -msgstr "新拥有者" - -#: userManagment/templates/userManagment/modifyACL.html:3 -msgid "Modify an ACL - CyberPanel" -msgstr "修改一个访问控制策略 - CyberPanel" - -#: userManagment/templates/userManagment/modifyACL.html:12 -msgid "Modify an ACL" -msgstr "修改一个ACL" - -#: userManagment/templates/userManagment/modifyACL.html:13 -msgid "On this page you can modify an existing ACL." -msgstr "在此页上,您可以修改现有的访问控制策略。" - -#: userManagment/templates/userManagment/modifyUser.html:3 -msgid "Modify User - CyberPanel" -msgstr "编辑用户 - CyberPanel" - -#: userManagment/templates/userManagment/modifyUser.html:13 -msgid "Modify existing user settings on this page." -msgstr "在此页面编辑已存在用户。" - -#: userManagment/templates/userManagment/modifyUser.html:27 -msgid "Select Account" -msgstr "选择用户" - -#: userManagment/templates/userManagment/modifyUser.html:113 -msgid " is successfully modified." -msgstr " 已成功修改。" - -#: userManagment/templates/userManagment/modifyUser.html:117 -msgid "Cannot modify user. Error message:" -msgstr "无法编辑用户, 错误信息:" - -#: userManagment/templates/userManagment/modifyUser.html:130 -msgid "Details fetched." -msgstr "详情已更新。" - -#: userManagment/templates/userManagment/resellerCenter.html:3 -msgid "Reseller Center - CyberPanel" -msgstr "分销商中心 - CyberPanel" - -#: userManagment/templates/userManagment/resellerCenter.html:13 -msgid "Change owner of users and change websites limits." -msgstr "改变用户的所有者和改变网站的限制。" - -#: userManagment/templates/userManagment/userProfile.html:3 -msgid "Account Details - CyberPanel" -msgstr "用户详情 - CyberPanel" - -#: userManagment/templates/userManagment/userProfile.html:12 -#: userManagment/templates/userManagment/userProfile.html:18 -msgid "Account Details" -msgstr "用户详情" - -#: userManagment/templates/userManagment/userProfile.html:13 -msgid "List the account details for the currently logged in user." -msgstr "查看当前用户详情。" - -#: userManagment/templates/userManagment/userProfile.html:48 -msgid "Account ACL" -msgstr "账户访问控制策略" - -#: userManagment/templates/userManagment/userProfile.html:55 -msgid "( 0 = Unlimited )" -msgstr "(0为无限制 )" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 -msgid "Application Installer - CyberPanel" -msgstr "应用程序安装程序 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 -msgid "One-click application install." -msgstr "一键应用安装。" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 -msgid "Install Joomla with(?) LSCache" -msgstr "安装 Joomla 伴随(?) LSCache" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 -msgid "Create New Website - CyberPanel" -msgstr "创建新网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/index.html:14 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 -msgid "" -"On this page you can launch, list, modify and delete websites from your " -"server." -msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站。" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 -msgid "Website Details" -msgstr "网站详情" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 -msgid "Do not enter WWW, it will be auto created!" -msgstr "不要使用WWW,这将是自动创建的!" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 -msgid "Delete Website - CyberPanel" -msgstr "删除网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 -msgid "" -"This page can be used to delete website, once deleted it can not be " -"recovered." -msgstr "在此页面可以删除网站,此操作不可逆。" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 -msgid "Cannot delete website, Error message: " -msgstr "无法删除网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Successfully Deleted." -msgstr "成功删除。" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 -msgid "Domain Aliases - CyberPanel" -msgstr "域别名 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 -msgid "Domain Aliases" -msgstr "域名别名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 -msgid "" -"With Domain Aliases you can visit example.com using example.net and view the " -"same content." -msgstr "使用域别名,您可以使用example.net访问与example.com相同的内容。" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 -msgid "Create Alias" -msgstr "创建别名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 -msgid "Master Domain" -msgstr "主域名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 -msgid "Alias" -msgstr "别名" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 -msgid "File System Path" -msgstr "文件系统路径" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 -msgid "Domain Aliases not found." -msgstr "没有找到域名别名。" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 -msgid "Alias Domain" -msgstr "别名域" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 -msgid "" -"For SSL to work DNS of domain should point to server, otherwise self signed " -"SSL will be issued, you can add your own SSL later." -msgstr "" -"为确定SSL证书的正确签发,域名必须指向此服务器,否则将会签发自签名证书 您可以在" -"之后添加自有证书或重新申请签发Let's Encrypt证书。" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 -msgid "Operation failed. Error message:" -msgstr "操作失败。错误信息:" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 -msgid "Alias successfully created. Refreshing page in 3 seconds..." -msgstr "已成功创建别名。将在 3 秒内刷新页面..." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 -msgid "Operation Successfull." -msgstr "操作成功。" - -#: websiteFunctions/templates/websiteFunctions/index.html:3 -msgid "Website Functions - CyberPanel" -msgstr "网站功能 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/index.html:33 -#: websiteFunctions/templates/websiteFunctions/index.html:57 -msgid "List Website" -msgstr "网站列表" - -#: websiteFunctions/templates/websiteFunctions/index.html:79 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 -msgid "Suspend/Unsuspend Website" -msgstr "禁用/启用网站" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 -msgid "Install Joomla - CyberPanel" -msgstr "安装 Joomla - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 -msgid "Install Joomla" -msgstr "安装Joomla" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 -msgid "One-click Joomla Install!" -msgstr "一键安装 Joomla!" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 -msgid "Installation Details" -msgstr "安装详情" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 -msgid "Site Name" -msgstr "站点名称" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 -msgid "Login User" -msgstr "登录用户" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 -msgid "Login Password" -msgstr "登录密码" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 -msgid "Database Prefix" -msgstr "数据库前缀" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 -msgid "Installation failed. Error message:" -msgstr "安装失败, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 -msgid "Installation successful. Visit:" -msgstr "安装成功。访问:" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 -msgid "Install Magento - CyberPanel" -msgstr "安装 Magento - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 -#: websiteFunctions/templates/websiteFunctions/website.html:1029 -#: websiteFunctions/templates/websiteFunctions/website.html:1033 -msgid "Install Magento" -msgstr "安装 Magento" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 -msgid "One-click Magento Install!" -msgstr "一键安装 Magento!" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 -msgid "Admin Username" -msgstr "管理员用户名" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 -msgid "" -"does not work on OpenLiteSpeed. It is highly recommended to use this " -"installer with LiteSpeed Enterprise only." -msgstr "" -"在 OpenLiteSpeed 上不工作。强烈建议仅将此安装程序与 LiteSpeed 企业版一起使" -"用。" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 -msgid "Install PrestaShop - CyberPanel" -msgstr "安装 PrestaShop - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 -msgid "Install PrestaShop" -msgstr "安装 PrestaShop" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 -msgid "One-click PrestaShop Install!" -msgstr "一键安装 PrestaShop!" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 -msgid "Shop Name" -msgstr "店铺名称" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 -msgid "Install WordPress - CyberPanel" -msgstr "安装 WordPress - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 -msgid "Install WordPress" -msgstr "安装 WordPress" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 -msgid "Install WordPress with LSCache." -msgstr "安装 Wordpress 和 LS Cache。" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 -msgid "Blog Title" -msgstr "博客标题" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 -msgid "Copy/Sync to Master" -msgstr "复制/同步到Master" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 -#: websiteFunctions/templates/websiteFunctions/website.html:990 -msgid "WP + LSCache" -msgstr "wordpress + LSCache" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 -#: websiteFunctions/templates/websiteFunctions/website.html:1034 -msgid "Magento" -msgstr "马根托" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:3 -msgid "Cron Management - CyberPanel" -msgstr "Cron 管理器 - Cyberpanel" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -#: websiteFunctions/templates/websiteFunctions/listCron.html:19 -msgid "Cron Management" -msgstr "Cron 管理器" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -msgid "Cron Docs" -msgstr "Cron文档" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:13 -msgid "Create, edit or delete your cron jobs from this page." -msgstr "从这个页面创建、编辑或删除你的cron作业。" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:37 -msgid "Add Cron" -msgstr "添加 Cron" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:46 -#: websiteFunctions/templates/websiteFunctions/listCron.html:95 -msgid "Minute" -msgstr "分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:47 -#: websiteFunctions/templates/websiteFunctions/listCron.html:101 -msgid "Hour" -msgstr "小时" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:48 -msgid "Day of Month" -msgstr "天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:49 -#: websiteFunctions/templates/websiteFunctions/listCron.html:113 -msgid "Month" -msgstr "月" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:50 -msgid "Day of Week" -msgstr "星期" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:79 -msgid "Pre defined" -msgstr "预定义" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:82 -msgid "Every minute" -msgstr "每分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:83 -msgid "Every 5 minutes" -msgstr "每5分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:84 -msgid "Every 30 minutes" -msgstr "每30分钟" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:85 -msgid "Every hour" -msgstr "每小时" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:86 -msgid "Every day" -msgstr "每天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:87 -msgid "Every week" -msgstr "每周" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:88 -msgid "Every month" -msgstr "每月" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:89 -msgid "Every year" -msgstr "每年" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:107 -msgid "Day of month" -msgstr "天" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:119 -msgid "Day of week" -msgstr "星期" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:135 -msgid "Save edits" -msgstr "保存编辑" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:142 -msgid "Add cron" -msgstr "添加cron" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:152 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 -msgid "Cannot fetch website details. Error message:" -msgstr "无法更新网站详情, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:156 -msgid "Unable to add/save Cron. Error message:" -msgstr "无法添加/保存 Cron。错误消息:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:159 -msgid "Cron job saved" -msgstr "定时任务以保存" - -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 -msgid "Websites Hosted - CyberPanel" -msgstr "当前已创建的网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 -msgid "Modify Website - CyberPanel" -msgstr "修改网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 -msgid "Current Package:" -msgstr "当前套餐:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 -msgid "Current Owner:" -msgstr "当前拥有者:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 -msgid "Cannot modify website. Error message:" -msgstr "无法修改网站, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 -msgid "Website Details Successfully fetched" -msgstr "网站详情已成功更新" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 -msgid "Git Management - CyberPanel" -msgstr "Git 管理器 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 -msgid "Git Management" -msgstr "Git 管理器" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 -msgid "Attach git to your websites." -msgstr "将Git附加到您的网站。" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 -msgid "Attach Git" -msgstr "附加Git" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 -msgid "Providers" -msgstr "提供者" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 -msgid "Deployment Key" -msgstr "部署密钥" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 -msgid "" -"Before attaching repo to your website, make sure to place your Development " -"key in your GIT repository." -msgstr "在将存储库附加到你的网站之前,请确保已将开发密钥放在 GIT 存储库中。" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 -msgid "Repository Name" -msgstr "库名称" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 -msgid "Branch" -msgstr "分支" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 -msgid "Attach Now" -msgstr "现在附加" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 -msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" -msgstr "GIT 已成功附加,3 秒内刷新页面... 访问:" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 -msgid "Change Branch" -msgstr "更改分支" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 -msgid "Detach Repo" -msgstr "脱离Repo" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 -msgid "Webhook URL" -msgstr "Webhook URL" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 -msgid "" -"Add this URL to Webhooks section of your Git respository, if you've used " -"hostname SSL then replace IP with your hostname. Otherwise use IP and " -"disable SSL check while configuring webhook. This will initiate a pull from " -"your resposity as soon as you commit some changes." -msgstr "" -"将此 URL 添加到 Git 存储库的 Webhook 部分,如果您已使用主机名 SSL,则将 IP 替" -"换为你的主机名。否则,在配置 webhook 时使用 IP 并禁用 SSL 检查。一旦提交某些" -"更改,这将启动从您的存储库中拉取。" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 -msgid "Repo successfully detached, refreshing in 3 seconds.." -msgstr "Repo成功分离, 将在 3 秒内刷新。" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 -msgid "Branch successfully changed." -msgstr "分支改变成功。" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 -msgid "Set up Staging Enviroment - CyberPanel" -msgstr "设置暂存环境 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 -msgid "Set up Staging Enviroment" -msgstr "设置临时环境" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 -msgid "Set up staging enviroment for " -msgstr "设置临时环境给 " - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -msgid "" -". Any domain that you will choose here will be created as child-domain for " -"this master site." -msgstr "。您将在这里选择的任何域都将创建为此主站点的子域。" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 -msgid "Domain that you will enter below will be created as child-domain to " -msgstr "您将在下面输入的域将被创建为此域名的子域:" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 -msgid "." -msgstr "。" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 -msgid "Start Cloning" -msgstr "开始克隆" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 -msgid "SSH and CageFS - CyberPanel" -msgstr "SSH 和 CageFS - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 -msgid "SSH Access" -msgstr "SSH 权限" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid "Set up SSH access and enable/disable CageFS for " -msgstr "设置 SSH 权限并启用/禁用 CageFS 给 " - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid " CageFS require CloudLinux OS." -msgstr " CageFS 要求 CloudLinux操作系统。" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 -msgid "Set up SSH access for " -msgstr "为此域名设置SSH访问:" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -msgid "SSH user for " -msgstr "SSH 用户给 " - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -msgid " is " -msgstr "是" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 -msgid "Suspend/Unsuspend Website - CyberPanel" -msgstr "禁用/启用网站 - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 -msgid "This page can be used to suspend/unsuspend website." -msgstr "此页面可以禁用/启用网站." - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 -msgid "Suspend" -msgstr "禁用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 -msgid "Un-Suspend" -msgstr "启用" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 -msgid "Cannot suspend website, Error message: " -msgstr "无法禁用网站, 错误信息: " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 -msgid "Cannot unsuspend website. Error message:" -msgstr "无法启用网站, 错误信息:" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Website " -msgstr "网站 " - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Successfully " -msgstr "成功 " - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 -msgid "Sync to Master - CyberPanel" -msgstr "同步到 Master - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 -msgid "Sync your site to Master" -msgstr "将您的网站同步到Master" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid "Right now you can only sync your child domains to master domains." -msgstr "目前,您只能将您的子域同步到主域。" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid " will be synced to " -msgstr " 将被同步到:" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -msgid "Sync " -msgstr "同步 " - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -msgid "to " -msgstr "到 " - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 -msgid "What to Sync" -msgstr "同步内容" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 -msgid "Start Syncing" -msgstr "开始同步" - -#: websiteFunctions/templates/websiteFunctions/website.html:29 -msgid "Clone/Staging" -msgstr "克隆/Staging" - -#: websiteFunctions/templates/websiteFunctions/website.html:30 -msgid "Set up SSH Access" -msgstr "设置SSH访问" - -#: websiteFunctions/templates/websiteFunctions/website.html:665 -msgid "It is not required to modify rules if you are using OpenLiteSpeed." -msgstr "如果您使用的是OpenLiteSpeed,则无需修改规则。" - -#, fuzzy -#~| msgid "Last Name" -#~ msgid "List" -#~ msgstr "姓" - -#~ msgid "" -#~ "Could not fetch details, either LiteSpeed is not running or some error " -#~ "occurred, please see CyberPanel Main log file." -#~ msgstr "无法获取详情, LiteSpeed没有运行或者有错误发生 请检查CyberPnael日志." - -#, fuzzy -#~| msgid "Schedule Back up" -#~ msgid "Achedule Back up" -#~ msgstr "备份计划" - -#, fuzzy -#~| msgid "Modify User" -#~ msgid "Modify" -#~ msgstr "修改用户" - -#~ msgid "Start" -#~ msgstr "开始" - -#~ msgid "Reload" -#~ msgstr "重载" - -#~ msgid "CPU Status" -#~ msgstr "CPU使用量" - -#~ msgid "Fullscreen" -#~ msgstr "全屏模式" - -#~ msgid "System Status" -#~ msgstr "系统状态" - -#~ msgid "Update started..." -#~ msgstr "开始更新..." - -#~ msgid "Update finished..." -#~ msgstr "更新完成..." - -#~ msgid "Account Type" -#~ msgstr "用户类型" - -#~ msgid "User Accounts Limit" -#~ msgstr "用户数量限制" - -#~ msgid "Only Numbers" -#~ msgstr "仅允许数字" - -#~ msgid "Username should be lowercase alphanumeric." -#~ msgstr "用户名应当为小写字母." - -#~ msgid "Must contain one number and one special character." -#~ msgstr "必须一个数字和一个字母." - -#~ msgid "Cannot create website. Error message:" -#~ msgstr "无法创建网站, 错误信息:" - -#~ msgid "Website with domain" -#~ msgstr "网站域名" - -#~ msgid " is Successfully Created" -#~ msgstr " 已成功创建" - -#~ msgid "Installation successful. To complete the setup visit:" -#~ msgstr "安装成功, 请访问网站以完成设置:" - -#, fuzzy -#~| msgid "Password" -#~ msgid "Admin Password" -#~ msgstr "密码" - -#, fuzzy -#~| msgid "Database Name" -#~ msgid "Database prefix" -#~ msgstr "数据库名字" - -#~ msgid "Daily" -#~ msgstr "每日" - -#~ msgid "Weekly" -#~ msgstr "每周" - -#~ msgid "HTTP Statistics" -#~ msgstr "HTTP统计" - -#~ msgid "Available/Max Connections" -#~ msgstr "可用/最大连接数" - -#~ msgid "Available/Max SSL Connections" -#~ msgstr "可用/最大SSL连接数" - -#~ msgid "Requests Processing" -#~ msgstr "当前请求数" - -#~ msgid "Total Requests" -#~ msgstr "总请求数" - -#~ msgid "IPV6" -#~ msgstr "IPv6" - -#~ msgid "Normal User" -#~ msgstr "普通用户" - -#~ msgid "Edit Virtual Host Main Configurations" -#~ msgstr "编辑vHost主配置" - -#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." -#~ msgstr "配置已保存, 重启LiteSpeed以生效." - -#~ msgid "Urdu" -#~ msgstr "乌尔都语" From 5d7dd905befeb84dd0fd295e3001f50634d0267a Mon Sep 17 00:00:00 2001 From: Edi Weigh Date: Sat, 26 Jun 2021 22:16:06 +0800 Subject: [PATCH 27/31] Updated some Chinese translations to the newest. --- locale/cn/LC_MESSAGES/django.mo | Bin 0 -> 85202 bytes locale/cn/LC_MESSAGES/django.po | 6670 +++++++++++++++++++++++++++++++ 2 files changed, 6670 insertions(+) create mode 100644 locale/cn/LC_MESSAGES/django.mo create mode 100644 locale/cn/LC_MESSAGES/django.po diff --git a/locale/cn/LC_MESSAGES/django.mo b/locale/cn/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..a88e3eaca7c6f90180ee2f5c009b6287c7d80ebc GIT binary patch literal 85202 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 YL0UeOzvgEF%gwEPZkO1d>W%FG0mRz^HUIzs literal 0 HcmV?d00001 diff --git a/locale/cn/LC_MESSAGES/django.po b/locale/cn/LC_MESSAGES/django.po new file mode 100644 index 000000000..b69923c7d --- /dev/null +++ b/locale/cn/LC_MESSAGES/django.po @@ -0,0 +1,6670 @@ +# CyberPanel Translation File. +# Copyright (C) 2017 LiteSpeedTech +# This file is distributed under the same license as the CyberPanel package. +# FIRST AUTHOR , 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: CyberPanel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-21 19:54+0500\n" +"PO-Revision-Date: 2021-06-26 22:06+0800\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0\n" + +#: CLManager/templates/CLManager/createPackage.html:3 +msgid "Create Cloud Linux Package - CyberPanel" +msgstr "创建 CloudLinux 套餐 - CyberPanel" + +#: CLManager/templates/CLManager/createPackage.html:9 +msgid "Create CloudLinux Package." +msgstr "创建 CloudLinux 套餐 - CyberPanel。" + +#: CLManager/templates/CLManager/createPackage.html:10 +msgid "" +"Each CloudLinux package have one associated (owner) CyberPanel package. " +"During website creation associated CloudLinux package will be assigned to " +"website user." +msgstr "" +"每个 CloudLinux 套餐都有一个关联的(所有者)CyberPanel 套餐。 在网站创建期" +"间,关联的 CloudLinux 套餐将分配给网站用户。" + +#: CLManager/templates/CLManager/createPackage.html:15 +#: CLManager/templates/CLManager/createPackage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:435 +#: baseTemplate/templates/baseTemplate/index.html:666 +#: packages/templates/packages/createPackage.html:13 +#: packages/templates/packages/createPackage.html:100 +#: packages/templates/packages/index.html:25 +#: packages/templates/packages/index.html:28 +#: userManagment/templates/userManagment/createACL.html:152 +#: userManagment/templates/userManagment/modifyACL.html:156 +msgid "Create Package" +msgstr "创建套餐" + +#: CLManager/templates/CLManager/createPackage.html:24 +#: packages/templates/packages/deletePackage.html:26 +#: packages/templates/packages/modifyPackage.html:24 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 +msgid "Select Package" +msgstr "选择套餐" + +#: CLManager/templates/CLManager/createPackage.html:40 +#: packages/templates/packages/createPackage.html:27 +msgid "Package Name" +msgstr "套餐名称" + +#: CLManager/templates/CLManager/createPackage.html:47 +#: CLManager/templates/CLManager/listPackages.html:87 +msgid "SPEED" +msgstr "SPEED" + +#: CLManager/templates/CLManager/createPackage.html:56 +#: CLManager/templates/CLManager/listPackages.html:98 +msgid "VMEM" +msgstr "VMEM" + +#: CLManager/templates/CLManager/createPackage.html:64 +#: CLManager/templates/CLManager/listPackages.html:109 +msgid "PMEM" +msgstr "PMEM" + +#: CLManager/templates/CLManager/createPackage.html:73 +#: CLManager/templates/CLManager/listPackages.html:120 +msgid "IO" +msgstr "小精灵" + +#: CLManager/templates/CLManager/createPackage.html:81 +#: CLManager/templates/CLManager/listPackages.html:131 +#: containerization/templates/containerization/websiteContainerLimit.html:52 +#: containerization/templates/containerization/websiteContainerLimit.html:99 +msgid "IOPS" +msgstr "IOPS" + +#: CLManager/templates/CLManager/createPackage.html:89 +#: CLManager/templates/CLManager/listPackages.html:142 +msgid "EP" +msgstr "EP" + +#: CLManager/templates/CLManager/createPackage.html:97 +#: CLManager/templates/CLManager/listPackages.html:153 +msgid "NPROC" +msgstr "NPROC" + +#: CLManager/templates/CLManager/createPackage.html:105 +#: CLManager/templates/CLManager/listPackages.html:164 +msgid "INODES soft" +msgstr "INODES soft" + +#: CLManager/templates/CLManager/createPackage.html:113 +#: CLManager/templates/CLManager/listPackages.html:175 +msgid "INODES hard" +msgstr "INODES hard" + +#: CLManager/templates/CLManager/listPackages.html:3 +msgid "Manage CloudLinux Packages - CyberPanel" +msgstr "管理 CloudLinux 套餐 - CyberPanel" + +#: CLManager/templates/CLManager/listPackages.html:14 +msgid "Manage CloudLinux Packages" +msgstr "管理 CloudLinux 套餐" + +#: CLManager/templates/CLManager/listPackages.html:15 +msgid "Manage/Delete CloudLinux Packages." +msgstr "管理/删除 CloudLinux 套餐。" + +#: CLManager/templates/CLManager/listPackages.html:76 +#: dns/templates/dns/addDeleteDNSRecords.html:74 +#: dns/templates/dns/addDeleteDNSRecords.html:97 +#: dns/templates/dns/addDeleteDNSRecords.html:121 +#: dns/templates/dns/addDeleteDNSRecords.html:144 +#: dns/templates/dns/addDeleteDNSRecords.html:172 +#: dns/templates/dns/addDeleteDNSRecords.html:196 +#: dns/templates/dns/addDeleteDNSRecords.html:220 +#: dns/templates/dns/addDeleteDNSRecords.html:244 +#: dns/templates/dns/addDeleteDNSRecords.html:268 +#: dns/templates/dns/addDeleteDNSRecords.html:295 +#: dns/templates/dns/addDeleteDNSRecords.html:328 +#: dockerManager/templates/dockerManager/runContainer.html:29 +#: filemanager/templates/filemanager/index.html:203 +#: firewall/templates/firewall/firewall.html:120 +#: packages/templates/packages/listPackages.html:84 +#: pluginHolder/templates/pluginHolder/plugins.html:28 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:262 +#: userManagment/templates/userManagment/listUsers.html:75 +msgid "Name" +msgstr "名称" + +#: CLManager/templates/CLManager/listPackages.html:205 +#: CLManager/templates/CLManager/listWebsites.html:86 +#: CLManager/templates/CLManager/monitorUsage.html:57 +#: containerization/templates/containerization/listWebsites.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:172 +#: emailPremium/templates/emailPremium/emailPage.html:179 +#: emailPremium/templates/emailPremium/listDomains.html:75 +#: pluginHolder/templates/pluginHolder/plugins.html:51 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 +msgid "Cannot list websites. Error message:" +msgstr "无法列出网站。错误信息:" + +#: CLManager/templates/CLManager/listWebsites.html:3 +msgid "CageFS - CyberPanel" +msgstr "CageFS - CyberPanel" + +#: CLManager/templates/CLManager/listWebsites.html:14 +#: CLManager/templates/CLManager/monitorUsage.html:14 +#: baseTemplate/templates/baseTemplate/index.html:411 +#: containerization/templates/containerization/listWebsites.html:14 +#: websiteFunctions/templates/websiteFunctions/index.html:31 +#: websiteFunctions/templates/websiteFunctions/index.html:55 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 +msgid "List Websites" +msgstr "网站列表" + +#: CLManager/templates/CLManager/listWebsites.html:15 +msgid "Enable/Disable and view CageFS status for websites." +msgstr "启用/禁用和查看网站的 CageFS 状态。" + +#: CLManager/templates/CLManager/listWebsites.html:28 +msgid "Default: " +msgstr "默认:" + +#: CLManager/templates/CLManager/monitorUsage.html:3 +msgid "Monitor Usage - CyberPanel" +msgstr "监控使用情况 - CyberPanel" + +#: CLManager/templates/CLManager/monitorUsage.html:15 +msgid "Monitor usage of your websites." +msgstr "监控您网站的使用情况。" + +#: CLManager/templates/CLManager/monitorUsage.html:21 +#: baseTemplate/templates/baseTemplate/homePage.html:42 +#: baseTemplate/templates/baseTemplate/index.html:276 +#: baseTemplate/templates/baseTemplate/index.html:400 +#: baseTemplate/templates/baseTemplate/index.html:401 +#: baseTemplate/templates/baseTemplate/index.html:402 +#: containerization/templates/containerization/listWebsites.html:21 +msgid "Websites" +msgstr "网站" + +#: CLManager/templates/CLManager/notAvailable.html:3 +#: containerization/templates/containerization/notAvailable.html:3 +msgid "Not available - CyberPanel" +msgstr "不可用 - CyberPanel" + +#: CLManager/templates/CLManager/notAvailable.html:13 +#: containerization/templates/containerization/notAvailable.html:13 +msgid "Not available" +msgstr "不可用" + +#: CLManager/templates/CLManager/notAvailable.html:14 +msgid "Either CageFS is not installed or you are not on CloudLinux OS." +msgstr "未安装 CageFS 或您未使用 CloudLinux 操作系统。" + +#: CLManager/templates/CLManager/notAvailable.html:22 +msgid "CageFS is only available with CloudLinux OS. " +msgstr "CageFS 仅适用于 CloudLinux 操作系统。" + +#: CLManager/templates/CLManager/notAvailable.html:24 +#: containerization/templates/containerization/notAvailable.html:24 +msgid " for conversion details." +msgstr " 为转换详情。" + +#: CLManager/templates/CLManager/notAvailable.html:34 +#: containerization/templates/containerization/notAvailable.html:34 +msgid "Install Packages" +msgstr "安装包" + +#: CLManager/templates/CLManager/notAvailable.html:39 +msgid "CageFS is not installed on this server. Please proceed to installation." +msgstr "此服务器上未安装 CageFS。请继续以安装。" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:3 +msgid " usage - CyberPanel" +msgstr " 使用量 - CyberPanel" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:14 +#: emailMarketing/templates/emailMarketing/website.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 +#: websiteFunctions/templates/websiteFunctions/website.html:43 +msgid "Usage" +msgstr "使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:15 +msgid "View CPU, Memory and Disk usage for " +msgstr "查看 CPU、内存和磁盘使用情况 " + +#: CLManager/templates/CLManager/websiteContainerLimit.html:21 +#: containerization/templates/containerization/websiteContainerLimit.html:155 +msgid "CPU Usage of" +msgstr "CPU使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:30 +#: containerization/templates/containerization/websiteContainerLimit.html:164 +msgid "Memory Usage of" +msgstr "内存使用量" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:39 +#: containerization/templates/containerization/websiteContainerLimit.html:173 +msgid "Disk Usage of" +msgstr "硬盘使用量" + +#: CyberCP/settings.py:175 +msgid "English" +msgstr "英语" + +#: CyberCP/settings.py:176 +msgid "Chinese" +msgstr "中文" + +#: CyberCP/settings.py:177 +msgid "Bulgarian" +msgstr "保加利亚语" + +#: CyberCP/settings.py:178 +msgid "Portuguese" +msgstr "葡萄牙语" + +#: CyberCP/settings.py:179 +msgid "Japanese" +msgstr "日语" + +#: CyberCP/settings.py:180 +msgid "Bosnian" +msgstr "波斯尼亚语" + +#: CyberCP/settings.py:181 +msgid "Greek" +msgstr "希腊语" + +#: CyberCP/settings.py:182 +msgid "Russian" +msgstr "俄语" + +#: CyberCP/settings.py:183 +msgid "Turkish" +msgstr "土耳其" + +#: CyberCP/settings.py:184 +msgid "Spanish" +msgstr "西班牙语" + +#: CyberCP/settings.py:185 +msgid "French" +msgstr "法语" + +#: CyberCP/settings.py:186 +msgid "Polish" +msgstr "波兰语" + +#: CyberCP/settings.py:187 +msgid "Vietnamese" +msgstr "越南语" + +#: CyberCP/settings.py:188 +msgid "Italian" +msgstr "意大利语" + +#: CyberCP/settings.py:189 +msgid "Deutsch" +msgstr "德国" + +#: IncBackups/templates/IncBackups/backupSchedule.html:3 +#: backup/templates/backup/backupSchedule.html:3 +msgid "Schedule Back up - CyberPanel" +msgstr "计划备份 - Cyberpanel" + +#: IncBackups/templates/IncBackups/backupSchedule.html:13 +#: IncBackups/templates/IncBackups/backupSchedule.html:23 +#: backup/templates/backup/backupSchedule.html:13 +#: backup/templates/backup/backupSchedule.html:23 +#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 +#: baseTemplate/templates/baseTemplate/index.html:578 +#: userManagment/templates/userManagment/createACL.html:381 +#: userManagment/templates/userManagment/modifyACL.html:385 +msgid "Schedule Back up" +msgstr "计划备份" + +#: IncBackups/templates/IncBackups/backupSchedule.html:16 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 +#: backup/templates/backup/backupDestinations.html:14 +#: backup/templates/backup/backupSchedule.html:16 +#: backup/templates/backup/remoteBackups.html:14 +#: backup/templates/backup/remoteBackups.html:21 +msgid "Remote Backups" +msgstr "远程备份" + +#: IncBackups/templates/IncBackups/backupSchedule.html:17 +#: backup/templates/backup/backupSchedule.html:17 +msgid "" +"On this page you can schedule Back ups to localhost or remote server (If you " +"have added one)." +msgstr "" +"在此页面您可以设置计划任务备份到本地或远程目录 (如果您已经添加了一个远程目" +"录)。" + +#: IncBackups/templates/IncBackups/backupSchedule.html:33 +#: backup/templates/backup/backupSchedule.html:33 +msgid "Select Destination" +msgstr "选择远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:44 +#: backup/templates/backup/backupSchedule.html:44 +msgid "Select Frequency" +msgstr "备份频率" + +#: IncBackups/templates/IncBackups/backupSchedule.html:54 +#: IncBackups/templates/IncBackups/createBackup.html:56 +msgid "Backup Content" +msgstr "备份内容" + +#: IncBackups/templates/IncBackups/backupSchedule.html:98 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 +#: backup/templates/backup/backupDestinations.html:55 +#: backup/templates/backup/backupSchedule.html:67 +#: baseTemplate/templates/baseTemplate/index.html:575 +msgid "Add Destination" +msgstr "添加远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:112 +#: backup/templates/backup/remoteBackups.html:96 +msgid "Search Accounts.." +msgstr "搜索用户..." + +#: IncBackups/templates/IncBackups/backupSchedule.html:124 +msgid "Select sites to be included in this job" +msgstr "选择要在此项备份工作中包含的网站" + +#: IncBackups/templates/IncBackups/backupSchedule.html:150 +#: IncBackups/templates/IncBackups/createBackup.html:127 +#: backup/templates/backup/backup.html:102 +#: backup/templates/backup/backupDestinations.html:96 +#: backup/templates/backup/backupSchedule.html:102 +#: databases/templates/databases/listDataBases.html:104 +#: dns/templates/dns/addDeleteDNSRecords.html:326 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 +#: emailMarketing/templates/emailMarketing/manageLists.html:141 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 +#: firewall/templates/firewall/firewall.html:119 +#: firewall/templates/firewall/modSecurityRulesPacks.html:109 +#: ftp/templates/ftp/listFTPAccounts.html:122 +#: mailServer/templates/mailServer/emailForwarding.html:117 +#: managePHP/templates/managePHP/installExtensions.html:60 +msgid "ID" +msgstr "ID" + +#: IncBackups/templates/IncBackups/backupSchedule.html:151 +#: IncBackups/templates/IncBackups/createBackup.html:44 +#: IncBackups/templates/IncBackups/createBackup.html:164 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 +#: backup/templates/backup/backup.html:41 +#: backup/templates/backup/backupSchedule.html:103 +#: mailServer/templates/mailServer/emailForwarding.html:101 +#: mailServer/templates/mailServer/emailForwarding.html:119 +msgid "Destination" +msgstr "远程目录" + +#: IncBackups/templates/IncBackups/backupSchedule.html:152 +#: backup/templates/backup/backupSchedule.html:104 +msgid "Frequency" +msgstr "频率" + +#: IncBackups/templates/IncBackups/backupSchedule.html:153 +#: IncBackups/templates/IncBackups/createBackup.html:130 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 +#: backup/templates/backup/backup.html:107 +#: backup/templates/backup/backupDestinations.html:99 +#: backup/templates/backup/backupSchedule.html:105 +#: dns/templates/dns/addDeleteDNSRecords.html:332 +#: emailMarketing/templates/emailMarketing/manageLists.html:156 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 +#: emailMarketing/templates/emailMarketing/sendEmails.html:170 +#: emailMarketing/templates/emailMarketing/website.html:533 +#: filemanager/templates/filemanager/index.html:67 +#: filemanager/templates/filemanager/index.html:696 +#: firewall/templates/firewall/firewall.html:124 +#: firewall/templates/firewall/secureSSH.html:122 +#: mailServer/templates/mailServer/listEmails.html:78 +#: packages/templates/packages/listPackages.html:63 +#: userManagment/templates/userManagment/listUsers.html:54 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 +#: websiteFunctions/templates/websiteFunctions/listCron.html:65 +#: websiteFunctions/templates/websiteFunctions/website.html:497 +msgid "Delete" +msgstr "删除" + +#: IncBackups/templates/IncBackups/createBackup.html:3 +msgid "Create Incremental Backup" +msgstr "创建增量备份" + +#: IncBackups/templates/IncBackups/createBackup.html:13 +#: IncBackups/templates/IncBackups/createBackup.html:23 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 +#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 +#: backup/templates/backup/backup.html:21 +msgid "Back up Website" +msgstr "备份网站" + +#: IncBackups/templates/IncBackups/createBackup.html:15 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 +#: backup/templates/backup/backup.html:14 +#: backup/templates/backup/restore.html:14 +msgid "Backup Docs" +msgstr "备份文档" + +#: IncBackups/templates/IncBackups/createBackup.html:17 +msgid "This page can be used to create incremental backups for your websites." +msgstr "这个页面可以用来为您的网站创建增量备份。" + +#: IncBackups/templates/IncBackups/createBackup.html:33 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 +#: backup/templates/backup/backup.html:30 +#: databases/templates/databases/createDatabase.html:26 +#: databases/templates/databases/deleteDatabase.html:26 +#: databases/templates/databases/phpMyAdmin.html:26 +#: ftp/templates/ftp/createFTPAccount.html:42 +#: mailServer/templates/mailServer/changeEmailPassword.html:44 +#: mailServer/templates/mailServer/createEmailAccount.html:44 +#: mailServer/templates/mailServer/deleteEmailAccount.html:44 +#: mailServer/templates/mailServer/dkimManager.html:83 +#: mailServer/templates/mailServer/emailForwarding.html:38 +#: manageSSL/templates/manageSSL/manageSSL.html:29 +#: manageSSL/templates/manageSSL/sslForHostName.html:29 +#: manageSSL/templates/manageSSL/sslForMailServer.html:27 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/listCron.html:28 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 +msgid "Select Website" +msgstr "选择网站" + +#: IncBackups/templates/IncBackups/createBackup.html:113 +#: backup/templates/backup/backup.html:81 +#: baseTemplate/templates/baseTemplate/index.html:569 +#: baseTemplate/templates/baseTemplate/index.html:598 +#: userManagment/templates/userManagment/createACL.html:352 +#: userManagment/templates/userManagment/modifyACL.html:356 +msgid "Create Back up" +msgstr "创建备份" + +#: IncBackups/templates/IncBackups/createBackup.html:128 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 +#: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 +msgid "Date" +msgstr "日期" + +#: IncBackups/templates/IncBackups/createBackup.html:129 +#: backup/templates/backup/index.html:46 +#: backup/templates/backup/restore.html:45 +msgid "Restore" +msgstr "还原" + +#: IncBackups/templates/IncBackups/createBackup.html:161 +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "作业ID" + +#: IncBackups/templates/IncBackups/createBackup.html:162 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 +msgid "Snapshot ID" +msgstr "快照ID" + +#: IncBackups/templates/IncBackups/createBackup.html:163 +#: dns/templates/dns/addDeleteDNSRecords.html:327 +#: pluginHolder/templates/pluginHolder/plugins.html:29 +msgid "Type" +msgstr "类型" + +#: IncBackups/templates/IncBackups/createBackup.html:165 +#: websiteFunctions/templates/websiteFunctions/listCron.html:52 +msgid "Action" +msgstr "操作" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:14 +msgid "Set up Back up Destinations" +msgstr "设置远程目录" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 +msgid "Set up Incremental Back up Destinations" +msgstr "设置增量备份目的地" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 +msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" +msgstr "在此页面上,您可以设置备份目的地。(SFTP 和 AWS)" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 +msgid "Set up Back up Destinations." +msgstr "设置备份目的地。" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 +msgid "Select Type" +msgstr "选择类型" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 +#: backup/templates/backup/backupDestinations.html:30 +#: backup/templates/backup/remoteBackups.html:29 +#: dns/templates/dns/addDeleteDNSRecords.html:82 +#: dns/templates/dns/createNameServer.html:55 +#: dns/templates/dns/createNameServer.html:71 +#: firewall/templates/firewall/firewall.html:122 +msgid "IP Address" +msgstr "IP地址" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 +#: backup/templates/backup/backupDestinations.html:38 +#: backup/templates/backup/remoteBackups.html:37 +#: databases/templates/databases/createDatabase.html:56 +#: databases/templates/databases/listDataBases.html:107 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 +#: ftp/templates/ftp/listFTPAccounts.html:126 +#: mailServer/templates/mailServer/changeEmailPassword.html:68 +#: mailServer/templates/mailServer/createEmailAccount.html:68 +#: mailServer/templates/mailServer/listEmails.html:113 +#: userManagment/templates/userManagment/createUser.html:83 +#: userManagment/templates/userManagment/modifyUser.html:62 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 +msgid "Password" +msgstr "密码" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 +#: backup/templates/backup/backupDestinations.html:45 +#: dockerManager/templates/dockerManager/runContainer.html:74 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 +#: firewall/templates/firewall/firewall.html:123 +msgid "Port" +msgstr "端口" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 +#: backup/templates/backup/backupDestinations.html:47 +msgid "Backup server SSH Port, leave empty for 22." +msgstr "备份服务器的 SSH 端口,留空使用默认值 22。" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 +#: backup/templates/backup/backupDestinations.html:97 +msgid "IP" +msgstr "IP地址" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 +msgid "AWS_ACCESS_KEY_ID" +msgstr "AWS_ACCESS_KEY_ID" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 +msgid "AWS_SECRET_ACCESS_KEY" +msgstr "AWS_SECRET_ACCESS_KEY" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 +msgid "Restore Remote Incremental Backups" +msgstr "恢复远程增量备份" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 +msgid "" +"This page can be used to restore remote incremental backups for your " +"websites." +msgstr "这个页面可以用来恢复你的网站的远程增量备份。" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 +msgid "Fetch Restore Points" +msgstr "获取还原点" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "主机" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:330 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +msgid "Path" +msgstr "路径" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 +#: dockerManager/templates/dockerManager/viewContainer.html:108 +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:207 +#: mailServer/templates/mailServer/emailForwarding.html:120 +#: mailServer/templates/mailServer/listEmails.html:65 +#: packages/templates/packages/listPackages.html:41 +#: serverStatus/templates/serverStatus/topProcesses.html:201 +#: userManagment/templates/userManagment/listUsers.html:37 +msgid "Actions" +msgstr "操作" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 +msgid "Terminal - CyberPanel" +msgstr "终端 - CyberPanel" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 +#: baseTemplate/templates/baseTemplate/index.html:641 +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Terminal" +msgstr "终端" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 +msgid "Web Terminal Docs" +msgstr "网页终端文档" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 +msgid "Execute your terminal commands." +msgstr "执行你的终端命令。" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 +#: baseTemplate/templates/baseTemplate/index.html:643 +msgid "Web Terminal" +msgstr "网页终端" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 +msgid "Reboot SSH Server" +msgstr "重新启动SSH服务器" + +#: backup/templates/backup/backup.html:15 +msgid "This page can be used to Back up your websites" +msgstr "这里是网站备份界面" + +#: backup/templates/backup/backup.html:44 +#: baseTemplate/templates/baseTemplate/homePage.html:12 +#: filemanager/templates/filemanager/index.html:135 +msgid "Home" +msgstr "主目录" + +#: backup/templates/backup/backup.html:60 +#: backup/templates/backup/restore.html:62 +#: filemanager/templates/filemanager/index.html:158 +msgid "File Name" +msgstr "文件名" + +#: backup/templates/backup/backup.html:61 +#: backup/templates/backup/backup.html:106 +#: backup/templates/backup/restore.html:63 +#: baseTemplate/templates/baseTemplate/homePage.html:132 +#: baseTemplate/templates/baseTemplate/index.html:311 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 +#: filemanager/templates/filemanager/index.html:206 +#: firewall/templates/firewall/firewall.html:35 +#: firewall/templates/firewall/modSecurityRulesPacks.html:112 +#: managePHP/templates/managePHP/installExtensions.html:64 +msgid "Status" +msgstr "状态" + +#: backup/templates/backup/backup.html:66 +#: serverStatus/templates/serverStatus/topProcesses.html:52 +msgid "Running" +msgstr "进行中" + +#: backup/templates/backup/backup.html:88 +msgid "Cancel Backup" +msgstr "取消备份" + +#: backup/templates/backup/backup.html:103 +msgid "File" +msgstr "文件" + +#: backup/templates/backup/backup.html:105 +#: filemanager/templates/filemanager/index.html:204 +#: ftp/templates/ftp/listFTPAccounts.html:125 +msgid "Size" +msgstr "大小" + +#: backup/templates/backup/backup.html:131 +msgid "Cannot delete website, Error message: " +msgstr "无法删除网站, 错误信息: " + +#: backup/templates/backup/backup.html:135 +msgid "Successfully Deleted" +msgstr "删除成功" + +#: backup/templates/backup/backupDestinations.html:15 +msgid "On this page you can set up your Back up destinations. (SFTP)" +msgstr "这里是远程备份页面(SFTP)" + +#: backup/templates/backup/backupDestinations.html:21 +msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" +msgstr "设置备份目的地(备份服务器上的SSH端口应为22)" + +#: backup/templates/backup/backupDestinations.html:68 +#: backup/templates/backup/backupDestinations.html:72 +msgid "Connection to" +msgstr "连接到" + +#: backup/templates/backup/backupDestinations.html:68 +msgid "failed. Please delete and re-add. " +msgstr "失败, 请删除后重新添加。" + +#: backup/templates/backup/backupDestinations.html:72 +msgid "successful." +msgstr " 成功" + +#: backup/templates/backup/backupDestinations.html:76 +msgid "Cannot add destination. Error message:" +msgstr "无法添加远程目录, 错误信息:" + +#: backup/templates/backup/backupDestinations.html:80 +msgid "Destination Added." +msgstr "远程目录已添加。" + +#: backup/templates/backup/backupDestinations.html:84 +#: backup/templates/backup/backupSchedule.html:90 +#: backup/templates/backup/restore.html:95 +#: databases/templates/databases/createDatabase.html:98 +#: databases/templates/databases/deleteDatabase.html:69 +#: databases/templates/databases/phpMyAdmin.html:50 +#: dns/templates/dns/addDeleteDNSRecords.html:384 +#: dns/templates/dns/createDNSZone.html:70 +#: dns/templates/dns/createNameServer.html:102 +#: dns/templates/dns/deleteDNSZone.html:77 +#: dockerManager/templates/dockerManager/runContainer.html:185 +#: emailMarketing/templates/emailMarketing/website.html:161 +#: emailMarketing/templates/emailMarketing/website.html:420 +#: emailMarketing/templates/emailMarketing/website.html:471 +#: emailMarketing/templates/emailMarketing/website.html:633 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: emailMarketing/templates/emailMarketing/website.html:749 +#: emailMarketing/templates/emailMarketing/website.html:835 +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailPremium/templates/emailPremium/emailLimits.html:101 +#: emailPremium/templates/emailPremium/emailPage.html:119 +#: mailServer/templates/mailServer/changeEmailPassword.html:114 +#: mailServer/templates/mailServer/createEmailAccount.html:115 +#: mailServer/templates/mailServer/deleteEmailAccount.html:98 +#: mailServer/templates/mailServer/dkimManager.html:156 +#: mailServer/templates/mailServer/emailForwarding.html:83 +#: manageSSL/templates/manageSSL/manageSSL.html:60 +#: userManagment/templates/userManagment/createUser.html:137 +#: userManagment/templates/userManagment/modifyUser.html:121 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 +#: websiteFunctions/templates/websiteFunctions/website.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:383 +#: websiteFunctions/templates/websiteFunctions/website.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:581 +#: websiteFunctions/templates/websiteFunctions/website.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:778 +#: websiteFunctions/templates/websiteFunctions/website.html:884 +msgid "Could not connect to server. Please refresh this page." +msgstr "无法连接到服务器, 请刷新此页面。" + +#: backup/templates/backup/backupDestinations.html:98 +#: backup/templates/backup/backupDestinations.html:106 +msgid "Check Connection" +msgstr "测试连接" + +#: backup/templates/backup/backupSchedule.html:54 +msgid "Local Path" +msgstr "本地路径" + +#: backup/templates/backup/backupSchedule.html:57 +msgid "Local directory where backups will be moved after creation." +msgstr "备份在创建后将移入的本地目录。" + +#: backup/templates/backup/backupSchedule.html:82 +msgid "Cannot add schedule. Error message:" +msgstr "无法添加计划任务, 错误信息:" + +#: backup/templates/backup/backupSchedule.html:86 +msgid "Schedule Added" +msgstr "计划任务已添加" + +#: backup/templates/backup/index.html:3 +msgid "Back up Home - CyberPanel" +msgstr "备份 - CyberPanel" + +#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 +#: baseTemplate/templates/baseTemplate/homePage.html:95 +#: baseTemplate/templates/baseTemplate/homePage.html:97 +#: baseTemplate/templates/baseTemplate/index.html:561 +#: baseTemplate/templates/baseTemplate/index.html:563 +#: baseTemplate/templates/baseTemplate/index.html:616 +msgid "Back up" +msgstr "备份" + +#: backup/templates/backup/index.html:14 +msgid "Back up and restore sites." +msgstr "备份与还原网站。" + +#: backup/templates/backup/index.html:19 +#: baseTemplate/templates/baseTemplate/homePage.html:23 +#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 +#: dockerManager/templates/dockerManager/index.html:21 +#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 +#: mailServer/templates/mailServer/index.html:19 +#: managePHP/templates/managePHP/index.html:18 +#: manageSSL/templates/manageSSL/index.html:20 +#: packages/templates/packages/index.html:19 +#: serverLogs/templates/serverLogs/index.html:19 +#: serverStatus/templates/serverStatus/index.html:19 +#: tuning/templates/tuning/index.html:18 +#: userManagment/templates/userManagment/index.html:19 +#: websiteFunctions/templates/websiteFunctions/index.html:21 +msgid "Available Functions" +msgstr "可用功能" + +#: backup/templates/backup/index.html:28 +msgid "Back up Site" +msgstr "备份网站" + +#: backup/templates/backup/index.html:44 +#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:601 +#: userManagment/templates/userManagment/createACL.html:361 +#: userManagment/templates/userManagment/modifyACL.html:365 +msgid "Restore Back up" +msgstr "还原备份" + +#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 +msgid "Add/Delete Destinations" +msgstr "添加/删除远程目录" + +#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 +#: baseTemplate/templates/baseTemplate/index.html:581 +#: userManagment/templates/userManagment/createACL.html:391 +#: userManagment/templates/userManagment/modifyACL.html:395 +msgid "Remote Back ups" +msgstr "远程备份" + +#: backup/templates/backup/remoteBackups.html:3 +msgid "Transfer Websites from Remote Server - CyberPanel" +msgstr "从远程服务器恢复网站 - CyberPanel" + +#: backup/templates/backup/remoteBackups.html:14 +msgid "Remote Transfer" +msgstr "开始迁移" + +#: backup/templates/backup/remoteBackups.html:15 +msgid "This feature can import website(s) from remote server" +msgstr "此功能可以从远程服务器导入网站" + +#: backup/templates/backup/remoteBackups.html:46 +msgid "Fetch Accounts" +msgstr "读取" + +#: backup/templates/backup/remoteBackups.html:55 +msgid "Start Transfer" +msgstr "开始迁移" + +#: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:324 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:928 +#: emailPremium/templates/emailPremium/emailLimits.html:75 +#: emailPremium/templates/emailPremium/emailPage.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:93 +#: filemanager/templates/filemanager/index.html:230 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:747 +#: websiteFunctions/templates/websiteFunctions/website.html:858 +msgid "Cancel" +msgstr "取消" + +#: backup/templates/backup/remoteBackups.html:72 +msgid "Could not connect, please refresh this page." +msgstr "无法连接, 请刷新此页面。" + +#: backup/templates/backup/remoteBackups.html:76 +msgid "Accounts Successfully Fetched from remote server." +msgstr "成功读取记录。" + +#: backup/templates/backup/remoteBackups.html:80 +msgid "Backup Process successfully started." +msgstr "备份进程已成功开始。" + +#: backup/templates/backup/remoteBackups.html:84 +msgid "Backup successfully cancelled." +msgstr "已成功添加。" + +#: backup/templates/backup/remoteBackups.html:107 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Website" +msgstr "网站" + +#: backup/templates/backup/remoteBackups.html:108 +#: baseTemplate/templates/baseTemplate/homePage.html:143 +#: baseTemplate/templates/baseTemplate/index.html:768 +#: baseTemplate/templates/baseTemplate/index.html:770 +#: managePHP/templates/managePHP/installExtensions.html:61 +msgid "PHP" +msgstr "PHP" + +#: backup/templates/backup/remoteBackups.html:109 +#: packages/templates/packages/createPackage.html:112 +#: packages/templates/packages/deletePackage.html:60 +#: packages/templates/packages/listPackages.html:33 +#: packages/templates/packages/modifyPackage.html:125 +msgid "Package" +msgstr "套餐" + +#: backup/templates/backup/remoteBackups.html:110 +#: baseTemplate/templates/baseTemplate/index.html:505 +#: baseTemplate/templates/baseTemplate/index.html:507 +#: mailServer/templates/mailServer/listEmails.html:101 +#: userManagment/templates/userManagment/createUser.html:45 +#: userManagment/templates/userManagment/modifyUser.html:54 +#: userManagment/templates/userManagment/userProfile.html:41 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 +msgid "Email" +msgstr "邮箱" + +#: backup/templates/backup/restore.html:3 +msgid "Restore Website - CyberPanel" +msgstr "还原网站 - Cyberpanel" + +#: backup/templates/backup/restore.html:14 +#: backup/templates/backup/restore.html:21 +msgid "Restore Website" +msgstr "还原网站" + +#: backup/templates/backup/restore.html:15 +msgid "" +"This page can be used to restore your websites, Back up should be generated " +"from CyberPanel Back up generation tool, it will detect all Back ups under " +"/home/backup." +msgstr "" +"在此页面可以从备份中还原网站, 备份文件应当由CyberPanel备份工具创建 并且会自动" +"检测所有在/home/backup的备份。" + +#: backup/templates/backup/restore.html:30 +msgid "Select Back up" +msgstr "选择备份" + +#: backup/templates/backup/restore.html:61 +msgid "Condition" +msgstr "条件" + +#: backup/templates/backup/restore.html:86 +#: databases/templates/databases/deleteDatabase.html:60 +#: databases/templates/databases/listDataBases.html:54 +#: dockerManager/templates/dockerManager/listContainers.html:57 +#: dockerManager/templates/dockerManager/runContainer.html:176 +#: emailMarketing/templates/emailMarketing/website.html:411 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: firewall/templates/firewall/firewall.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:214 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:374 +#: websiteFunctions/templates/websiteFunctions/website.html:876 +msgid "Error message:" +msgstr "错误信息:" + +#: backup/templates/backup/restore.html:90 +msgid "Site related to this Back up already exists." +msgstr "此备份中的网站已存在。" + +#: baseTemplate/templates/baseTemplate/homePage.html:3 +msgid "Home - CyberPanel" +msgstr "主页 - Cyberpanel" + +#: baseTemplate/templates/baseTemplate/homePage.html:13 +msgid "Use the tabs to navigate through the control panel." +msgstr "通过标签页来浏览控制面板。" + +#: baseTemplate/templates/baseTemplate/homePage.html:29 +#: userManagment/templates/userManagment/index.html:13 +msgid "User Functions" +msgstr "用户功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:31 +#: baseTemplate/templates/baseTemplate/index.html:361 +#: baseTemplate/templates/baseTemplate/index.html:362 +#: baseTemplate/templates/baseTemplate/index.html:363 +msgid "Users" +msgstr "用户" + +#: baseTemplate/templates/baseTemplate/homePage.html:40 +#: websiteFunctions/templates/websiteFunctions/index.html:13 +msgid "Website Functions" +msgstr "网站功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:51 +msgid "Add/Modify Packages" +msgstr "创建/修改套餐" + +#: baseTemplate/templates/baseTemplate/homePage.html:53 +#: baseTemplate/templates/baseTemplate/index.html:283 +#: baseTemplate/templates/baseTemplate/index.html:427 +#: baseTemplate/templates/baseTemplate/index.html:429 +#: packages/templates/packages/index.html:13 +msgid "Packages" +msgstr "套餐" + +#: baseTemplate/templates/baseTemplate/homePage.html:62 +#: databases/templates/databases/index.html:12 +msgid "Database Functions" +msgstr "数据库功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:64 +#: baseTemplate/templates/baseTemplate/index.html:452 +#: baseTemplate/templates/baseTemplate/index.html:453 +#: baseTemplate/templates/baseTemplate/index.html:454 +#: emailMarketing/templates/emailMarketing/website.html:51 +#: packages/templates/packages/createPackage.html:69 +#: packages/templates/packages/listPackages.html:37 +#: packages/templates/packages/listPackages.html:134 +#: packages/templates/packages/modifyPackage.html:73 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 +#: websiteFunctions/templates/websiteFunctions/website.html:54 +msgid "Databases" +msgstr "数据库" + +#: baseTemplate/templates/baseTemplate/homePage.html:73 +msgid "Control DNS" +msgstr "控制DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:75 +#: baseTemplate/templates/baseTemplate/index.html:290 +#: baseTemplate/templates/baseTemplate/index.html:477 +#: baseTemplate/templates/baseTemplate/index.html:479 +msgid "DNS" +msgstr "DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:84 +#: ftp/templates/ftp/index.html:12 +msgid "FTP Functions" +msgstr "FTP功能" + +#: baseTemplate/templates/baseTemplate/homePage.html:86 +#: baseTemplate/templates/baseTemplate/index.html:297 +#: baseTemplate/templates/baseTemplate/index.html:539 +#: baseTemplate/templates/baseTemplate/index.html:541 +#: emailMarketing/templates/emailMarketing/website.html:46 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 +#: websiteFunctions/templates/websiteFunctions/website.html:49 +msgid "FTP" +msgstr "FTP" + +#: baseTemplate/templates/baseTemplate/homePage.html:106 +#: baseTemplate/templates/baseTemplate/homePage.html:108 +#: mailServer/templates/mailServer/listEmails.html:64 +#: packages/templates/packages/createPackage.html:77 +#: packages/templates/packages/listPackages.html:143 +#: packages/templates/packages/modifyPackage.html:80 +msgid "Emails" +msgstr "邮箱" + +#: baseTemplate/templates/baseTemplate/homePage.html:117 +#: baseTemplate/templates/baseTemplate/homePage.html:119 +#: baseTemplate/templates/baseTemplate/index.html:617 +#: baseTemplate/templates/baseTemplate/index.html:618 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 +msgid "SSL" +msgstr "SSL" + +#: baseTemplate/templates/baseTemplate/homePage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:743 +#: baseTemplate/templates/baseTemplate/index.html:745 +#: baseTemplate/templates/baseTemplate/index.html:787 +#: emailPremium/templates/emailPremium/policyServer.html:30 +#: serverStatus/templates/serverStatus/index.html:13 +msgid "Server Status" +msgstr "服务器状态" + +#: baseTemplate/templates/baseTemplate/homePage.html:141 +msgid "PHP Configurations" +msgstr "设置PHP参数" + +#: baseTemplate/templates/baseTemplate/homePage.html:152 +#: baseTemplate/templates/baseTemplate/homePage.html:154 +#: baseTemplate/templates/baseTemplate/index.html:789 +#: dockerManager/templates/dockerManager/viewContainer.html:174 +#: emailMarketing/templates/emailMarketing/website.html:117 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 +#: websiteFunctions/templates/websiteFunctions/website.html:106 +msgid "Logs" +msgstr "日志" + +#: baseTemplate/templates/baseTemplate/homePage.html:163 +#: baseTemplate/templates/baseTemplate/homePage.html:165 +#: baseTemplate/templates/baseTemplate/index.html:811 +#: baseTemplate/templates/baseTemplate/index.html:813 +msgid "Security" +msgstr "安全" + +#: baseTemplate/templates/baseTemplate/homePage.html:188 +msgid "Resources" +msgstr "资源" + +#: baseTemplate/templates/baseTemplate/homePage.html:197 +#: baseTemplate/templates/baseTemplate/index.html:139 +#: dockerManager/templates/dockerManager/viewContainer.html:48 +msgid "CPU Usage" +msgstr "CPU使用量" + +#: baseTemplate/templates/baseTemplate/homePage.html:218 +#: baseTemplate/templates/baseTemplate/index.html:150 +msgid "Ram Usage" +msgstr "内存使用量" + +#: baseTemplate/templates/baseTemplate/homePage.html:239 +msgid "Disk Usage '/'" +msgstr "硬盘使用量 '/'" + +#: baseTemplate/templates/baseTemplate/index.html:159 +#: emailMarketing/templates/emailMarketing/website.html:58 +#: emailMarketing/templates/emailMarketing/website.html:78 +#: userManagment/templates/userManagment/listUsers.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 +#: websiteFunctions/templates/websiteFunctions/website.html:59 +#: websiteFunctions/templates/websiteFunctions/website.html:77 +msgid "Disk Usage" +msgstr "硬盘使用量" + +#: baseTemplate/templates/baseTemplate/index.html:192 +#: baseTemplate/templates/baseTemplate/index.html:195 +#: baseTemplate/templates/baseTemplate/index.html:199 +msgid "CyberPanel" +msgstr "CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:197 +#: baseTemplate/templates/baseTemplate/index.html:201 +msgid "Web Hosting Control Panel" +msgstr "Web主机控制面板" + +#: baseTemplate/templates/baseTemplate/index.html:203 +msgid "Close sidebar" +msgstr "关闭侧边栏" + +#: baseTemplate/templates/baseTemplate/index.html:209 +msgid "My Account" +msgstr "我的账号" + +#: baseTemplate/templates/baseTemplate/index.html:228 +msgid "Edit profile" +msgstr "编辑资料" + +#: baseTemplate/templates/baseTemplate/index.html:230 +#: baseTemplate/templates/baseTemplate/index.html:369 +#: userManagment/templates/userManagment/index.html:24 +#: userManagment/templates/userManagment/index.html:27 +msgid "View Profile" +msgstr "查看资料" + +#: baseTemplate/templates/baseTemplate/index.html:237 +#: baseTemplate/templates/baseTemplate/index.html:319 +msgid "Logout" +msgstr "登出" + +#: baseTemplate/templates/baseTemplate/index.html:249 +#: baseTemplate/templates/baseTemplate/index.html:254 +#: baseTemplate/templates/baseTemplate/index.html:259 +msgid "CPU Load Average" +msgstr "CPU平均负载" + +#: baseTemplate/templates/baseTemplate/index.html:265 +msgid "Dashboard Quick Menu" +msgstr "仪表盘" + +#: baseTemplate/templates/baseTemplate/index.html:304 +#: baseTemplate/templates/baseTemplate/index.html:725 +#: baseTemplate/templates/baseTemplate/index.html:727 +msgid "Tuning" +msgstr "服务器设置" + +#: baseTemplate/templates/baseTemplate/index.html:332 +msgid "Overview" +msgstr "概览" + +#: baseTemplate/templates/baseTemplate/index.html:334 +#: baseTemplate/templates/baseTemplate/index.html:335 +msgid "Server IP Address" +msgstr "服务器IP地址" + +#: baseTemplate/templates/baseTemplate/index.html:339 +#: baseTemplate/templates/baseTemplate/index.html:341 +msgid "Dashboard" +msgstr "仪表盘" + +#: baseTemplate/templates/baseTemplate/index.html:344 +#: baseTemplate/templates/baseTemplate/index.html:346 +#: baseTemplate/templates/baseTemplate/index.html:348 +#: baseTemplate/templates/baseTemplate/versionManagment.html:10 +#: userManagment/templates/userManagment/createACL.html:47 +#: userManagment/templates/userManagment/createACL.html:52 +#: userManagment/templates/userManagment/modifyACL.html:51 +#: userManagment/templates/userManagment/modifyACL.html:56 +msgid "Version Management" +msgstr "版本管理" + +#: baseTemplate/templates/baseTemplate/index.html:351 +#: baseTemplate/templates/baseTemplate/index.html:352 +#: baseTemplate/templates/baseTemplate/index.html:354 +msgid "Connect" +msgstr "连接" + +#: baseTemplate/templates/baseTemplate/index.html:358 +msgid "Main" +msgstr "主要功能" + +#: baseTemplate/templates/baseTemplate/index.html:372 +#: userManagment/templates/userManagment/createACL.html:64 +#: userManagment/templates/userManagment/createUser.html:12 +#: userManagment/templates/userManagment/modifyACL.html:68 +msgid "Create New User" +msgstr "创建新用户" + +#: baseTemplate/templates/baseTemplate/index.html:375 +#: userManagment/templates/userManagment/createACL.html:73 +#: userManagment/templates/userManagment/index.html:36 +#: userManagment/templates/userManagment/index.html:39 +#: userManagment/templates/userManagment/listUsers.html:13 +#: userManagment/templates/userManagment/listUsers.html:19 +#: userManagment/templates/userManagment/modifyACL.html:77 +msgid "List Users" +msgstr "列出用户" + +#: baseTemplate/templates/baseTemplate/index.html:378 +#: userManagment/templates/userManagment/index.html:61 +#: userManagment/templates/userManagment/index.html:64 +#: userManagment/templates/userManagment/modifyUser.html:12 +#: userManagment/templates/userManagment/modifyUser.html:102 +msgid "Modify User" +msgstr "修改用户" + +#: baseTemplate/templates/baseTemplate/index.html:380 +#: userManagment/templates/userManagment/createACL.html:82 +#: userManagment/templates/userManagment/modifyACL.html:86 +#: userManagment/templates/userManagment/resellerCenter.html:12 +#: userManagment/templates/userManagment/resellerCenter.html:19 +msgid "Reseller Center" +msgstr "分销商中心" + +#: baseTemplate/templates/baseTemplate/index.html:383 +#: userManagment/templates/userManagment/createACL.html:12 +msgid "Create New ACL" +msgstr "创建新访问控制策略" + +#: baseTemplate/templates/baseTemplate/index.html:386 +#: userManagment/templates/userManagment/deleteACL.html:12 +#: userManagment/templates/userManagment/deleteACL.html:40 +msgid "Delete ACL" +msgstr "删除 ACL" + +#: baseTemplate/templates/baseTemplate/index.html:389 +msgid "Modify ACL" +msgstr "修改访问控制策略" + +#: baseTemplate/templates/baseTemplate/index.html:392 +#: userManagment/templates/userManagment/apiAccess.html:13 +#: userManagment/templates/userManagment/apiAccess.html:20 +msgid "API Access" +msgstr "API 权限" + +#: baseTemplate/templates/baseTemplate/index.html:408 +#: userManagment/templates/userManagment/createACL.html:112 +#: userManagment/templates/userManagment/modifyACL.html:116 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 +#: websiteFunctions/templates/websiteFunctions/index.html:43 +#: websiteFunctions/templates/websiteFunctions/index.html:45 +msgid "Create Website" +msgstr "创建网站" + +#: baseTemplate/templates/baseTemplate/index.html:414 +#: userManagment/templates/userManagment/createACL.html:121 +#: userManagment/templates/userManagment/modifyACL.html:125 +#: websiteFunctions/templates/websiteFunctions/index.html:67 +#: websiteFunctions/templates/websiteFunctions/index.html:69 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 +msgid "Modify Website" +msgstr "修改网站" + +#: baseTemplate/templates/baseTemplate/index.html:417 +#: websiteFunctions/templates/websiteFunctions/index.html:81 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 +msgid "Suspend/Unsuspend" +msgstr "禁用/启用" + +#: baseTemplate/templates/baseTemplate/index.html:420 +#: userManagment/templates/userManagment/createACL.html:139 +#: userManagment/templates/userManagment/deleteACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:143 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 +#: websiteFunctions/templates/websiteFunctions/index.html:90 +#: websiteFunctions/templates/websiteFunctions/index.html:92 +msgid "Delete Website" +msgstr "删除网站" + +#: baseTemplate/templates/baseTemplate/index.html:438 +#: baseTemplate/templates/baseTemplate/index.html:671 +#: packages/templates/packages/listPackages.html:13 +#: packages/templates/packages/listPackages.html:19 +#: userManagment/templates/userManagment/createACL.html:161 +#: userManagment/templates/userManagment/modifyACL.html:165 +msgid "List Packages" +msgstr "套餐列表" + +#: baseTemplate/templates/baseTemplate/index.html:441 +#: packages/templates/packages/deletePackage.html:12 +#: packages/templates/packages/deletePackage.html:18 +#: packages/templates/packages/deletePackage.html:39 +#: packages/templates/packages/index.html:38 +#: packages/templates/packages/index.html:41 +#: userManagment/templates/userManagment/createACL.html:170 +#: userManagment/templates/userManagment/modifyACL.html:174 +msgid "Delete Package" +msgstr "删除套餐" + +#: baseTemplate/templates/baseTemplate/index.html:444 +#: packages/templates/packages/index.html:51 +#: packages/templates/packages/index.html:54 +#: packages/templates/packages/modifyPackage.html:9 +#: packages/templates/packages/modifyPackage.html:15 +#: packages/templates/packages/modifyPackage.html:108 +#: userManagment/templates/userManagment/createACL.html:179 +#: userManagment/templates/userManagment/modifyACL.html:183 +msgid "Modify Package" +msgstr "修改套餐" + +#: baseTemplate/templates/baseTemplate/index.html:460 +#: databases/templates/databases/createDatabase.html:12 +#: databases/templates/databases/createDatabase.html:19 +#: databases/templates/databases/createDatabase.html:79 +#: databases/templates/databases/index.html:25 +#: databases/templates/databases/index.html:27 +#: databases/templates/databases/phpMyAdmin.html:12 +#: databases/templates/databases/phpMyAdmin.html:19 +#: userManagment/templates/userManagment/createACL.html:191 +#: userManagment/templates/userManagment/modifyACL.html:195 +msgid "Create Database" +msgstr "创建数据库" + +#: baseTemplate/templates/baseTemplate/index.html:463 +#: databases/templates/databases/deleteDatabase.html:12 +#: databases/templates/databases/deleteDatabase.html:19 +#: databases/templates/databases/deleteDatabase.html:51 +#: databases/templates/databases/index.html:37 +#: databases/templates/databases/index.html:39 +#: userManagment/templates/userManagment/createACL.html:200 +#: userManagment/templates/userManagment/modifyACL.html:204 +msgid "Delete Database" +msgstr "删除数据库" + +#: baseTemplate/templates/baseTemplate/index.html:466 +#: databases/templates/databases/index.html:48 +#: databases/templates/databases/index.html:50 +#: databases/templates/databases/listDataBases.html:13 +#: databases/templates/databases/listDataBases.html:19 +#: userManagment/templates/userManagment/createACL.html:209 +#: userManagment/templates/userManagment/modifyACL.html:213 +msgid "List Databases" +msgstr "查看数据库" + +#: baseTemplate/templates/baseTemplate/index.html:468 +#: baseTemplate/templates/baseTemplate/index.html:469 +#: databases/templates/databases/index.html:59 +#: databases/templates/databases/index.html:61 +msgid "PHPMYAdmin" +msgstr "PHPMYADMIN" + +#: baseTemplate/templates/baseTemplate/index.html:485 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 +#: dns/templates/dns/index.html:74 +#: userManagment/templates/userManagment/createACL.html:221 +#: userManagment/templates/userManagment/modifyACL.html:225 +msgid "Create Nameserver" +msgstr "创建名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:488 +msgid "Configure Default Nameservers" +msgstr "创建默认名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:488 +msgid "Config Default Nameservers" +msgstr "设置默认名称服务器(NS)" + +#: baseTemplate/templates/baseTemplate/index.html:491 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 +#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 +#: dns/templates/dns/index.html:86 +msgid "Create DNS Zone" +msgstr "创建DNS区域" + +#: baseTemplate/templates/baseTemplate/index.html:494 +#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 +#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 +#: dns/templates/dns/index.html:98 +#: userManagment/templates/userManagment/createACL.html:239 +#: userManagment/templates/userManagment/modifyACL.html:243 +msgid "Delete Zone" +msgstr "删除DNS区域" + +#: baseTemplate/templates/baseTemplate/index.html:497 +msgid "Add/Delete Records" +msgstr "添加/删除记录" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:12 +#: mailServer/templates/mailServer/createEmailAccount.html:19 +msgid "Create Email Account" +msgstr "创建邮箱用户" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:98 +#: mailServer/templates/mailServer/index.html:25 +#: mailServer/templates/mailServer/index.html:28 +#: userManagment/templates/userManagment/createACL.html:262 +#: userManagment/templates/userManagment/modifyACL.html:266 +msgid "Create Email" +msgstr "创建邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:516 +#: userManagment/templates/userManagment/createACL.html:271 +#: userManagment/templates/userManagment/modifyACL.html:275 +msgid "List Emails" +msgstr "邮箱列表" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:12 +#: mailServer/templates/mailServer/deleteEmailAccount.html:19 +msgid "Delete Email Account" +msgstr "删除邮箱用户" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:73 +#: mailServer/templates/mailServer/index.html:38 +#: mailServer/templates/mailServer/index.html:41 +#: userManagment/templates/userManagment/createACL.html:280 +#: userManagment/templates/userManagment/modifyACL.html:284 +msgid "Delete Email" +msgstr "删除邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:522 +#: userManagment/templates/userManagment/createACL.html:289 +#: userManagment/templates/userManagment/modifyACL.html:293 +msgid "Email Forwarding" +msgstr "邮件转发" + +#: baseTemplate/templates/baseTemplate/index.html:525 +#: databases/templates/databases/listDataBases.html:90 +#: ftp/templates/ftp/listFTPAccounts.html:108 +#: mailServer/templates/mailServer/changeEmailPassword.html:97 +#: mailServer/templates/mailServer/index.html:51 +#: mailServer/templates/mailServer/index.html:54 +#: mailServer/templates/mailServer/listEmails.html:76 +msgid "Change Password" +msgstr "修改邮箱" + +#: baseTemplate/templates/baseTemplate/index.html:528 +#: mailServer/templates/mailServer/dkimManager.html:13 +#: mailServer/templates/mailServer/dkimManager.html:22 +#: mailServer/templates/mailServer/dkimManager.html:75 +#: userManagment/templates/userManagment/createACL.html:309 +#: userManagment/templates/userManagment/modifyACL.html:313 +msgid "DKIM Manager" +msgstr "DKIM管理" + +#: baseTemplate/templates/baseTemplate/index.html:530 +#: baseTemplate/templates/baseTemplate/index.html:531 +msgid "Access Webmail" +msgstr "进入Webmail" + +#: baseTemplate/templates/baseTemplate/index.html:547 +#: emailMarketing/templates/emailMarketing/website.html:886 +#: emailMarketing/templates/emailMarketing/website.html:889 +#: ftp/templates/ftp/createFTPAccount.html:12 +#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 +#: ftp/templates/ftp/index.html:26 +#: userManagment/templates/userManagment/createACL.html:322 +#: userManagment/templates/userManagment/modifyACL.html:326 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 +#: websiteFunctions/templates/websiteFunctions/website.html:821 +#: websiteFunctions/templates/websiteFunctions/website.html:824 +msgid "Create FTP Account" +msgstr "创建FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:550 +#: emailMarketing/templates/emailMarketing/website.html:898 +#: emailMarketing/templates/emailMarketing/website.html:901 +#: ftp/templates/ftp/deleteFTPAccount.html:12 +#: ftp/templates/ftp/deleteFTPAccount.html:18 +#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 +#: ftp/templates/ftp/index.html:37 +#: userManagment/templates/userManagment/createACL.html:331 +#: userManagment/templates/userManagment/modifyACL.html:335 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 +#: websiteFunctions/templates/websiteFunctions/website.html:830 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +msgid "Delete FTP Account" +msgstr "删除FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:553 +#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 +#: ftp/templates/ftp/listFTPAccounts.html:13 +#: ftp/templates/ftp/listFTPAccounts.html:19 +#: userManagment/templates/userManagment/createACL.html:340 +#: userManagment/templates/userManagment/modifyACL.html:344 +msgid "List FTP Accounts" +msgstr "查看FTP用户" + +#: baseTemplate/templates/baseTemplate/index.html:575 +#: userManagment/templates/userManagment/createACL.html:370 +#: userManagment/templates/userManagment/modifyACL.html:374 +msgid "Add/Delete Destination" +msgstr "添加/删除远程目录" + +#: baseTemplate/templates/baseTemplate/index.html:590 +msgid "Incremental Back up - Beta" +msgstr "增量备份 - Beta" + +#: baseTemplate/templates/baseTemplate/index.html:592 +msgid "Incremental Back up" +msgstr "增量式备份" + +#: baseTemplate/templates/baseTemplate/index.html:598 +msgid "Create/Restore Back up" +msgstr "创建/恢复备份" + +#: baseTemplate/templates/baseTemplate/index.html:601 +msgid "Add/Remove Destinations" +msgstr "添加/删除远程目标" + +#: baseTemplate/templates/baseTemplate/index.html:604 +msgid "Schedule Back ups" +msgstr "计划备份" + +#: baseTemplate/templates/baseTemplate/index.html:607 +msgid "Restore from Remote Server" +msgstr "从远程服务器恢复" + +#: baseTemplate/templates/baseTemplate/index.html:607 +msgid "Restore from Remote" +msgstr "从远程恢复" + +#: baseTemplate/templates/baseTemplate/index.html:624 +#: manageSSL/templates/manageSSL/index.html:29 +#: manageSSL/templates/manageSSL/index.html:31 +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/manageSSL.html:20 +#: userManagment/templates/userManagment/createACL.html:404 +#: userManagment/templates/userManagment/modifyACL.html:408 +msgid "Manage SSL" +msgstr "管理SSL" + +#: baseTemplate/templates/baseTemplate/index.html:627 +#: manageSSL/templates/manageSSL/index.html:45 +#: manageSSL/templates/manageSSL/index.html:47 +#: userManagment/templates/userManagment/createACL.html:413 +#: userManagment/templates/userManagment/modifyACL.html:417 +msgid "Hostname SSL" +msgstr "主机名SSL" + +#: baseTemplate/templates/baseTemplate/index.html:630 +#: manageSSL/templates/manageSSL/index.html:60 +#: manageSSL/templates/manageSSL/index.html:62 +#: userManagment/templates/userManagment/createACL.html:422 +#: userManagment/templates/userManagment/modifyACL.html:426 +msgid "MailServer SSL" +msgstr "邮件服务器SSL" + +#: baseTemplate/templates/baseTemplate/index.html:637 +msgid "Server" +msgstr "服务器设置" + +#: baseTemplate/templates/baseTemplate/index.html:644 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:688 +#: baseTemplate/templates/baseTemplate/index.html:705 +#: baseTemplate/templates/baseTemplate/index.html:846 +msgid "NEW" +msgstr "新功能" + +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Web Based Terminal" +msgstr "网络终端" + +#: baseTemplate/templates/baseTemplate/index.html:657 +#: baseTemplate/templates/baseTemplate/index.html:659 +msgid "CloudLinux" +msgstr "CloudLinux" + +#: baseTemplate/templates/baseTemplate/index.html:666 +msgid "Create Cloud Linux Package" +msgstr "创建Cloud Linux 包" + +#: baseTemplate/templates/baseTemplate/index.html:671 +msgid "List Cloud Linux Package" +msgstr "列出套餐" + +#: baseTemplate/templates/baseTemplate/index.html:676 +msgid "Monitor Usage of your Websites" +msgstr "监控您的网站使用情况" + +#: baseTemplate/templates/baseTemplate/index.html:676 +msgid "Monitor Usage" +msgstr "监测使用情况" + +#: baseTemplate/templates/baseTemplate/index.html:685 +#: baseTemplate/templates/baseTemplate/index.html:687 +msgid "Containerization" +msgstr "容器化技术" + +#: baseTemplate/templates/baseTemplate/index.html:694 +msgid "Create Website Limits" +msgstr "创建网站限制" + +#: baseTemplate/templates/baseTemplate/index.html:694 +msgid "Create Limits" +msgstr "创建限制" + +#: baseTemplate/templates/baseTemplate/index.html:702 +msgid "Docker" +msgstr "Docker" + +#: baseTemplate/templates/baseTemplate/index.html:704 +msgid "Docker Manager" +msgstr "Docker 管理器" + +#: baseTemplate/templates/baseTemplate/index.html:711 +msgid "Manage Docker Images" +msgstr "管理Docker 镜像" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#: dockerManager/templates/dockerManager/index.html:49 +#: dockerManager/templates/dockerManager/index.html:51 +#: dockerManager/templates/dockerManager/manageImages.html:14 +msgid "Manage Images" +msgstr "管理映像" + +#: baseTemplate/templates/baseTemplate/index.html:714 +msgid "Manage Docker Containers" +msgstr "管理Docker容器" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#: dockerManager/templates/dockerManager/index.html:29 +#: dockerManager/templates/dockerManager/index.html:31 +msgid "Manage Containers" +msgstr "管理容器" + +#: baseTemplate/templates/baseTemplate/index.html:717 +msgid "Create New Docker Container" +msgstr "创建新的Docker容器" + +#: baseTemplate/templates/baseTemplate/index.html:717 +msgid "Create New Container" +msgstr "创建新容器" + +#: baseTemplate/templates/baseTemplate/index.html:733 +#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 +#: tuning/templates/tuning/liteSpeedTuning.html:12 +msgid "LiteSpeed Tuning" +msgstr "LiteSpeed设置" + +#: baseTemplate/templates/baseTemplate/index.html:736 +#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 +#: tuning/templates/tuning/phpTuning.html:13 +#: tuning/templates/tuning/phpTuning.html:149 +msgid "PHP Tuning" +msgstr "PHP设置" + +#: baseTemplate/templates/baseTemplate/index.html:751 +#: serverStatus/templates/serverStatus/topProcesses.html:14 +#: serverStatus/templates/serverStatus/topProcesses.html:179 +msgid "Top Processes" +msgstr "顶级进程" + +#: baseTemplate/templates/baseTemplate/index.html:754 +#: serverStatus/templates/serverStatus/index.html:25 +#: serverStatus/templates/serverStatus/index.html:28 +msgid "LiteSpeed Status" +msgstr "LiteSpeed状态" + +#: baseTemplate/templates/baseTemplate/index.html:757 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 +#: serverStatus/templates/serverStatus/index.html:38 +msgid "CyberPanel Main Log File" +msgstr "Cybapenl主日志" + +#: baseTemplate/templates/baseTemplate/index.html:760 +msgid "Services Status" +msgstr "服务状态" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/installExtensions.html:13 +msgid "Install PHP Extensions" +msgstr "安装PHP扩展" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/index.html:24 +#: managePHP/templates/managePHP/index.html:26 +msgid "Install Extensions" +msgstr "安装扩展" + +#: baseTemplate/templates/baseTemplate/index.html:779 +#: managePHP/templates/managePHP/index.html:35 +#: managePHP/templates/managePHP/index.html:37 +msgid "Edit PHP Configs" +msgstr "编辑PHP配置" + +#: baseTemplate/templates/baseTemplate/index.html:795 +msgid "Access Log" +msgstr "访问日志" + +#: baseTemplate/templates/baseTemplate/index.html:797 +#: emailMarketing/templates/emailMarketing/website.html:139 +#: serverLogs/templates/serverLogs/errorLogs.html:13 +#: serverLogs/templates/serverLogs/index.html:37 +#: serverLogs/templates/serverLogs/index.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Error Logs" +msgstr "错误日志" + +#: baseTemplate/templates/baseTemplate/index.html:799 +#: emailPremium/templates/emailPremium/emailPage.html:144 +#: serverLogs/templates/serverLogs/emailLogs.html:14 +#: serverLogs/templates/serverLogs/index.html:49 +#: serverLogs/templates/serverLogs/index.html:52 +msgid "Email Logs" +msgstr "邮箱日志" + +#: baseTemplate/templates/baseTemplate/index.html:799 +msgid "Email Log" +msgstr "邮箱日志" + +#: baseTemplate/templates/baseTemplate/index.html:801 +#: serverLogs/templates/serverLogs/ftplogs.html:13 +#: serverLogs/templates/serverLogs/index.html:61 +#: serverLogs/templates/serverLogs/index.html:64 +msgid "FTP Logs" +msgstr "FTP日志" + +#: baseTemplate/templates/baseTemplate/index.html:803 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 +msgid "ModSecurity Audit Logs" +msgstr "ModSecurity审计日志" + +#: baseTemplate/templates/baseTemplate/index.html:803 +msgid "ModSec Audit Logs" +msgstr "ModSecurity 审查日志" + +#: baseTemplate/templates/baseTemplate/index.html:819 +msgid "Firewall Home" +msgstr "防火墙" + +#: baseTemplate/templates/baseTemplate/index.html:819 +#: firewall/templates/firewall/csf.html:119 +#: firewall/templates/firewall/index.html:25 +#: firewall/templates/firewall/index.html:27 +msgid "Firewall" +msgstr "防火墙" + +#: baseTemplate/templates/baseTemplate/index.html:821 +#: firewall/templates/firewall/index.html:36 +#: firewall/templates/firewall/index.html:38 +#: firewall/templates/firewall/secureSSH.html:13 +#: firewall/templates/firewall/secureSSH.html:20 +msgid "Secure SSH" +msgstr "SSH加固" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:58 +msgid "ModSecurity Configurations" +msgstr "ModSecurity 设置" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:60 +msgid "ModSecurity Conf" +msgstr "ModSecurity 设置" + +#: baseTemplate/templates/baseTemplate/index.html:826 +#: firewall/templates/firewall/index.html:69 +#: firewall/templates/firewall/index.html:71 +#: firewall/templates/firewall/modSecurityRules.html:20 +msgid "ModSecurity Rules" +msgstr "ModSecurity 规则" + +#: baseTemplate/templates/baseTemplate/index.html:829 +#: firewall/templates/firewall/index.html:80 +#: firewall/templates/firewall/index.html:82 +msgid "ModSecurity Rules Packs" +msgstr "ModSecurity 规则包" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/index.html:47 +msgid "ConfigServer Security & Firewall (CSF)" +msgstr "配置服务器安全和防火墙(CSF)" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/csf.html:21 +#: firewall/templates/firewall/csf.html:86 +#: firewall/templates/firewall/csf.html:95 +#: firewall/templates/firewall/index.html:49 +msgid "CSF" +msgstr "CSF" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS Configurations" +msgstr "CageFS 配置" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS" +msgstr "CageFS" + +#: baseTemplate/templates/baseTemplate/index.html:843 +#: baseTemplate/templates/baseTemplate/index.html:845 +msgid "Mail Settings" +msgstr "邮件设置" + +#: baseTemplate/templates/baseTemplate/index.html:852 +#: emailPremium/templates/emailPremium/policyServer.html:20 +msgid "Email Policy Server" +msgstr "邮箱策略服务器" + +#: baseTemplate/templates/baseTemplate/index.html:855 +msgid "Email Limits" +msgstr "邮箱限制" + +#: baseTemplate/templates/baseTemplate/index.html:858 +msgid "SpamAssassin Configurations" +msgstr "SpamAssassin 设置" + +#: baseTemplate/templates/baseTemplate/index.html:858 +#: emailPremium/templates/emailPremium/SpamAssassin.html:25 +#: firewall/templates/firewall/spamassassin.html:20 +msgid "SpamAssassin" +msgstr "SpamAssassin垃圾邮件过滤" + +#: baseTemplate/templates/baseTemplate/index.html:861 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:978 +#: websiteFunctions/templates/websiteFunctions/website.html:909 +msgid "Email Marketing" +msgstr "邮箱营销" + +#: baseTemplate/templates/baseTemplate/index.html:869 +#: baseTemplate/templates/baseTemplate/index.html:871 +msgid "Manage Services" +msgstr "管理服务" + +#: baseTemplate/templates/baseTemplate/index.html:877 +#: manageServices/templates/manageServices/managePowerDNS.html:25 +msgid "Manage PowerDNS" +msgstr "管理 PowerDNS" + +#: baseTemplate/templates/baseTemplate/index.html:880 +#: manageServices/templates/manageServices/managePostfix.html:22 +msgid "Manage Postfix" +msgstr "管理Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:883 +msgid "Manage FTP" +msgstr "管理FTP" + +#: baseTemplate/templates/baseTemplate/index.html:890 +#: baseTemplate/templates/baseTemplate/index.html:892 +#: pluginHolder/templates/pluginHolder/plugins.html:14 +#: pluginHolder/templates/pluginHolder/plugins.html:21 +msgid "Plugins" +msgstr "扩展" + +#: baseTemplate/templates/baseTemplate/index.html:898 +msgid "Installed Plugins" +msgstr "安装插件" + +#: baseTemplate/templates/baseTemplate/index.html:898 +msgid "Installed" +msgstr "已安装" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:3 +msgid "Version Management - CyberPanel" +msgstr "版本管理 - Cyberpanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:11 +msgid "" +"On this page you can manage versions and or upgrade to latest version of " +"CyberPanel" +msgstr "此页面可以查看并更新至CyberPanel最新版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:25 +msgid "Current Version" +msgstr "当前版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:33 +msgid "Build" +msgstr "编译" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:42 +msgid "Latest Version" +msgstr "最新版本" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:50 +msgid "Latest Build" +msgstr "最新编译" + +#: containerization/templates/containerization/listWebsites.html:3 +msgid "Limits - CyberPanel" +msgstr "限制 - Cyberpanel" + +#: containerization/templates/containerization/listWebsites.html:15 +msgid "Launch and set limits for the websites." +msgstr "启动并设置网站限制。" + +#: containerization/templates/containerization/notAvailable.html:14 +msgid "CyberPanel Ent is required for Containerization." +msgstr "容器化需要CyberPanel Ent。" + +#: containerization/templates/containerization/notAvailable.html:22 +msgid "Containerization is only available on CyberPanel Ent. " +msgstr "容器化仅在CyberPanel企业版上可用。" + +#: containerization/templates/containerization/notAvailable.html:39 +msgid "" +"Required packages are not installed on this server. Please proceed to " +"installation." +msgstr "此服务器上未安装所需的包。请继续以安装。" + +#: containerization/templates/containerization/websiteContainerLimit.html:3 +msgid " limits - CyberPanel" +msgstr " 限制 - Cyberpanel" + +#: containerization/templates/containerization/websiteContainerLimit.html:14 +msgid "Limits/Usage" +msgstr "限制/使用量" + +#: containerization/templates/containerization/websiteContainerLimit.html:16 +msgid "Set limits and view usage for " +msgstr "设置限制并查看使用情况 " + +#: containerization/templates/containerization/websiteContainerLimit.html:25 +msgid "" +"Limits are not being inforced, click Edit Limits to inforace the limits." +msgstr "限制并未强制使用,请单击 编辑限制 来进行管理。" + +#: containerization/templates/containerization/websiteContainerLimit.html:33 +msgid "Limit" +msgstr "限制" + +#: containerization/templates/containerization/websiteContainerLimit.html:34 +#: dns/templates/dns/addDeleteDNSRecords.html:330 +msgid "Value" +msgstr "内容" + +#: containerization/templates/containerization/websiteContainerLimit.html:40 +#: containerization/templates/containerization/websiteContainerLimit.html:77 +msgid "CPU Percentage" +msgstr "CPU百分比" + +#: containerization/templates/containerization/websiteContainerLimit.html:44 +#: serverStatus/templates/serverStatus/topProcesses.html:131 +msgid "Memory" +msgstr "内存" + +#: containerization/templates/containerization/websiteContainerLimit.html:48 +#: containerization/templates/containerization/websiteContainerLimit.html:91 +msgid "I/O" +msgstr "I/O" + +#: containerization/templates/containerization/websiteContainerLimit.html:56 +#: containerization/templates/containerization/websiteContainerLimit.html:107 +msgid "Network Speed" +msgstr "网络速度" + +#: containerization/templates/containerization/websiteContainerLimit.html:84 +msgid "Memory Limit" +msgstr "内存限制" + +#: databases/templates/databases/createDatabase.html:3 +msgid "Create New Database - CyberPanel" +msgstr "创建数据库 - CyberPanel" + +#: databases/templates/databases/createDatabase.html:13 +#: databases/templates/databases/phpMyAdmin.html:13 +msgid "Create a new database on this page." +msgstr "在此页面新建数据库。" + +#: databases/templates/databases/createDatabase.html:40 +#: databases/templates/databases/listDataBases.html:105 +msgid "Database Name" +msgstr "数据库名字" + +#: databases/templates/databases/createDatabase.html:48 +#: firewall/templates/firewall/secureSSH.html:120 +#: ftp/templates/ftp/createFTPAccount.html:57 +#: ftp/templates/ftp/listFTPAccounts.html:123 +#: mailServer/templates/mailServer/createEmailAccount.html:59 +msgid "User Name" +msgstr "用户名" + +#: databases/templates/databases/createDatabase.html:61 +#: databases/templates/databases/listDataBases.html:74 +#: ftp/templates/ftp/createFTPAccount.html:73 +#: ftp/templates/ftp/listFTPAccounts.html:92 +#: mailServer/templates/mailServer/changeEmailPassword.html:74 +#: mailServer/templates/mailServer/createEmailAccount.html:74 +#: userManagment/templates/userManagment/createUser.html:90 +#: userManagment/templates/userManagment/modifyUser.html:68 +msgid "Generate" +msgstr "生成" + +#: databases/templates/databases/createDatabase.html:66 +#: databases/templates/databases/listDataBases.html:77 +#: ftp/templates/ftp/createFTPAccount.html:78 +#: ftp/templates/ftp/listFTPAccounts.html:96 +#: mailServer/templates/mailServer/changeEmailPassword.html:79 +#: mailServer/templates/mailServer/createEmailAccount.html:79 +#: userManagment/templates/userManagment/createUser.html:95 +#: userManagment/templates/userManagment/modifyUser.html:73 +msgid "Generated Password" +msgstr "生成的密码" + +#: databases/templates/databases/createDatabase.html:71 +#: databases/templates/databases/listDataBases.html:84 +#: ftp/templates/ftp/createFTPAccount.html:85 +#: ftp/templates/ftp/listFTPAccounts.html:103 +#: mailServer/templates/mailServer/changeEmailPassword.html:86 +#: mailServer/templates/mailServer/createEmailAccount.html:86 +#: userManagment/templates/userManagment/createUser.html:101 +#: userManagment/templates/userManagment/modifyUser.html:79 +msgid "Use" +msgstr "使用" + +#: databases/templates/databases/createDatabase.html:89 +#: databases/templates/databases/phpMyAdmin.html:41 +msgid "Cannot create database. Error message:" +msgstr "无法创建数据库, 错误提示:" + +#: databases/templates/databases/createDatabase.html:93 +#: databases/templates/databases/phpMyAdmin.html:45 +msgid "Database created successfully." +msgstr "成功创建数据库。" + +#: databases/templates/databases/deleteDatabase.html:3 +msgid "Delete Database - CyberPanel" +msgstr "删除数据库 - CyberPanel" + +#: databases/templates/databases/deleteDatabase.html:13 +msgid "Delete an existing database on this page." +msgstr "在此页面删除已有数据库。" + +#: databases/templates/databases/deleteDatabase.html:38 +msgid "Select Database" +msgstr "选择数据库" + +#: databases/templates/databases/deleteDatabase.html:64 +msgid "Database deleted successfully." +msgstr "成功删除数据库。" + +#: databases/templates/databases/index.html:3 +msgid "Database Functions - CyberPanel" +msgstr "数据库功能 - CyberPanel" + +#: databases/templates/databases/index.html:13 +msgid "Create, edit and delete databases on this page." +msgstr "在此页面创建, 编辑和删除数据库。" + +#: databases/templates/databases/listDataBases.html:3 +msgid "List Databases - CyberPanel" +msgstr "查看数据库 - CyberPanel" + +#: databases/templates/databases/listDataBases.html:14 +msgid "List Databases or change their passwords." +msgstr "查看数据库或修改密码。" + +#: databases/templates/databases/listDataBases.html:26 +#: dns/templates/dns/addDeleteDNSRecords.html:42 +#: ftp/templates/ftp/deleteFTPAccount.html:39 +#: ftp/templates/ftp/listFTPAccounts.html:42 +#: mailServer/templates/mailServer/listEmails.html:43 +#: tuning/templates/tuning/phpTuning.html:30 +msgid "Select Domain" +msgstr "选择域名" + +#: databases/templates/databases/listDataBases.html:44 +#: dns/templates/dns/addDeleteDNSRecords.html:367 +#: ftp/templates/ftp/listFTPAccounts.html:61 +msgid "Records successfully fetched for" +msgstr "成功读取记录" + +#: databases/templates/databases/listDataBases.html:49 +msgid "Password changed for: " +msgstr "已为修改密码 " + +#: databases/templates/databases/listDataBases.html:53 +msgid "Cannot change password for " +msgstr "无法为修改密码 " + +#: databases/templates/databases/listDataBases.html:59 +#: firewall/templates/firewall/firewall.html:161 +#: ftp/templates/ftp/listFTPAccounts.html:76 +msgid "Could Not Connect to server. Please refresh this page" +msgstr "无法连接到服务器, 请刷新此页面" + +#: databases/templates/databases/listDataBases.html:106 +msgid "Database User" +msgstr "数据库用户" + +#: databases/templates/databases/listDataBases.html:117 +#: ftp/templates/ftp/listFTPAccounts.html:139 +msgid "Change" +msgstr "修改" + +#: databases/templates/databases/phpMyAdmin.html:3 +msgid "phpMyAdmin - CyberPanel" +msgstr "phpMyAdmin - Cyberpanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:3 +msgid "Add/Modify DNS Records - CyberPanel" +msgstr "添加/删除DNS记录 - Cyberpanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +msgid "Add/Modify DNS Zone" +msgstr "添加/修改DNS区域" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +#: dns/templates/dns/configureDefaultNameServers.html:12 +#: dns/templates/dns/createDNSZone.html:12 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/deleteDNSZone.html:12 +msgid "DNS Docs" +msgstr "DNS文档" + +#: dns/templates/dns/addDeleteDNSRecords.html:14 +msgid "" +"On this page you can add/modify dns records for domains whose dns zone is " +"already created." +msgstr "此页面可以为已创建DNS区域的域名添加/编辑DNS记录。" + +#: dns/templates/dns/addDeleteDNSRecords.html:19 +msgid "Add Records" +msgstr "添加记录" + +#: dns/templates/dns/addDeleteDNSRecords.html:27 +#: dns/templates/dns/configureDefaultNameServers.html:24 +#: dns/templates/dns/createDNSZone.html:24 +#: dns/templates/dns/createNameServer.html:24 +#: dns/templates/dns/deleteDNSZone.html:25 +msgid "PowerDNS is disabled." +msgstr "PowerDNS已被禁用。" + +#: dns/templates/dns/addDeleteDNSRecords.html:29 +#: dns/templates/dns/configureDefaultNameServers.html:26 +#: dns/templates/dns/createDNSZone.html:26 +#: dns/templates/dns/createNameServer.html:26 +#: dns/templates/dns/deleteDNSZone.html:27 +#: ftp/templates/ftp/createFTPAccount.html:29 +#: ftp/templates/ftp/deleteFTPAccount.html:27 +#: ftp/templates/ftp/listFTPAccounts.html:29 +#: mailServer/templates/mailServer/changeEmailPassword.html:30 +#: mailServer/templates/mailServer/createEmailAccount.html:30 +#: mailServer/templates/mailServer/deleteEmailAccount.html:30 +#: mailServer/templates/mailServer/emailForwarding.html:28 +#: mailServer/templates/mailServer/listEmails.html:30 +msgid "Enable Now" +msgstr "现在启用" + +#: dns/templates/dns/addDeleteDNSRecords.html:78 +#: dns/templates/dns/addDeleteDNSRecords.html:101 +#: dns/templates/dns/addDeleteDNSRecords.html:125 +#: dns/templates/dns/addDeleteDNSRecords.html:148 +#: dns/templates/dns/addDeleteDNSRecords.html:176 +#: dns/templates/dns/addDeleteDNSRecords.html:200 +#: dns/templates/dns/addDeleteDNSRecords.html:224 +#: dns/templates/dns/addDeleteDNSRecords.html:248 +#: dns/templates/dns/addDeleteDNSRecords.html:272 +#: dns/templates/dns/addDeleteDNSRecords.html:298 +#: dns/templates/dns/addDeleteDNSRecords.html:329 +msgid "TTL" +msgstr "TTL" + +#: dns/templates/dns/addDeleteDNSRecords.html:88 +#: dns/templates/dns/addDeleteDNSRecords.html:111 +#: dns/templates/dns/addDeleteDNSRecords.html:135 +#: dns/templates/dns/addDeleteDNSRecords.html:162 +#: dns/templates/dns/addDeleteDNSRecords.html:187 +#: dns/templates/dns/addDeleteDNSRecords.html:211 +#: dns/templates/dns/addDeleteDNSRecords.html:235 +#: dns/templates/dns/addDeleteDNSRecords.html:259 +#: dns/templates/dns/addDeleteDNSRecords.html:287 +#: dns/templates/dns/addDeleteDNSRecords.html:304 +#: firewall/templates/firewall/firewall.html:104 +msgid "Add" +msgstr "添加" + +#: dns/templates/dns/addDeleteDNSRecords.html:105 +msgid "IPV6 Address" +msgstr "IPV6地址" + +#: dns/templates/dns/addDeleteDNSRecords.html:129 +#: dns/templates/dns/addDeleteDNSRecords.html:156 +#: dns/templates/dns/createDNSZone.html:38 +#: dns/templates/dns/createNameServer.html:36 +#: emailMarketing/templates/emailMarketing/website.html:318 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 +#: websiteFunctions/templates/websiteFunctions/website.html:280 +msgid "Domain Name" +msgstr "域名" + +#: dns/templates/dns/addDeleteDNSRecords.html:152 +#: dns/templates/dns/addDeleteDNSRecords.html:331 +msgid "Priority" +msgstr "优先级" + +#: dns/templates/dns/addDeleteDNSRecords.html:181 +msgid "Policy" +msgstr "政策" + +#: dns/templates/dns/addDeleteDNSRecords.html:205 +msgid "Text" +msgstr "内容" + +#: dns/templates/dns/addDeleteDNSRecords.html:229 +msgid "SOA Value" +msgstr "SOA值" + +#: dns/templates/dns/addDeleteDNSRecords.html:253 +msgid "Name server" +msgstr "名称服务器" + +#: dns/templates/dns/addDeleteDNSRecords.html:276 +msgid "Prioirty" +msgstr "Prioirty" + +#: dns/templates/dns/addDeleteDNSRecords.html:281 +msgid "Content" +msgstr "内容" + +#: dns/templates/dns/addDeleteDNSRecords.html:359 +msgid "Cannot fetch records. Error message:" +msgstr "无法获取记录, 错误信息:" + +#: dns/templates/dns/addDeleteDNSRecords.html:363 +msgid "Cannot add record. Error message: " +msgstr "无法添加记录, 错误信息: " + +#: dns/templates/dns/addDeleteDNSRecords.html:371 +msgid "Record Successfully Deleted" +msgstr "成功删除记录" + +#: dns/templates/dns/addDeleteDNSRecords.html:375 +msgid "Cannot delete record. Error message:" +msgstr "无法删除记录, 错误信息:" + +#: dns/templates/dns/addDeleteDNSRecords.html:379 +msgid "Record Successfully Added." +msgstr "成功添加记录。" + +#: dns/templates/dns/configureDefaultNameServers.html:3 +msgid "Configure Default Nameserver - CyberPanel" +msgstr "设置默认名称服务器(NS) - CyberPanel" + +#: dns/templates/dns/configureDefaultNameServers.html:12 +msgid "Configure Default Nameserver" +msgstr "配置默认名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:13 +#: dns/templates/dns/createNameServer.html:13 +msgid "" +"You can use this page to setup nameservers using which people on the " +"internet can resolve websites hosted on this server." +msgstr "您可以在此页面创建名称服务器(NS)以解析您的域名。" + +#: dns/templates/dns/configureDefaultNameServers.html:18 +#: dns/templates/dns/createDNSZone.html:18 +#: dns/templates/dns/createNameServer.html:18 +#: userManagment/templates/userManagment/modifyUser.html:19 +msgid "Details" +msgstr "详情" + +#: dns/templates/dns/configureDefaultNameServers.html:36 +#: dns/templates/dns/createNameServer.html:46 +msgid "First Nameserver" +msgstr "第一名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:45 +msgid "Second Nameserver" +msgstr "第二名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:52 +msgid "Third Nameserver" +msgstr "第三名字服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:59 +msgid "Forth Nameserver" +msgstr "第四名称服务器" + +#: dns/templates/dns/configureDefaultNameServers.html:68 +#: emailMarketing/templates/emailMarketing/website.html:656 +#: emailMarketing/templates/emailMarketing/website.html:716 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:654 +msgid "Save" +msgstr "保存" + +#: dns/templates/dns/createDNSZone.html:3 +msgid "Create DNS Zone - CyberPanel" +msgstr "创建DNS区域 - CyberPanel" + +#: dns/templates/dns/createDNSZone.html:13 +msgid "" +"This page is used to create DNS zone, to edit dns zone you can visit Modify " +"DNS Zone Page." +msgstr "在此页面创建DNS区域, 您可以在“修改DNS区域”编辑DNS区域。" + +#: dns/templates/dns/createDNSZone.html:61 +msgid "Cannot create DNS Zone. Error message:" +msgstr "无法创建DNS区域, 错误信息:" + +#: dns/templates/dns/createDNSZone.html:65 +msgid "DNS Zone for domain:" +msgstr "域名DNS区域:" + +#: dns/templates/dns/createNameServer.html:3 +msgid "Create Nameserver - CyberPanel" +msgstr "创建名称服务器(NS) - CyberPanel" + +#: dns/templates/dns/createNameServer.html:62 +msgid "Second Nameserver (Back up)" +msgstr "第二名称服务器(备用)" + +#: dns/templates/dns/createNameServer.html:89 +msgid "Nameserver cannot be created. Error message:" +msgstr "名称服务器无法创建, 错误信息:" + +#: dns/templates/dns/createNameServer.html:93 +msgid "The following nameservers were successfully created:" +msgstr "以下名称服务器已成功创建:" + +#: dns/templates/dns/deleteDNSZone.html:3 +msgid "Delete DNS Zone - CyberPanel" +msgstr "删除DNS区域 - CyberPanel" + +#: dns/templates/dns/deleteDNSZone.html:12 +#: dns/templates/dns/deleteDNSZone.html:18 +#: userManagment/templates/userManagment/createACL.html:230 +#: userManagment/templates/userManagment/modifyACL.html:234 +msgid "Delete DNS Zone" +msgstr "删除DNS区域" + +#: dns/templates/dns/deleteDNSZone.html:13 +msgid "" +"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " +"all its related records as well." +msgstr "此页面可以删除DNS区域, 删除DNS区域时所有相关的DNS记录也将会被删除。" + +#: dns/templates/dns/deleteDNSZone.html:37 +msgid "Select Zone" +msgstr "选择DNS区域" + +#: dns/templates/dns/deleteDNSZone.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 +#: ftp/templates/ftp/deleteFTPAccount.html:73 +#: mailServer/templates/mailServer/deleteEmailAccount.html:82 +#: packages/templates/packages/deletePackage.html:47 +#: userManagment/templates/userManagment/deleteACL.html:49 +#: userManagment/templates/userManagment/deleteUser.html:51 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 +msgid "Are you sure?" +msgstr "您确定?" + +#: dns/templates/dns/deleteDNSZone.html:69 +msgid "Cannot delete zone. Error message: " +msgstr "无法删除DNS区域, 错误信息: " + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "Zone for domain:" +msgstr "域名DNS区域:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "is successfully erased." +msgstr "已成功删除。" + +#: dns/templates/dns/index.html:3 +msgid "DNS Functions - CyberPanel" +msgstr "DNS功能" + +#: dns/templates/dns/index.html:12 +msgid "DNS Functions" +msgstr "DNS功能" + +#: dns/templates/dns/index.html:13 +msgid "Create, edit and delete DNS zones on this page." +msgstr "在此页面添加, 修改, 删除DNS区域。" + +#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 +msgid "Add Delete Records" +msgstr "添加/删除记录" + +#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 +msgid "Add Delete/Records" +msgstr "添加/删除记录" + +#: dockerManager/templates/dockerManager/images.html:3 +#: dockerManager/templates/dockerManager/manageImages.html:3 +msgid "Docker Manage Images - CyberPanel" +msgstr "管理Docker 镜像 - CyberPanel" + +#: dockerManager/templates/dockerManager/images.html:14 +#: dockerManager/templates/dockerManager/index.html:39 +msgid "Create new container" +msgstr "创建新容器" + +#: dockerManager/templates/dockerManager/images.html:15 +msgid "Search new images and manage existing ones" +msgstr "搜索并管理镜像" + +#: dockerManager/templates/dockerManager/images.html:22 +msgid "Locally Available Images" +msgstr "可用的本地镜像" + +#: dockerManager/templates/dockerManager/images.html:48 +msgid "Create" +msgstr "创建" + +#: dockerManager/templates/dockerManager/index.html:3 +msgid "Docker Container Management - CyberPanel" +msgstr "Docker 容器管理 - CyberPanel" + +#: dockerManager/templates/dockerManager/index.html:13 +msgid "Docker Container Management" +msgstr "Docker 容器管理" + +#: dockerManager/templates/dockerManager/index.html:41 +msgid "New Container" +msgstr "新建容器" + +#: dockerManager/templates/dockerManager/install.html:3 +msgid "Install Docker - CyberPanel" +msgstr "安装 Docker - CyberPanel" + +#: dockerManager/templates/dockerManager/install.html:12 +#: dockerManager/templates/dockerManager/install.html:18 +msgid "Install Docker" +msgstr "安装Docker" + +#: dockerManager/templates/dockerManager/install.html:26 +msgid "" +"Unable to connect to docker daemon, please try restarting docker from " +"service page" +msgstr "无法连接到Docker守护程序,请尝试在服务页面重启Docker" + +#: dockerManager/templates/dockerManager/install.html:28 +msgid "You do not have sufficient permissions to access this page" +msgstr "您没有足够的权限访问此页面" + +#: dockerManager/templates/dockerManager/install.html:32 +msgid "" +"Docker is currently not installed on this server. To manage containers, you " +"must first install it." +msgstr "该服务器当前未安装Docker。你必须先安装Docker才能管理容器。" + +#: dockerManager/templates/dockerManager/install.html:53 +msgid "" +"You do not have permissions to install Docker. Please contact your system " +"administrator" +msgstr "您没有安装Docker的权限。 请与您的系统管理员联系" + +#: dockerManager/templates/dockerManager/listContainers.html:3 +msgid "Containers List - CyberPanel" +msgstr "容器列表 - CyberPanel" + +#: dockerManager/templates/dockerManager/listContainers.html:14 +msgid "List Containers" +msgstr "容器列表" + +#: dockerManager/templates/dockerManager/listContainers.html:17 +msgid "Manage containers on server" +msgstr "管理服务器上的容器" + +#: dockerManager/templates/dockerManager/listContainers.html:23 +msgid "Containers" +msgstr "容器" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "Unlisted Containers" +msgstr "卸载容器" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "" +"Containers listed below were either not created through panel or were not " +"saved to database properly" +msgstr "下面列出的容器不是通过面板创建的,或者没有正确保存到数据库中" + +#: dockerManager/templates/dockerManager/listContainers.html:148 +#: dockerManager/templates/dockerManager/runContainer.html:52 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 +msgid "Select Owner" +msgstr "选择拥有者" + +#: dockerManager/templates/dockerManager/manageImages.html:17 +msgid "On this page you can manage docker images." +msgstr "在此页上,您可以管理 Docker 镜像。" + +#: dockerManager/templates/dockerManager/manageImages.html:65 +#: dockerManager/templates/dockerManager/manageImages.html:66 +msgid "Images" +msgstr "镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:67 +msgid "Delete unused images" +msgstr "删除未使用的镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:95 +msgid "Official image" +msgstr "官方镜像" + +#: dockerManager/templates/dockerManager/manageImages.html:104 +msgid "Pull" +msgstr "拉取" + +#: dockerManager/templates/dockerManager/runContainer.html:3 +msgid "Run new container - CyberPanel" +msgstr "运行新容器 - CyberPanel" + +#: dockerManager/templates/dockerManager/runContainer.html:12 +msgid "Run Container" +msgstr "运行容器" + +#: dockerManager/templates/dockerManager/runContainer.html:13 +msgid "Modify parameters for your new container" +msgstr "修改新容器的参数" + +#: dockerManager/templates/dockerManager/runContainer.html:20 +msgid "Container Details" +msgstr "容器详情" + +#: dockerManager/templates/dockerManager/runContainer.html:36 +#: dockerManager/templates/dockerManager/viewContainer.html:70 +msgid "Image" +msgstr "镜像" + +#: dockerManager/templates/dockerManager/runContainer.html:44 +msgid "Tag" +msgstr "标签" + +#: dockerManager/templates/dockerManager/runContainer.html:64 +#: dockerManager/templates/dockerManager/viewContainer.html:206 +msgid "Memory limit" +msgstr "内存限制" + +#: dockerManager/templates/dockerManager/runContainer.html:104 +#: dockerManager/templates/dockerManager/viewContainer.html:250 +msgid "ENV" +msgstr "ENV" + +#: dockerManager/templates/dockerManager/runContainer.html:125 +#: dockerManager/templates/dockerManager/viewContainer.html:283 +msgid "Map Volumes" +msgstr "Map Volumes" + +#: dockerManager/templates/dockerManager/runContainer.html:153 +#: dockerManager/templates/dockerManager/viewContainer.html:310 +msgid "Add field" +msgstr "添加字段" + +#: dockerManager/templates/dockerManager/runContainer.html:161 +msgid "Create Container" +msgstr "创建容器" + +#: dockerManager/templates/dockerManager/runContainer.html:180 +msgid "Container succesfully created." +msgstr "容器已成功创建。" + +#: dockerManager/templates/dockerManager/runContainer.html:196 +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:431 +#: managePHP/templates/managePHP/installExtensions.html:103 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 +#: websiteFunctions/templates/websiteFunctions/website.html:394 +msgid "Go Back" +msgstr "返回" + +#: dockerManager/templates/dockerManager/viewContainer.html:3 +msgid "Container Home - CyberPanel" +msgstr "容器主页 - Cyberpanel" + +#: dockerManager/templates/dockerManager/viewContainer.html:14 +msgid "Manage Container" +msgstr "管理容器" + +#: dockerManager/templates/dockerManager/viewContainer.html:15 +msgid "Currently managing: " +msgstr "当前正在管理: " + +#: dockerManager/templates/dockerManager/viewContainer.html:24 +msgid "Container Information" +msgstr "容器信息" + +#: dockerManager/templates/dockerManager/viewContainer.html:37 +msgid "Memory Usage" +msgstr "内存使用情况" + +#: dockerManager/templates/dockerManager/viewContainer.html:68 +msgid "Container ID" +msgstr "容器ID" + +#: dockerManager/templates/dockerManager/viewContainer.html:77 +msgid "Ports" +msgstr "端口" + +#: dockerManager/templates/dockerManager/viewContainer.html:79 +msgid "to" +msgstr "到" + +#: dockerManager/templates/dockerManager/viewContainer.html:227 +msgid "Confirmation" +msgstr "确认" + +#: emailMarketing/templates/emailMarketing/composeMessages.html:3 +msgid "Compose Email Message - CyberPanel" +msgstr "撰写邮箱- CyberPanel" + +#: 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 "创建邮箱列表 -CyberPanel" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:13 +#: emailMarketing/templates/emailMarketing/createEmailList.html:19 +msgid "Create Email List" +msgstr "创建邮箱列表" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:14 +msgid "Create email list, to send out news letters and marketing emails." +msgstr "创建邮箱列表,以发送市场营销邮箱。" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:26 +msgid "List Name" +msgstr "列表名称" + +#: emailMarketing/templates/emailMarketing/createEmailList.html:42 +msgid "Create List" +msgstr "创建列表" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:3 +msgid "Email Marketing - CyberPanel" +msgstr "邮箱营销 - 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:33 +msgid "Enable Now." +msgstr "立即启用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:76 +#: userManagment/templates/userManagment/listUsers.html:32 +#: userManagment/templates/userManagment/userProfile.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 +msgid "Username" +msgstr "用户名" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 +msgid "Email Marketing Enabled." +msgstr "邮箱营销已启用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:53 +#: emailPremium/templates/emailPremium/emailLimits.html:159 +#: emailPremium/templates/emailPremium/emailPage.html:55 +#: emailPremium/templates/emailPremium/emailPage.html:61 +#: emailPremium/templates/emailPremium/listDomains.html:62 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:234 +msgid "Disable" +msgstr "关闭" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 +msgid "Email Marketing Disabled." +msgstr "邮箱营销已禁用。" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:161 +#: emailPremium/templates/emailPremium/emailPage.html:57 +#: emailPremium/templates/emailPremium/emailPage.html:63 +#: emailPremium/templates/emailPremium/listDomains.html:64 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Enable" +msgstr "开启" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +msgid "Manage Email Lists - CyberPanel" +msgstr "管理邮箱列表 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageLists.html:13 +#: emailMarketing/templates/emailMarketing/manageLists.html:19 +msgid "Manage Email Lists" +msgstr "管理邮箱列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:14 +msgid "" +"On this page you can manage your email lists (Delete, Verify, Add More " +"Emails)." +msgstr "在这个页面上,你可以管理你的邮箱列表(删除、验证、添加更多电子邮件)。" + +#: emailMarketing/templates/emailMarketing/manageLists.html:28 +#: emailMarketing/templates/emailMarketing/sendEmails.html:71 +msgid "Select List" +msgstr "选择列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:41 +msgid "Delete This List" +msgstr "删除此列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:48 +msgid "You are doing to delete this list.." +msgstr "您正在删除此列表。" + +#: emailMarketing/templates/emailMarketing/manageLists.html:54 +#: emailMarketing/templates/emailMarketing/sendEmails.html:54 +#: emailMarketing/templates/emailMarketing/website.html:484 +#: filemanager/templates/filemanager/index.html:417 +#: filemanager/templates/filemanager/index.html:460 +#: filemanager/templates/filemanager/index.html:523 +#: filemanager/templates/filemanager/index.html:558 +#: filemanager/templates/filemanager/index.html:588 +#: filemanager/templates/filemanager/index.html:649 +#: websiteFunctions/templates/websiteFunctions/website.html:447 +msgid "Close" +msgstr "关闭" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:416 +msgid "Confirm" +msgstr "确定" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "检查此列表" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +msgid "Add More Emails" +msgstr "添加更多的邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:83 +msgid "Load Emails" +msgstr "加载邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:142 +msgid "email" +msgstr "邮箱" + +#: emailMarketing/templates/emailMarketing/manageLists.html:143 +msgid "Verification Status" +msgstr "验证状态" + +#: emailMarketing/templates/emailMarketing/manageLists.html:144 +msgid "Date Created" +msgstr "创建日期" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:3 +msgid "Manage SMTP Hosts - CyberPanel" +msgstr "管理 SMTP 主机 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:13 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:19 +msgid "Manage SMTP Hosts" +msgstr "管理SMTP主机" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:14 +msgid "" +"On this page you can manage STMP Host. (SMTP hosts are used to send emails)" +msgstr "在此页面上,您可以管理 STMP 主机。(SMTP 主机将用于发送邮箱)" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:29 +#: emailMarketing/templates/emailMarketing/sendEmails.html:153 +msgid "SMTP Host" +msgstr "SMTP服务器" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:59 +msgid "Save Host" +msgstr "保存主机" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:75 +#: userManagment/templates/userManagment/listUsers.html:36 +msgid "Owner" +msgstr "所有者" + +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:91 +msgid "Verify Host" +msgstr "验证主机" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:3 +msgid "Send Emails - CyberPanel" +msgstr "发送邮箱 - CyberPanel" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:13 +#: emailMarketing/templates/emailMarketing/sendEmails.html:19 +#: emailMarketing/templates/emailMarketing/sendEmails.html:66 +#: emailMarketing/templates/emailMarketing/website.html:1030 +#: emailMarketing/templates/emailMarketing/website.html:1033 +#: emailMarketing/templates/emailMarketing/website.html:1034 +#: websiteFunctions/templates/websiteFunctions/website.html:956 +#: websiteFunctions/templates/websiteFunctions/website.html:960 +#: websiteFunctions/templates/websiteFunctions/website.html:961 +msgid "Send Emails" +msgstr "发送邮件" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:14 +msgid "" +"On this page you can send emails to the lists you created using SMTP Hosts." +msgstr "在此页面上,您可以通过该 SMTP 主机将邮箱发送到创建的列表。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:677 +msgid "Select Template" +msgstr "选择模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:41 +msgid "Delete This Template" +msgstr "删除此模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:48 +msgid "You are doing to delete this template.." +msgstr "你正在删除此模板。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:63 +msgid "Preview Template" +msgstr "预览模板" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:82 +msgid "Select STMP Host" +msgstr "选择STMP主机" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:98 +msgid "Send to un-verified email addresses." +msgstr "发送到未经验证的邮箱地址。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:107 +msgid "Include unsubscribe link." +msgstr "包含退订链接。" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:116 +msgid "Start Job" +msgstr "开始任务" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:154 +msgid "Total Emails" +msgstr "全部邮件" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:155 +msgid "Sent" +msgstr "发送成功" + +#: emailMarketing/templates/emailMarketing/sendEmails.html:156 +msgid "Failed" +msgstr "发送失败" + +#: emailMarketing/templates/emailMarketing/website.html:16 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 +#: websiteFunctions/templates/websiteFunctions/website.html:16 +msgid "Preview" +msgstr "预览" + +#: emailMarketing/templates/emailMarketing/website.html:17 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 +#: websiteFunctions/templates/websiteFunctions/website.html:17 +msgid "All functions related to a particular site." +msgstr "所有与网站相关的功能。" + +#: emailMarketing/templates/emailMarketing/website.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:28 +msgid "Resource Usage" +msgstr "资源使用量" + +#: emailMarketing/templates/emailMarketing/website.html:39 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 +#: websiteFunctions/templates/websiteFunctions/website.html:42 +msgid "Resource" +msgstr "资源" + +#: emailMarketing/templates/emailMarketing/website.html:41 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 +#: websiteFunctions/templates/websiteFunctions/website.html:44 +msgid "Allowed" +msgstr "可用" + +#: emailMarketing/templates/emailMarketing/website.html:63 +#: emailMarketing/templates/emailMarketing/website.html:89 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 +#: websiteFunctions/templates/websiteFunctions/website.html:64 +#: websiteFunctions/templates/websiteFunctions/website.html:86 +msgid "Bandwidth Usage" +msgstr "流量使用量" + +#: emailMarketing/templates/emailMarketing/website.html:124 +#: emailMarketing/templates/emailMarketing/website.html:127 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:112 +#: websiteFunctions/templates/websiteFunctions/website.html:116 +msgid "Load Access Logs" +msgstr "读取访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:128 +#: serverLogs/templates/serverLogs/accessLogs.html:16 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 +#: websiteFunctions/templates/websiteFunctions/website.html:117 +msgid "Access Logs" +msgstr "访问日志" + +#: emailMarketing/templates/emailMarketing/website.html:135 +#: emailMarketing/templates/emailMarketing/website.html:138 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:121 +#: websiteFunctions/templates/websiteFunctions/website.html:125 +msgid "Load Error Logs" +msgstr "读取错误日志" + +#: emailMarketing/templates/emailMarketing/website.html:150 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 +#: websiteFunctions/templates/websiteFunctions/website.html:133 +msgid "Logs Fetched" +msgstr "日志读取成功" + +#: emailMarketing/templates/emailMarketing/website.html:155 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 +#: websiteFunctions/templates/websiteFunctions/website.html:136 +msgid "" +"Could not fetch logs, see the logs file through command line. Error message:" +msgstr "无法获取日志, 请使用命令行模式查看日志, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:179 +#: emailMarketing/templates/emailMarketing/website.html:221 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:199 +msgid "Next" +msgstr "下一个" + +#: emailMarketing/templates/emailMarketing/website.html:181 +#: emailMarketing/templates/emailMarketing/website.html:223 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 +#: websiteFunctions/templates/websiteFunctions/website.html:156 +#: websiteFunctions/templates/websiteFunctions/website.html:201 +msgid "Previous" +msgstr "上一个" + +#: emailMarketing/templates/emailMarketing/website.html:254 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:36 +#: packages/templates/packages/listPackages.html:93 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:225 +msgid "Domains" +msgstr "域名" + +#: emailMarketing/templates/emailMarketing/website.html:262 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: emailMarketing/templates/emailMarketing/website.html:266 +#: emailMarketing/templates/emailMarketing/website.html:267 +#: websiteFunctions/templates/websiteFunctions/website.html:230 +#: websiteFunctions/templates/websiteFunctions/website.html:233 +#: websiteFunctions/templates/websiteFunctions/website.html:234 +#: websiteFunctions/templates/websiteFunctions/website.html:235 +msgid "Add Domains" +msgstr "添加域名" + +#: emailMarketing/templates/emailMarketing/website.html:274 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:278 +#: emailMarketing/templates/emailMarketing/website.html:279 +#: emailMarketing/templates/emailMarketing/website.html:280 +#: emailMarketing/templates/emailMarketing/website.html:300 +#: emailMarketing/templates/emailMarketing/website.html:303 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:240 +#: websiteFunctions/templates/websiteFunctions/website.html:241 +#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:245 +#: websiteFunctions/templates/websiteFunctions/website.html:246 +#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:266 +msgid "List Domains" +msgstr "查看域名" + +#: emailMarketing/templates/emailMarketing/website.html:286 +#: emailMarketing/templates/emailMarketing/website.html:287 +#: emailMarketing/templates/emailMarketing/website.html:290 +#: emailMarketing/templates/emailMarketing/website.html:291 +#: emailMarketing/templates/emailMarketing/website.html:292 +#: websiteFunctions/templates/websiteFunctions/website.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:252 +#: websiteFunctions/templates/websiteFunctions/website.html:255 +#: websiteFunctions/templates/websiteFunctions/website.html:256 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +msgid "Domain Alias" +msgstr "域名别名" + +#: emailMarketing/templates/emailMarketing/website.html:299 +#: emailMarketing/templates/emailMarketing/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:262 +#: websiteFunctions/templates/websiteFunctions/website.html:267 +msgid "Add new Cron Job" +msgstr "添加新的定时任务" + +#: emailMarketing/templates/emailMarketing/website.html:305 +#: websiteFunctions/templates/websiteFunctions/website.html:268 +msgid "Cron Jobs" +msgstr "定时任务" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "This path is relative to: " +msgstr "此目录相对与:" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "Leave empty to set default." +msgstr "留空则设置为默认根目录。" + +#: emailMarketing/templates/emailMarketing/website.html:336 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 +#: websiteFunctions/templates/websiteFunctions/website.html:299 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "无效域名(注意: 不需要添加http或https)" + +#: emailMarketing/templates/emailMarketing/website.html:341 +#: emailMarketing/templates/emailMarketing/website.html:794 +#: managePHP/templates/managePHP/editPHPConfig.html:49 +#: managePHP/templates/managePHP/editPHPConfig.html:177 +#: managePHP/templates/managePHP/installExtensions.html:29 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:737 +msgid "Select PHP" +msgstr "选择PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:354 +#: packages/templates/packages/createPackage.html:84 +#: packages/templates/packages/modifyPackage.html:87 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 +#: websiteFunctions/templates/websiteFunctions/website.html:317 +msgid "Additional Features" +msgstr "额外功能" + +#: emailMarketing/templates/emailMarketing/website.html:388 +#: websiteFunctions/templates/websiteFunctions/website.html:351 +msgid "Create Domain" +msgstr "创建域名" + +#: emailMarketing/templates/emailMarketing/website.html:415 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:378 +msgid "Website succesfully created." +msgstr "网站成功创建。" + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:412 +msgid "PHP Version Changed to:" +msgstr "版本管理:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:416 +msgid "Deleted:" +msgstr "删除:" + +#: emailMarketing/templates/emailMarketing/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:420 +msgid "SSL Issued:" +msgstr "已为签发证书:" + +#: emailMarketing/templates/emailMarketing/website.html:461 +#: websiteFunctions/templates/websiteFunctions/website.html:424 +msgid "Changes applied successfully." +msgstr "更改应用成功。" + +#: emailMarketing/templates/emailMarketing/website.html:528 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:492 +msgid "Issue" +msgstr "签发SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:558 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:520 +msgid "Configurations" +msgstr "配置" + +#: emailMarketing/templates/emailMarketing/website.html:568 +#: emailMarketing/templates/emailMarketing/website.html:572 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:526 +#: websiteFunctions/templates/websiteFunctions/website.html:530 +msgid "Edit vHost Main Configurations" +msgstr "编辑vHost主配置" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:531 +msgid "vHost Conf" +msgstr "虚拟主机配置" + +#: emailMarketing/templates/emailMarketing/website.html:582 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:537 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "添加Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:586 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:541 +msgid "Rewrite Rules (.htaccess)" +msgstr "重写规则 (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:587 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:542 +msgid "Rewrite Rules" +msgstr "重写规则" + +#: emailMarketing/templates/emailMarketing/website.html:595 +#: emailMarketing/templates/emailMarketing/website.html:598 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 +#: websiteFunctions/templates/websiteFunctions/website.html:547 +#: websiteFunctions/templates/websiteFunctions/website.html:550 +msgid "Add Your Own SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:599 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:551 +msgid "Add SSL" +msgstr "添加SSL证书" + +#: emailMarketing/templates/emailMarketing/website.html:607 +#: emailMarketing/templates/emailMarketing/website.html:610 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 +#: websiteFunctions/templates/websiteFunctions/website.html:556 +#: websiteFunctions/templates/websiteFunctions/website.html:559 +msgid "Change PHP Version" +msgstr "更改PHP版本" + +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:815 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 +#: websiteFunctions/templates/websiteFunctions/website.html:560 +#: websiteFunctions/templates/websiteFunctions/website.html:758 +msgid "Change PHP" +msgstr "修改PHP" + +#: emailMarketing/templates/emailMarketing/website.html:623 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 +#: websiteFunctions/templates/websiteFunctions/website.html:571 +msgid "SSL Saved" +msgstr "SSL证书已保存" + +#: emailMarketing/templates/emailMarketing/website.html:628 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Could not save SSL. Error message:" +msgstr "无法保存SSL证书, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:678 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:619 +msgid "Current configuration in the file fetched." +msgstr "当前配置读取成功。" + +#: emailMarketing/templates/emailMarketing/website.html:683 +#: emailMarketing/templates/emailMarketing/website.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 +#: websiteFunctions/templates/websiteFunctions/website.html:623 +#: websiteFunctions/templates/websiteFunctions/website.html:636 +msgid "Could not fetch current configuration. Error message:" +msgstr "无法读取当前配置, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:693 +#: emailMarketing/templates/emailMarketing/website.html:753 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 +#: websiteFunctions/templates/websiteFunctions/website.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +msgid "Configurations saved." +msgstr "配置已保存。" + +#: emailMarketing/templates/emailMarketing/website.html:734 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 +msgid "Current rewrite rules in the file fetched." +msgstr "当前Rewrite rules读取成功。" + +#: emailMarketing/templates/emailMarketing/website.html:743 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 +#: websiteFunctions/templates/websiteFunctions/website.html:690 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "无法读取当前Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:757 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 +#: websiteFunctions/templates/websiteFunctions/website.html:703 +msgid "Could not save rewrite rules. Error message:" +msgstr "无法保存Rewrite rules, 错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:776 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Save Rewrite Rules" +msgstr "保存Rewrite rules" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 +#: websiteFunctions/templates/websiteFunctions/website.html:768 +msgid "Failed to change PHP version. Error message:" +msgstr "修改PHP版本失败。错误信息:" + +#: emailMarketing/templates/emailMarketing/website.html:830 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 +#: websiteFunctions/templates/websiteFunctions/website.html:773 +msgid "PHP successfully changed for: " +msgstr "PHP 已成功更改为: " + +#: emailMarketing/templates/emailMarketing/website.html:855 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 +#: websiteFunctions/templates/websiteFunctions/website.html:795 +msgid "Files" +msgstr "文件" + +#: emailMarketing/templates/emailMarketing/website.html:863 +#: emailMarketing/templates/emailMarketing/website.html:866 +#: emailMarketing/templates/emailMarketing/website.html:867 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#: websiteFunctions/templates/websiteFunctions/website.html:803 +#: websiteFunctions/templates/websiteFunctions/website.html:804 +msgid "File Manager" +msgstr "文件管理" + +#: emailMarketing/templates/emailMarketing/website.html:874 +#: emailMarketing/templates/emailMarketing/website.html:877 +#: emailMarketing/templates/emailMarketing/website.html:915 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:809 +#: websiteFunctions/templates/websiteFunctions/website.html:812 +#: websiteFunctions/templates/websiteFunctions/website.html:845 +msgid "open_basedir Protection" +msgstr "open_basedir 保护" + +#: emailMarketing/templates/emailMarketing/website.html:878 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 +#: websiteFunctions/templates/websiteFunctions/website.html:813 +msgid "open_basedir" +msgstr "防跨站" + +#: emailMarketing/templates/emailMarketing/website.html:890 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Create FTP Acct" +msgstr "创建FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:902 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:834 +msgid "Delete FTP Acct" +msgstr "删除FTP用户" + +#: emailMarketing/templates/emailMarketing/website.html:939 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +msgid "Apply Changes" +msgstr "应用更改" + +#: emailMarketing/templates/emailMarketing/website.html:951 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 +#: websiteFunctions/templates/websiteFunctions/website.html:880 +msgid "Changes successfully saved." +msgstr "更改成功保存。" + +#: emailMarketing/templates/emailMarketing/website.html:986 +#: emailMarketing/templates/emailMarketing/website.html:989 +#: emailMarketing/templates/emailMarketing/website.html:990 +#: websiteFunctions/templates/websiteFunctions/website.html:915 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#: websiteFunctions/templates/websiteFunctions/website.html:920 +msgid "Create Lists" +msgstr "创建列表" + +#: emailMarketing/templates/emailMarketing/website.html:997 +#: emailMarketing/templates/emailMarketing/website.html:1000 +#: emailMarketing/templates/emailMarketing/website.html:1001 +#: websiteFunctions/templates/websiteFunctions/website.html:925 +#: websiteFunctions/templates/websiteFunctions/website.html:929 +#: websiteFunctions/templates/websiteFunctions/website.html:930 +msgid "Manage Lists" +msgstr "管理列表" + +#: emailMarketing/templates/emailMarketing/website.html:1008 +#: emailMarketing/templates/emailMarketing/website.html:1011 +#: emailMarketing/templates/emailMarketing/website.html:1012 +#: websiteFunctions/templates/websiteFunctions/website.html:935 +#: websiteFunctions/templates/websiteFunctions/website.html:939 +#: websiteFunctions/templates/websiteFunctions/website.html:940 +msgid "SMTP Hosts" +msgstr "SMTP主机" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: emailMarketing/templates/emailMarketing/website.html:1022 +#: websiteFunctions/templates/websiteFunctions/website.html:945 +#: websiteFunctions/templates/websiteFunctions/website.html:950 +msgid "Compose Message" +msgstr "撰写信息" + +#: emailMarketing/templates/emailMarketing/website.html:1023 +#: websiteFunctions/templates/websiteFunctions/website.html:951 +msgid "Compose" +msgstr "撰写" + +#: emailMarketing/templates/emailMarketing/website.html:1050 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +msgid "Application Installer" +msgstr "应用安装器" + +#: emailMarketing/templates/emailMarketing/website.html:1061 +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 +#: websiteFunctions/templates/websiteFunctions/website.html:985 +#: websiteFunctions/templates/websiteFunctions/website.html:989 +msgid "Install wordpress with LSCache" +msgstr "安装Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1066 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +msgid "Wordpress with LSCache" +msgstr "Wordpress和LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1075 +#: emailMarketing/templates/emailMarketing/website.html:1079 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 +#: websiteFunctions/templates/websiteFunctions/website.html:996 +#: websiteFunctions/templates/websiteFunctions/website.html:1000 +msgid "Install Joomla with LSCache" +msgstr "安装 Joomla 伴随LS Cache" + +#: emailMarketing/templates/emailMarketing/website.html:1080 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 +#: websiteFunctions/templates/websiteFunctions/website.html:1001 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1089 +#: emailMarketing/templates/emailMarketing/website.html:1093 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 +#: websiteFunctions/templates/websiteFunctions/website.html:1007 +#: websiteFunctions/templates/websiteFunctions/website.html:1011 +msgid "Attach Git with this website!" +msgstr "为此网站填加Git!" + +#: emailMarketing/templates/emailMarketing/website.html:1094 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 +#: websiteFunctions/templates/websiteFunctions/website.html:1012 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1103 +#: emailMarketing/templates/emailMarketing/website.html:1107 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 +#: websiteFunctions/templates/websiteFunctions/website.html:1018 +#: websiteFunctions/templates/websiteFunctions/website.html:1022 +msgid "Install Prestashop" +msgstr "安装Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1108 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 +#: websiteFunctions/templates/websiteFunctions/website.html:1023 +msgid "Prestashop" +msgstr "Prestashop" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:3 +#: firewall/templates/firewall/spamassassin.html:3 +msgid "SpamAssassin - CyberPanel" +msgstr "套餐 - CyberPanel" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:13 +#: firewall/templates/firewall/spamassassin.html:13 +msgid "SpamAssassin Configurations!" +msgstr "SpamAssassin 设置!" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:17 +msgid "SpamAssassin Docs" +msgstr "SpamAssassin文档" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:19 +#: firewall/templates/firewall/spamassassin.html:14 +msgid "On this page you can configure SpamAssassin settings." +msgstr "在此页上,您可以配置 SpamAssassin 设置。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:34 +msgid "SpamAssassin is not installed " +msgstr "未安装SpamAssassin " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:37 +#: firewall/templates/firewall/csf.html:31 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:231 +#: firewall/templates/firewall/modSecurityRules.html:73 +#: firewall/templates/firewall/modSecurityRulesPacks.html:31 +#: firewall/templates/firewall/spamassassin.html:31 +msgid "Install Now." +msgstr "现在安装。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:49 +#: firewall/templates/firewall/csf.html:43 +#: firewall/templates/firewall/modSecurity.html:47 +#: firewall/templates/firewall/modSecurity.html:244 +#: firewall/templates/firewall/spamassassin.html:43 +msgid "Failed to start installation, Error message: " +msgstr "无法启动安装,错误消息: " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:54 +#: emailPremium/templates/emailPremium/SpamAssassin.html:146 +#: emailPremium/templates/emailPremium/policyServer.html:60 +#: firewall/templates/firewall/csf.html:47 +#: firewall/templates/firewall/modSecurity.html:53 +#: firewall/templates/firewall/modSecurity.html:183 +#: firewall/templates/firewall/modSecurity.html:249 +#: firewall/templates/firewall/modSecurity.html:371 +#: firewall/templates/firewall/modSecurityRules.html:53 +#: firewall/templates/firewall/modSecurityRulesPacks.html:88 +#: firewall/templates/firewall/secureSSH.html:87 +#: firewall/templates/firewall/secureSSH.html:172 +#: firewall/templates/firewall/spamassassin.html:47 +#: firewall/templates/firewall/spamassassin.html:177 +#: mailServer/templates/mailServer/dkimManager.html:44 +#: managePHP/templates/managePHP/editPHPConfig.html:157 +#: managePHP/templates/managePHP/editPHPConfig.html:223 +#: managePHP/templates/managePHP/installExtensions.html:124 +#: manageServices/templates/manageServices/managePostfix.html:59 +#: manageServices/templates/manageServices/managePowerDNS.html:130 +#: manageServices/templates/manageServices/managePureFtpd.html:59 +msgid "Could not connect. Please refresh this page." +msgstr "无法连接。请刷新此页面。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:58 +#: firewall/templates/firewall/csf.html:51 +#: firewall/templates/firewall/modSecurity.html:57 +#: firewall/templates/firewall/modSecurity.html:253 +#: firewall/templates/firewall/spamassassin.html:51 +msgid "Installation failed." +msgstr "安装失败。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:62 +msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." +msgstr "SpamAssassin成功安装,在3秒内刷新页面。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:74 +msgid "Winter is coming, but so is SpamAssassin." +msgstr "网络暗潮涌动,但我们有SpamAssassin保护您。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:126 +#: firewall/templates/firewall/modSecurity.html:163 +#: firewall/templates/firewall/modSecurity.html:351 +#: firewall/templates/firewall/spamassassin.html:157 +msgid "Save changes." +msgstr "保存更改。" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:137 +msgid "Failed to save SpamAssassin configurations. Error message: " +msgstr "无法保存 SpamAssassin 配置。错误消息: " + +#: emailPremium/templates/emailPremium/SpamAssassin.html:142 +msgid "SpamAssassin configurations successfully saved." +msgstr "SpamAssassin的配置成功保存。" + +#: emailPremium/templates/emailPremium/emailLimits.html:13 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Limits Docs" +msgstr "邮箱限制文档" + +#: emailPremium/templates/emailPremium/emailLimits.html:14 +msgid "View and change email limits for a domain name." +msgstr "查看和改变域名的电子邮件限制。" + +#: emailPremium/templates/emailPremium/emailLimits.html:25 +msgid "Domain Resource Usage" +msgstr "领域资源使用情况" + +#: emailPremium/templates/emailPremium/emailLimits.html:52 +#: emailPremium/templates/emailPremium/emailLimits.html:158 +#: emailPremium/templates/emailPremium/emailPage.html:54 +#: emailPremium/templates/emailPremium/listDomains.html:61 +msgid "Limits are being Applied!" +msgstr "限制已被应用!" + +#: emailPremium/templates/emailPremium/emailLimits.html:54 +#: emailPremium/templates/emailPremium/emailLimits.html:160 +#: emailPremium/templates/emailPremium/emailPage.html:56 +#: emailPremium/templates/emailPremium/listDomains.html:63 +msgid "Limits are not being applied!" +msgstr "限制未被应用!" + +#: emailPremium/templates/emailPremium/emailLimits.html:58 +#: emailPremium/templates/emailPremium/emailPage.html:66 +#: filemanager/templates/filemanager/index.html:79 +#: filemanager/templates/filemanager/index.html:699 +#: packages/templates/packages/listPackages.html:60 +#: userManagment/templates/userManagment/listUsers.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:66 +msgid "Edit" +msgstr "编辑" + +#: emailPremium/templates/emailPremium/emailLimits.html:70 +#: emailPremium/templates/emailPremium/emailPage.html:78 +msgid "Monthly Limit" +msgstr "每月限制" + +#: emailPremium/templates/emailPremium/emailLimits.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:101 +msgid "Change Limits" +msgstr "更改限制" + +#: emailPremium/templates/emailPremium/emailLimits.html:93 +#: emailPremium/templates/emailPremium/emailPage.html:111 +msgid "Can not change limits. Error message:" +msgstr "无法改变限制。错误信息:" + +#: emailPremium/templates/emailPremium/emailLimits.html:97 +msgid "Limits successfully changed, refreshing in 3 seconds." +msgstr "限制成功更改,将在 3 秒内刷新。" + +#: emailPremium/templates/emailPremium/emailLimits.html:126 +#: emailPremium/templates/emailPremium/emailPage.html:25 +msgid "Email Resource Usage" +msgstr "邮箱资源使用量" + +#: emailPremium/templates/emailPremium/emailLimits.html:133 +msgid "Search Emails.." +msgstr "搜索邮箱..." + +#: emailPremium/templates/emailPremium/emailLimits.html:164 +#: emailPremium/templates/emailPremium/listDomains.html:67 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 +msgid "Manage" +msgstr "管理" + +#: emailPremium/templates/emailPremium/emailPage.html:13 +msgid "Emai Limits Docs" +msgstr "邮件限制文档" + +#: emailPremium/templates/emailPremium/emailPage.html:14 +msgid "View and change limits for an Email Address." +msgstr "查看和更改邮箱地址的限制。" + +#: emailPremium/templates/emailPremium/emailPage.html:60 +msgid "Logging in ON!" +msgstr "已开启注册!" + +#: emailPremium/templates/emailPremium/emailPage.html:62 +msgid "Logging is Off" +msgstr "已关闭注册" + +#: emailPremium/templates/emailPremium/emailPage.html:88 +msgid "Hourly Limit" +msgstr "每小时限额" + +#: emailPremium/templates/emailPremium/emailPage.html:115 +msgid "Limits successfully changed." +msgstr "限制成功改变。" + +#: emailPremium/templates/emailPremium/emailPage.html:151 +msgid "Search Emails Logs.." +msgstr "搜索邮箱日志..." + +#: emailPremium/templates/emailPremium/emailPage.html:155 +msgid "Flush Logs" +msgstr "刷新日志" + +#: emailPremium/templates/emailPremium/listDomains.html:3 +msgid "Domains - CyberPanel" +msgstr "域名 - Cyberpanel" + +#: emailPremium/templates/emailPremium/listDomains.html:15 +msgid "On this page you manage emails limits for Domains/Email Addresses" +msgstr "在此页面上,您可以管理域/邮箱地址的邮箱的限制" + +#: emailPremium/templates/emailPremium/policyServer.html:3 +msgid "Email Policy Server - CyberPanel" +msgstr "邮箱策略服务器 - CyberPanel" + +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Policy Server Configurations!" +msgstr "电子邮件策略服务器配置!" + +#: emailPremium/templates/emailPremium/policyServer.html:14 +msgid "Turn ON Email Policy Server to use Email Limits Feature. " +msgstr "打开邮箱策略服务器以使用邮箱限制功能。 " + +#: emailPremium/templates/emailPremium/policyServer.html:40 +#: manageServices/templates/manageServices/managePostfix.html:41 +#: manageServices/templates/manageServices/managePowerDNS.html:112 +#: manageServices/templates/manageServices/managePureFtpd.html:41 +msgid "Save changes" +msgstr "保存更改" + +#: emailPremium/templates/emailPremium/policyServer.html:52 +#: firewall/templates/firewall/secureSSH.html:78 +#: mailServer/templates/mailServer/dkimManager.html:40 +#: managePHP/templates/managePHP/editPHPConfig.html:148 +#: manageServices/templates/manageServices/managePostfix.html:51 +#: manageServices/templates/manageServices/managePowerDNS.html:122 +#: manageServices/templates/manageServices/managePureFtpd.html:51 +msgid "Error message: " +msgstr "错误信息: " + +#: emailPremium/templates/emailPremium/policyServer.html:56 +#: manageServices/templates/manageServices/managePostfix.html:55 +#: manageServices/templates/manageServices/managePowerDNS.html:126 +#: manageServices/templates/manageServices/managePureFtpd.html:55 +msgid "Changes successfully applied." +msgstr "已成功应用更改。" + +#: filemanager/templates/filemanager/index.html:5 +msgid "File Manager - CyberPanel" +msgstr "文件管理器 - CyberPanel" + +#: filemanager/templates/filemanager/index.html:54 +msgid " File Manager" +msgstr " 文件管理器" + +#: filemanager/templates/filemanager/index.html:58 +#: filemanager/templates/filemanager/index.html:197 +#: filemanager/templates/filemanager/index.html:227 +msgid "Upload" +msgstr "上传" + +#: filemanager/templates/filemanager/index.html:61 +msgid "New File" +msgstr "新文件" + +#: filemanager/templates/filemanager/index.html:64 +msgid "New Folder" +msgstr "新文件夹" + +#: filemanager/templates/filemanager/index.html:70 +#: filemanager/templates/filemanager/index.html:557 +#: filemanager/templates/filemanager/index.html:693 +msgid "Copy" +msgstr "复制" + +#: filemanager/templates/filemanager/index.html:73 +#: filemanager/templates/filemanager/index.html:522 +#: filemanager/templates/filemanager/index.html:691 +msgid "Move" +msgstr "移动" + +#: filemanager/templates/filemanager/index.html:76 +#: filemanager/templates/filemanager/index.html:587 +#: filemanager/templates/filemanager/index.html:694 +msgid "Rename" +msgstr "重命名" + +#: filemanager/templates/filemanager/index.html:82 +#: filemanager/templates/filemanager/index.html:432 +#: filemanager/templates/filemanager/index.html:459 +#: filemanager/templates/filemanager/index.html:697 +msgid "Compress" +msgstr "压缩" + +#: filemanager/templates/filemanager/index.html:85 +#: filemanager/templates/filemanager/index.html:487 +#: filemanager/templates/filemanager/index.html:698 +msgid "Extract" +msgstr "解压" + +#: filemanager/templates/filemanager/index.html:88 +msgid "Fix Permissions" +msgstr "修复权限" + +#: filemanager/templates/filemanager/index.html:113 +msgid "Current Path" +msgstr "当前路径" + +#: filemanager/templates/filemanager/index.html:138 +msgid "Back" +msgstr "返回" + +#: filemanager/templates/filemanager/index.html:142 +#: serverLogs/templates/serverLogs/accessLogs.html:38 +#: serverLogs/templates/serverLogs/emailLogs.html:39 +#: serverLogs/templates/serverLogs/errorLogs.html:35 +#: serverLogs/templates/serverLogs/ftplogs.html:35 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 +#: websiteFunctions/templates/websiteFunctions/listCron.html:36 +msgid "Refresh" +msgstr "刷新" + +#: filemanager/templates/filemanager/index.html:146 +msgid "Select All" +msgstr "全选" + +#: filemanager/templates/filemanager/index.html:150 +msgid "UnSelect All" +msgstr "取消全选" + +#: filemanager/templates/filemanager/index.html:159 +msgid "Size (KB)" +msgstr "大小(KB)" + +#: filemanager/templates/filemanager/index.html:160 +msgid "Last Modified" +msgstr "最后修改时间" + +#: filemanager/templates/filemanager/index.html:161 +msgid "Permissions" +msgstr "权限" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload File" +msgstr "上传文件" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload Limits" +msgstr "上传限制" + +#: filemanager/templates/filemanager/index.html:187 +msgid "Upload queue" +msgstr "上传队列" + +#: filemanager/templates/filemanager/index.html:188 +msgid "Queue length:" +msgstr "队列进度:" + +#: filemanager/templates/filemanager/index.html:192 +msgid "Drop" +msgstr "下降" + +#: filemanager/templates/filemanager/index.html:193 +msgid "Drop Files here to upload them." +msgstr "拖拽文件到此来上传。" + +#: filemanager/templates/filemanager/index.html:205 +msgid "Progress" +msgstr "进度" + +#: filemanager/templates/filemanager/index.html:233 +msgid "Remove" +msgstr "移除" + +#: filemanager/templates/filemanager/index.html:243 +msgid "Queue progress:" +msgstr "队列进度:" + +#: filemanager/templates/filemanager/index.html:252 +msgid "can not be uploaded, Error message:" +msgstr "无法上传,错误消息:" + +#: filemanager/templates/filemanager/index.html:256 +msgid "Upload all" +msgstr "全部上传" + +#: filemanager/templates/filemanager/index.html:259 +msgid "Cancel all" +msgstr "取消所有" + +#: filemanager/templates/filemanager/index.html:262 +msgid "Remove all" +msgstr "移除所有" + +#: filemanager/templates/filemanager/index.html:298 +msgid "File Successfully saved." +msgstr "文件成功保存。" + +#: filemanager/templates/filemanager/index.html:305 +#: firewall/templates/firewall/secureSSH.html:68 +#: managePHP/templates/managePHP/editPHPConfig.html:138 +#: managePHP/templates/managePHP/editPHPConfig.html:205 +#: userManagment/templates/userManagment/apiAccess.html:53 +#: userManagment/templates/userManagment/modifyACL.html:436 +#: userManagment/templates/userManagment/resellerCenter.html:58 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 +msgid "Save Changes" +msgstr "保存修改" + +#: filemanager/templates/filemanager/index.html:322 +msgid "Create new folder!" +msgstr "创建新的文件夹!" + +#: filemanager/templates/filemanager/index.html:330 +msgid "New Folder Name" +msgstr "新文件夹名称" + +#: filemanager/templates/filemanager/index.html:332 +msgid "Folder will be created in your current directory" +msgstr "文件夹将在当前目录中创建" + +#: filemanager/templates/filemanager/index.html:334 +msgid "Create Folder" +msgstr "创建文件夹" + +#: filemanager/templates/filemanager/index.html:347 +msgid "Folder Successfully created." +msgstr "文件夹创建成功。" + +#: filemanager/templates/filemanager/index.html:366 +msgid "Create new file!" +msgstr "创建新文件!" + +#: filemanager/templates/filemanager/index.html:374 +msgid "New File Name" +msgstr "新文件名" + +#: filemanager/templates/filemanager/index.html:376 +msgid "" +"File will be created in your current directory, if it already exists it will " +"not overwirte." +msgstr "文件将在当前目录中创建,如果它已存在将不会被覆盖。" + +#: filemanager/templates/filemanager/index.html:378 +msgid "Create File" +msgstr "创建文件" + +#: filemanager/templates/filemanager/index.html:391 +msgid "File Successfully created." +msgstr "文件已成功创建。" + +#: filemanager/templates/filemanager/index.html:407 +msgid "Confirm Deletion!" +msgstr "确认删除!" + +#: filemanager/templates/filemanager/index.html:440 +msgid "List of files/folder!" +msgstr "文件/文件夹列表!" + +#: filemanager/templates/filemanager/index.html:444 +msgid "Compressed File Name" +msgstr "压缩包文件名" + +#: filemanager/templates/filemanager/index.html:446 +msgid "Enter without extension name!" +msgstr "请不要输入扩展名!" + +#: filemanager/templates/filemanager/index.html:450 +msgid "Compression Type" +msgstr "压缩类型" + +#: filemanager/templates/filemanager/index.html:475 +msgid "Extracting" +msgstr "解压中" + +#: filemanager/templates/filemanager/index.html:483 +msgid "Extract in" +msgstr "提取至" + +#: filemanager/templates/filemanager/index.html:485 +msgid "You can enter . to extract in current directory!" +msgstr "您可以输入 . 解压至当前目录!" + +#: filemanager/templates/filemanager/index.html:503 +msgid "Move Files" +msgstr "移动文件" + +#: filemanager/templates/filemanager/index.html:511 +#: filemanager/templates/filemanager/index.html:546 +msgid "List of files/folders!" +msgstr "文件(夹)列表!" + +#: filemanager/templates/filemanager/index.html:515 +msgid "Move to" +msgstr "移动到" + +#: filemanager/templates/filemanager/index.html:517 +msgid "Enter a path to move your files!" +msgstr "输入新文件夹的路径!" + +#: filemanager/templates/filemanager/index.html:538 +msgid "Copy Files" +msgstr "复制文件" + +#: filemanager/templates/filemanager/index.html:550 +msgid "Copy to" +msgstr "复制到" + +#: filemanager/templates/filemanager/index.html:552 +msgid "Enter a path to copy your files to!" +msgstr "输入目的路径以复制文件!" + +#: filemanager/templates/filemanager/index.html:572 +msgid "Renaming" +msgstr "重命名" + +#: filemanager/templates/filemanager/index.html:580 +msgid "New Name" +msgstr "新建名称" + +#: filemanager/templates/filemanager/index.html:582 +msgid "Enter new name of file!" +msgstr "输入新的文件名!" + +#: filemanager/templates/filemanager/index.html:602 +msgid "Changing permissions for" +msgstr "修改权限对于" + +#: filemanager/templates/filemanager/index.html:611 +msgid "Mode" +msgstr "模式" + +#: filemanager/templates/filemanager/index.html:612 +#: serverStatus/templates/serverStatus/topProcesses.html:193 +msgid "User" +msgstr "用户" + +#: filemanager/templates/filemanager/index.html:613 +msgid "Group" +msgstr "组" + +#: filemanager/templates/filemanager/index.html:614 +msgid "World" +msgstr "世界" + +#: filemanager/templates/filemanager/index.html:619 +msgid "Read" +msgstr "已读" + +#: filemanager/templates/filemanager/index.html:625 +msgid "Write" +msgstr "写入" + +#: filemanager/templates/filemanager/index.html:631 +msgid "Execute" +msgstr "执行" + +#: filemanager/templates/filemanager/index.html:647 +#: filemanager/templates/filemanager/index.html:695 +msgid "Change Permissions" +msgstr "改变权限" + +#: filemanager/templates/filemanager/index.html:648 +msgid "Change Recursively" +msgstr "向下递归改变" + +#: filemanager/templates/filemanager/index.html:692 +msgid "Download" +msgstr "下载" + +#: firewall/templates/firewall/csf.html:3 +msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" +msgstr "CSF(配置服务器安全和防火墙)- CyberPanel" + +#: firewall/templates/firewall/csf.html:13 +msgid "CSF (ConfigServer Security and Firewall)!" +msgstr "CSF(ConfigServer 安全与防火墙)!" + +#: firewall/templates/firewall/csf.html:14 +msgid "" +"On this page you can configure CSF (ConfigServer Security and Firewall) " +"settings." +msgstr "在此页面,您可以配置CSF(ConfigServer 安全与防火墙)设置。" + +#: firewall/templates/firewall/csf.html:28 +msgid "CSF is not installed " +msgstr "CSF未被安装 " + +#: firewall/templates/firewall/csf.html:55 +msgid "CSF successfully installed, refreshing page in 3 seconds.." +msgstr "CSF 已成功安装, 将在 3 秒内刷新页面。" + +#: firewall/templates/firewall/csf.html:66 +msgid "In winter we must protect each other.." +msgstr "我们必须在黑暗中守望相助。" + +#: firewall/templates/firewall/csf.html:90 +msgid "General" +msgstr "常规" + +#: firewall/templates/firewall/csf.html:100 +msgid "LFD" +msgstr "登录失败守护程序" + +#: firewall/templates/firewall/csf.html:109 +msgid "Remove CSF" +msgstr "移除 CSF" + +#: firewall/templates/firewall/csf.html:112 +msgid "Completely Remove CSF" +msgstr "彻底清除CSF" + +#: firewall/templates/firewall/csf.html:126 +msgid "Testing Mode" +msgstr "测试模式" + +#: firewall/templates/firewall/csf.html:133 +msgid "TCP IN Ports" +msgstr "TCP传入端口" + +#: firewall/templates/firewall/csf.html:143 +msgid "TCP Out Ports" +msgstr "TCP传出端口" + +#: firewall/templates/firewall/csf.html:153 +msgid "UDP In Ports" +msgstr "UDP传入端口" + +#: firewall/templates/firewall/csf.html:163 +msgid "UDP Out Ports" +msgstr "UDP传出端口" + +#: firewall/templates/firewall/csf.html:181 +msgid "Allow IP" +msgstr "允许 IP" + +#: firewall/templates/firewall/csf.html:191 +msgid "Block IP Address" +msgstr "阻止 IP 地址" + +#: firewall/templates/firewall/csf.html:203 +msgid "Coming Soon." +msgstr "即将来临" + +#: firewall/templates/firewall/firewall.html:3 +msgid "Firewall - CyberPanel" +msgstr "防火墙 - CyberPanel" + +#: firewall/templates/firewall/firewall.html:13 +msgid "Add/Delete Firewall Rules" +msgstr "添加/删除防火墙规则" + +#: firewall/templates/firewall/firewall.html:14 +msgid "" +"On this page you can add/delete firewall rules. (By default all ports are " +"blocked, except mentioned below)" +msgstr "此页面可以添加/删除防火墙规则(除以下端口外, 所有端口默认关闭)" + +#: firewall/templates/firewall/firewall.html:19 +msgid "Add/Delete Rules" +msgstr "添加/删除规则" + +#: firewall/templates/firewall/firewall.html:56 +msgid "Action failed. Error message:" +msgstr "操作失败, 错误信息:" + +#: firewall/templates/firewall/firewall.html:61 +#: serverStatus/templates/serverStatus/litespeedStatus.html:82 +#: serverStatus/templates/serverStatus/litespeedStatus.html:305 +msgid "Action successful." +msgstr "操作成功。" + +#: firewall/templates/firewall/firewall.html:121 +msgid "Protocol" +msgstr "协议" + +#: firewall/templates/firewall/firewall.html:157 +msgid "Rule successfully added." +msgstr "成功添加规则。" + +#: firewall/templates/firewall/index.html:3 +msgid "Security - CyberPanel" +msgstr "安全 - CyberPanel" + +#: firewall/templates/firewall/index.html:12 +msgid "Security Functions" +msgstr "安全" + +#: firewall/templates/firewall/index.html:13 +msgid "Manage the security of the server on this page." +msgstr "在此页面管理服务器安全相关内容。" + +#: firewall/templates/firewall/modSecurity.html:3 +msgid "ModSecurity - CyberPanel" +msgstr "ModSecurity - CyberPanel" + +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:208 +msgid "ModSecurity Configurations!" +msgstr "ModSecurity 设置!" + +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:212 +#: firewall/templates/firewall/modSecurityRules.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +msgid "ModSec Docs" +msgstr "ModSecurity 文档" + +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:214 +msgid "On this page you can configure ModSecurity settings." +msgstr "在这一页,你可以配置ModSecurity的设置。" + +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:220 +msgid "ModSecurity" +msgstr "ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:32 +#: firewall/templates/firewall/modSecurity.html:229 +#: firewall/templates/firewall/modSecurityRules.html:70 +#: firewall/templates/firewall/modSecurityRulesPacks.html:28 +#: firewall/templates/firewall/spamassassin.html:29 +msgid "ModSecurity is not installed " +msgstr "ModSecurity未被安装 " + +#: firewall/templates/firewall/modSecurity.html:61 +#: firewall/templates/firewall/modSecurity.html:257 +#: firewall/templates/firewall/spamassassin.html:55 +msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." +msgstr "ModSecurity安装成功,将在3秒内刷新页面..." + +#: firewall/templates/firewall/modSecurity.html:73 +#: firewall/templates/firewall/modSecurity.html:269 +#: firewall/templates/firewall/spamassassin.html:66 +msgid "Winter is coming, but so is ModSecurity." +msgstr "网络时代风起云涌,但我们有ModSecurity保护您。" + +#: firewall/templates/firewall/modSecurity.html:174 +#: firewall/templates/firewall/modSecurity.html:362 +#: firewall/templates/firewall/spamassassin.html:169 +msgid "Failed to save ModSecurity configurations. Error message: " +msgstr "无法保存 ModSecurity 配置。错误消息: " + +#: firewall/templates/firewall/modSecurity.html:179 +#: firewall/templates/firewall/modSecurity.html:367 +#: firewall/templates/firewall/spamassassin.html:173 +msgid "ModSecurity configurations successfully saved." +msgstr "ModSecurity的配置成功保存。" + +#: firewall/templates/firewall/modSecurityRules.html:3 +msgid "ModSecurity Rules - CyberPanel" +msgstr "ModSecurity 规则 - CyberPanel" + +#: firewall/templates/firewall/modSecurityRules.html:13 +msgid "ModSecurity Rules!" +msgstr "ModSecurity 规则!" + +#: firewall/templates/firewall/modSecurityRules.html:14 +msgid "On this page you can add/delete ModSecurity rules." +msgstr "在这个页面,你可以添加/删除ModSecurity规则。" + +#: firewall/templates/firewall/modSecurityRules.html:42 +msgid "Save Rules!" +msgstr "保存规则!" + +#: firewall/templates/firewall/modSecurityRules.html:49 +msgid "ModSecurity Rules Saved" +msgstr "已保存 ModSecurity 规则" + +#: firewall/templates/firewall/modSecurityRules.html:58 +msgid "Could not save rules, Error message: " +msgstr "无法保存规则,错误消息: " + +#: firewall/templates/firewall/modSecurityRulesPacks.html:3 +msgid "ModSecurity Rules Packs - CyberPanel" +msgstr "ModSecurity 规则包 - 网络面板" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:20 +msgid "ModSecurity Rules Packages!" +msgstr "ModSecurity 规则包!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:14 +msgid "Install/Un-install ModSecurity rules packages." +msgstr "安装/卸载 ModSecurity 规则包。" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:60 +#: firewall/templates/firewall/modSecurityRulesPacks.html:71 +msgid "Configure" +msgstr "配置" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:84 +#: firewall/templates/firewall/modSecurityRulesPacks.html:96 +msgid "Operation successful." +msgstr "操作成功。" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:92 +msgid "Operation failed, Error message: " +msgstr "操作失败,错误消息: " + +#: firewall/templates/firewall/modSecurityRulesPacks.html:110 +msgid "Supplier" +msgstr "供应商" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:111 +msgid "Filename" +msgstr "文件名" + +#: firewall/templates/firewall/secureSSH.html:3 +msgid "Secure SSH - CyberPanel" +msgstr "SSH加固 - CyberPanel" + +#: firewall/templates/firewall/secureSSH.html:13 +msgid "SSH Docs" +msgstr "SSH 文档" + +#: firewall/templates/firewall/secureSSH.html:14 +msgid "Secure or harden SSH Configurations." +msgstr "SSH设置已保存。" + +#: firewall/templates/firewall/secureSSH.html:28 +#: managePHP/templates/managePHP/editPHPConfig.html:29 +msgid "Basic" +msgstr "基础" + +#: firewall/templates/firewall/secureSSH.html:34 +msgid "SSH Keys" +msgstr "SSH密钥" + +#: firewall/templates/firewall/secureSSH.html:47 +msgid "SSH Port" +msgstr "SSH端口" + +#: firewall/templates/firewall/secureSSH.html:56 +msgid "Permit Root Login" +msgstr "允许ROOT登陆" + +#: firewall/templates/firewall/secureSSH.html:60 +msgid "" +"Before disabling root login, make sure you have another account with sudo " +"priviliges on server." +msgstr "禁用ROOT登陆前,请确保您在服务器上拥有另一个sudo权限的用户。" + +#: firewall/templates/firewall/secureSSH.html:82 +msgid "SSH Configurations Saved." +msgstr "SSH设置已保存。" + +#: firewall/templates/firewall/secureSSH.html:121 +msgid "Key" +msgstr "密钥" + +#: firewall/templates/firewall/secureSSH.html:150 +msgid "Add Key" +msgstr "添加密钥" + +#: firewall/templates/firewall/secureSSH.html:167 +msgid "SSH Key Deleted" +msgstr "SSH密钥已删除" + +#: ftp/templates/ftp/createFTPAccount.html:3 +msgid "Create FTP Account - CyberPanel" +msgstr "创建FTP用户 - CyberPanel" + +#: ftp/templates/ftp/createFTPAccount.html:13 +msgid "" +"Select the website from list, and its home directory will be set as the path " +"to ftp account." +msgstr "在列表中选择一个网站, 它的根目录将会设为FTP的根目录。" + +#: ftp/templates/ftp/createFTPAccount.html:26 +#: ftp/templates/ftp/deleteFTPAccount.html:25 +#: ftp/templates/ftp/listFTPAccounts.html:26 +msgid "PureFTPD is disabled." +msgstr "PureFTPD已被禁用。" + +#: ftp/templates/ftp/createFTPAccount.html:67 +msgid "FTP Password" +msgstr "FTP密码" + +#: ftp/templates/ftp/createFTPAccount.html:90 +msgid "Path (Relative)" +msgstr "相对路径" + +#: ftp/templates/ftp/createFTPAccount.html:92 +msgid "Leave empty to select default home directory." +msgstr "留空则设置为默认根目录。" + +#: ftp/templates/ftp/createFTPAccount.html:105 +msgid "Create FTP" +msgstr "创建FTP用户" + +#: ftp/templates/ftp/createFTPAccount.html:113 +msgid "Cannot create FTP account. Error message:" +msgstr "无法创建FTP用户, 错误信息:" + +#: ftp/templates/ftp/createFTPAccount.html:118 +#: ftp/templates/ftp/createFTPAccount.html:122 +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid "FTP Account with username:" +msgstr "FTP账户用户名:" + +#: ftp/templates/ftp/createFTPAccount.html:119 +#: ftp/templates/ftp/createFTPAccount.html:123 +#: userManagment/templates/userManagment/createUser.html:129 +msgid "is successfully created." +msgstr "已成功创建。" + +#: ftp/templates/ftp/deleteFTPAccount.html:3 +msgid "Delete FTP Account - CyberPanel" +msgstr "删除FTP用户 - CyberPanel" + +#: ftp/templates/ftp/deleteFTPAccount.html:13 +msgid "Select domain and delete its related FTP accounts." +msgstr "选择域名并删除与之相关的FTP账户。" + +#: ftp/templates/ftp/deleteFTPAccount.html:52 +msgid "Select FTP Account" +msgstr "选择FTP用户" + +#: ftp/templates/ftp/deleteFTPAccount.html:83 +msgid "Cannot delete account. Error message:" +msgstr "无法删除账户, 错误信息:" + +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid " is successfully deleted." +msgstr " 已成功删除。" + +#: ftp/templates/ftp/deleteFTPAccount.html:91 +#: userManagment/templates/userManagment/deleteUser.html:70 +msgid "Could not connect to the server. Please refresh this page." +msgstr "无法连接到服务器,请刷新此页面。" + +#: ftp/templates/ftp/index.html:3 +msgid "FTP Functions - CyberPanel" +msgstr "FTP功能 - CyberPanel" + +#: ftp/templates/ftp/index.html:13 +msgid "Delete and create FTP accounts on this page." +msgstr "在此页面添加, 编辑和删除FTP账户。" + +#: ftp/templates/ftp/listFTPAccounts.html:3 +msgid "List FTP Accounts - CyberPanel" +msgstr "查看FTP用户 - CyberPanel" + +#: ftp/templates/ftp/listFTPAccounts.html:14 +msgid "List FTP Accounts or change their passwords." +msgstr "列出FTP账户或修改密码。" + +#: ftp/templates/ftp/listFTPAccounts.html:66 +msgid "Password changed for" +msgstr "已为修改密码" + +#: ftp/templates/ftp/listFTPAccounts.html:70 +msgid "" +"Cannot change password for {$ ftpUsername $}. Error message:" +msgstr "无法修改 {$ ftpUsername $} 的密码, 错误信息:" + +#: ftp/templates/ftp/listFTPAccounts.html:124 +msgid "Directory" +msgstr "目录" + +#: mailServer/templates/mailServer/changeEmailPassword.html:3 +msgid "Change Email Password - CyberPanel" +msgstr "修改邮箱密码 - CyberPanel" + +#: mailServer/templates/mailServer/changeEmailPassword.html:12 +#: mailServer/templates/mailServer/changeEmailPassword.html:19 +#: userManagment/templates/userManagment/createACL.html:299 +#: userManagment/templates/userManagment/modifyACL.html:303 +msgid "Change Email Password" +msgstr "修改邮箱密码" + +#: mailServer/templates/mailServer/changeEmailPassword.html:13 +msgid "Select a website from the list, to change its password." +msgstr "在列表中选择网站并修改密码。" + +#: mailServer/templates/mailServer/changeEmailPassword.html:27 +#: mailServer/templates/mailServer/createEmailAccount.html:27 +#: mailServer/templates/mailServer/deleteEmailAccount.html:27 +#: mailServer/templates/mailServer/emailForwarding.html:26 +#: mailServer/templates/mailServer/listEmails.html:27 +msgid "Postfix is disabled." +msgstr "Postfix已被禁用。" + +#: mailServer/templates/mailServer/changeEmailPassword.html:58 +#: mailServer/templates/mailServer/deleteEmailAccount.html:58 +#: mailServer/templates/mailServer/emailForwarding.html:52 +msgid "Select Email" +msgstr "选择邮箱" + +#: mailServer/templates/mailServer/changeEmailPassword.html:106 +#: mailServer/templates/mailServer/deleteEmailAccount.html:90 +msgid "Cannot delete email account. Error message:" +msgstr "无法删除邮箱账户。错误信息:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:111 +msgid "Password successfully changed for :" +msgstr "已成功为修改密码 :" + +#: mailServer/templates/mailServer/changeEmailPassword.html:118 +#: mailServer/templates/mailServer/deleteEmailAccount.html:102 +msgid "Currently no email accounts exist for this domain." +msgstr "目前此域名并没有邮箱账户。" + +#: mailServer/templates/mailServer/createEmailAccount.html:3 +msgid "Create Email Account - CyberPanel" +msgstr "创建邮箱用户 - CyberPanel" + +#: mailServer/templates/mailServer/createEmailAccount.html:13 +msgid "Select a website from the list, to create an email account." +msgstr "请从列表中选择一个网站来创建邮箱账户。" + +#: mailServer/templates/mailServer/createEmailAccount.html:106 +msgid "Cannot create email account. Error message:" +msgstr "无法创建邮箱账户,错误信息:" + +#: mailServer/templates/mailServer/createEmailAccount.html:111 +msgid "Email with id :" +msgstr "邮箱 ID:" + +#: mailServer/templates/mailServer/createEmailAccount.html:112 +msgid " is successfully created." +msgstr " 已成功创建。" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:3 +msgid "Delete Email Account - CyberPanel" +msgstr "删除邮箱用户 - CyberPanel" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:13 +msgid "Select a website from the list, to delete an email account." +msgstr "请从列表中选择一个网站,来删除邮箱账号。" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:95 +msgid "Email with id : {$ deletedID $} is successfully deleted." +msgstr "邮件ID: {$ deletedID $} 已成功删除。" + +#: mailServer/templates/mailServer/dkimManager.html:3 +msgid "DKIM Manager - CyberPanel" +msgstr "DKIM 管理器 - CyberPanel" + +#: mailServer/templates/mailServer/dkimManager.html:13 +msgid "DKIM Docs" +msgstr "DKIM文档" + +#: mailServer/templates/mailServer/dkimManager.html:14 +msgid "This page can be used to generate and view DKIM keys for Domains" +msgstr "本页可用于生成和查看域名的DKIM密钥" + +#: mailServer/templates/mailServer/dkimManager.html:27 +msgid "OpenDKIM is not installed. " +msgstr "OpenDKIM未安装。" + +#: mailServer/templates/mailServer/dkimManager.html:28 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 +msgid "Install Now" +msgstr "现在安装" + +#: mailServer/templates/mailServer/dkimManager.html:48 +msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." +msgstr "OpenDKIM成功安装,页面将在3秒内刷新..." + +#: mailServer/templates/mailServer/dkimManager.html:97 +msgid "Keys not available for this domain." +msgstr "此域没有密钥。" + +#: mailServer/templates/mailServer/dkimManager.html:98 +msgid "Generate Now" +msgstr "立即生成" + +#: mailServer/templates/mailServer/dkimManager.html:110 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 +msgid "Domain" +msgstr "域名" + +#: mailServer/templates/mailServer/dkimManager.html:111 +msgid "Private Key" +msgstr "私匙" + +#: mailServer/templates/mailServer/dkimManager.html:112 +msgid "Public Key" +msgstr "公匙" + +#: mailServer/templates/mailServer/emailForwarding.html:3 +msgid "Setup Email Forwarding - CyberPanel" +msgstr "设置邮箱转发 - CyberPanel" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +#: mailServer/templates/mailServer/emailForwarding.html:19 +msgid "Setup Email Forwarding" +msgstr "设置邮件转发" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +msgid "Forwarding Docs" +msgstr "转发文档" + +#: mailServer/templates/mailServer/emailForwarding.html:13 +msgid "This page help you setup email forwarding for your emails." +msgstr "此页面可帮助您设置邮箱转发。" + +#: mailServer/templates/mailServer/emailForwarding.html:61 +msgid "Forwarding Options" +msgstr "转发设置" + +#: mailServer/templates/mailServer/emailForwarding.html:97 +#: mailServer/templates/mailServer/emailForwarding.html:118 +msgid "Source" +msgstr "来源" + +#: mailServer/templates/mailServer/emailForwarding.html:101 +msgid "or path to the program" +msgstr "或程序的路径" + +#: mailServer/templates/mailServer/emailForwarding.html:106 +msgid "Forward Email" +msgstr "转发邮箱" + +#: mailServer/templates/mailServer/index.html:3 +msgid "Mail Functions - CyberPanel" +msgstr "邮件功能 - CyberPanel" + +#: mailServer/templates/mailServer/index.html:12 +msgid "Mail Functions" +msgstr "邮件功能" + +#: mailServer/templates/mailServer/index.html:13 +msgid "Manage email accounts on this page." +msgstr "在此页面管理邮箱账号。" + +#: mailServer/templates/mailServer/listEmails.html:3 +msgid "List Email Accounts - CyberPanel" +msgstr "列出邮箱帐户 - CyberPanel" + +#: mailServer/templates/mailServer/listEmails.html:13 +#: mailServer/templates/mailServer/listEmails.html:19 +msgid "List Email Accounts" +msgstr "列出邮箱账户" + +#: mailServer/templates/mailServer/listEmails.html:14 +msgid "List Emails Accounts. Change their passwords or delete them." +msgstr "列出邮箱帐户。更改他们的密码或删除他们。" + +#: managePHP/templates/managePHP/editPHPConfig.html:3 +msgid "Edit PHP Configurations - CyberPanel" +msgstr "设置PHP参数 - CyberPanel" + +#: managePHP/templates/managePHP/editPHPConfig.html:14 +#: managePHP/templates/managePHP/editPHPConfig.html:21 +msgid "Edit PHP Configurations" +msgstr "设置PHP参数" + +#: managePHP/templates/managePHP/editPHPConfig.html:15 +msgid "Edit PHP Configurations on this page." +msgstr "在此页面设置PHP参数。" + +#: managePHP/templates/managePHP/editPHPConfig.html:36 +msgid "Advanced" +msgstr "高级" + +#: managePHP/templates/managePHP/editPHPConfig.html:65 +msgid "display_errors" +msgstr "display_errors" + +#: managePHP/templates/managePHP/editPHPConfig.html:72 +msgid "file_uploads" +msgstr "file_uploads" + +#: managePHP/templates/managePHP/editPHPConfig.html:80 +msgid "allow_url_fopen" +msgstr "allow_url_fopen" + +#: managePHP/templates/managePHP/editPHPConfig.html:88 +msgid "allow_url_include" +msgstr "allow_url_include" + +#: managePHP/templates/managePHP/editPHPConfig.html:96 +msgid "memory_limit" +msgstr "memory_limit" + +#: managePHP/templates/managePHP/editPHPConfig.html:103 +msgid "max_execution_time" +msgstr "max_execution_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:111 +msgid "upload_max_filesize" +msgstr "upload_max_filesize" + +#: managePHP/templates/managePHP/editPHPConfig.html:119 +msgid "post_max_size" +msgstr "post_max_size" + +#: managePHP/templates/managePHP/editPHPConfig.html:126 +msgid "max_input_time" +msgstr "max_input_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:218 +msgid "PHP Configs Saved." +msgstr "PHP参数已保存。" + +#: managePHP/templates/managePHP/index.html:3 +msgid "Manage PHP Installations - CyberPanel" +msgstr "管理PHP - CyberPanel" + +#: managePHP/templates/managePHP/index.html:12 +msgid "Manage PHP Installations" +msgstr "管理PHP" + +#: managePHP/templates/managePHP/index.html:13 +msgid "Edit your PHP Configurations to suit your needs." +msgstr "调整PHP参数以满足您的需求。" + +#: managePHP/templates/managePHP/installExtensions.html:3 +msgid "Install PHP Extensions - CyberPanel" +msgstr "安装PHP扩展 - CyberPanel" + +#: managePHP/templates/managePHP/installExtensions.html:14 +msgid "Install/uninstall php extensions on this page." +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版本" + +#: managePHP/templates/managePHP/installExtensions.html:47 +msgid "Search Extensions.." +msgstr "搜索扩展..." + +#: managePHP/templates/managePHP/installExtensions.html:62 +msgid "Extension Name" +msgstr "扩展名称" + +#: managePHP/templates/managePHP/installExtensions.html:63 +#: pluginHolder/templates/pluginHolder/plugins.html:30 +msgid "Description" +msgstr "描述" + +#: managePHP/templates/managePHP/installExtensions.html:65 +#: managePHP/templates/managePHP/installExtensions.html:81 +msgid "Install" +msgstr "安装" + +#: managePHP/templates/managePHP/installExtensions.html:66 +#: managePHP/templates/managePHP/installExtensions.html:86 +msgid "Uninstall" +msgstr "卸载" + +#: managePHP/templates/managePHP/installExtensions.html:115 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:255 +#: userManagment/templates/userManagment/modifyUser.html:126 +msgid "Cannot fetch details. Error message:" +msgstr "无法获取详情,错误信息:" + +#: managePHP/templates/managePHP/installExtensions.html:119 +msgid "Cannot perform operation. Error message:" +msgstr "无法完成操作,错误信息:" + +#: manageSSL/templates/manageSSL/index.html:3 +msgid "SSL Functions - CyberPanel" +msgstr "SSL功能 - CyberPanel" + +#: manageSSL/templates/manageSSL/index.html:13 +msgid "SSL Functions" +msgstr "SSL功能" + +#: manageSSL/templates/manageSSL/index.html:14 +msgid "Issue Let’s Encrypt SSLs for websites and hostname." +msgstr "为网站以及主机申请签发Let's Encrypt的SSL证书。" + +#: manageSSL/templates/manageSSL/manageSSL.html:3 +msgid "Manage SSL - CyberPanel" +msgstr "管理SSL - CyberPanel" + +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +msgid "SSL Docs" +msgstr "SSL文档" + +#: manageSSL/templates/manageSSL/manageSSL.html:14 +msgid "" +"This page can be used to issue Let’s Encrypt SSL for existing websites on " +"server." +msgstr "在此页面可以为已在服务器上创建的网站申请签发Let's Encrypt的SSL证书。" + +#: manageSSL/templates/manageSSL/manageSSL.html:42 +#: manageSSL/templates/manageSSL/sslForHostName.html:42 +#: manageSSL/templates/manageSSL/sslForMailServer.html:40 +msgid "Issue SSL" +msgstr "签发SSL证书" + +#: manageSSL/templates/manageSSL/manageSSL.html:52 +#: manageSSL/templates/manageSSL/sslForHostName.html:52 +#: manageSSL/templates/manageSSL/sslForMailServer.html:50 +msgid "Cannot issue SSL. Error message:" +msgstr "无法签发SSL证书,错误信息:" + +#: manageSSL/templates/manageSSL/manageSSL.html:56 +msgid "SSL Issued for" +msgstr "已为签发证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:3 +msgid "Issue SSL For Hostname - CyberPanel" +msgstr "为面板主机签发SSL证书 - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:20 +msgid "Issue SSL For Hostname" +msgstr "为面板主机签发SSL证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:14 +msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." +msgstr "用于在认证的SSL中访问CyberPanel的Let's Encrypt SSL域名证书" + +#: manageSSL/templates/manageSSL/sslForHostName.html:56 +#: manageSSL/templates/manageSSL/sslForHostName.html:60 +msgid "SSL Issued. You can now access CyberPanel at:" +msgstr "SSL证书已签发, 您可以通过此域名登陆CyberPanel:" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:3 +msgid "Issue SSL For MailServer - CyberPanel" +msgstr "签发邮件服务器 SSL - 网络面板" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:20 +msgid "Issue SSL For MailServer" +msgstr "签发邮件服务器 SSL" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:14 +msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." +msgstr "Let’s Encrypt SSL 给邮件服务器 (Postfix/Dovecot) 。" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:54 +msgid "SSL Issued, your mail server now uses Lets Encrypt!" +msgstr "SSL成功签发,您的邮件服务器现在使用Lets Encrypt!" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:58 +msgid "Could not connect to server, please refresh this page." +msgstr "无法连接到服务器, 请刷新此页面。" + +#: manageServices/templates/manageServices/managePostfix.html:3 +msgid "Manage Email Server (Postfix) - CyberPanel" +msgstr "管理邮箱服务器 (Postfix) - CyberPanel" + +#: manageServices/templates/manageServices/managePostfix.html:13 +msgid "Manage Email Server (Postfix)!" +msgstr "管理邮件服务器(Postfix)" + +#: manageServices/templates/manageServices/managePostfix.html:13 +#: manageServices/templates/manageServices/managePowerDNS.html:16 +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Services Docs" +msgstr "服务文档" + +#: manageServices/templates/manageServices/managePostfix.html:14 +msgid "Enable or disable Email services. " +msgstr "启用或禁用邮件服务。" + +#: manageServices/templates/manageServices/managePostfix.html:79 +#: manageServices/templates/manageServices/managePowerDNS.html:149 +#: manageServices/templates/manageServices/managePureFtpd.html:79 +msgid "Only administrator can manage services." +msgstr "只有管理员可以管理服务。" + +#: manageServices/templates/manageServices/managePowerDNS.html:3 +msgid "Manage PowerDNS - CyberPanel" +msgstr "管理 PowerDNS - CyberPanel" + +#: manageServices/templates/manageServices/managePowerDNS.html:13 +msgid "Manage PowerDNS!" +msgstr "管理 PowerDNS!" + +#: manageServices/templates/manageServices/managePowerDNS.html:17 +msgid "Enable or disable DNS services. " +msgstr "启用或禁用DNS服务。" + +#: manageServices/templates/manageServices/managePowerDNS.html:42 +msgid "Select Function Mode" +msgstr "选择功能模式" + +#: manageServices/templates/manageServices/managePowerDNS.html:53 +msgid "Slave Server" +msgstr "副服务器" + +#: manageServices/templates/manageServices/managePowerDNS.html:60 +msgid "Master Server IP" +msgstr "主服务器IP" + +#: manageServices/templates/manageServices/managePowerDNS.html:67 +msgid "Slave Server 1" +msgstr "副服务器1" + +#: manageServices/templates/manageServices/managePowerDNS.html:74 +msgid "Slave Server IP" +msgstr "副服务器IP" + +#: manageServices/templates/manageServices/managePowerDNS.html:81 +msgid "Slave Server 2 (Optional)" +msgstr "副服务器2(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:88 +msgid "Slave Server IP 2 (Optional)" +msgstr "副服务器IP 2(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:95 +msgid "Slave Server 3 (Optional)" +msgstr "副服务器3(可选)" + +#: manageServices/templates/manageServices/managePowerDNS.html:102 +msgid "Slave Server IP 3 (Optional)" +msgstr "副服务器IP 3(可选)" + +#: manageServices/templates/manageServices/managePureFtpd.html:3 +msgid "Manage FTP Server (Pure FTPD) - CyberPanel" +msgstr "管理 FTP 服务器 (Pure FTPD) - CyberPanel" + +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Manage FTP Server (Pure FTPD)!" +msgstr "管理FTP服务(Pure FTPD)" + +#: manageServices/templates/manageServices/managePureFtpd.html:14 +msgid "Enable or disable FTP services. " +msgstr "启用或禁用FTP服务。" + +#: manageServices/templates/manageServices/managePureFtpd.html:22 +msgid "Manage PureFTPD" +msgstr "管理PureFTPD" + +#: packages/templates/packages/createPackage.html:3 +msgid "Create Package - CyberPanel" +msgstr "创建套餐 - CyberPanel" + +#: packages/templates/packages/createPackage.html:14 +#: packages/templates/packages/deletePackage.html:13 +#: packages/templates/packages/index.html:14 +#: packages/templates/packages/modifyPackage.html:10 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 +msgid "" +"Packages define resources for your websites, you need to add package before " +"creating a website." +msgstr "套餐规定了您的网站可以使用的资源量,在创建网站前请先创建一个套餐。" + +#: packages/templates/packages/createPackage.html:19 +msgid "Package Details" +msgstr "套餐详情" + +#: packages/templates/packages/createPackage.html:41 +#: packages/templates/packages/listPackages.html:98 +#: packages/templates/packages/modifyPackage.html:44 +msgid "(0 = Unlimited)" +msgstr "(0为无限制 )" + +#: packages/templates/packages/createPackage.html:45 +#: packages/templates/packages/listPackages.html:104 +#: packages/templates/packages/modifyPackage.html:49 +msgid "Disk Space" +msgstr "硬盘空间" + +#: packages/templates/packages/createPackage.html:49 +#: packages/templates/packages/createPackage.html:57 +#: packages/templates/packages/listPackages.html:109 +#: packages/templates/packages/listPackages.html:119 +#: packages/templates/packages/modifyPackage.html:53 +#: packages/templates/packages/modifyPackage.html:61 +msgid "MB (0 = Unlimited)" +msgstr "MB (0为无限制)" + +#: packages/templates/packages/createPackage.html:53 +#: packages/templates/packages/listPackages.html:35 +#: packages/templates/packages/listPackages.html:114 +#: packages/templates/packages/modifyPackage.html:57 +msgid "Bandwidth" +msgstr "流量" + +#: packages/templates/packages/createPackage.html:62 +#: packages/templates/packages/listPackages.html:125 +#: packages/templates/packages/modifyPackage.html:66 +msgid "FTP Accounts" +msgstr "FTP用户数量" + +#: packages/templates/packages/createPackage.html:108 +msgid "Cannot create package. Error message:" +msgstr "无法创建套餐,错误信息:" + +#: packages/templates/packages/createPackage.html:113 +msgid "Successfully Created" +msgstr "已成功创建" + +#: packages/templates/packages/deletePackage.html:3 +msgid "Delete Package - CyberPanel" +msgstr "删除套餐 - CyberPanel" + +#: packages/templates/packages/deletePackage.html:56 +msgid "Cannot delete package. Error message:" +msgstr "无法删除套餐,错误信息:" + +#: packages/templates/packages/deletePackage.html:60 +msgid " Successfully Deleted." +msgstr " 已成功删除。" + +#: packages/templates/packages/index.html:3 +msgid "Packages - CyberPanel" +msgstr "套餐 - CyberPanel" + +#: packages/templates/packages/listPackages.html:3 +msgid "List Packages - CyberPanel" +msgstr "列出套餐 - CyberPanel" + +#: packages/templates/packages/listPackages.html:14 +msgid "List Packages and delete or edit them." +msgstr "列出软件包并删除或编辑它们。" + +#: packages/templates/packages/listPackages.html:34 +msgid "Diskspace" +msgstr "磁盘空间" + +#: packages/templates/packages/listPackages.html:36 +msgid "Email Accounts" +msgstr "邮件帐户" + +#: packages/templates/packages/listPackages.html:38 +msgid "FTPs" +msgstr "FTPS" + +#: packages/templates/packages/listPackages.html:39 +msgid "Child Domains" +msgstr "子域名" + +#: packages/templates/packages/listPackages.html:40 +msgid "Allow FQDN as Childs" +msgstr "允许FQDN作为Childs" + +#: packages/templates/packages/listPackages.html:152 +msgid "Additional" +msgstr "附加" + +#: packages/templates/packages/modifyPackage.html:3 +msgid "Modify Package - CyberPanel" +msgstr "修改套餐 - CyberPanel" + +#: packages/templates/packages/modifyPackage.html:117 +msgid "Cannot fetch package details. Error message:" +msgstr "无法获取套餐资料。错误信息:" + +#: packages/templates/packages/modifyPackage.html:121 +msgid "Package Details Successfully Fetched" +msgstr "套餐详情成功读取" + +#: packages/templates/packages/modifyPackage.html:125 +msgid "Successfully Modified" +msgstr "已成功修改" + +#: pluginHolder/templates/pluginHolder/plugins.html:15 +msgid "List of installed plugins on your CyberPanel." +msgstr "CyberPanel 上已安装插件的列表。" + +#: pluginHolder/templates/pluginHolder/plugins.html:31 +msgid "Version" +msgstr "版本" + +#: serverLogs/templates/serverLogs/accessLogs.html:3 +msgid "Access Logs - CyberPanel" +msgstr "访问日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/accessLogs.html:17 +msgid "Access Logs for main web server." +msgstr "主Web服务器日志。" + +#: serverLogs/templates/serverLogs/accessLogs.html:24 +#: serverLogs/templates/serverLogs/emailLogs.html:23 +#: serverLogs/templates/serverLogs/errorLogs.html:21 +#: serverLogs/templates/serverLogs/ftplogs.html:21 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 +msgid "Last 50 Lines" +msgstr "最后50行" + +#: serverLogs/templates/serverLogs/accessLogs.html:41 +#: serverLogs/templates/serverLogs/emailLogs.html:42 +#: serverLogs/templates/serverLogs/errorLogs.html:38 +#: serverLogs/templates/serverLogs/ftplogs.html:38 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 +msgid "Clear Logs" +msgstr "清除日志" + +#: serverLogs/templates/serverLogs/accessLogs.html:47 +#: serverLogs/templates/serverLogs/emailLogs.html:49 +#: serverLogs/templates/serverLogs/errorLogs.html:45 +#: serverLogs/templates/serverLogs/ftplogs.html:44 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 +msgid "Last 50 Lines Fetched" +msgstr "成功获取最后50行" + +#: serverLogs/templates/serverLogs/accessLogs.html:52 +#: serverLogs/templates/serverLogs/emailLogs.html:54 +#: serverLogs/templates/serverLogs/errorLogs.html:50 +#: serverLogs/templates/serverLogs/ftplogs.html:49 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 +msgid "Could not fetch logs. Use the command line to view the log file." +msgstr "无法获取日志。请使用命令行模式查看日志文件。" + +#: serverLogs/templates/serverLogs/emailLogs.html:3 +#: serverLogs/templates/serverLogs/errorLogs.html:3 +msgid "Error Logs - CyberPanel" +msgstr "错误日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/emailLogs.html:15 +msgid "Email Logs for main web server." +msgstr "主服务器邮箱日志。" + +#: serverLogs/templates/serverLogs/errorLogs.html:14 +msgid "Error Logs for main web server." +msgstr "主服务器错误日志。" + +#: serverLogs/templates/serverLogs/ftplogs.html:3 +msgid "FTP Logs - CyberPanel" +msgstr "FTP日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/ftplogs.html:14 +msgid "FTP Logs for main web server." +msgstr "主服务器FTP日志。" + +#: serverLogs/templates/serverLogs/index.html:3 +msgid "Server Logs - CyberPanel" +msgstr "服务器日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/index.html:13 +msgid "Server Logs" +msgstr "服务器日志" + +#: serverLogs/templates/serverLogs/index.html:14 +msgid "" +"These are the logs from main server, to see logs for your website navigate " +"to: Websites -> List Websites -> Select Website -> View Logs." +msgstr "" +"此为主服务器日志,要查看网站日志请前往 网站 -> 网站列表 -> 选择网站 -> 查看日" +"志。" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 +msgid "ModSecurity Audit Logs - CyberPanel" +msgstr "ModSecurity 审核日志 - CyberPanel" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 +msgid "ModSecurity Audit logs" +msgstr "ModSecurity 审核日志" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 +msgid "CyberPanel Main Log File - CyberPanel" +msgstr "Cyberpanel主日志 - CyberPanel" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 +msgid "" +"This log file corresponds to errors generated by CyberPanel for your domain " +"errors log you can look into /home/domain/logs." +msgstr "" +"此日志是CyberPanel为您的域名记录的错误,您可以在/home/domain/logs查看。" + +#: serverStatus/templates/serverStatus/index.html:3 +msgid "Server Status - CyberPanel" +msgstr "服务器状态 - CyberPanel" + +#: serverStatus/templates/serverStatus/index.html:14 +msgid "View LiteSpeed status and log files." +msgstr "查看LiteSpeed状态与日志。" + +#: serverStatus/templates/serverStatus/index.html:41 +msgid "CyberPanel Main Log" +msgstr "CyberPanel主日志" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:3 +msgid "LiteSpeed Status - CyberPanel" +msgstr "LiteSpeed状态 - CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:14 +#: serverStatus/templates/serverStatus/litespeedStatus.html:221 +msgid "LiteSpeed Status:" +msgstr "LiteSpeed状态:" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:222 +msgid "" +"On this page you can get information regarding your LiteSpeed processes." +msgstr "此页面可以查看LiteSpeed进程信息。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:30 +#: serverStatus/templates/serverStatus/litespeedStatus.html:254 +msgid "LiteSpeed Processes" +msgstr "LiteSpeed进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:37 +#: serverStatus/templates/serverStatus/litespeedStatus.html:261 +msgid "Process ID" +msgstr "进程ID" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:49 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 +msgid "Main Process" +msgstr "主进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:52 +#: serverStatus/templates/serverStatus/litespeedStatus.html:276 +msgid "lscgid Process" +msgstr "lscgid进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:55 +#: serverStatus/templates/serverStatus/litespeedStatus.html:279 +msgid "Worker Process" +msgstr "工作进程" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:291 +msgid "Reboot Litespeed" +msgstr "重启LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:73 +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +msgid "Stop LiteSpeed" +msgstr "停止LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:87 +#: serverStatus/templates/serverStatus/litespeedStatus.html:310 +msgid "Error Occurred. See CyberPanel main log file." +msgstr "发生错误, 请查看CyberPanel主日志。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:92 +#: serverStatus/templates/serverStatus/litespeedStatus.html:315 +msgid "Could not connect to server." +msgstr "无法连接到服务器。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:138 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "切换到LiteSpeed企业 Web 服务器" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:149 +msgid "LiteSpeed Serial No. (License Key)" +msgstr "LiteSpeed 序列号(许可证密钥)" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:160 +msgid "Switch" +msgstr "开关" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Get 15 Days Trial" +msgstr "获得15天试用期" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:175 +msgid "" +"Note: If you select 15 days trial there is no need to enter the serial key, " +"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " +"have not used trial already." +msgstr "" +"注意:如果您选择 15 天试用版,则无需输入串行密钥,CyberPanel 将自动获取 15 天" +"试用密钥。确保此服务器尚未使用过试用版。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:193 +msgid "With great wisdom comes great responsibility." +msgstr "能力越大,责任越大。" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:329 +msgid "License Manager" +msgstr "许可证管理器" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:336 +#: serverStatus/templates/serverStatus/litespeedStatus.html:340 +#: serverStatus/templates/serverStatus/litespeedStatus.html:341 +msgid "License Status" +msgstr "许可证状态" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#: serverStatus/templates/serverStatus/litespeedStatus.html:350 +#: serverStatus/templates/serverStatus/litespeedStatus.html:351 +msgid "Change License" +msgstr "更改许可证" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:378 +msgid "New key" +msgstr "新密钥" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:388 +msgid "Change Key" +msgstr "更改密钥" + +#: serverStatus/templates/serverStatus/services.html:3 +msgid "Services - CyberPanel" +msgstr "服务 - CyberPanel" + +#: serverStatus/templates/serverStatus/services.html:25 +msgid "Show stats for services and actions (Start, Stop, Restart)" +msgstr "显示服务状态和操作(开始、停止、重新启动)" + +#: serverStatus/templates/serverStatus/topProcesses.html:3 +msgid "Top Processes - CyberPanel" +msgstr "主进程 - CyberPanel" + +#: serverStatus/templates/serverStatus/topProcesses.html:16 +msgid "List of top processes on your server. (Refresh every 3 seconds)" +msgstr "你服务器上的顶级进程列表。(每3秒刷新一次)" + +#: serverStatus/templates/serverStatus/topProcesses.html:27 +msgid "Cores" +msgstr "核心" + +#: serverStatus/templates/serverStatus/topProcesses.html:28 +msgid "Model Name" +msgstr "模型名称" + +#: serverStatus/templates/serverStatus/topProcesses.html:29 +msgid "CPU Mhz" +msgstr "CPU Mhz" + +#: serverStatus/templates/serverStatus/topProcesses.html:30 +msgid "Cache Size" +msgstr "缓存的大小" + +#: serverStatus/templates/serverStatus/topProcesses.html:51 +msgid "Processes" +msgstr "流程" + +#: serverStatus/templates/serverStatus/topProcesses.html:53 +msgid "Sleeping" +msgstr "休眠" + +#: serverStatus/templates/serverStatus/topProcesses.html:54 +msgid "Stopped" +msgstr "停止" + +#: serverStatus/templates/serverStatus/topProcesses.html:55 +msgid "Zombie" +msgstr "僵尸进程" + +#: serverStatus/templates/serverStatus/topProcesses.html:80 +msgid "CPU Load" +msgstr "CPU负载" + +#: serverStatus/templates/serverStatus/topProcesses.html:81 +msgid "1 Min" +msgstr "1分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:82 +msgid "5 Min" +msgstr "5分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:83 +msgid "15 Min" +msgstr "15分钟" + +#: serverStatus/templates/serverStatus/topProcesses.html:104 +msgid "I/O Wait" +msgstr "I/O等待" + +#: serverStatus/templates/serverStatus/topProcesses.html:105 +msgid "Idle Time" +msgstr "空闲时间" + +#: serverStatus/templates/serverStatus/topProcesses.html:106 +msgid "HW Interrupts" +msgstr "HW中断" + +#: serverStatus/templates/serverStatus/topProcesses.html:107 +msgid "Softirqs" +msgstr "软件中断" + +#: serverStatus/templates/serverStatus/topProcesses.html:132 +#: serverStatus/templates/serverStatus/topProcesses.html:156 +msgid "Free" +msgstr "免费" + +#: serverStatus/templates/serverStatus/topProcesses.html:133 +#: serverStatus/templates/serverStatus/topProcesses.html:157 +msgid "Used" +msgstr "已使用" + +#: serverStatus/templates/serverStatus/topProcesses.html:134 +#: serverStatus/templates/serverStatus/topProcesses.html:158 +msgid "buff/cache" +msgstr "缓冲/缓存" + +#: serverStatus/templates/serverStatus/topProcesses.html:155 +msgid "SWAP" +msgstr "SWAP" + +#: serverStatus/templates/serverStatus/topProcesses.html:192 +msgid "PID" +msgstr "PID" + +#: serverStatus/templates/serverStatus/topProcesses.html:194 +msgid "VIRT" +msgstr "VIRT" + +#: serverStatus/templates/serverStatus/topProcesses.html:195 +msgid "RES" +msgstr "RES" + +#: serverStatus/templates/serverStatus/topProcesses.html:196 +msgid "State" +msgstr "状态" + +#: serverStatus/templates/serverStatus/topProcesses.html:197 +#, python-format +msgid "%%CPU" +msgstr "%%CPU" + +#: serverStatus/templates/serverStatus/topProcesses.html:198 +#, python-format +msgid "%%MEM" +msgstr "%%MEM" + +#: serverStatus/templates/serverStatus/topProcesses.html:199 +msgid "Time" +msgstr "时间" + +#: serverStatus/templates/serverStatus/topProcesses.html:200 +#: websiteFunctions/templates/websiteFunctions/listCron.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:126 +msgid "Command" +msgstr "命令" + +#: tuning/templates/tuning/index.html:3 +msgid "Server Tuning - CyberPanel" +msgstr "服务器设置 - CyberPanel" + +#: tuning/templates/tuning/index.html:12 +msgid "Server Tuning" +msgstr "服务器设置" + +#: tuning/templates/tuning/index.html:13 +msgid "" +"On this page you can set runing parameters for your webserver depending on " +"your hardware." +msgstr "此页面您可以根据您的服务器硬件调整Web服务器参数。" + +#: tuning/templates/tuning/liteSpeedTuning.html:3 +msgid "LiteSpeed Tuning - CyberPanel" +msgstr "LiteSpeed设置 - CyberPanel" + +#: tuning/templates/tuning/liteSpeedTuning.html:13 +msgid "" +"You can use this page to tweak your server according to your website " +"requirments." +msgstr "此页面您可以根据您的网站要求调整服务器参数。" + +#: tuning/templates/tuning/liteSpeedTuning.html:18 +msgid "Tuning Details" +msgstr "设置详情" + +#: tuning/templates/tuning/liteSpeedTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:192 +msgid "Max Connections" +msgstr "最大连接数" + +#: tuning/templates/tuning/liteSpeedTuning.html:36 +msgid "Max SSL Connections" +msgstr "最大SSL连接数" + +#: tuning/templates/tuning/liteSpeedTuning.html:44 +msgid "Connection Timeout" +msgstr "连接超时" + +#: tuning/templates/tuning/liteSpeedTuning.html:52 +msgid "Keep Alive Timeout" +msgstr "Kepp Alive超时" + +#: tuning/templates/tuning/liteSpeedTuning.html:60 +msgid "Cache Size in memory" +msgstr "内存缓存大小" + +#: tuning/templates/tuning/liteSpeedTuning.html:67 +msgid "Enable GZIP Compression" +msgstr "开启GZIP压缩" + +#: tuning/templates/tuning/liteSpeedTuning.html:74 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:237 +msgid "Currently:" +msgstr "当前:" + +#: tuning/templates/tuning/liteSpeedTuning.html:82 +msgid "Tune Web Server" +msgstr "调整Web服务器" + +#: tuning/templates/tuning/liteSpeedTuning.html:92 +msgid "" +"Cannot fetch Current Value, but you can still submit new changes, error " +"reported from server:" +msgstr "" +"无法读取当前参数, 但是您可以继续提交修改,服务器错误消息: reported from " +"server:" + +#: tuning/templates/tuning/liteSpeedTuning.html:96 +msgid "Cannot save details, Error Message: " +msgstr "无法保存设置, 错误信息: " + +#: tuning/templates/tuning/liteSpeedTuning.html:101 +msgid "Web Server Successfully tuned." +msgstr "Web服务器设置成功保存。" + +#: tuning/templates/tuning/phpTuning.html:3 +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:45 +#: tuning/templates/tuning/phpTuning.html:185 +msgid "Initial Request Timeout (secs)" +msgstr "初始化请求超时 (秒)" + +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:200 +msgid "Memory Soft Limit" +msgstr "内存软限制" + +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:207 +msgid "Memory Hard Limit" +msgstr "内存硬限制" + +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:215 +msgid "Process Soft Limit" +msgstr "进程软限制" + +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:222 +msgid "Process Hard Limit" +msgstr "进程硬限制" + +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:230 +msgid "Persistent Connection" +msgstr "数据库持久连接" + +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:246 +msgid "Tune PHP" +msgstr "设置PHP" + +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:259 +msgid "Cannot tune. Error message:" +msgstr "无法保存设置, 错误信息:" + +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:264 +msgid "Details Successfully fetched." +msgstr "详情读取成功。" + +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:268 +msgid "PHP for " +msgstr "PHP对 " + +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:269 +msgid "Successfully tuned." +msgstr "已成功保存。" + +#: userManagment/templates/userManagment/apiAccess.html:3 +msgid "API Access for User - CyberPanel" +msgstr "用户 API 权限 - CyberPanel" + +#: userManagment/templates/userManagment/apiAccess.html:14 +msgid "" +"Allow/Remove API access for account, this effects Cloud Platform Connection " +"and Third Party Modules." +msgstr "允许/删除帐户的 API 权限将会影响云平台连接和第三方模块。" + +#: userManagment/templates/userManagment/apiAccess.html:29 +#: userManagment/templates/userManagment/changeUserACL.html:28 +#: userManagment/templates/userManagment/deleteUser.html:29 +#: userManagment/templates/userManagment/resellerCenter.html:25 +msgid "Select User" +msgstr "选择用户" + +#: userManagment/templates/userManagment/apiAccess.html:40 +msgid "Access" +msgstr "访问" + +#: userManagment/templates/userManagment/changeUserACL.html:3 +msgid "Change User ACL - CyberPanel" +msgstr "更改用户访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/changeUserACL.html:12 +#: userManagment/templates/userManagment/changeUserACL.html:19 +#: userManagment/templates/userManagment/createACL.html:100 +#: userManagment/templates/userManagment/modifyACL.html:104 +msgid "Change User ACL" +msgstr "更改用户访问控制策略" + +#: userManagment/templates/userManagment/changeUserACL.html:13 +msgid "This page can be used to change ACL for CyberPanel users." +msgstr "此页面可用于更改 CyberPanel 用户的访问控制策略。" + +#: userManagment/templates/userManagment/changeUserACL.html:39 +#: userManagment/templates/userManagment/createUser.html:56 +#: userManagment/templates/userManagment/deleteACL.html:26 +#: userManagment/templates/userManagment/listUsers.html:99 +#: userManagment/templates/userManagment/modifyACL.html:28 +msgid "Select ACL" +msgstr "选择访问控制策略" + +#: userManagment/templates/userManagment/changeUserACL.html:55 +msgid "Change ACL" +msgstr "修改访问控制策略" + +#: userManagment/templates/userManagment/createACL.html:3 +msgid "Create new ACL - CyberPanel" +msgstr "创建新访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/createACL.html:13 +msgid "" +"Create new Access Control defination, that specifies what CyberPanel users " +"can do." +msgstr "创建新的权限控制自定义,指定 CyberPanel 用户可以做什么。" + +#: userManagment/templates/userManagment/createACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:19 +msgid "ACL Details" +msgstr "访问控制策略细节" + +#: userManagment/templates/userManagment/createACL.html:26 +msgid "ACL Name" +msgstr "访问控制策略名称" + +#: userManagment/templates/userManagment/createACL.html:40 +#: userManagment/templates/userManagment/modifyACL.html:44 +msgid "Make Admin" +msgstr "新建管理员" + +#: userManagment/templates/userManagment/createACL.html:59 +#: userManagment/templates/userManagment/modifyACL.html:63 +msgid "User Management" +msgstr "用户管理" + +#: userManagment/templates/userManagment/createACL.html:91 +#: userManagment/templates/userManagment/deleteUser.html:13 +#: userManagment/templates/userManagment/deleteUser.html:20 +#: userManagment/templates/userManagment/deleteUser.html:42 +#: userManagment/templates/userManagment/index.html:78 +#: userManagment/templates/userManagment/index.html:81 +#: userManagment/templates/userManagment/modifyACL.html:95 +msgid "Delete User" +msgstr "删除用户" + +#: userManagment/templates/userManagment/createACL.html:107 +#: userManagment/templates/userManagment/modifyACL.html:111 +msgid "Website Management" +msgstr "网站管理" + +#: userManagment/templates/userManagment/createACL.html:130 +#: userManagment/templates/userManagment/modifyACL.html:134 +msgid "Suspend Website" +msgstr "暂停网站" + +#: userManagment/templates/userManagment/createACL.html:147 +#: userManagment/templates/userManagment/modifyACL.html:151 +msgid "Package Management" +msgstr "套餐管理" + +#: userManagment/templates/userManagment/createACL.html:186 +#: userManagment/templates/userManagment/modifyACL.html:190 +msgid "Database Management" +msgstr "数据库管理" + +#: userManagment/templates/userManagment/createACL.html:216 +#: userManagment/templates/userManagment/modifyACL.html:220 +msgid "DNS Management" +msgstr "DNS 管理" + +#: userManagment/templates/userManagment/createACL.html:249 +#: userManagment/templates/userManagment/modifyACL.html:253 +msgid "Add/Delete" +msgstr "添加/删除" + +#: userManagment/templates/userManagment/createACL.html:257 +#: userManagment/templates/userManagment/modifyACL.html:261 +msgid "Email Management" +msgstr "邮箱管理" + +#: userManagment/templates/userManagment/createACL.html:317 +#: userManagment/templates/userManagment/modifyACL.html:321 +msgid "FTP Management" +msgstr "FTP管理" + +#: userManagment/templates/userManagment/createACL.html:347 +#: userManagment/templates/userManagment/modifyACL.html:351 +msgid "Backup Management" +msgstr "备份管理" + +#: userManagment/templates/userManagment/createACL.html:399 +#: userManagment/templates/userManagment/modifyACL.html:403 +msgid "SSL Management" +msgstr "SSL 证书管理" + +#: userManagment/templates/userManagment/createACL.html:432 +msgid "Create ACL" +msgstr "创建访问控制策略" + +#: userManagment/templates/userManagment/createUser.html:3 +msgid "Create New User - CyberPanel" +msgstr "创建新用户 - CyberPanel" + +#: userManagment/templates/userManagment/createUser.html:13 +msgid "Create root, reseller or normal users on this page." +msgstr "在此页面创建管理员,分销商以及普通用户。" + +#: userManagment/templates/userManagment/createUser.html:19 +msgid "User Details" +msgstr "用户详情" + +#: userManagment/templates/userManagment/createUser.html:25 +#: userManagment/templates/userManagment/modifyUser.html:39 +#: userManagment/templates/userManagment/userProfile.html:24 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 +msgid "First Name" +msgstr "名" + +#: userManagment/templates/userManagment/createUser.html:31 +msgid "First Name should contain only alphabetic characters." +msgstr "名中只能包含字母。" + +#: userManagment/templates/userManagment/createUser.html:35 +#: userManagment/templates/userManagment/modifyUser.html:46 +#: userManagment/templates/userManagment/userProfile.html:29 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 +msgid "Last Name" +msgstr "姓" + +#: userManagment/templates/userManagment/createUser.html:41 +msgid "Last Name should contain only alphabetic characters." +msgstr "姓中只能包含字母。" + +#: userManagment/templates/userManagment/createUser.html:50 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 +msgid "Invalid Email" +msgstr "无效的邮箱" + +#: userManagment/templates/userManagment/createUser.html:68 +#: userManagment/templates/userManagment/listUsers.html:33 +#: userManagment/templates/userManagment/resellerCenter.html:48 +#: userManagment/templates/userManagment/userProfile.html:53 +msgid "Websites Limit" +msgstr "网站数量限制" + +#: userManagment/templates/userManagment/createUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:85 +msgid "Security Level" +msgstr "安全级别" + +#: userManagment/templates/userManagment/createUser.html:120 +#: userManagment/templates/userManagment/index.html:49 +#: userManagment/templates/userManagment/index.html:52 +msgid "Create User" +msgstr "创建用户" + +#: userManagment/templates/userManagment/createUser.html:128 +#: userManagment/templates/userManagment/modifyUser.html:112 +msgid "Account with username:" +msgstr "用户名为:" + +#: userManagment/templates/userManagment/createUser.html:133 +msgid "Cannot create user. Error message:" +msgstr "无法创建用户, 错误信息:" + +#: userManagment/templates/userManagment/createUser.html:141 +msgid "" +"Length of first and last name combined should be less than or equal to 20 " +"characters" +msgstr "姓名总和的长度应该小于或等于20" + +#: userManagment/templates/userManagment/deleteACL.html:3 +msgid "Delete ACL - CyberPanel" +msgstr "删除访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/deleteACL.html:13 +msgid "This page can be used to delete ACL." +msgstr "此页面可用于删除访问控制策略。" + +#: userManagment/templates/userManagment/deleteUser.html:3 +msgid "Delete User - CyberPanel" +msgstr "删除用户 - CyberPanel" + +#: userManagment/templates/userManagment/deleteUser.html:14 +msgid "Websites owned by this user will automatically transfer to the root." +msgstr "此用户拥有的网站将自动移动到根目录。" + +#: userManagment/templates/userManagment/deleteUser.html:61 +msgid "Cannot delete user. Error message:" +msgstr "无法删除用户, 错误信息:" + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid "User " +msgstr "用户 " + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid " Successfully Deleted" +msgstr " 已成功删除" + +#: userManagment/templates/userManagment/index.html:3 +msgid "User Functions - CyberPanel" +msgstr "用户功能 - CyberPanel" + +#: userManagment/templates/userManagment/index.html:14 +msgid "Create, edit and delete users on this page." +msgstr "在此页面创建, 编辑和删除用户。" + +#: userManagment/templates/userManagment/listUsers.html:3 +msgid "List Users - CyberPanel" +msgstr "列出用户 - CyberPanel" + +#: userManagment/templates/userManagment/listUsers.html:14 +msgid "List Users that you own." +msgstr "列出你拥有的用户。" + +#: userManagment/templates/userManagment/listUsers.html:35 +msgid "ACL" +msgstr "访问控制策略" + +#: userManagment/templates/userManagment/listUsers.html:84 +#: userManagment/templates/userManagment/resellerCenter.html:37 +msgid "New Owner" +msgstr "新拥有者" + +#: userManagment/templates/userManagment/modifyACL.html:3 +msgid "Modify an ACL - CyberPanel" +msgstr "修改一个访问控制策略 - CyberPanel" + +#: userManagment/templates/userManagment/modifyACL.html:12 +msgid "Modify an ACL" +msgstr "修改一个ACL" + +#: userManagment/templates/userManagment/modifyACL.html:13 +msgid "On this page you can modify an existing ACL." +msgstr "在此页上,您可以修改现有的访问控制策略。" + +#: userManagment/templates/userManagment/modifyUser.html:3 +msgid "Modify User - CyberPanel" +msgstr "编辑用户 - CyberPanel" + +#: userManagment/templates/userManagment/modifyUser.html:13 +msgid "Modify existing user settings on this page." +msgstr "在此页面编辑已存在用户。" + +#: userManagment/templates/userManagment/modifyUser.html:27 +msgid "Select Account" +msgstr "选择用户" + +#: userManagment/templates/userManagment/modifyUser.html:113 +msgid " is successfully modified." +msgstr " 已成功修改。" + +#: userManagment/templates/userManagment/modifyUser.html:117 +msgid "Cannot modify user. Error message:" +msgstr "无法编辑用户, 错误信息:" + +#: userManagment/templates/userManagment/modifyUser.html:130 +msgid "Details fetched." +msgstr "详情已更新。" + +#: userManagment/templates/userManagment/resellerCenter.html:3 +msgid "Reseller Center - CyberPanel" +msgstr "分销商中心 - CyberPanel" + +#: userManagment/templates/userManagment/resellerCenter.html:13 +msgid "Change owner of users and change websites limits." +msgstr "改变用户的所有者和改变网站的限制。" + +#: userManagment/templates/userManagment/userProfile.html:3 +msgid "Account Details - CyberPanel" +msgstr "用户详情 - CyberPanel" + +#: userManagment/templates/userManagment/userProfile.html:12 +#: userManagment/templates/userManagment/userProfile.html:18 +msgid "Account Details" +msgstr "用户详情" + +#: userManagment/templates/userManagment/userProfile.html:13 +msgid "List the account details for the currently logged in user." +msgstr "查看当前用户详情。" + +#: userManagment/templates/userManagment/userProfile.html:48 +msgid "Account ACL" +msgstr "账户访问控制策略" + +#: userManagment/templates/userManagment/userProfile.html:55 +msgid "( 0 = Unlimited )" +msgstr "(0为无限制 )" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 +msgid "Application Installer - CyberPanel" +msgstr "应用程序安装程序 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 +msgid "One-click application install." +msgstr "一键应用安装。" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 +msgid "Install Joomla with(?) LSCache" +msgstr "安装 Joomla 伴随(?) LSCache" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 +msgid "Create New Website - CyberPanel" +msgstr "创建新网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/index.html:14 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 +msgid "" +"On this page you can launch, list, modify and delete websites from your " +"server." +msgstr "在此页面可以创建,查看,修改和删除您服务器上的网站。" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 +msgid "Website Details" +msgstr "网站详情" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 +msgid "Do not enter WWW, it will be auto created!" +msgstr "不要使用WWW,这将是自动创建的!" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 +msgid "Delete Website - CyberPanel" +msgstr "删除网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 +msgid "" +"This page can be used to delete website, once deleted it can not be " +"recovered." +msgstr "在此页面可以删除网站,此操作不可逆。" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 +msgid "Cannot delete website, Error message: " +msgstr "无法删除网站, 错误信息: " + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Successfully Deleted." +msgstr "成功删除。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 +msgid "Domain Aliases - CyberPanel" +msgstr "域别名 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 +msgid "Domain Aliases" +msgstr "域名别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 +msgid "" +"With Domain Aliases you can visit example.com using example.net and view the " +"same content." +msgstr "使用域别名,您可以使用example.net访问与example.com相同的内容。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 +msgid "Create Alias" +msgstr "创建别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 +msgid "Master Domain" +msgstr "主域名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 +msgid "Alias" +msgstr "别名" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 +msgid "File System Path" +msgstr "文件系统路径" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 +msgid "Domain Aliases not found." +msgstr "没有找到域名别名。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 +msgid "Alias Domain" +msgstr "别名域" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 +msgid "" +"For SSL to work DNS of domain should point to server, otherwise self signed " +"SSL will be issued, you can add your own SSL later." +msgstr "" +"为确定SSL证书的正确签发,域名必须指向此服务器,否则将会签发自签名证书 您可以在" +"之后添加自有证书或重新申请签发Let's Encrypt证书。" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 +msgid "Operation failed. Error message:" +msgstr "操作失败。错误信息:" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 +msgid "Alias successfully created. Refreshing page in 3 seconds..." +msgstr "已成功创建别名。将在 3 秒内刷新页面..." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 +msgid "Operation Successfull." +msgstr "操作成功。" + +#: websiteFunctions/templates/websiteFunctions/index.html:3 +msgid "Website Functions - CyberPanel" +msgstr "网站功能 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/index.html:33 +#: websiteFunctions/templates/websiteFunctions/index.html:57 +msgid "List Website" +msgstr "网站列表" + +#: websiteFunctions/templates/websiteFunctions/index.html:79 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 +msgid "Suspend/Unsuspend Website" +msgstr "禁用/启用网站" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 +msgid "Install Joomla - CyberPanel" +msgstr "安装 Joomla - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 +msgid "Install Joomla" +msgstr "安装Joomla" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 +msgid "One-click Joomla Install!" +msgstr "一键安装 Joomla!" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 +msgid "Installation Details" +msgstr "安装详情" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 +msgid "Site Name" +msgstr "站点名称" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 +msgid "Login User" +msgstr "登录用户" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 +msgid "Login Password" +msgstr "登录密码" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 +msgid "Database Prefix" +msgstr "数据库前缀" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 +msgid "Installation failed. Error message:" +msgstr "安装失败, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 +msgid "Installation successful. Visit:" +msgstr "安装成功。访问:" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 +msgid "Install Magento - CyberPanel" +msgstr "安装 Magento - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 +#: websiteFunctions/templates/websiteFunctions/website.html:1029 +#: websiteFunctions/templates/websiteFunctions/website.html:1033 +msgid "Install Magento" +msgstr "安装 Magento" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 +msgid "One-click Magento Install!" +msgstr "一键安装 Magento!" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 +msgid "Admin Username" +msgstr "管理员用户名" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 +msgid "" +"does not work on OpenLiteSpeed. It is highly recommended to use this " +"installer with LiteSpeed Enterprise only." +msgstr "" +"在 OpenLiteSpeed 上不工作。强烈建议仅将此安装程序与 LiteSpeed 企业版一起使" +"用。" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 +msgid "Install PrestaShop - CyberPanel" +msgstr "安装 PrestaShop - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 +msgid "Install PrestaShop" +msgstr "安装 PrestaShop" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 +msgid "One-click PrestaShop Install!" +msgstr "一键安装 PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 +msgid "Shop Name" +msgstr "店铺名称" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 +msgid "Install WordPress - CyberPanel" +msgstr "安装 WordPress - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 +msgid "Install WordPress" +msgstr "安装 WordPress" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 +msgid "Install WordPress with LSCache." +msgstr "安装 Wordpress 和 LS Cache。" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 +msgid "Blog Title" +msgstr "博客标题" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 +msgid "Copy/Sync to Master" +msgstr "复制/同步到Master" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 +#: websiteFunctions/templates/websiteFunctions/website.html:990 +msgid "WP + LSCache" +msgstr "wordpress + LSCache" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 +#: websiteFunctions/templates/websiteFunctions/website.html:1034 +msgid "Magento" +msgstr "马根托" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:3 +msgid "Cron Management - CyberPanel" +msgstr "Cron 管理器 - Cyberpanel" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +#: websiteFunctions/templates/websiteFunctions/listCron.html:19 +msgid "Cron Management" +msgstr "Cron 管理器" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +msgid "Cron Docs" +msgstr "Cron文档" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:13 +msgid "Create, edit or delete your cron jobs from this page." +msgstr "从这个页面创建、编辑或删除你的cron作业。" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:37 +msgid "Add Cron" +msgstr "添加 Cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:46 +#: websiteFunctions/templates/websiteFunctions/listCron.html:95 +msgid "Minute" +msgstr "分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:47 +#: websiteFunctions/templates/websiteFunctions/listCron.html:101 +msgid "Hour" +msgstr "小时" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:48 +msgid "Day of Month" +msgstr "天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:49 +#: websiteFunctions/templates/websiteFunctions/listCron.html:113 +msgid "Month" +msgstr "月" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:50 +msgid "Day of Week" +msgstr "星期" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:79 +msgid "Pre defined" +msgstr "预定义" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:82 +msgid "Every minute" +msgstr "每分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:83 +msgid "Every 5 minutes" +msgstr "每5分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:84 +msgid "Every 30 minutes" +msgstr "每30分钟" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:85 +msgid "Every hour" +msgstr "每小时" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:86 +msgid "Every day" +msgstr "每天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:87 +msgid "Every week" +msgstr "每周" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:88 +msgid "Every month" +msgstr "每月" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:89 +msgid "Every year" +msgstr "每年" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:107 +msgid "Day of month" +msgstr "天" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:119 +msgid "Day of week" +msgstr "星期" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:135 +msgid "Save edits" +msgstr "保存编辑" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:142 +msgid "Add cron" +msgstr "添加cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:152 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 +msgid "Cannot fetch website details. Error message:" +msgstr "无法更新网站详情, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:156 +msgid "Unable to add/save Cron. Error message:" +msgstr "无法添加/保存 Cron。错误消息:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:159 +msgid "Cron job saved" +msgstr "定时任务以保存" + +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 +msgid "Websites Hosted - CyberPanel" +msgstr "当前已创建的网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 +msgid "Modify Website - CyberPanel" +msgstr "修改网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 +msgid "Current Package:" +msgstr "当前套餐:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 +msgid "Current Owner:" +msgstr "当前拥有者:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 +msgid "Cannot modify website. Error message:" +msgstr "无法修改网站, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 +msgid "Website Details Successfully fetched" +msgstr "网站详情已成功更新" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 +msgid "Git Management - CyberPanel" +msgstr "Git 管理器 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 +msgid "Git Management" +msgstr "Git 管理器" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 +msgid "Attach git to your websites." +msgstr "将Git附加到您的网站。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 +msgid "Attach Git" +msgstr "附加Git" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 +msgid "Providers" +msgstr "提供者" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 +msgid "Deployment Key" +msgstr "部署密钥" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 +msgid "" +"Before attaching repo to your website, make sure to place your Development " +"key in your GIT repository." +msgstr "在将存储库附加到你的网站之前,请确保已将开发密钥放在 GIT 存储库中。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 +msgid "Repository Name" +msgstr "库名称" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 +msgid "Branch" +msgstr "分支" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 +msgid "Attach Now" +msgstr "现在附加" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 +msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" +msgstr "GIT 已成功附加,3 秒内刷新页面... 访问:" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 +msgid "Change Branch" +msgstr "更改分支" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 +msgid "Detach Repo" +msgstr "脱离Repo" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 +msgid "Webhook URL" +msgstr "Webhook URL" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 +msgid "" +"Add this URL to Webhooks section of your Git respository, if you've used " +"hostname SSL then replace IP with your hostname. Otherwise use IP and " +"disable SSL check while configuring webhook. This will initiate a pull from " +"your resposity as soon as you commit some changes." +msgstr "" +"将此 URL 添加到 Git 存储库的 Webhook 部分,如果您已使用主机名 SSL,则将 IP 替" +"换为你的主机名。否则,在配置 webhook 时使用 IP 并禁用 SSL 检查。一旦提交某些" +"更改,这将启动从您的存储库中拉取。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 +msgid "Repo successfully detached, refreshing in 3 seconds.." +msgstr "Repo成功分离, 将在 3 秒内刷新。" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 +msgid "Branch successfully changed." +msgstr "分支改变成功。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 +msgid "Set up Staging Enviroment - CyberPanel" +msgstr "设置暂存环境 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 +msgid "Set up Staging Enviroment" +msgstr "设置临时环境" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 +msgid "Set up staging enviroment for " +msgstr "设置临时环境给 " + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +msgid "" +". Any domain that you will choose here will be created as child-domain for " +"this master site." +msgstr "。您将在这里选择的任何域都将创建为此主站点的子域。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 +msgid "Domain that you will enter below will be created as child-domain to " +msgstr "您将在下面输入的域将被创建为此域名的子域:" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 +msgid "." +msgstr "。" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 +msgid "Start Cloning" +msgstr "开始克隆" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 +msgid "SSH and CageFS - CyberPanel" +msgstr "SSH 和 CageFS - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 +msgid "SSH Access" +msgstr "SSH 权限" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid "Set up SSH access and enable/disable CageFS for " +msgstr "设置 SSH 权限并启用/禁用 CageFS 给 " + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid " CageFS require CloudLinux OS." +msgstr " CageFS 要求 CloudLinux操作系统。" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 +msgid "Set up SSH access for " +msgstr "为此域名设置SSH访问:" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid "SSH user for " +msgstr "SSH 用户给 " + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid " is " +msgstr "是" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 +msgid "Suspend/Unsuspend Website - CyberPanel" +msgstr "禁用/启用网站 - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 +msgid "This page can be used to suspend/unsuspend website." +msgstr "此页面可以禁用/启用网站." + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 +msgid "Suspend" +msgstr "禁用" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 +msgid "Un-Suspend" +msgstr "启用" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 +msgid "Cannot suspend website, Error message: " +msgstr "无法禁用网站, 错误信息: " + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 +msgid "Cannot unsuspend website. Error message:" +msgstr "无法启用网站, 错误信息:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Website " +msgstr "网站 " + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Successfully " +msgstr "成功 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 +msgid "Sync to Master - CyberPanel" +msgstr "同步到 Master - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 +msgid "Sync your site to Master" +msgstr "将您的网站同步到Master" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid "Right now you can only sync your child domains to master domains." +msgstr "目前,您只能将您的子域同步到主域。" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid " will be synced to " +msgstr " 将被同步到:" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "Sync " +msgstr "同步 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "to " +msgstr "到 " + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 +msgid "What to Sync" +msgstr "同步内容" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 +msgid "Start Syncing" +msgstr "开始同步" + +#: websiteFunctions/templates/websiteFunctions/website.html:29 +msgid "Clone/Staging" +msgstr "克隆/Staging" + +#: websiteFunctions/templates/websiteFunctions/website.html:30 +msgid "Set up SSH Access" +msgstr "设置SSH访问" + +#: websiteFunctions/templates/websiteFunctions/website.html:665 +msgid "It is not required to modify rules if you are using OpenLiteSpeed." +msgstr "如果您使用的是OpenLiteSpeed,则无需修改规则。" + +#, fuzzy +#~| msgid "Last Name" +#~ msgid "List" +#~ msgstr "姓" + +#~ msgid "" +#~ "Could not fetch details, either LiteSpeed is not running or some error " +#~ "occurred, please see CyberPanel Main log file." +#~ msgstr "无法获取详情, LiteSpeed没有运行或者有错误发生 请检查CyberPnael日志." + +#, fuzzy +#~| msgid "Schedule Back up" +#~ msgid "Achedule Back up" +#~ msgstr "备份计划" + +#, fuzzy +#~| msgid "Modify User" +#~ msgid "Modify" +#~ msgstr "修改用户" + +#~ msgid "Start" +#~ msgstr "开始" + +#~ msgid "Reload" +#~ msgstr "重载" + +#~ msgid "CPU Status" +#~ msgstr "CPU使用量" + +#~ msgid "Fullscreen" +#~ msgstr "全屏模式" + +#~ msgid "System Status" +#~ msgstr "系统状态" + +#~ msgid "Update started..." +#~ msgstr "开始更新..." + +#~ msgid "Update finished..." +#~ msgstr "更新完成..." + +#~ msgid "Account Type" +#~ msgstr "用户类型" + +#~ msgid "User Accounts Limit" +#~ msgstr "用户数量限制" + +#~ msgid "Only Numbers" +#~ msgstr "仅允许数字" + +#~ msgid "Username should be lowercase alphanumeric." +#~ msgstr "用户名应当为小写字母." + +#~ msgid "Must contain one number and one special character." +#~ msgstr "必须一个数字和一个字母." + +#~ msgid "Cannot create website. Error message:" +#~ msgstr "无法创建网站, 错误信息:" + +#~ msgid "Website with domain" +#~ msgstr "网站域名" + +#~ msgid " is Successfully Created" +#~ msgstr " 已成功创建" + +#~ msgid "Installation successful. To complete the setup visit:" +#~ msgstr "安装成功, 请访问网站以完成设置:" + +#, fuzzy +#~| msgid "Password" +#~ msgid "Admin Password" +#~ msgstr "密码" + +#, fuzzy +#~| msgid "Database Name" +#~ msgid "Database prefix" +#~ msgstr "数据库名字" + +#~ msgid "Daily" +#~ msgstr "每日" + +#~ msgid "Weekly" +#~ msgstr "每周" + +#~ msgid "HTTP Statistics" +#~ msgstr "HTTP统计" + +#~ msgid "Available/Max Connections" +#~ msgstr "可用/最大连接数" + +#~ msgid "Available/Max SSL Connections" +#~ msgstr "可用/最大SSL连接数" + +#~ msgid "Requests Processing" +#~ msgstr "当前请求数" + +#~ msgid "Total Requests" +#~ msgstr "总请求数" + +#~ msgid "IPV6" +#~ msgstr "IPv6" + +#~ msgid "Normal User" +#~ msgstr "普通用户" + +#~ msgid "Edit Virtual Host Main Configurations" +#~ msgstr "编辑vHost主配置" + +#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." +#~ msgstr "配置已保存, 重启LiteSpeed以生效." + +#~ msgid "Urdu" +#~ msgstr "乌尔都语" From 31b98aee08efaa32f515912bd3f5fcd3c9ab2b6a Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sun, 27 Jun 2021 11:43:11 +0200 Subject: [PATCH 28/31] Delete django.po --- locale/rs/LC_MESSAGES/django.po | 7164 ------------------------------- 1 file changed, 7164 deletions(-) delete mode 100644 locale/rs/LC_MESSAGES/django.po diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po deleted file mode 100644 index 9d64fe9a8..000000000 --- a/locale/rs/LC_MESSAGES/django.po +++ /dev/null @@ -1,7164 +0,0 @@ -# CyberPanel Translation File. -# Copyright (C) 2017 LiteSpeedTech -# This file is distributed under the same license as the CyberPanel package. -# Stefan Pejcic , 2021. -# -#: baseTemplate/templates/baseTemplate/index.html:219 -#: baseTemplate/templates/baseTemplate/index.html:272 -#: baseTemplate/templates/baseTemplate/index.html:279 -#: baseTemplate/templates/baseTemplate/index.html:286 -#: baseTemplate/templates/baseTemplate/index.html:293 -#: baseTemplate/templates/baseTemplate/index.html:300 -#: baseTemplate/templates/baseTemplate/index.html:307 -#: emailMarketing/templates/emailMarketing/sendEmails.html:93 -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-21 19:54+0500\n" -"PO-Revision-Date: 2018-10-09 15:48+0300\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" - -#: CLManager/templates/CLManager/createPackage.html:3 -#, fuzzy -#| msgid "Create Package - CyberPanel" -msgid "Create Cloud Linux Package - CyberPanel" -msgstr "Направите Пакет - CyberPanel" - -#: CLManager/templates/CLManager/createPackage.html:9 -#, fuzzy -#| msgid "Create Package" -msgid "Create CloudLinux Package." -msgstr "Направи Пакет" - -#: CLManager/templates/CLManager/createPackage.html:10 -msgid "" -"Each CloudLinux package have one associated (owner) CyberPanel package. " -"During website creation associated CloudLinux package will be assigned to " -"website user." -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:15 -#: CLManager/templates/CLManager/createPackage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:435 -#: baseTemplate/templates/baseTemplate/index.html:666 -#: packages/templates/packages/createPackage.html:13 -#: packages/templates/packages/createPackage.html:100 -#: packages/templates/packages/index.html:25 -#: packages/templates/packages/index.html:28 -#: userManagment/templates/userManagment/createACL.html:152 -#: userManagment/templates/userManagment/modifyACL.html:156 -msgid "Create Package" -msgstr "Направи Пакет" - -#: CLManager/templates/CLManager/createPackage.html:24 -#: packages/templates/packages/deletePackage.html:26 -#: packages/templates/packages/modifyPackage.html:24 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 -msgid "Select Package" -msgstr "Изабери Пакет" - -#: CLManager/templates/CLManager/createPackage.html:40 -#: packages/templates/packages/createPackage.html:27 -msgid "Package Name" -msgstr "Име Пакета" - -#: CLManager/templates/CLManager/createPackage.html:47 -#: CLManager/templates/CLManager/listPackages.html:87 -msgid "SPEED" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:56 -#: CLManager/templates/CLManager/listPackages.html:98 -msgid "VMEM" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:64 -#: CLManager/templates/CLManager/listPackages.html:109 -msgid "PMEM" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:73 -#: CLManager/templates/CLManager/listPackages.html:120 -msgid "IO" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:81 -#: CLManager/templates/CLManager/listPackages.html:131 -#: containerization/templates/containerization/websiteContainerLimit.html:52 -#: containerization/templates/containerization/websiteContainerLimit.html:99 -msgid "IOPS" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:89 -#: CLManager/templates/CLManager/listPackages.html:142 -msgid "EP" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:97 -#: CLManager/templates/CLManager/listPackages.html:153 -msgid "NPROC" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:105 -#: CLManager/templates/CLManager/listPackages.html:164 -msgid "INODES soft" -msgstr "" - -#: CLManager/templates/CLManager/createPackage.html:113 -#: CLManager/templates/CLManager/listPackages.html:175 -msgid "INODES hard" -msgstr "" - -#: CLManager/templates/CLManager/listPackages.html:3 -#, fuzzy -#| msgid "Modify Package - CyberPanel" -msgid "Manage CloudLinux Packages - CyberPanel" -msgstr "Промени Пакет - CyberPanel" - -#: CLManager/templates/CLManager/listPackages.html:14 -#, fuzzy -#| msgid "Manage Services" -msgid "Manage CloudLinux Packages" -msgstr "Управљање Пакетима" - -#: CLManager/templates/CLManager/listPackages.html:15 -msgid "Manage/Delete CloudLinux Packages." -msgstr "Управљање/Брисање Пакета" - -#: CLManager/templates/CLManager/listPackages.html:76 -#: dns/templates/dns/addDeleteDNSRecords.html:74 -#: dns/templates/dns/addDeleteDNSRecords.html:97 -#: dns/templates/dns/addDeleteDNSRecords.html:121 -#: dns/templates/dns/addDeleteDNSRecords.html:144 -#: dns/templates/dns/addDeleteDNSRecords.html:172 -#: dns/templates/dns/addDeleteDNSRecords.html:196 -#: dns/templates/dns/addDeleteDNSRecords.html:220 -#: dns/templates/dns/addDeleteDNSRecords.html:244 -#: dns/templates/dns/addDeleteDNSRecords.html:268 -#: dns/templates/dns/addDeleteDNSRecords.html:295 -#: dns/templates/dns/addDeleteDNSRecords.html:328 -#: dockerManager/templates/dockerManager/runContainer.html:29 -#: filemanager/templates/filemanager/index.html:203 -#: firewall/templates/firewall/firewall.html:120 -#: packages/templates/packages/listPackages.html:84 -#: pluginHolder/templates/pluginHolder/plugins.html:28 -#: serverStatus/templates/serverStatus/litespeedStatus.html:38 -#: serverStatus/templates/serverStatus/litespeedStatus.html:262 -#: userManagment/templates/userManagment/listUsers.html:75 -msgid "Name" -msgstr "Име" - -#: CLManager/templates/CLManager/listPackages.html:205 -#: CLManager/templates/CLManager/listWebsites.html:86 -#: CLManager/templates/CLManager/monitorUsage.html:57 -#: containerization/templates/containerization/listWebsites.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:172 -#: emailPremium/templates/emailPremium/emailPage.html:179 -#: emailPremium/templates/emailPremium/listDomains.html:75 -#: pluginHolder/templates/pluginHolder/plugins.html:51 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 -msgid "Cannot list websites. Error message:" -msgstr "Сајт се не приказује. Грешка:" - -#: CLManager/templates/CLManager/listWebsites.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "CageFS - CyberPanel" -msgstr "SSL - CyberPanel" - -#: CLManager/templates/CLManager/listWebsites.html:14 -#: CLManager/templates/CLManager/monitorUsage.html:14 -#: baseTemplate/templates/baseTemplate/index.html:411 -#: containerization/templates/containerization/listWebsites.html:14 -#: websiteFunctions/templates/websiteFunctions/index.html:31 -#: websiteFunctions/templates/websiteFunctions/index.html:55 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 -msgid "List Websites" -msgstr "Листа Сајтова" - -#: CLManager/templates/CLManager/listWebsites.html:15 -msgid "Enable/Disable and view CageFS status for websites." -msgstr "Укључи/Искључи и прегледај CageFS статус за сајтове" - -#: CLManager/templates/CLManager/listWebsites.html:28 -msgid "Default: " -msgstr "" - -#: CLManager/templates/CLManager/monitorUsage.html:3 -#, fuzzy -#| msgid "Modify User - CyberPanel" -msgid "Monitor Usage - CyberPanel" -msgstr "Преглед Искоришћености - CyberPanel" - -#: CLManager/templates/CLManager/monitorUsage.html:15 -#, fuzzy -#| msgid "Attach git to your websites." -msgid "Monitor usage of your websites." -msgstr "Додајте git на ваш сајт." - -#: CLManager/templates/CLManager/monitorUsage.html:21 -#: baseTemplate/templates/baseTemplate/homePage.html:42 -#: baseTemplate/templates/baseTemplate/index.html:276 -#: baseTemplate/templates/baseTemplate/index.html:400 -#: baseTemplate/templates/baseTemplate/index.html:401 -#: baseTemplate/templates/baseTemplate/index.html:402 -#: containerization/templates/containerization/listWebsites.html:21 -msgid "Websites" -msgstr "Сајт" - -#: CLManager/templates/CLManager/notAvailable.html:3 -#: containerization/templates/containerization/notAvailable.html:3 -#, fuzzy -#| msgid "Domain Aliases - CyberPanel" -msgid "Not available - CyberPanel" -msgstr "Паркирани Домейни - CyberPanel" - -#: CLManager/templates/CLManager/notAvailable.html:13 -#: containerization/templates/containerization/notAvailable.html:13 -msgid "Not available" -msgstr "Није доступно" - -#: CLManager/templates/CLManager/notAvailable.html:14 -msgid "Either CageFS is not installed or you are not on CloudLinux OS." -msgstr "CageFS није инсталиран или не користите CloudLinux OS." - -#: CLManager/templates/CLManager/notAvailable.html:22 -msgid "CageFS is only available with CloudLinux OS. " -msgstr "CageFS је доступан само уз CloudLinux OS." - -#: CLManager/templates/CLManager/notAvailable.html:24 -#: containerization/templates/containerization/notAvailable.html:24 -msgid " for conversion details." -msgstr " за више детаља око преласка." - -#: CLManager/templates/CLManager/notAvailable.html:34 -#: containerization/templates/containerization/notAvailable.html:34 -#, fuzzy -#| msgid "Packages" -msgid "Install Packages" -msgstr "Пакети" - -#: CLManager/templates/CLManager/notAvailable.html:39 -msgid "CageFS is not installed on this server. Please proceed to installation." -msgstr "CageFS није инсталиран на овај сервер. Молимо вас наставите са инсталацијом." - -#: CLManager/templates/CLManager/websiteContainerLimit.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid " usage - CyberPanel" -msgstr "Пакети - CyberPanel" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:14 -#: emailMarketing/templates/emailMarketing/website.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 -#: websiteFunctions/templates/websiteFunctions/website.html:43 -msgid "Usage" -msgstr "Искоришћеност" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:15 -msgid "View CPU, Memory and Disk usage for " -msgstr "" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:21 -#: containerization/templates/containerization/websiteContainerLimit.html:155 -#, fuzzy -#| msgid "CPU Usage" -msgid "CPU Usage of" -msgstr "CPU Искоришћеност" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:30 -#: containerization/templates/containerization/websiteContainerLimit.html:164 -#, fuzzy -#| msgid "Resource Usage" -msgid "Memory Usage of" -msgstr "Потрошња Ресурса" - -#: CLManager/templates/CLManager/websiteContainerLimit.html:39 -#: containerization/templates/containerization/websiteContainerLimit.html:173 -#, fuzzy -#| msgid "Disk Usage" -msgid "Disk Usage of" -msgstr "Искоришћеност Диска" - -#: CyberCP/settings.py:175 -msgid "English" -msgstr "Енглески" - -#: CyberCP/settings.py:176 -msgid "Chinese" -msgstr "Кинески" - -#: CyberCP/settings.py:177 -msgid "Bulgarian" -msgstr "Бугарски" - -#: CyberCP/settings.py:178 -msgid "Portuguese" -msgstr "Португалски" - -#: CyberCP/settings.py:179 -msgid "Japanese" -msgstr "Јапански" - -#: CyberCP/settings.py:180 -msgid "Bosnian" -msgstr "Босански" - -#: CyberCP/settings.py:181 -msgid "Greek" -msgstr "Грчки" - -#: CyberCP/settings.py:182 -msgid "Russian" -msgstr "Руски" - -#: CyberCP/settings.py:183 -msgid "Turkish" -msgstr "Турски" - -#: CyberCP/settings.py:184 -msgid "Spanish" -msgstr "Шпански" - -#: CyberCP/settings.py:185 -msgid "French" -msgstr "франсуски" - -#: CyberCP/settings.py:186 -#, fuzzy -#| msgid "Policy" -msgid "Polish" -msgstr "Пољски" - -#: CyberCP/settings.py:187 -#, fuzzy -#| msgid "Filename" -msgid "Vietnamese" -msgstr "Вијетнамски" - -#: CyberCP/settings.py:188 -msgid "Italian" -msgstr "Италијански" - -#: CyberCP/settings.py:189 -msgid "Deutsch" -msgstr "Немачки" - -#: IncBackups/templates/IncBackups/backupSchedule.html:3 -#: backup/templates/backup/backupSchedule.html:3 -msgid "Schedule Back up - CyberPanel" -msgstr "Планирано Архивирање - CyberPanel" - -#: IncBackups/templates/IncBackups/backupSchedule.html:13 -#: IncBackups/templates/IncBackups/backupSchedule.html:23 -#: backup/templates/backup/backupSchedule.html:13 -#: backup/templates/backup/backupSchedule.html:23 -#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 -#: baseTemplate/templates/baseTemplate/index.html:578 -#: userManagment/templates/userManagment/createACL.html:381 -#: userManagment/templates/userManagment/modifyACL.html:385 -msgid "Schedule Back up" -msgstr "Заказивање Архивирања " - -#: IncBackups/templates/IncBackups/backupSchedule.html:16 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 -#: backup/templates/backup/backupDestinations.html:14 -#: backup/templates/backup/backupSchedule.html:16 -#: backup/templates/backup/remoteBackups.html:14 -#: backup/templates/backup/remoteBackups.html:21 -msgid "Remote Backups" -msgstr "Удаљена Архива" - -#: IncBackups/templates/IncBackups/backupSchedule.html:17 -#: backup/templates/backup/backupSchedule.html:17 -msgid "" -"On this page you can schedule Back ups to localhost or remote server (If you " -"have added one)." -msgstr "" -"На овој страници можете заказати Архивирање на овом или неком удљеном серверу " -"" - -#: IncBackups/templates/IncBackups/backupSchedule.html:33 -#: backup/templates/backup/backupSchedule.html:33 -msgid "Select Destination" -msgstr "Изаберите Одредиште" - -#: IncBackups/templates/IncBackups/backupSchedule.html:44 -#: backup/templates/backup/backupSchedule.html:44 -msgid "Select Frequency" -msgstr "Изберите Учесталост" - -#: IncBackups/templates/IncBackups/backupSchedule.html:54 -#: IncBackups/templates/IncBackups/createBackup.html:56 -#, fuzzy -#| msgid "Git Management" -msgid "Backup Content" -msgstr "Git Употреба" - -#: IncBackups/templates/IncBackups/backupSchedule.html:98 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 -#: backup/templates/backup/backupDestinations.html:55 -#: backup/templates/backup/backupSchedule.html:67 -#: baseTemplate/templates/baseTemplate/index.html:575 -msgid "Add Destination" -msgstr "Додај Одредиште" - -#: IncBackups/templates/IncBackups/backupSchedule.html:112 -#: backup/templates/backup/remoteBackups.html:96 -msgid "Search Accounts.." -msgstr "Претражи Налоге.." - -#: IncBackups/templates/IncBackups/backupSchedule.html:124 -msgid "Select sites to be included in this job" -msgstr "Изаберите сајтове које желите укључити у ово архивирање" - -#: IncBackups/templates/IncBackups/backupSchedule.html:150 -#: IncBackups/templates/IncBackups/createBackup.html:127 -#: backup/templates/backup/backup.html:102 -#: backup/templates/backup/backupDestinations.html:96 -#: backup/templates/backup/backupSchedule.html:102 -#: databases/templates/databases/listDataBases.html:104 -#: dns/templates/dns/addDeleteDNSRecords.html:326 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 -#: emailMarketing/templates/emailMarketing/manageLists.html:141 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 -#: firewall/templates/firewall/firewall.html:119 -#: firewall/templates/firewall/modSecurityRulesPacks.html:109 -#: ftp/templates/ftp/listFTPAccounts.html:122 -#: mailServer/templates/mailServer/emailForwarding.html:117 -#: managePHP/templates/managePHP/installExtensions.html:60 -msgid "ID" -msgstr "ID" - -#: IncBackups/templates/IncBackups/backupSchedule.html:151 -#: IncBackups/templates/IncBackups/createBackup.html:44 -#: IncBackups/templates/IncBackups/createBackup.html:164 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 -#: backup/templates/backup/backup.html:41 -#: backup/templates/backup/backupSchedule.html:103 -#: mailServer/templates/mailServer/emailForwarding.html:101 -#: mailServer/templates/mailServer/emailForwarding.html:119 -msgid "Destination" -msgstr "Дестинациja" - -#: IncBackups/templates/IncBackups/backupSchedule.html:152 -#: backup/templates/backup/backupSchedule.html:104 -msgid "Frequency" -msgstr "Учесталост" - -#: IncBackups/templates/IncBackups/backupSchedule.html:153 -#: IncBackups/templates/IncBackups/createBackup.html:130 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 -#: backup/templates/backup/backup.html:107 -#: backup/templates/backup/backupDestinations.html:99 -#: backup/templates/backup/backupSchedule.html:105 -#: dns/templates/dns/addDeleteDNSRecords.html:332 -#: emailMarketing/templates/emailMarketing/manageLists.html:156 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 -#: emailMarketing/templates/emailMarketing/sendEmails.html:170 -#: emailMarketing/templates/emailMarketing/website.html:533 -#: filemanager/templates/filemanager/index.html:67 -#: filemanager/templates/filemanager/index.html:696 -#: firewall/templates/firewall/firewall.html:124 -#: firewall/templates/firewall/secureSSH.html:122 -#: mailServer/templates/mailServer/listEmails.html:78 -#: packages/templates/packages/listPackages.html:63 -#: userManagment/templates/userManagment/listUsers.html:54 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 -#: websiteFunctions/templates/websiteFunctions/listCron.html:65 -#: websiteFunctions/templates/websiteFunctions/website.html:497 -msgid "Delete" -msgstr "Обриши" - -#: IncBackups/templates/IncBackups/createBackup.html:3 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Create Incremental Backup" -msgstr "Откажи Архивирање" - -#: IncBackups/templates/IncBackups/createBackup.html:13 -#: IncBackups/templates/IncBackups/createBackup.html:23 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 -#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 -#: backup/templates/backup/backup.html:21 -msgid "Back up Website" -msgstr "Архивирај Сајт" - -#: IncBackups/templates/IncBackups/createBackup.html:15 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 -#: backup/templates/backup/backup.html:14 -#: backup/templates/backup/restore.html:14 -msgid "Backup Docs" -msgstr "Документација о Архивирању" - -#: IncBackups/templates/IncBackups/createBackup.html:17 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "This page can be used to create incremental backups for your websites." -msgstr "На овој страници можете направити Архиве ваших сајтова" - -#: IncBackups/templates/IncBackups/createBackup.html:33 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 -#: backup/templates/backup/backup.html:30 -#: databases/templates/databases/createDatabase.html:26 -#: databases/templates/databases/deleteDatabase.html:26 -#: databases/templates/databases/phpMyAdmin.html:26 -#: ftp/templates/ftp/createFTPAccount.html:42 -#: mailServer/templates/mailServer/changeEmailPassword.html:44 -#: mailServer/templates/mailServer/createEmailAccount.html:44 -#: mailServer/templates/mailServer/deleteEmailAccount.html:44 -#: mailServer/templates/mailServer/dkimManager.html:83 -#: mailServer/templates/mailServer/emailForwarding.html:38 -#: manageSSL/templates/manageSSL/manageSSL.html:29 -#: manageSSL/templates/manageSSL/sslForHostName.html:29 -#: manageSSL/templates/manageSSL/sslForMailServer.html:27 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/listCron.html:28 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 -msgid "Select Website" -msgstr "Избери Сајт" - -#: IncBackups/templates/IncBackups/createBackup.html:113 -#: backup/templates/backup/backup.html:81 -#: baseTemplate/templates/baseTemplate/index.html:569 -#: baseTemplate/templates/baseTemplate/index.html:598 -#: userManagment/templates/userManagment/createACL.html:352 -#: userManagment/templates/userManagment/modifyACL.html:356 -msgid "Create Back up" -msgstr "Направи Архиву" - -#: IncBackups/templates/IncBackups/createBackup.html:128 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 -#: backup/templates/backup/backup.html:104 -#: emailMarketing/templates/emailMarketing/sendEmails.html:152 -msgid "Date" -msgstr "Датум" - -#: IncBackups/templates/IncBackups/createBackup.html:129 -#: backup/templates/backup/index.html:46 -#: backup/templates/backup/restore.html:45 -msgid "Restore" -msgstr "Враћање података" - -#: IncBackups/templates/IncBackups/createBackup.html:161 -#: emailMarketing/templates/emailMarketing/sendEmails.html:151 -msgid "Job ID" -msgstr "" - -#: IncBackups/templates/IncBackups/createBackup.html:162 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 -msgid "Snapshot ID" -msgstr "" - -#: IncBackups/templates/IncBackups/createBackup.html:163 -#: dns/templates/dns/addDeleteDNSRecords.html:327 -#: pluginHolder/templates/pluginHolder/plugins.html:29 -msgid "Type" -msgstr "Тип" - -#: IncBackups/templates/IncBackups/createBackup.html:165 -#: websiteFunctions/templates/websiteFunctions/listCron.html:52 -msgid "Action" -msgstr "Акција" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:3 -#: backup/templates/backup/backupDestinations.html:14 -msgid "Set up Back up Destinations" -msgstr "Постави одредиште за Архивирање" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 -#, fuzzy -#| msgid "Set up Back up Destinations" -msgid "Set up Incremental Back up Destinations" -msgstr "Постави одредиште за Архивирање" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 -#, fuzzy -#| msgid "On this page you can set up your Back up destinations. (SFTP)" -msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" -msgstr "На овој страни можете подесити одредиште за Архиве (SFTP)" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 -#, fuzzy -#| msgid "Set up Back up Destinations" -msgid "Set up Back up Destinations." -msgstr "Постави одредиште за Архиве." - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 -#, fuzzy -#| msgid "Select Website" -msgid "Select Type" -msgstr "Избери Сајт" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 -#: backup/templates/backup/backupDestinations.html:30 -#: backup/templates/backup/remoteBackups.html:29 -#: dns/templates/dns/addDeleteDNSRecords.html:82 -#: dns/templates/dns/createNameServer.html:55 -#: dns/templates/dns/createNameServer.html:71 -#: firewall/templates/firewall/firewall.html:122 -msgid "IP Address" -msgstr "IP Адреса" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 -#: backup/templates/backup/backupDestinations.html:38 -#: backup/templates/backup/remoteBackups.html:37 -#: databases/templates/databases/createDatabase.html:56 -#: databases/templates/databases/listDataBases.html:107 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 -#: ftp/templates/ftp/listFTPAccounts.html:126 -#: mailServer/templates/mailServer/changeEmailPassword.html:68 -#: mailServer/templates/mailServer/createEmailAccount.html:68 -#: mailServer/templates/mailServer/listEmails.html:113 -#: userManagment/templates/userManagment/createUser.html:83 -#: userManagment/templates/userManagment/modifyUser.html:62 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 -msgid "Password" -msgstr "Лозинка" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 -#: backup/templates/backup/backupDestinations.html:45 -#: dockerManager/templates/dockerManager/runContainer.html:74 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 -#: firewall/templates/firewall/firewall.html:123 -msgid "Port" -msgstr "Порт" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 -#: backup/templates/backup/backupDestinations.html:47 -msgid "Backup server SSH Port, leave empty for 22." -msgstr "Backup server SSH порт, оставете празни за 22." - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 -#: backup/templates/backup/backupDestinations.html:97 -msgid "IP" -msgstr "IP" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 -#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 -msgid "AWS_ACCESS_KEY_ID" -msgstr "" - -#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 -msgid "AWS_SECRET_ACCESS_KEY" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Restore Remote Incremental Backups" -msgstr "Откажи Архивирање" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "" -"This page can be used to restore remote incremental backups for your " -"websites." -msgstr "На овој страни можете вратити предашње стање из Архива за ваше " -"сајтове." -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 -msgid "Fetch Restore Points" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 -msgid "Host" -msgstr "" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 -#: emailMarketing/templates/emailMarketing/createEmailList.html:33 -#: emailMarketing/templates/emailMarketing/manageLists.html:74 -#: emailMarketing/templates/emailMarketing/website.html:330 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 -#: websiteFunctions/templates/websiteFunctions/website.html:293 -msgid "Path" -msgstr "Путања" - -#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 -#: dockerManager/templates/dockerManager/viewContainer.html:108 -#: emailMarketing/templates/emailMarketing/manageLists.html:145 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 -#: emailMarketing/templates/emailMarketing/sendEmails.html:157 -#: filemanager/templates/filemanager/index.html:207 -#: mailServer/templates/mailServer/emailForwarding.html:120 -#: mailServer/templates/mailServer/listEmails.html:65 -#: packages/templates/packages/listPackages.html:41 -#: serverStatus/templates/serverStatus/topProcesses.html:201 -#: userManagment/templates/userManagment/listUsers.html:37 -msgid "Actions" -msgstr "Акције" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 -#, fuzzy -#| msgid "Domains - CyberPanel" -msgid "Terminal - CyberPanel" -msgstr "Домени - CyberPanel" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 -#: baseTemplate/templates/baseTemplate/index.html:641 -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Terminal" -msgstr "Терминал" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 -msgid "Web Terminal Docs" -msgstr "" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 -msgid "Execute your terminal commands." -msgstr "Изврши команде у терминалу." - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 -#: baseTemplate/templates/baseTemplate/index.html:643 -msgid "Web Terminal" -msgstr "Web Терминал" - -#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 -msgid "Reboot SSH Server" -msgstr "Рестарт SSH Сервиса" - -#: backup/templates/backup/backup.html:15 -msgid "This page can be used to Back up your websites" -msgstr "От тази страница може да направите архив на Вашите страници" - -#: backup/templates/backup/backup.html:44 -#: baseTemplate/templates/baseTemplate/homePage.html:12 -#: filemanager/templates/filemanager/index.html:135 -msgid "Home" -msgstr "Почетна" - -#: backup/templates/backup/backup.html:60 -#: backup/templates/backup/restore.html:62 -#: filemanager/templates/filemanager/index.html:158 -msgid "File Name" -msgstr "Назив Фајла" - -#: backup/templates/backup/backup.html:61 -#: backup/templates/backup/backup.html:106 -#: backup/templates/backup/restore.html:63 -#: baseTemplate/templates/baseTemplate/homePage.html:132 -#: baseTemplate/templates/baseTemplate/index.html:311 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 -#: filemanager/templates/filemanager/index.html:206 -#: firewall/templates/firewall/firewall.html:35 -#: firewall/templates/firewall/modSecurityRulesPacks.html:112 -#: managePHP/templates/managePHP/installExtensions.html:64 -msgid "Status" -msgstr "Статус" - -#: backup/templates/backup/backup.html:66 -#: serverStatus/templates/serverStatus/topProcesses.html:52 -msgid "Running" -msgstr "У току" - -#: backup/templates/backup/backup.html:88 -msgid "Cancel Backup" -msgstr "Откажи Архивирање" - -#: backup/templates/backup/backup.html:103 -msgid "File" -msgstr "Фајл" - -#: backup/templates/backup/backup.html:105 -#: filemanager/templates/filemanager/index.html:204 -#: ftp/templates/ftp/listFTPAccounts.html:125 -msgid "Size" -msgstr "Величина" - -#: backup/templates/backup/backup.html:131 -msgid "Cannot delete website, Error message: " -msgstr "Сајт не може бити обрисан, Грешка: " - -#: backup/templates/backup/backup.html:135 -msgid "Successfully Deleted" -msgstr "Успешно Обрисано" - -#: backup/templates/backup/backupDestinations.html:15 -msgid "On this page you can set up your Back up destinations. (SFTP)" -msgstr "На овој страници можете подесити локације за Архивирање (SFTP)" - -#: backup/templates/backup/backupDestinations.html:21 -msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" -msgstr "Постави дестинацију за архиве ( SSH порт треба бити 22)" - -#: backup/templates/backup/backupDestinations.html:68 -#: backup/templates/backup/backupDestinations.html:72 -msgid "Connection to" -msgstr "Повезивање на" - -#: backup/templates/backup/backupDestinations.html:68 -msgid "failed. Please delete and re-add. " -msgstr "неуспешно. Молимо вас обришите и покушајте поново." - -#: backup/templates/backup/backupDestinations.html:72 -msgid "successful." -msgstr "успешно" - -#: backup/templates/backup/backupDestinations.html:76 -msgid "Cannot add destination. Error message:" -msgstr "Дестинација није додата. Грешка:" - -#: backup/templates/backup/backupDestinations.html:80 -msgid "Destination Added." -msgstr "Дестинација је успешно додата" - -#: backup/templates/backup/backupDestinations.html:84 -#: backup/templates/backup/backupSchedule.html:90 -#: backup/templates/backup/restore.html:95 -#: databases/templates/databases/createDatabase.html:98 -#: databases/templates/databases/deleteDatabase.html:69 -#: databases/templates/databases/phpMyAdmin.html:50 -#: dns/templates/dns/addDeleteDNSRecords.html:384 -#: dns/templates/dns/createDNSZone.html:70 -#: dns/templates/dns/createNameServer.html:102 -#: dns/templates/dns/deleteDNSZone.html:77 -#: dockerManager/templates/dockerManager/runContainer.html:185 -#: emailMarketing/templates/emailMarketing/website.html:161 -#: emailMarketing/templates/emailMarketing/website.html:420 -#: emailMarketing/templates/emailMarketing/website.html:471 -#: emailMarketing/templates/emailMarketing/website.html:633 -#: emailMarketing/templates/emailMarketing/website.html:689 -#: emailMarketing/templates/emailMarketing/website.html:749 -#: emailMarketing/templates/emailMarketing/website.html:835 -#: emailMarketing/templates/emailMarketing/website.html:955 -#: emailPremium/templates/emailPremium/emailLimits.html:101 -#: emailPremium/templates/emailPremium/emailPage.html:119 -#: mailServer/templates/mailServer/changeEmailPassword.html:114 -#: mailServer/templates/mailServer/createEmailAccount.html:115 -#: mailServer/templates/mailServer/deleteEmailAccount.html:98 -#: mailServer/templates/mailServer/dkimManager.html:156 -#: mailServer/templates/mailServer/emailForwarding.html:83 -#: manageSSL/templates/manageSSL/manageSSL.html:60 -#: userManagment/templates/userManagment/createUser.html:137 -#: userManagment/templates/userManagment/modifyUser.html:121 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 -#: websiteFunctions/templates/websiteFunctions/website.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:383 -#: websiteFunctions/templates/websiteFunctions/website.html:434 -#: websiteFunctions/templates/websiteFunctions/website.html:581 -#: websiteFunctions/templates/websiteFunctions/website.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:695 -#: websiteFunctions/templates/websiteFunctions/website.html:778 -#: websiteFunctions/templates/websiteFunctions/website.html:884 -msgid "Could not connect to server. Please refresh this page." -msgstr "Неуспешно повезивање на сервер. Молимо вас освежите страницу." - -#: backup/templates/backup/backupDestinations.html:98 -#: backup/templates/backup/backupDestinations.html:106 -msgid "Check Connection" -msgstr "Провери повезивање" - -#: backup/templates/backup/backupSchedule.html:54 -msgid "Local Path" -msgstr "" - -#: backup/templates/backup/backupSchedule.html:57 -msgid "Local directory where backups will be moved after creation." -msgstr "Локална путања на којој ће архиве бити смештене након прављења." - -#: backup/templates/backup/backupSchedule.html:82 -msgid "Cannot add schedule. Error message:" -msgstr "Заказивање није успело. Грешка: " - -#: backup/templates/backup/backupSchedule.html:86 -msgid "Schedule Added" -msgstr "Заказивање је успешно додато" - -#: backup/templates/backup/index.html:3 -msgid "Back up Home - CyberPanel" -msgstr "Архивирање - CyberPanel" - -#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 -#: baseTemplate/templates/baseTemplate/homePage.html:95 -#: baseTemplate/templates/baseTemplate/homePage.html:97 -#: baseTemplate/templates/baseTemplate/index.html:561 -#: baseTemplate/templates/baseTemplate/index.html:563 -#: baseTemplate/templates/baseTemplate/index.html:616 -msgid "Back up" -msgstr "Архивирање" - -#: backup/templates/backup/index.html:14 -msgid "Back up and restore sites." -msgstr "Архивирање и враћање стања сајтова." - -#: backup/templates/backup/index.html:19 -#: baseTemplate/templates/baseTemplate/homePage.html:23 -#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 -#: dockerManager/templates/dockerManager/index.html:21 -#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 -#: mailServer/templates/mailServer/index.html:19 -#: managePHP/templates/managePHP/index.html:18 -#: manageSSL/templates/manageSSL/index.html:20 -#: packages/templates/packages/index.html:19 -#: serverLogs/templates/serverLogs/index.html:19 -#: serverStatus/templates/serverStatus/index.html:19 -#: tuning/templates/tuning/index.html:18 -#: userManagment/templates/userManagment/index.html:19 -#: websiteFunctions/templates/websiteFunctions/index.html:21 -msgid "Available Functions" -msgstr "Доступне опције" - -#: backup/templates/backup/index.html:28 -msgid "Back up Site" -msgstr "Архивирање Сајта" - -#: backup/templates/backup/index.html:44 -#: baseTemplate/templates/baseTemplate/index.html:572 -#: baseTemplate/templates/baseTemplate/index.html:601 -#: userManagment/templates/userManagment/createACL.html:361 -#: userManagment/templates/userManagment/modifyACL.html:365 -msgid "Restore Back up" -msgstr "Враћање стања Сајта" - -#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 -#, fuzzy -#| msgid "Add/Delete Destination" -msgid "Add/Delete Destinations" -msgstr "Додавање/Брисање Дестинација" - -#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 -#: baseTemplate/templates/baseTemplate/index.html:581 -#: userManagment/templates/userManagment/createACL.html:391 -#: userManagment/templates/userManagment/modifyACL.html:395 -msgid "Remote Back ups" -msgstr "Удаљене Архиве" - -#: backup/templates/backup/remoteBackups.html:3 -msgid "Transfer Websites from Remote Server - CyberPanel" -msgstr "Пребацивање сајтова са удаљеног сервера - CyberPanel" - -#: backup/templates/backup/remoteBackups.html:14 -msgid "Remote Transfer" -msgstr "Удаљени Трансфер" - -#: backup/templates/backup/remoteBackups.html:15 -msgid "This feature can import website(s) from remote server" -msgstr "Ова опција вам омогућава увоз сајт(ова) са удањеног сервера" - -#: backup/templates/backup/remoteBackups.html:46 -msgid "Fetch Accounts" -msgstr "Преузми Налоге" - -#: backup/templates/backup/remoteBackups.html:55 -msgid "Start Transfer" -msgstr "Започни Трансфер" - -#: backup/templates/backup/remoteBackups.html:59 -#: emailMarketing/templates/emailMarketing/website.html:324 -#: emailMarketing/templates/emailMarketing/website.html:804 -#: emailMarketing/templates/emailMarketing/website.html:928 -#: emailPremium/templates/emailPremium/emailLimits.html:75 -#: emailPremium/templates/emailPremium/emailPage.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:93 -#: filemanager/templates/filemanager/index.html:230 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 -#: websiteFunctions/templates/websiteFunctions/website.html:286 -#: websiteFunctions/templates/websiteFunctions/website.html:747 -#: websiteFunctions/templates/websiteFunctions/website.html:858 -msgid "Cancel" -msgstr "Откажи" - -#: backup/templates/backup/remoteBackups.html:72 -msgid "Could not connect, please refresh this page." -msgstr "Повезивање неуспешно, молимо вас освежите страницу." - -#: backup/templates/backup/remoteBackups.html:76 -msgid "Accounts Successfully Fetched from remote server." -msgstr "Налози су успешно преузети са удаљеног сервера." - -#: backup/templates/backup/remoteBackups.html:80 -msgid "Backup Process successfully started." -msgstr "Процес Архивирања је успешно започет." - -#: backup/templates/backup/remoteBackups.html:84 -msgid "Backup successfully cancelled." -msgstr "Архивирање је обустављено." - -#: backup/templates/backup/remoteBackups.html:107 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Website" -msgstr "Сајт" - -#: backup/templates/backup/remoteBackups.html:108 -#: baseTemplate/templates/baseTemplate/homePage.html:143 -#: baseTemplate/templates/baseTemplate/index.html:768 -#: baseTemplate/templates/baseTemplate/index.html:770 -#: managePHP/templates/managePHP/installExtensions.html:61 -msgid "PHP" -msgstr "PHP" - -#: backup/templates/backup/remoteBackups.html:109 -#: packages/templates/packages/createPackage.html:112 -#: packages/templates/packages/deletePackage.html:60 -#: packages/templates/packages/listPackages.html:33 -#: packages/templates/packages/modifyPackage.html:125 -msgid "Package" -msgstr "Пакети" - -#: backup/templates/backup/remoteBackups.html:110 -#: baseTemplate/templates/baseTemplate/index.html:505 -#: baseTemplate/templates/baseTemplate/index.html:507 -#: mailServer/templates/mailServer/listEmails.html:101 -#: userManagment/templates/userManagment/createUser.html:45 -#: userManagment/templates/userManagment/modifyUser.html:54 -#: userManagment/templates/userManagment/userProfile.html:41 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 -msgid "Email" -msgstr "Email" - -#: backup/templates/backup/restore.html:3 -msgid "Restore Website - CyberPanel" -msgstr "Враћање стања Сајта - CyberPanel" - -#: backup/templates/backup/restore.html:14 -#: backup/templates/backup/restore.html:21 -msgid "Restore Website" -msgstr "Враћање стања Сајта" - -#: backup/templates/backup/restore.html:15 -msgid "" -"This page can be used to restore your websites, Back up should be generated " -"from CyberPanel Back up generation tool, it will detect all Back ups under " -"/home/backup." -msgstr "" -"На овој страници можете вратити предашње стање сајтова, Архиве се генеришу " -"из CyberPanel алата за Архивирање, који детектује све архиве унутар фолдера " -"/home/backup." - -#: backup/templates/backup/restore.html:30 -msgid "Select Back up" -msgstr "Избери Архиву" - -#: backup/templates/backup/restore.html:61 -msgid "Condition" -msgstr "Услов" - -#: backup/templates/backup/restore.html:86 -#: databases/templates/databases/deleteDatabase.html:60 -#: databases/templates/databases/listDataBases.html:54 -#: dockerManager/templates/dockerManager/listContainers.html:57 -#: dockerManager/templates/dockerManager/runContainer.html:176 -#: emailMarketing/templates/emailMarketing/website.html:411 -#: emailMarketing/templates/emailMarketing/website.html:947 -#: firewall/templates/firewall/firewall.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:214 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 -#: websiteFunctions/templates/websiteFunctions/website.html:374 -#: websiteFunctions/templates/websiteFunctions/website.html:876 -msgid "Error message:" -msgstr "Грешка" - -#: backup/templates/backup/restore.html:90 -msgid "Site related to this Back up already exists." -msgstr "Сајт из ове архиве већ постоји." - -#: baseTemplate/templates/baseTemplate/homePage.html:3 -msgid "Home - CyberPanel" -msgstr "Почетна - CyberPanel" - -#: baseTemplate/templates/baseTemplate/homePage.html:13 -msgid "Use the tabs to navigate through the control panel." -msgstr "Използвай tab за навигация в контролния панел." - -#: baseTemplate/templates/baseTemplate/homePage.html:29 -#: userManagment/templates/userManagment/index.html:13 -msgid "User Functions" -msgstr "Функции на Потребителите" - -#: baseTemplate/templates/baseTemplate/homePage.html:31 -#: baseTemplate/templates/baseTemplate/index.html:361 -#: baseTemplate/templates/baseTemplate/index.html:362 -#: baseTemplate/templates/baseTemplate/index.html:363 -msgid "Users" -msgstr "Потребители" - -#: baseTemplate/templates/baseTemplate/homePage.html:40 -#: websiteFunctions/templates/websiteFunctions/index.html:13 -msgid "Website Functions" -msgstr "Функции на Страниците" - -#: baseTemplate/templates/baseTemplate/homePage.html:51 -msgid "Add/Modify Packages" -msgstr "Добави/Промени Пакет" - -#: baseTemplate/templates/baseTemplate/homePage.html:53 -#: baseTemplate/templates/baseTemplate/index.html:283 -#: baseTemplate/templates/baseTemplate/index.html:427 -#: baseTemplate/templates/baseTemplate/index.html:429 -#: packages/templates/packages/index.html:13 -msgid "Packages" -msgstr "Пакети" - -#: baseTemplate/templates/baseTemplate/homePage.html:62 -#: databases/templates/databases/index.html:12 -msgid "Database Functions" -msgstr "Функции на Бази от Данни" - -#: baseTemplate/templates/baseTemplate/homePage.html:64 -#: baseTemplate/templates/baseTemplate/index.html:452 -#: baseTemplate/templates/baseTemplate/index.html:453 -#: baseTemplate/templates/baseTemplate/index.html:454 -#: emailMarketing/templates/emailMarketing/website.html:51 -#: packages/templates/packages/createPackage.html:69 -#: packages/templates/packages/listPackages.html:37 -#: packages/templates/packages/listPackages.html:134 -#: packages/templates/packages/modifyPackage.html:73 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 -#: websiteFunctions/templates/websiteFunctions/website.html:54 -msgid "Databases" -msgstr "База от Данни" - -#: baseTemplate/templates/baseTemplate/homePage.html:73 -msgid "Control DNS" -msgstr "Контрол на DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:75 -#: baseTemplate/templates/baseTemplate/index.html:290 -#: baseTemplate/templates/baseTemplate/index.html:477 -#: baseTemplate/templates/baseTemplate/index.html:479 -msgid "DNS" -msgstr "DNS" - -#: baseTemplate/templates/baseTemplate/homePage.html:84 -#: ftp/templates/ftp/index.html:12 -msgid "FTP Functions" -msgstr "FTP Функции" - -#: baseTemplate/templates/baseTemplate/homePage.html:86 -#: baseTemplate/templates/baseTemplate/index.html:297 -#: baseTemplate/templates/baseTemplate/index.html:539 -#: baseTemplate/templates/baseTemplate/index.html:541 -#: emailMarketing/templates/emailMarketing/website.html:46 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 -#: websiteFunctions/templates/websiteFunctions/website.html:49 -msgid "FTP" -msgstr "FTP" - -#: baseTemplate/templates/baseTemplate/homePage.html:106 -#: baseTemplate/templates/baseTemplate/homePage.html:108 -#: mailServer/templates/mailServer/listEmails.html:64 -#: packages/templates/packages/createPackage.html:77 -#: packages/templates/packages/listPackages.html:143 -#: packages/templates/packages/modifyPackage.html:80 -msgid "Emails" -msgstr "Emails" - -#: baseTemplate/templates/baseTemplate/homePage.html:117 -#: baseTemplate/templates/baseTemplate/homePage.html:119 -#: baseTemplate/templates/baseTemplate/index.html:617 -#: baseTemplate/templates/baseTemplate/index.html:618 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 -msgid "SSL" -msgstr "SSL" - -#: baseTemplate/templates/baseTemplate/homePage.html:130 -#: baseTemplate/templates/baseTemplate/index.html:743 -#: baseTemplate/templates/baseTemplate/index.html:745 -#: baseTemplate/templates/baseTemplate/index.html:787 -#: emailPremium/templates/emailPremium/policyServer.html:30 -#: serverStatus/templates/serverStatus/index.html:13 -msgid "Server Status" -msgstr "Сървър Статус" - -#: baseTemplate/templates/baseTemplate/homePage.html:141 -msgid "PHP Configurations" -msgstr "PHP Конфигурация" - -#: baseTemplate/templates/baseTemplate/homePage.html:152 -#: baseTemplate/templates/baseTemplate/homePage.html:154 -#: baseTemplate/templates/baseTemplate/index.html:789 -#: dockerManager/templates/dockerManager/viewContainer.html:174 -#: emailMarketing/templates/emailMarketing/website.html:117 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 -#: websiteFunctions/templates/websiteFunctions/website.html:106 -msgid "Logs" -msgstr "Логове" - -#: baseTemplate/templates/baseTemplate/homePage.html:163 -#: baseTemplate/templates/baseTemplate/homePage.html:165 -#: baseTemplate/templates/baseTemplate/index.html:811 -#: baseTemplate/templates/baseTemplate/index.html:813 -msgid "Security" -msgstr "Сигурност" - -#: baseTemplate/templates/baseTemplate/homePage.html:188 -#, fuzzy -#| msgid "Resource" -msgid "Resources" -msgstr "Ресурси" - -#: baseTemplate/templates/baseTemplate/homePage.html:197 -#: baseTemplate/templates/baseTemplate/index.html:139 -#: dockerManager/templates/dockerManager/viewContainer.html:48 -msgid "CPU Usage" -msgstr "CPU Използване" - -#: baseTemplate/templates/baseTemplate/homePage.html:218 -#: baseTemplate/templates/baseTemplate/index.html:150 -msgid "Ram Usage" -msgstr "Използване на RAM" - -#: baseTemplate/templates/baseTemplate/homePage.html:239 -msgid "Disk Usage '/'" -msgstr "Зает Диск" - -#: baseTemplate/templates/baseTemplate/index.html:159 -#: emailMarketing/templates/emailMarketing/website.html:58 -#: emailMarketing/templates/emailMarketing/website.html:78 -#: userManagment/templates/userManagment/listUsers.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 -#: websiteFunctions/templates/websiteFunctions/website.html:59 -#: websiteFunctions/templates/websiteFunctions/website.html:77 -msgid "Disk Usage" -msgstr "Използван диск" - -#: baseTemplate/templates/baseTemplate/index.html:192 -#: baseTemplate/templates/baseTemplate/index.html:195 -#: baseTemplate/templates/baseTemplate/index.html:199 -msgid "CyberPanel" -msgstr "CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:197 -#: baseTemplate/templates/baseTemplate/index.html:201 -msgid "Web Hosting Control Panel" -msgstr "Уеб Хостинг Панел" - -#: baseTemplate/templates/baseTemplate/index.html:203 -msgid "Close sidebar" -msgstr "Затвори страничен бар" - -#: baseTemplate/templates/baseTemplate/index.html:209 -msgid "My Account" -msgstr "Моят Акаунт" - -#: baseTemplate/templates/baseTemplate/index.html:228 -msgid "Edit profile" -msgstr "Промени профил" - -#: baseTemplate/templates/baseTemplate/index.html:230 -#: baseTemplate/templates/baseTemplate/index.html:369 -#: userManagment/templates/userManagment/index.html:24 -#: userManagment/templates/userManagment/index.html:27 -msgid "View Profile" -msgstr "Преглед на профил" - -#: baseTemplate/templates/baseTemplate/index.html:237 -#: baseTemplate/templates/baseTemplate/index.html:319 -msgid "Logout" -msgstr "Излез" - -#: baseTemplate/templates/baseTemplate/index.html:249 -#: baseTemplate/templates/baseTemplate/index.html:254 -#: baseTemplate/templates/baseTemplate/index.html:259 -msgid "CPU Load Average" -msgstr "Средно CPU Натоварване" - -#: baseTemplate/templates/baseTemplate/index.html:265 -msgid "Dashboard Quick Menu" -msgstr "Бързо Меню" - -#: baseTemplate/templates/baseTemplate/index.html:304 -#: baseTemplate/templates/baseTemplate/index.html:725 -#: baseTemplate/templates/baseTemplate/index.html:727 -msgid "Tuning" -msgstr "Настройка" - -#: baseTemplate/templates/baseTemplate/index.html:332 -msgid "Overview" -msgstr "Преглед" - -#: baseTemplate/templates/baseTemplate/index.html:334 -#: baseTemplate/templates/baseTemplate/index.html:335 -msgid "Server IP Address" -msgstr "Сървърен IP Адрес" - -#: baseTemplate/templates/baseTemplate/index.html:339 -#: baseTemplate/templates/baseTemplate/index.html:341 -msgid "Dashboard" -msgstr "Начало" - -#: baseTemplate/templates/baseTemplate/index.html:344 -#: baseTemplate/templates/baseTemplate/index.html:346 -#: baseTemplate/templates/baseTemplate/index.html:348 -#: baseTemplate/templates/baseTemplate/versionManagment.html:10 -#: userManagment/templates/userManagment/createACL.html:47 -#: userManagment/templates/userManagment/createACL.html:52 -#: userManagment/templates/userManagment/modifyACL.html:51 -#: userManagment/templates/userManagment/modifyACL.html:56 -msgid "Version Management" -msgstr "Мениджър на Версия" - -#: baseTemplate/templates/baseTemplate/index.html:351 -#: baseTemplate/templates/baseTemplate/index.html:352 -#: baseTemplate/templates/baseTemplate/index.html:354 -#, fuzzy -#| msgid "Connection to" -msgid "Connect" -msgstr "Връзка към" - -#: baseTemplate/templates/baseTemplate/index.html:358 -msgid "Main" -msgstr "Главно" - -#: baseTemplate/templates/baseTemplate/index.html:372 -#: userManagment/templates/userManagment/createACL.html:64 -#: userManagment/templates/userManagment/createUser.html:12 -#: userManagment/templates/userManagment/modifyACL.html:68 -msgid "Create New User" -msgstr "Нов Потребител" - -#: baseTemplate/templates/baseTemplate/index.html:375 -#: userManagment/templates/userManagment/createACL.html:73 -#: userManagment/templates/userManagment/index.html:36 -#: userManagment/templates/userManagment/index.html:39 -#: userManagment/templates/userManagment/listUsers.html:13 -#: userManagment/templates/userManagment/listUsers.html:19 -#: userManagment/templates/userManagment/modifyACL.html:77 -#, fuzzy -#| msgid "Login User" -msgid "List Users" -msgstr "Потребителско име" - -#: baseTemplate/templates/baseTemplate/index.html:378 -#: userManagment/templates/userManagment/index.html:61 -#: userManagment/templates/userManagment/index.html:64 -#: userManagment/templates/userManagment/modifyUser.html:12 -#: userManagment/templates/userManagment/modifyUser.html:102 -msgid "Modify User" -msgstr "Промени Потребител" - -#: baseTemplate/templates/baseTemplate/index.html:380 -#: userManagment/templates/userManagment/createACL.html:82 -#: userManagment/templates/userManagment/modifyACL.html:86 -#: userManagment/templates/userManagment/resellerCenter.html:12 -#: userManagment/templates/userManagment/resellerCenter.html:19 -#, fuzzy -#| msgid "Reseller" -msgid "Reseller Center" -msgstr "Resseler" - -#: baseTemplate/templates/baseTemplate/index.html:383 -#: userManagment/templates/userManagment/createACL.html:12 -#, fuzzy -#| msgid "Create New User" -msgid "Create New ACL" -msgstr "Нов Потребител" - -#: baseTemplate/templates/baseTemplate/index.html:386 -#: userManagment/templates/userManagment/deleteACL.html:12 -#: userManagment/templates/userManagment/deleteACL.html:40 -#, fuzzy -#| msgid "Delete" -msgid "Delete ACL" -msgstr "Изтрий" - -#: baseTemplate/templates/baseTemplate/index.html:389 -#, fuzzy -#| msgid "Modify User" -msgid "Modify ACL" -msgstr "Промени Потребител" - -#: baseTemplate/templates/baseTemplate/index.html:392 -#: userManagment/templates/userManagment/apiAccess.html:13 -#: userManagment/templates/userManagment/apiAccess.html:20 -#, fuzzy -#| msgid "Access Log" -msgid "API Access" -msgstr "Access Лог" - -#: baseTemplate/templates/baseTemplate/index.html:408 -#: userManagment/templates/userManagment/createACL.html:112 -#: userManagment/templates/userManagment/modifyACL.html:116 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 -#: websiteFunctions/templates/websiteFunctions/index.html:43 -#: websiteFunctions/templates/websiteFunctions/index.html:45 -msgid "Create Website" -msgstr "Нова Страница" - -#: baseTemplate/templates/baseTemplate/index.html:414 -#: userManagment/templates/userManagment/createACL.html:121 -#: userManagment/templates/userManagment/modifyACL.html:125 -#: websiteFunctions/templates/websiteFunctions/index.html:67 -#: websiteFunctions/templates/websiteFunctions/index.html:69 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 -msgid "Modify Website" -msgstr "Промени Страница" - -#: baseTemplate/templates/baseTemplate/index.html:417 -#: websiteFunctions/templates/websiteFunctions/index.html:81 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 -msgid "Suspend/Unsuspend" -msgstr "Пусни/Спри" - -#: baseTemplate/templates/baseTemplate/index.html:420 -#: userManagment/templates/userManagment/createACL.html:139 -#: userManagment/templates/userManagment/deleteACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:143 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 -#: websiteFunctions/templates/websiteFunctions/index.html:90 -#: websiteFunctions/templates/websiteFunctions/index.html:92 -msgid "Delete Website" -msgstr "Изтрий Страница" - -#: baseTemplate/templates/baseTemplate/index.html:438 -#: baseTemplate/templates/baseTemplate/index.html:671 -#: packages/templates/packages/listPackages.html:13 -#: packages/templates/packages/listPackages.html:19 -#: userManagment/templates/userManagment/createACL.html:161 -#: userManagment/templates/userManagment/modifyACL.html:165 -#, fuzzy -#| msgid "Packages" -msgid "List Packages" -msgstr "Пакети" - -#: baseTemplate/templates/baseTemplate/index.html:441 -#: packages/templates/packages/deletePackage.html:12 -#: packages/templates/packages/deletePackage.html:18 -#: packages/templates/packages/deletePackage.html:39 -#: packages/templates/packages/index.html:38 -#: packages/templates/packages/index.html:41 -#: userManagment/templates/userManagment/createACL.html:170 -#: userManagment/templates/userManagment/modifyACL.html:174 -msgid "Delete Package" -msgstr "Изтрий Пакет" - -#: baseTemplate/templates/baseTemplate/index.html:444 -#: packages/templates/packages/index.html:51 -#: packages/templates/packages/index.html:54 -#: packages/templates/packages/modifyPackage.html:9 -#: packages/templates/packages/modifyPackage.html:15 -#: packages/templates/packages/modifyPackage.html:108 -#: userManagment/templates/userManagment/createACL.html:179 -#: userManagment/templates/userManagment/modifyACL.html:183 -msgid "Modify Package" -msgstr "Промени Пакет" - -#: baseTemplate/templates/baseTemplate/index.html:460 -#: databases/templates/databases/createDatabase.html:12 -#: databases/templates/databases/createDatabase.html:19 -#: databases/templates/databases/createDatabase.html:79 -#: databases/templates/databases/index.html:25 -#: databases/templates/databases/index.html:27 -#: databases/templates/databases/phpMyAdmin.html:12 -#: databases/templates/databases/phpMyAdmin.html:19 -#: userManagment/templates/userManagment/createACL.html:191 -#: userManagment/templates/userManagment/modifyACL.html:195 -msgid "Create Database" -msgstr "Нова База от Данни" - -#: baseTemplate/templates/baseTemplate/index.html:463 -#: databases/templates/databases/deleteDatabase.html:12 -#: databases/templates/databases/deleteDatabase.html:19 -#: databases/templates/databases/deleteDatabase.html:51 -#: databases/templates/databases/index.html:37 -#: databases/templates/databases/index.html:39 -#: userManagment/templates/userManagment/createACL.html:200 -#: userManagment/templates/userManagment/modifyACL.html:204 -msgid "Delete Database" -msgstr "Изтрий База от Данни" - -#: baseTemplate/templates/baseTemplate/index.html:466 -#: databases/templates/databases/index.html:48 -#: databases/templates/databases/index.html:50 -#: databases/templates/databases/listDataBases.html:13 -#: databases/templates/databases/listDataBases.html:19 -#: userManagment/templates/userManagment/createACL.html:209 -#: userManagment/templates/userManagment/modifyACL.html:213 -msgid "List Databases" -msgstr "Преглед на Бази от Данни" - -#: baseTemplate/templates/baseTemplate/index.html:468 -#: baseTemplate/templates/baseTemplate/index.html:469 -#: databases/templates/databases/index.html:59 -#: databases/templates/databases/index.html:61 -msgid "PHPMYAdmin" -msgstr "PhpMyAdmin" - -#: baseTemplate/templates/baseTemplate/index.html:485 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 -#: dns/templates/dns/index.html:74 -#: userManagment/templates/userManagment/createACL.html:221 -#: userManagment/templates/userManagment/modifyACL.html:225 -msgid "Create Nameserver" -msgstr "Създай Nameserver" - -#: baseTemplate/templates/baseTemplate/index.html:488 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Configure Default Nameservers" -msgstr "Създай Nameserver" - -#: baseTemplate/templates/baseTemplate/index.html:488 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Config Default Nameservers" -msgstr "Създай Nameserver" - -#: baseTemplate/templates/baseTemplate/index.html:491 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createDNSZone.html:50 dns/templates/dns/index.html:29 -#: dns/templates/dns/index.html:31 dns/templates/dns/index.html:84 -#: dns/templates/dns/index.html:86 -msgid "Create DNS Zone" -msgstr "Създай DNS Зона" - -#: baseTemplate/templates/baseTemplate/index.html:494 -#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 -#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 -#: dns/templates/dns/index.html:98 -#: userManagment/templates/userManagment/createACL.html:239 -#: userManagment/templates/userManagment/modifyACL.html:243 -msgid "Delete Zone" -msgstr "Изтрий Зона" - -#: baseTemplate/templates/baseTemplate/index.html:497 -msgid "Add/Delete Records" -msgstr "Добави/Премахни Записи" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:12 -#: mailServer/templates/mailServer/createEmailAccount.html:19 -msgid "Create Email Account" -msgstr "Създай Email Акаунт" - -#: baseTemplate/templates/baseTemplate/index.html:513 -#: mailServer/templates/mailServer/createEmailAccount.html:98 -#: mailServer/templates/mailServer/index.html:25 -#: mailServer/templates/mailServer/index.html:28 -#: userManagment/templates/userManagment/createACL.html:262 -#: userManagment/templates/userManagment/modifyACL.html:266 -msgid "Create Email" -msgstr "Създай Email" - -#: baseTemplate/templates/baseTemplate/index.html:516 -#: userManagment/templates/userManagment/createACL.html:271 -#: userManagment/templates/userManagment/modifyACL.html:275 -#, fuzzy -#| msgid "List Domains" -msgid "List Emails" -msgstr "Списък с Домейн" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:12 -#: mailServer/templates/mailServer/deleteEmailAccount.html:19 -msgid "Delete Email Account" -msgstr "Изтрий Email Акаунт" - -#: baseTemplate/templates/baseTemplate/index.html:519 -#: mailServer/templates/mailServer/deleteEmailAccount.html:73 -#: mailServer/templates/mailServer/index.html:38 -#: mailServer/templates/mailServer/index.html:41 -#: userManagment/templates/userManagment/createACL.html:280 -#: userManagment/templates/userManagment/modifyACL.html:284 -msgid "Delete Email" -msgstr "Изтрий Email" - -#: baseTemplate/templates/baseTemplate/index.html:522 -#: userManagment/templates/userManagment/createACL.html:289 -#: userManagment/templates/userManagment/modifyACL.html:293 -msgid "Email Forwarding" -msgstr "Email пренасочване" - -#: baseTemplate/templates/baseTemplate/index.html:525 -#: databases/templates/databases/listDataBases.html:90 -#: ftp/templates/ftp/listFTPAccounts.html:108 -#: mailServer/templates/mailServer/changeEmailPassword.html:97 -#: mailServer/templates/mailServer/index.html:51 -#: mailServer/templates/mailServer/index.html:54 -#: mailServer/templates/mailServer/listEmails.html:76 -msgid "Change Password" -msgstr "Промени Парола" - -#: baseTemplate/templates/baseTemplate/index.html:528 -#: mailServer/templates/mailServer/dkimManager.html:13 -#: mailServer/templates/mailServer/dkimManager.html:22 -#: mailServer/templates/mailServer/dkimManager.html:75 -#: userManagment/templates/userManagment/createACL.html:309 -#: userManagment/templates/userManagment/modifyACL.html:313 -msgid "DKIM Manager" -msgstr "DKIM Мениджър" - -#: baseTemplate/templates/baseTemplate/index.html:530 -#: baseTemplate/templates/baseTemplate/index.html:531 -msgid "Access Webmail" -msgstr "Webmail" - -#: baseTemplate/templates/baseTemplate/index.html:547 -#: emailMarketing/templates/emailMarketing/website.html:886 -#: emailMarketing/templates/emailMarketing/website.html:889 -#: ftp/templates/ftp/createFTPAccount.html:12 -#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 -#: ftp/templates/ftp/index.html:26 -#: userManagment/templates/userManagment/createACL.html:322 -#: userManagment/templates/userManagment/modifyACL.html:326 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 -#: websiteFunctions/templates/websiteFunctions/website.html:821 -#: websiteFunctions/templates/websiteFunctions/website.html:824 -msgid "Create FTP Account" -msgstr "Създай FTP Акаунт" - -#: baseTemplate/templates/baseTemplate/index.html:550 -#: emailMarketing/templates/emailMarketing/website.html:898 -#: emailMarketing/templates/emailMarketing/website.html:901 -#: ftp/templates/ftp/deleteFTPAccount.html:12 -#: ftp/templates/ftp/deleteFTPAccount.html:18 -#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 -#: ftp/templates/ftp/index.html:37 -#: userManagment/templates/userManagment/createACL.html:331 -#: userManagment/templates/userManagment/modifyACL.html:335 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 -#: websiteFunctions/templates/websiteFunctions/website.html:830 -#: websiteFunctions/templates/websiteFunctions/website.html:833 -msgid "Delete FTP Account" -msgstr "Изтрий FTP Акаунт" - -#: baseTemplate/templates/baseTemplate/index.html:553 -#: ftp/templates/ftp/index.html:46 ftp/templates/ftp/index.html:48 -#: ftp/templates/ftp/listFTPAccounts.html:13 -#: ftp/templates/ftp/listFTPAccounts.html:19 -#: userManagment/templates/userManagment/createACL.html:340 -#: userManagment/templates/userManagment/modifyACL.html:344 -msgid "List FTP Accounts" -msgstr "Преглед FTP Акаунти" - -#: baseTemplate/templates/baseTemplate/index.html:575 -#: userManagment/templates/userManagment/createACL.html:370 -#: userManagment/templates/userManagment/modifyACL.html:374 -msgid "Add/Delete Destination" -msgstr "Добави/Премахни Дестинация" - -#: baseTemplate/templates/baseTemplate/index.html:590 -msgid "Incremental Back up - Beta" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:592 -#, fuzzy -#| msgid "Cancel Backup" -msgid "Incremental Back up" -msgstr "Откажи Архив" - -#: baseTemplate/templates/baseTemplate/index.html:598 -#, fuzzy -#| msgid "Restore Back up" -msgid "Create/Restore Back up" -msgstr "Възстанови Архив" - -#: baseTemplate/templates/baseTemplate/index.html:601 -#, fuzzy -#| msgid "Add/Delete Destination" -msgid "Add/Remove Destinations" -msgstr "Добави/Премахни Дестинация" - -#: baseTemplate/templates/baseTemplate/index.html:604 -#, fuzzy -#| msgid "Schedule Back up" -msgid "Schedule Back ups" -msgstr "Планирано Архивиране " - -#: baseTemplate/templates/baseTemplate/index.html:607 -#, fuzzy -#| msgid "Transfer Websites from Remote Server - CyberPanel" -msgid "Restore from Remote Server" -msgstr "Премести страница от отдалечен сървър - CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:607 -#, fuzzy -#| msgid "Restore Website" -msgid "Restore from Remote" -msgstr "Възстанови Страница" - -#: baseTemplate/templates/baseTemplate/index.html:624 -#: manageSSL/templates/manageSSL/index.html:29 -#: manageSSL/templates/manageSSL/index.html:31 -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/manageSSL.html:20 -#: userManagment/templates/userManagment/createACL.html:404 -#: userManagment/templates/userManagment/modifyACL.html:408 -msgid "Manage SSL" -msgstr "Нов SSL" - -#: baseTemplate/templates/baseTemplate/index.html:627 -#: manageSSL/templates/manageSSL/index.html:45 -#: manageSSL/templates/manageSSL/index.html:47 -#: userManagment/templates/userManagment/createACL.html:413 -#: userManagment/templates/userManagment/modifyACL.html:417 -msgid "Hostname SSL" -msgstr "Hostname SSL" - -#: baseTemplate/templates/baseTemplate/index.html:630 -#: manageSSL/templates/manageSSL/index.html:60 -#: manageSSL/templates/manageSSL/index.html:62 -#: userManagment/templates/userManagment/createACL.html:422 -#: userManagment/templates/userManagment/modifyACL.html:426 -msgid "MailServer SSL" -msgstr "MailServer SSL" - -#: baseTemplate/templates/baseTemplate/index.html:637 -msgid "Server" -msgstr "Сървър" - -#: baseTemplate/templates/baseTemplate/index.html:644 -#: baseTemplate/templates/baseTemplate/index.html:660 -#: baseTemplate/templates/baseTemplate/index.html:688 -#: baseTemplate/templates/baseTemplate/index.html:705 -#: baseTemplate/templates/baseTemplate/index.html:846 -msgid "NEW" -msgstr "НОВ" - -#: baseTemplate/templates/baseTemplate/index.html:650 -msgid "Web Based Terminal" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:657 -#: baseTemplate/templates/baseTemplate/index.html:659 -msgid "CloudLinux" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:666 -#, fuzzy -#| msgid "Create Package" -msgid "Create Cloud Linux Package" -msgstr "Създай Пакет" - -#: baseTemplate/templates/baseTemplate/index.html:671 -msgid "List Cloud Linux Package" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:676 -#, fuzzy -#| msgid "Attach git to your websites." -msgid "Monitor Usage of your Websites" -msgstr "Прикачи Git за тази страница." - -#: baseTemplate/templates/baseTemplate/index.html:676 -#, fuzzy -#| msgid "Resource Usage" -msgid "Monitor Usage" -msgstr "Използвани ресурси" - -#: baseTemplate/templates/baseTemplate/index.html:685 -#: baseTemplate/templates/baseTemplate/index.html:687 -#, fuzzy -#| msgid "Configurations" -msgid "Containerization" -msgstr "Конфигурация" - -#: baseTemplate/templates/baseTemplate/index.html:694 -#, fuzzy -#| msgid "Create Website" -msgid "Create Website Limits" -msgstr "Нова Страница" - -#: baseTemplate/templates/baseTemplate/index.html:694 -#, fuzzy -#| msgid "Create Alias" -msgid "Create Limits" -msgstr "Паркирай Домейн" - -#: baseTemplate/templates/baseTemplate/index.html:702 -msgid "Docker" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:704 -#, fuzzy -#| msgid "DKIM Manager" -msgid "Docker Manager" -msgstr "DKIM Мениджър" - -#: baseTemplate/templates/baseTemplate/index.html:711 -#, fuzzy -#| msgid "Manage Services" -msgid "Manage Docker Images" -msgstr "Manage Services" - -#: baseTemplate/templates/baseTemplate/index.html:711 -#: dockerManager/templates/dockerManager/index.html:49 -#: dockerManager/templates/dockerManager/index.html:51 -#: dockerManager/templates/dockerManager/manageImages.html:14 -#, fuzzy -#| msgid "Change Email Password" -msgid "Manage Images" -msgstr "Промени Email Парола" - -#: baseTemplate/templates/baseTemplate/index.html:714 -#, fuzzy -#| msgid "Manage Services" -msgid "Manage Docker Containers" -msgstr "Manage Services" - -#: baseTemplate/templates/baseTemplate/index.html:714 -#: dockerManager/templates/dockerManager/index.html:29 -#: dockerManager/templates/dockerManager/index.html:31 -#, fuzzy -#| msgid "Manage Postfix" -msgid "Manage Containers" -msgstr "Управлявай Postfix" - -#: baseTemplate/templates/baseTemplate/index.html:717 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Create New Docker Container" -msgstr "Създай Потребител - CyberPanel" - -#: baseTemplate/templates/baseTemplate/index.html:717 -#, fuzzy -#| msgid "Create New User" -msgid "Create New Container" -msgstr "Нов Потребител" - -#: baseTemplate/templates/baseTemplate/index.html:733 -#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 -#: tuning/templates/tuning/liteSpeedTuning.html:12 -msgid "LiteSpeed Tuning" -msgstr "LiteSpeed Настройки" - -#: baseTemplate/templates/baseTemplate/index.html:736 -#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 -#: tuning/templates/tuning/phpTuning.html:13 -#: tuning/templates/tuning/phpTuning.html:149 -msgid "PHP Tuning" -msgstr "PHP Настройки" - -#: baseTemplate/templates/baseTemplate/index.html:751 -#: serverStatus/templates/serverStatus/topProcesses.html:14 -#: serverStatus/templates/serverStatus/topProcesses.html:179 -#, fuzzy -#| msgid "LiteSpeed Processes" -msgid "Top Processes" -msgstr "LiteSpeed Processes" - -#: baseTemplate/templates/baseTemplate/index.html:754 -#: serverStatus/templates/serverStatus/index.html:25 -#: serverStatus/templates/serverStatus/index.html:28 -msgid "LiteSpeed Status" -msgstr "LiteSpeed Статус" - -#: baseTemplate/templates/baseTemplate/index.html:757 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 -#: serverStatus/templates/serverStatus/index.html:38 -msgid "CyberPanel Main Log File" -msgstr "Главен CyberPanel Лог" - -#: baseTemplate/templates/baseTemplate/index.html:760 -msgid "Services Status" -msgstr "Сървър Статус" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/installExtensions.html:13 -msgid "Install PHP Extensions" -msgstr "Инсталирай PHP Модул" - -#: baseTemplate/templates/baseTemplate/index.html:776 -#: managePHP/templates/managePHP/index.html:24 -#: managePHP/templates/managePHP/index.html:26 -msgid "Install Extensions" -msgstr "Инсталирай Модул" - -#: baseTemplate/templates/baseTemplate/index.html:779 -#: managePHP/templates/managePHP/index.html:35 -#: managePHP/templates/managePHP/index.html:37 -msgid "Edit PHP Configs" -msgstr "Промени PHP Config" - -#: baseTemplate/templates/baseTemplate/index.html:795 -msgid "Access Log" -msgstr "Access Лог" - -#: baseTemplate/templates/baseTemplate/index.html:797 -#: emailMarketing/templates/emailMarketing/website.html:139 -#: serverLogs/templates/serverLogs/errorLogs.html:13 -#: serverLogs/templates/serverLogs/index.html:37 -#: serverLogs/templates/serverLogs/index.html:40 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 -#: websiteFunctions/templates/websiteFunctions/website.html:126 -msgid "Error Logs" -msgstr "Error Логове" - -#: baseTemplate/templates/baseTemplate/index.html:799 -#: emailPremium/templates/emailPremium/emailPage.html:144 -#: serverLogs/templates/serverLogs/emailLogs.html:14 -#: serverLogs/templates/serverLogs/index.html:49 -#: serverLogs/templates/serverLogs/index.html:52 -msgid "Email Logs" -msgstr "Email Логове" - -#: baseTemplate/templates/baseTemplate/index.html:799 -msgid "Email Log" -msgstr "Email Лог" - -#: baseTemplate/templates/baseTemplate/index.html:801 -#: serverLogs/templates/serverLogs/ftplogs.html:13 -#: serverLogs/templates/serverLogs/index.html:61 -#: serverLogs/templates/serverLogs/index.html:64 -msgid "FTP Logs" -msgstr "FTP Логове" - -#: baseTemplate/templates/baseTemplate/index.html:803 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 -msgid "ModSecurity Audit Logs" -msgstr "ModSecurity Audit логове" - -#: baseTemplate/templates/baseTemplate/index.html:803 -msgid "ModSec Audit Logs" -msgstr "ModSec Audit логове" - -#: baseTemplate/templates/baseTemplate/index.html:819 -msgid "Firewall Home" -msgstr "Защитна Стена" - -#: baseTemplate/templates/baseTemplate/index.html:819 -#: firewall/templates/firewall/csf.html:119 -#: firewall/templates/firewall/index.html:25 -#: firewall/templates/firewall/index.html:27 -msgid "Firewall" -msgstr "Защитна Стена" - -#: baseTemplate/templates/baseTemplate/index.html:821 -#: firewall/templates/firewall/index.html:36 -#: firewall/templates/firewall/index.html:38 -#: firewall/templates/firewall/secureSSH.html:13 -#: firewall/templates/firewall/secureSSH.html:20 -msgid "Secure SSH" -msgstr "Сигурен SSH" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:58 -msgid "ModSecurity Configurations" -msgstr "Редактирай ModSecurity Конфигурация" - -#: baseTemplate/templates/baseTemplate/index.html:823 -#: firewall/templates/firewall/index.html:60 -msgid "ModSecurity Conf" -msgstr "ModSecurity Conf" - -#: baseTemplate/templates/baseTemplate/index.html:826 -#: firewall/templates/firewall/index.html:69 -#: firewall/templates/firewall/index.html:71 -#: firewall/templates/firewall/modSecurityRules.html:20 -msgid "ModSecurity Rules" -msgstr "ModSecurity Rules" - -#: baseTemplate/templates/baseTemplate/index.html:829 -#: firewall/templates/firewall/index.html:80 -#: firewall/templates/firewall/index.html:82 -msgid "ModSecurity Rules Packs" -msgstr "ModSecurity Rules Packs" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/index.html:47 -msgid "ConfigServer Security & Firewall (CSF)" -msgstr "ConfigServer Security & Firewall (CSF)" - -#: baseTemplate/templates/baseTemplate/index.html:832 -#: firewall/templates/firewall/csf.html:21 -#: firewall/templates/firewall/csf.html:86 -#: firewall/templates/firewall/csf.html:95 -#: firewall/templates/firewall/index.html:49 -msgid "CSF" -msgstr "CSF" - -#: baseTemplate/templates/baseTemplate/index.html:835 -#, fuzzy -#| msgid "Configurations" -msgid "CageFS Configurations" -msgstr "Конфигурация" - -#: baseTemplate/templates/baseTemplate/index.html:835 -msgid "CageFS" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:843 -#: baseTemplate/templates/baseTemplate/index.html:845 -msgid "Mail Settings" -msgstr "Mail Настройки" - -#: baseTemplate/templates/baseTemplate/index.html:852 -#: emailPremium/templates/emailPremium/policyServer.html:20 -msgid "Email Policy Server" -msgstr "Email Policy Server" - -#: baseTemplate/templates/baseTemplate/index.html:855 -msgid "Email Limits" -msgstr "Email Лимити" - -#: baseTemplate/templates/baseTemplate/index.html:858 -msgid "SpamAssassin Configurations" -msgstr "SpamAssassin Конфигурация" - -#: baseTemplate/templates/baseTemplate/index.html:858 -#: emailPremium/templates/emailPremium/SpamAssassin.html:25 -#: firewall/templates/firewall/spamassassin.html:20 -msgid "SpamAssassin" -msgstr "SpamAssassin" - -#: baseTemplate/templates/baseTemplate/index.html:861 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 -#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 -#: emailMarketing/templates/emailMarketing/website.html:978 -#: websiteFunctions/templates/websiteFunctions/website.html:909 -#, fuzzy -#| msgid "Email Forwarding" -msgid "Email Marketing" -msgstr "Email пренасочване" - -#: baseTemplate/templates/baseTemplate/index.html:869 -#: baseTemplate/templates/baseTemplate/index.html:871 -msgid "Manage Services" -msgstr "Manage Services" - -#: baseTemplate/templates/baseTemplate/index.html:877 -#: manageServices/templates/manageServices/managePowerDNS.html:25 -msgid "Manage PowerDNS" -msgstr "Управлявай PowerDNS" - -#: baseTemplate/templates/baseTemplate/index.html:880 -#: manageServices/templates/manageServices/managePostfix.html:22 -msgid "Manage Postfix" -msgstr "Управлявай Postfix" - -#: baseTemplate/templates/baseTemplate/index.html:883 -msgid "Manage FTP" -msgstr "Управлявай FTP" - -#: baseTemplate/templates/baseTemplate/index.html:890 -#: baseTemplate/templates/baseTemplate/index.html:892 -#: pluginHolder/templates/pluginHolder/plugins.html:14 -#: pluginHolder/templates/pluginHolder/plugins.html:21 -msgid "Plugins" -msgstr "" - -#: baseTemplate/templates/baseTemplate/index.html:898 -#, fuzzy -#| msgid "Install Extensions" -msgid "Installed Plugins" -msgstr "Инсталирай Модул" - -#: baseTemplate/templates/baseTemplate/index.html:898 -#, fuzzy -#| msgid "Install" -msgid "Installed" -msgstr "Инсталирай" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:3 -msgid "Version Management - CyberPanel" -msgstr "Мениджър на Версия - CyberPanel" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:11 -msgid "" -"On this page you can manage versions and or upgrade to latest version of " -"CyberPanel" -msgstr "" -"От тази страница може да променяте версията на панела, както и да извършвате " -"upgrade до последната версия на CyberPanel" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:25 -msgid "Current Version" -msgstr "Сегашна Версия" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:33 -msgid "Build" -msgstr "Билд" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:42 -msgid "Latest Version" -msgstr "Последна Версия" - -#: baseTemplate/templates/baseTemplate/versionManagment.html:50 -msgid "Latest Build" -msgstr "Последен Билд" - -#: containerization/templates/containerization/listWebsites.html:3 -#, fuzzy -#| msgid "Domains - CyberPanel" -msgid "Limits - CyberPanel" -msgstr "Домейни - CyberPanel" - -#: containerization/templates/containerization/listWebsites.html:15 -msgid "Launch and set limits for the websites." -msgstr "" - -#: containerization/templates/containerization/notAvailable.html:14 -msgid "CyberPanel Ent is required for Containerization." -msgstr "" - -#: containerization/templates/containerization/notAvailable.html:22 -msgid "Containerization is only available on CyberPanel Ent. " -msgstr "" - -#: containerization/templates/containerization/notAvailable.html:39 -msgid "" -"Required packages are not installed on this server. Please proceed to " -"installation." -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:3 -#, fuzzy -#| msgid "Domains - CyberPanel" -msgid " limits - CyberPanel" -msgstr "Домейни - CyberPanel" - -#: containerization/templates/containerization/websiteContainerLimit.html:14 -#, fuzzy -#| msgid "Disk Usage" -msgid "Limits/Usage" -msgstr "Използван диск" - -#: containerization/templates/containerization/websiteContainerLimit.html:16 -msgid "Set limits and view usage for " -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:25 -msgid "" -"Limits are not being inforced, click Edit Limits to inforace the limits." -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:33 -msgid "Limit" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:34 -#: dns/templates/dns/addDeleteDNSRecords.html:330 -msgid "Value" -msgstr "Валута" - -#: containerization/templates/containerization/websiteContainerLimit.html:40 -#: containerization/templates/containerization/websiteContainerLimit.html:77 -#, fuzzy -#| msgid "CPU Usage" -msgid "CPU Percentage" -msgstr "CPU Използване" - -#: containerization/templates/containerization/websiteContainerLimit.html:44 -#: serverStatus/templates/serverStatus/topProcesses.html:131 -msgid "Memory" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:48 -#: containerization/templates/containerization/websiteContainerLimit.html:91 -msgid "I/O" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:56 -#: containerization/templates/containerization/websiteContainerLimit.html:107 -msgid "Network Speed" -msgstr "" - -#: containerization/templates/containerization/websiteContainerLimit.html:84 -#, fuzzy -#| msgid "Memory Soft Limit" -msgid "Memory Limit" -msgstr "Memory Soft Limit" - -#: databases/templates/databases/createDatabase.html:3 -msgid "Create New Database - CyberPanel" -msgstr "Създай нова База от Данни - CyberPanel" - -#: databases/templates/databases/createDatabase.html:13 -#: databases/templates/databases/phpMyAdmin.html:13 -msgid "Create a new database on this page." -msgstr "Създай нова база от данни от тази страница." - -#: databases/templates/databases/createDatabase.html:40 -#: databases/templates/databases/listDataBases.html:105 -msgid "Database Name" -msgstr "Име на База от Данни" - -#: databases/templates/databases/createDatabase.html:48 -#: firewall/templates/firewall/secureSSH.html:120 -#: ftp/templates/ftp/createFTPAccount.html:57 -#: ftp/templates/ftp/listFTPAccounts.html:123 -#: mailServer/templates/mailServer/createEmailAccount.html:59 -msgid "User Name" -msgstr "Потребителско Име" - -#: databases/templates/databases/createDatabase.html:61 -#: databases/templates/databases/listDataBases.html:74 -#: ftp/templates/ftp/createFTPAccount.html:73 -#: ftp/templates/ftp/listFTPAccounts.html:92 -#: mailServer/templates/mailServer/changeEmailPassword.html:74 -#: mailServer/templates/mailServer/createEmailAccount.html:74 -#: userManagment/templates/userManagment/createUser.html:90 -#: userManagment/templates/userManagment/modifyUser.html:68 -#, fuzzy -#| msgid "Generate Now" -msgid "Generate" -msgstr "Генерирай сега" - -#: databases/templates/databases/createDatabase.html:66 -#: databases/templates/databases/listDataBases.html:77 -#: ftp/templates/ftp/createFTPAccount.html:78 -#: ftp/templates/ftp/listFTPAccounts.html:96 -#: mailServer/templates/mailServer/changeEmailPassword.html:79 -#: mailServer/templates/mailServer/createEmailAccount.html:79 -#: userManagment/templates/userManagment/createUser.html:95 -#: userManagment/templates/userManagment/modifyUser.html:73 -#, fuzzy -#| msgid "Change Password" -msgid "Generated Password" -msgstr "Промени Парола" - -#: databases/templates/databases/createDatabase.html:71 -#: databases/templates/databases/listDataBases.html:84 -#: ftp/templates/ftp/createFTPAccount.html:85 -#: ftp/templates/ftp/listFTPAccounts.html:103 -#: mailServer/templates/mailServer/changeEmailPassword.html:86 -#: mailServer/templates/mailServer/createEmailAccount.html:86 -#: userManagment/templates/userManagment/createUser.html:101 -#: userManagment/templates/userManagment/modifyUser.html:79 -#, fuzzy -#| msgid "User" -msgid "Use" -msgstr "Потребител" - -#: databases/templates/databases/createDatabase.html:89 -#: databases/templates/databases/phpMyAdmin.html:41 -msgid "Cannot create database. Error message:" -msgstr "Базата от Данни не е създадена, защото:" - -#: databases/templates/databases/createDatabase.html:93 -#: databases/templates/databases/phpMyAdmin.html:45 -msgid "Database created successfully." -msgstr "Базата от Данни е създадена успешно." - -#: databases/templates/databases/deleteDatabase.html:3 -msgid "Delete Database - CyberPanel" -msgstr "Премахни База от Данни - CyberPanel" - -#: databases/templates/databases/deleteDatabase.html:13 -msgid "Delete an existing database on this page." -msgstr "Премахни налична база от данни." - -#: databases/templates/databases/deleteDatabase.html:38 -msgid "Select Database" -msgstr "Избери База от Данни" - -#: databases/templates/databases/deleteDatabase.html:64 -msgid "Database deleted successfully." -msgstr "Базата от Данни е успешно премахната." - -#: databases/templates/databases/index.html:3 -msgid "Database Functions - CyberPanel" -msgstr "Бази от Данни - CyberPanel" - -#: databases/templates/databases/index.html:13 -msgid "Create, edit and delete databases on this page." -msgstr "Създай, редактирай базите от данни." - -#: databases/templates/databases/listDataBases.html:3 -msgid "List Databases - CyberPanel" -msgstr "Бази от Данни - CyberPanel" - -#: databases/templates/databases/listDataBases.html:14 -msgid "List Databases or change their passwords." -msgstr "Списък на базите от данни или промени техните пароли." - -#: databases/templates/databases/listDataBases.html:26 -#: dns/templates/dns/addDeleteDNSRecords.html:42 -#: ftp/templates/ftp/deleteFTPAccount.html:39 -#: ftp/templates/ftp/listFTPAccounts.html:42 -#: mailServer/templates/mailServer/listEmails.html:43 -#: tuning/templates/tuning/phpTuning.html:30 -msgid "Select Domain" -msgstr "Избери Домейн" - -#: databases/templates/databases/listDataBases.html:44 -#: dns/templates/dns/addDeleteDNSRecords.html:367 -#: ftp/templates/ftp/listFTPAccounts.html:61 -msgid "Records successfully fetched for" -msgstr "Записите са успешно извлечени за" - -#: databases/templates/databases/listDataBases.html:49 -msgid "Password changed for: " -msgstr "Паролата е променена за" - -#: databases/templates/databases/listDataBases.html:53 -msgid "Cannot change password for " -msgstr "Невъзмона промяна на паролата за" - -#: databases/templates/databases/listDataBases.html:59 -#: firewall/templates/firewall/firewall.html:161 -#: ftp/templates/ftp/listFTPAccounts.html:76 -msgid "Could Not Connect to server. Please refresh this page" -msgstr "Действието не е изпълнение. Моля презаредете страницата." - -#: databases/templates/databases/listDataBases.html:106 -msgid "Database User" -msgstr "Потребител за база от данни" - -#: databases/templates/databases/listDataBases.html:117 -#: ftp/templates/ftp/listFTPAccounts.html:139 -msgid "Change" -msgstr "Промени" - -#: databases/templates/databases/phpMyAdmin.html:3 -#, fuzzy -#| msgid "Domains - CyberPanel" -msgid "phpMyAdmin - CyberPanel" -msgstr "Домейни - CyberPanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:3 -msgid "Add/Modify DNS Records - CyberPanel" -msgstr "Добави/Промени DNS записи - CyberPanel" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -msgid "Add/Modify DNS Zone" -msgstr "Добави/Промени DNS записи" - -#: dns/templates/dns/addDeleteDNSRecords.html:13 -#: dns/templates/dns/configureDefaultNameServers.html:12 -#: dns/templates/dns/createDNSZone.html:12 -#: dns/templates/dns/createNameServer.html:12 -#: dns/templates/dns/deleteDNSZone.html:12 -msgid "DNS Docs" -msgstr "DNS Документация" - -#: dns/templates/dns/addDeleteDNSRecords.html:14 -msgid "" -"On this page you can add/modify dns records for domains whose dns zone is " -"already created." -msgstr "" -"От тази страница може да добавяте или променяте dns записи за домейните " -"чиито dns зони са вече създадени." - -#: dns/templates/dns/addDeleteDNSRecords.html:19 -msgid "Add Records" -msgstr "Добави записи" - -#: dns/templates/dns/addDeleteDNSRecords.html:27 -#: dns/templates/dns/configureDefaultNameServers.html:24 -#: dns/templates/dns/createDNSZone.html:24 -#: dns/templates/dns/createNameServer.html:24 -#: dns/templates/dns/deleteDNSZone.html:25 -msgid "PowerDNS is disabled." -msgstr "PowerDNS е спрян" - -#: dns/templates/dns/addDeleteDNSRecords.html:29 -#: dns/templates/dns/configureDefaultNameServers.html:26 -#: dns/templates/dns/createDNSZone.html:26 -#: dns/templates/dns/createNameServer.html:26 -#: dns/templates/dns/deleteDNSZone.html:27 -#: ftp/templates/ftp/createFTPAccount.html:29 -#: ftp/templates/ftp/deleteFTPAccount.html:27 -#: ftp/templates/ftp/listFTPAccounts.html:29 -#: mailServer/templates/mailServer/changeEmailPassword.html:30 -#: mailServer/templates/mailServer/createEmailAccount.html:30 -#: mailServer/templates/mailServer/deleteEmailAccount.html:30 -#: mailServer/templates/mailServer/emailForwarding.html:28 -#: mailServer/templates/mailServer/listEmails.html:30 -msgid "Enable Now" -msgstr "Позволи" - -#: dns/templates/dns/addDeleteDNSRecords.html:78 -#: dns/templates/dns/addDeleteDNSRecords.html:101 -#: dns/templates/dns/addDeleteDNSRecords.html:125 -#: dns/templates/dns/addDeleteDNSRecords.html:148 -#: dns/templates/dns/addDeleteDNSRecords.html:176 -#: dns/templates/dns/addDeleteDNSRecords.html:200 -#: dns/templates/dns/addDeleteDNSRecords.html:224 -#: dns/templates/dns/addDeleteDNSRecords.html:248 -#: dns/templates/dns/addDeleteDNSRecords.html:272 -#: dns/templates/dns/addDeleteDNSRecords.html:298 -#: dns/templates/dns/addDeleteDNSRecords.html:329 -msgid "TTL" -msgstr "TTL" - -#: dns/templates/dns/addDeleteDNSRecords.html:88 -#: dns/templates/dns/addDeleteDNSRecords.html:111 -#: dns/templates/dns/addDeleteDNSRecords.html:135 -#: dns/templates/dns/addDeleteDNSRecords.html:162 -#: dns/templates/dns/addDeleteDNSRecords.html:187 -#: dns/templates/dns/addDeleteDNSRecords.html:211 -#: dns/templates/dns/addDeleteDNSRecords.html:235 -#: dns/templates/dns/addDeleteDNSRecords.html:259 -#: dns/templates/dns/addDeleteDNSRecords.html:287 -#: dns/templates/dns/addDeleteDNSRecords.html:304 -#: firewall/templates/firewall/firewall.html:104 -msgid "Add" -msgstr "Добави" - -#: dns/templates/dns/addDeleteDNSRecords.html:105 -msgid "IPV6 Address" -msgstr "IPV6 Адрес" - -#: dns/templates/dns/addDeleteDNSRecords.html:129 -#: dns/templates/dns/addDeleteDNSRecords.html:156 -#: dns/templates/dns/createDNSZone.html:38 -#: dns/templates/dns/createNameServer.html:36 -#: emailMarketing/templates/emailMarketing/website.html:318 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 -#: websiteFunctions/templates/websiteFunctions/website.html:280 -msgid "Domain Name" -msgstr "Домейн Име" - -#: dns/templates/dns/addDeleteDNSRecords.html:152 -#: dns/templates/dns/addDeleteDNSRecords.html:331 -msgid "Priority" -msgstr "Приоритет" - -#: dns/templates/dns/addDeleteDNSRecords.html:181 -msgid "Policy" -msgstr "Политика" - -#: dns/templates/dns/addDeleteDNSRecords.html:205 -msgid "Text" -msgstr "Текст" - -#: dns/templates/dns/addDeleteDNSRecords.html:229 -msgid "SOA Value" -msgstr "SOA стойност" - -#: dns/templates/dns/addDeleteDNSRecords.html:253 -msgid "Name server" -msgstr "Name server" - -#: dns/templates/dns/addDeleteDNSRecords.html:276 -msgid "Prioirty" -msgstr "Приоритет" - -#: dns/templates/dns/addDeleteDNSRecords.html:281 -msgid "Content" -msgstr "Стойност" - -#: dns/templates/dns/addDeleteDNSRecords.html:359 -msgid "Cannot fetch records. Error message:" -msgstr "Записите не са извлечени, защото:" - -#: dns/templates/dns/addDeleteDNSRecords.html:363 -msgid "Cannot add record. Error message: " -msgstr "Записа не е добавен, защото:" - -#: dns/templates/dns/addDeleteDNSRecords.html:371 -msgid "Record Successfully Deleted" -msgstr "Записа е успешно премахнат" - -#: dns/templates/dns/addDeleteDNSRecords.html:375 -msgid "Cannot delete record. Error message:" -msgstr "Записа не е премахнат, защото:" - -#: dns/templates/dns/addDeleteDNSRecords.html:379 -msgid "Record Successfully Added." -msgstr "Записа е успешно добавен." - -#: dns/templates/dns/configureDefaultNameServers.html:3 -#, fuzzy -#| msgid "Create Nameserver - CyberPanel" -msgid "Configure Default Nameserver - CyberPanel" -msgstr "Създай Nameserver - CyberPanel" - -#: dns/templates/dns/configureDefaultNameServers.html:12 -#, fuzzy -#| msgid "Create Nameserver" -msgid "Configure Default Nameserver" -msgstr "Създай Nameserver" - -#: dns/templates/dns/configureDefaultNameServers.html:13 -#: dns/templates/dns/createNameServer.html:13 -msgid "" -"You can use this page to setup nameservers using which people on the " -"internet can resolve websites hosted on this server." -msgstr "От тази страница може да добавяте NameServers." - -#: dns/templates/dns/configureDefaultNameServers.html:18 -#: dns/templates/dns/createDNSZone.html:18 -#: dns/templates/dns/createNameServer.html:18 -#: userManagment/templates/userManagment/modifyUser.html:19 -msgid "Details" -msgstr "Детайли" - -#: dns/templates/dns/configureDefaultNameServers.html:36 -#: dns/templates/dns/createNameServer.html:46 -msgid "First Nameserver" -msgstr "Първи Nameserver" - -#: dns/templates/dns/configureDefaultNameServers.html:45 -#, fuzzy -#| msgid "Second Nameserver (Back up)" -msgid "Second Nameserver" -msgstr "Втори Nameserver" - -#: dns/templates/dns/configureDefaultNameServers.html:52 -#, fuzzy -#| msgid "First Nameserver" -msgid "Third Nameserver" -msgstr "Първи Nameserver" - -#: dns/templates/dns/configureDefaultNameServers.html:59 -#, fuzzy -#| msgid "First Nameserver" -msgid "Forth Nameserver" -msgstr "Първи Nameserver" - -#: dns/templates/dns/configureDefaultNameServers.html:68 -#: emailMarketing/templates/emailMarketing/website.html:656 -#: emailMarketing/templates/emailMarketing/website.html:716 -#: firewall/templates/firewall/secureSSH.html:158 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 -#: websiteFunctions/templates/websiteFunctions/website.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:654 -msgid "Save" -msgstr "Запази" - -#: dns/templates/dns/createDNSZone.html:3 -msgid "Create DNS Zone - CyberPanel" -msgstr "Създай DNS Зона - CyberPanel" - -#: dns/templates/dns/createDNSZone.html:13 -msgid "" -"This page is used to create DNS zone, to edit dns zone you can visit Modify " -"DNS Zone Page." -msgstr "" -"Тази страница се използва за създаването на DNS зони. За редакция " -"използвайте страницата за редакция на DNS зони." - -#: dns/templates/dns/createDNSZone.html:61 -msgid "Cannot create DNS Zone. Error message:" -msgstr "DNS зоната не е създадена, защото:" - -#: dns/templates/dns/createDNSZone.html:65 -msgid "DNS Zone for domain:" -msgstr "DNS Зона за домейн:" - -#: dns/templates/dns/createNameServer.html:3 -msgid "Create Nameserver - CyberPanel" -msgstr "Създай Nameserver - CyberPanel" - -#: dns/templates/dns/createNameServer.html:62 -msgid "Second Nameserver (Back up)" -msgstr "Втори Nameserver" - -#: dns/templates/dns/createNameServer.html:89 -msgid "Nameserver cannot be created. Error message:" -msgstr "Nameserver не са създадени. Съобшение за грешка:" - -#: dns/templates/dns/createNameServer.html:93 -msgid "The following nameservers were successfully created:" -msgstr "Следните Nameserver са успешно създадени:" - -#: dns/templates/dns/deleteDNSZone.html:3 -msgid "Delete DNS Zone - CyberPanel" -msgstr "Премахни DNS Зона - CyberPanel" - -#: dns/templates/dns/deleteDNSZone.html:12 -#: dns/templates/dns/deleteDNSZone.html:18 -#: userManagment/templates/userManagment/createACL.html:230 -#: userManagment/templates/userManagment/modifyACL.html:234 -msgid "Delete DNS Zone" -msgstr "Премахни DNS Зона" - -#: dns/templates/dns/deleteDNSZone.html:13 -msgid "" -"This page can be used to delete DNS Zone. Deleting the DNS zone will remove " -"all its related records as well." -msgstr "" -"От тази страница може да премахвате DNS зони. Премахването на зона ще " -"премахне и всички свързани с нея записи." - -#: dns/templates/dns/deleteDNSZone.html:37 -msgid "Select Zone" -msgstr "Избери Зона" - -#: dns/templates/dns/deleteDNSZone.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:51 -#: emailMarketing/templates/emailMarketing/sendEmails.html:51 -#: ftp/templates/ftp/deleteFTPAccount.html:73 -#: mailServer/templates/mailServer/deleteEmailAccount.html:82 -#: packages/templates/packages/deletePackage.html:47 -#: userManagment/templates/userManagment/deleteACL.html:49 -#: userManagment/templates/userManagment/deleteUser.html:51 -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 -msgid "Are you sure?" -msgstr "Сирен ли си?" - -#: dns/templates/dns/deleteDNSZone.html:69 -msgid "Cannot delete zone. Error message: " -msgstr "Зоната не е премахната. Съобщение за грешка:" - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "Zone for domain:" -msgstr "Зона за домейн:" - -#: dns/templates/dns/deleteDNSZone.html:73 -msgid "is successfully erased." -msgstr "е успешно заличено." - -#: dns/templates/dns/index.html:3 -msgid "DNS Functions - CyberPanel" -msgstr "DNS Функции - CyberPanel" - -#: dns/templates/dns/index.html:12 -msgid "DNS Functions" -msgstr "DNS Функции" - -#: dns/templates/dns/index.html:13 -msgid "Create, edit and delete DNS zones on this page." -msgstr "Създавай, редактирай или премахвай DNS зони от тази страница." - -#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 -msgid "Add Delete Records" -msgstr "Добави Премахни Записи" - -#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 -msgid "Add Delete/Records" -msgstr "Добави Премахни/Записи" - -#: dockerManager/templates/dockerManager/images.html:3 -#: dockerManager/templates/dockerManager/manageImages.html:3 -#, fuzzy -#| msgid "Cron Management - CyberPanel" -msgid "Docker Manage Images - CyberPanel" -msgstr "Cron Мениджър - CyberPanel" - -#: dockerManager/templates/dockerManager/images.html:14 -#: dockerManager/templates/dockerManager/index.html:39 -#, fuzzy -#| msgid "Create new folder!" -msgid "Create new container" -msgstr "Създай нова директория!" - -#: dockerManager/templates/dockerManager/images.html:15 -msgid "Search new images and manage existing ones" -msgstr "" - -#: dockerManager/templates/dockerManager/images.html:22 -msgid "Locally Available Images" -msgstr "" - -#: dockerManager/templates/dockerManager/images.html:48 -#, fuzzy -#| msgid "Create FTP" -msgid "Create" -msgstr "Създай FTP" - -#: dockerManager/templates/dockerManager/index.html:3 -#, fuzzy -#| msgid "Cron Management - CyberPanel" -msgid "Docker Container Management - CyberPanel" -msgstr "Cron Мениджър - CyberPanel" - -#: dockerManager/templates/dockerManager/index.html:13 -#, fuzzy -#| msgid "Version Management" -msgid "Docker Container Management" -msgstr "Мениджър на Версия" - -#: dockerManager/templates/dockerManager/index.html:41 -#, fuzzy -#| msgid "Select Owner" -msgid "New Container" -msgstr "Избери Собственик" - -#: dockerManager/templates/dockerManager/install.html:3 -#, fuzzy -#| msgid "Install Joomla - CyberPanel" -msgid "Install Docker - CyberPanel" -msgstr "Инсталирай Joomla - CyberPanel" - -#: dockerManager/templates/dockerManager/install.html:12 -#: dockerManager/templates/dockerManager/install.html:18 -#, fuzzy -#| msgid "Install Now" -msgid "Install Docker" -msgstr "Инсталирай" - -#: dockerManager/templates/dockerManager/install.html:26 -msgid "" -"Unable to connect to docker daemon, please try restarting docker from " -"service page" -msgstr "" - -#: dockerManager/templates/dockerManager/install.html:28 -msgid "You do not have sufficient permissions to access this page" -msgstr "" - -#: dockerManager/templates/dockerManager/install.html:32 -msgid "" -"Docker is currently not installed on this server. To manage containers, you " -"must first install it." -msgstr "" - -#: dockerManager/templates/dockerManager/install.html:53 -msgid "" -"You do not have permissions to install Docker. Please contact your system " -"administrator" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:3 -#, fuzzy -#| msgid "Create Email Account - CyberPanel" -msgid "Containers List - CyberPanel" -msgstr "Създай Email акаунт - CyberPanel" - -#: dockerManager/templates/dockerManager/listContainers.html:14 -#, fuzzy -#| msgid "List Domains" -msgid "List Containers" -msgstr "Списък с Домейн" - -#: dockerManager/templates/dockerManager/listContainers.html:17 -msgid "Manage containers on server" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:23 -msgid "Containers" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "Unlisted Containers" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:85 -msgid "" -"Containers listed below were either not created through panel or were not " -"saved to database properly" -msgstr "" - -#: dockerManager/templates/dockerManager/listContainers.html:148 -#: dockerManager/templates/dockerManager/runContainer.html:52 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 -msgid "Select Owner" -msgstr "Избери Собственик" - -#: dockerManager/templates/dockerManager/manageImages.html:17 -#, fuzzy -#| msgid "On this page you can configure ModSecurity settings." -msgid "On this page you can manage docker images." -msgstr "От тази страница може да настройте ModSecurity" - -#: dockerManager/templates/dockerManager/manageImages.html:65 -#: dockerManager/templates/dockerManager/manageImages.html:66 -msgid "Images" -msgstr "" - -#: dockerManager/templates/dockerManager/manageImages.html:67 -#, fuzzy -#| msgid "Delete Website" -msgid "Delete unused images" -msgstr "Изтрий Страница" - -#: dockerManager/templates/dockerManager/manageImages.html:95 -msgid "Official image" -msgstr "" - -#: dockerManager/templates/dockerManager/manageImages.html:104 -msgid "Pull" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:3 -#, fuzzy -#| msgid "File Manager - CyberPanel" -msgid "Run new container - CyberPanel" -msgstr "Файл Мениджър - CyberPanel" - -#: dockerManager/templates/dockerManager/runContainer.html:12 -msgid "Run Container" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:13 -msgid "Modify parameters for your new container" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:20 -#, fuzzy -#| msgid "Tuning Details" -msgid "Container Details" -msgstr "Детайли за Настройки" - -#: dockerManager/templates/dockerManager/runContainer.html:36 -#: dockerManager/templates/dockerManager/viewContainer.html:70 -msgid "Image" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:44 -msgid "Tag" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:64 -#: dockerManager/templates/dockerManager/viewContainer.html:206 -#, fuzzy -#| msgid "memory_limit" -msgid "Memory limit" -msgstr "memory_limit" - -#: dockerManager/templates/dockerManager/runContainer.html:104 -#: dockerManager/templates/dockerManager/viewContainer.html:250 -msgid "ENV" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:125 -#: dockerManager/templates/dockerManager/viewContainer.html:283 -msgid "Map Volumes" -msgstr "" - -#: dockerManager/templates/dockerManager/runContainer.html:153 -#: dockerManager/templates/dockerManager/viewContainer.html:310 -#, fuzzy -#| msgid "Add Key" -msgid "Add field" -msgstr "Добави Ключ" - -#: dockerManager/templates/dockerManager/runContainer.html:161 -#, fuzzy -#| msgid "Create Domain" -msgid "Create Container" -msgstr "Създай Домейн" - -#: dockerManager/templates/dockerManager/runContainer.html:180 -#, fuzzy -#| msgid "is successfully created." -msgid "Container succesfully created." -msgstr "е успешно създаден." - -#: dockerManager/templates/dockerManager/runContainer.html:196 -#: emailMarketing/templates/emailMarketing/createEmailList.html:59 -#: emailMarketing/templates/emailMarketing/manageLists.html:100 -#: emailMarketing/templates/emailMarketing/sendEmails.html:135 -#: emailMarketing/templates/emailMarketing/website.html:431 -#: managePHP/templates/managePHP/installExtensions.html:103 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 -#: websiteFunctions/templates/websiteFunctions/website.html:394 -msgid "Go Back" -msgstr "Назад" - -#: dockerManager/templates/dockerManager/viewContainer.html:3 -#, fuzzy -#| msgid "Home - CyberPanel" -msgid "Container Home - CyberPanel" -msgstr "Начало - CyberPanel" - -#: dockerManager/templates/dockerManager/viewContainer.html:14 -#, fuzzy -#| msgid "Manage Postfix" -msgid "Manage Container" -msgstr "Управлявай Postfix" - -#: dockerManager/templates/dockerManager/viewContainer.html:15 -#, fuzzy -#| msgid "Currently:" -msgid "Currently managing: " -msgstr "В момента" - -#: dockerManager/templates/dockerManager/viewContainer.html:24 -msgid "Container Information" -msgstr "" - -#: dockerManager/templates/dockerManager/viewContainer.html:37 -#, fuzzy -#| msgid "Resource Usage" -msgid "Memory Usage" -msgstr "Използвани ресурси" - -#: dockerManager/templates/dockerManager/viewContainer.html:68 -#, fuzzy -#| msgid "Control DNS" -msgid "Container ID" -msgstr "Контрол на DNS" - -#: dockerManager/templates/dockerManager/viewContainer.html:77 -#, fuzzy -#| msgid "Port" -msgid "Ports" -msgstr "Порт" - -#: dockerManager/templates/dockerManager/viewContainer.html:79 -#, fuzzy -#| msgid "Stop" -msgid "to" -msgstr "Спри" - -#: dockerManager/templates/dockerManager/viewContainer.html:227 -#, fuzzy -#| msgid "Configurations" -msgid "Confirmation" -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:42 -#, fuzzy -#| msgid "Create Alias" -msgid "Create List" -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:33 -msgid "Enable Now." -msgstr "Позволи" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 -#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 -#: userManagment/templates/userManagment/createUser.html:76 -#: userManagment/templates/userManagment/listUsers.html:32 -#: userManagment/templates/userManagment/userProfile.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 -msgid "Username" -msgstr "Потребителско Име" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 -msgid "Email Marketing Enabled." -msgstr "" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:53 -#: emailPremium/templates/emailPremium/emailLimits.html:159 -#: emailPremium/templates/emailPremium/emailPage.html:55 -#: emailPremium/templates/emailPremium/emailPage.html:61 -#: emailPremium/templates/emailPremium/listDomains.html:62 -#: tuning/templates/tuning/phpTuning.html:94 -#: tuning/templates/tuning/phpTuning.html:234 -msgid "Disable" -msgstr "Забрани" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 -msgid "Email Marketing Disabled." -msgstr "" - -#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 -#: emailPremium/templates/emailPremium/emailLimits.html:55 -#: emailPremium/templates/emailPremium/emailLimits.html:161 -#: emailPremium/templates/emailPremium/emailPage.html:57 -#: emailPremium/templates/emailPremium/emailPage.html:63 -#: emailPremium/templates/emailPremium/listDomains.html:64 -#: tuning/templates/tuning/phpTuning.html:93 -#: tuning/templates/tuning/phpTuning.html:233 -msgid "Enable" -msgstr "Позволи" - -#: emailMarketing/templates/emailMarketing/manageLists.html:3 -#, 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:484 -#: filemanager/templates/filemanager/index.html:417 -#: filemanager/templates/filemanager/index.html:460 -#: filemanager/templates/filemanager/index.html:523 -#: filemanager/templates/filemanager/index.html:558 -#: filemanager/templates/filemanager/index.html:588 -#: filemanager/templates/filemanager/index.html:649 -#: websiteFunctions/templates/websiteFunctions/website.html:447 -msgid "Close" -msgstr "Затвори" - -#: emailMarketing/templates/emailMarketing/manageLists.html:55 -#: emailMarketing/templates/emailMarketing/sendEmails.html:55 -#: filemanager/templates/filemanager/index.html:416 -msgid "Confirm" -msgstr "Потвърди" - -#: emailMarketing/templates/emailMarketing/manageLists.html:63 -msgid "Verify This List" -msgstr "" - -#: emailMarketing/templates/emailMarketing/manageLists.html:66 -#, 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/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 -#: userManagment/templates/userManagment/listUsers.html:36 -#, fuzzy -#| msgid "Select Owner" -msgid "Owner" -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:1030 -#: emailMarketing/templates/emailMarketing/website.html:1033 -#: emailMarketing/templates/emailMarketing/website.html:1034 -#: websiteFunctions/templates/websiteFunctions/website.html:956 -#: websiteFunctions/templates/websiteFunctions/website.html:960 -#: websiteFunctions/templates/websiteFunctions/website.html:961 -#, 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 -#: websiteFunctions/templates/websiteFunctions/website.html:677 -#, 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: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:16 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 -#: websiteFunctions/templates/websiteFunctions/website.html:16 -msgid "Preview" -msgstr "Покажи" - -#: emailMarketing/templates/emailMarketing/website.html:17 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 -#: websiteFunctions/templates/websiteFunctions/website.html:17 -msgid "All functions related to a particular site." -msgstr "Всички функции, които са свързани с определена страница." - -#: emailMarketing/templates/emailMarketing/website.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 -#: websiteFunctions/templates/websiteFunctions/website.html:28 -msgid "Resource Usage" -msgstr "Използвани ресурси" - -#: emailMarketing/templates/emailMarketing/website.html:39 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 -#: websiteFunctions/templates/websiteFunctions/website.html:42 -msgid "Resource" -msgstr "Ресурси" - -#: emailMarketing/templates/emailMarketing/website.html:41 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 -#: websiteFunctions/templates/websiteFunctions/website.html:44 -msgid "Allowed" -msgstr "Позволено" - -#: emailMarketing/templates/emailMarketing/website.html:63 -#: emailMarketing/templates/emailMarketing/website.html:89 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 -#: websiteFunctions/templates/websiteFunctions/website.html:64 -#: websiteFunctions/templates/websiteFunctions/website.html:86 -msgid "Bandwidth Usage" -msgstr "Използван Трафик" - -#: emailMarketing/templates/emailMarketing/website.html:124 -#: emailMarketing/templates/emailMarketing/website.html:127 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 -#: websiteFunctions/templates/websiteFunctions/website.html:112 -#: websiteFunctions/templates/websiteFunctions/website.html:116 -msgid "Load Access Logs" -msgstr "Зареди Access Логове" - -#: emailMarketing/templates/emailMarketing/website.html:128 -#: serverLogs/templates/serverLogs/accessLogs.html:16 -#: serverLogs/templates/serverLogs/index.html:25 -#: serverLogs/templates/serverLogs/index.html:28 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 -#: websiteFunctions/templates/websiteFunctions/website.html:117 -msgid "Access Logs" -msgstr "Access Логове" - -#: emailMarketing/templates/emailMarketing/website.html:135 -#: emailMarketing/templates/emailMarketing/website.html:138 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 -#: websiteFunctions/templates/websiteFunctions/website.html:121 -#: websiteFunctions/templates/websiteFunctions/website.html:125 -msgid "Load Error Logs" -msgstr "Зареди Error Логове" - -#: emailMarketing/templates/emailMarketing/website.html:150 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 -#: websiteFunctions/templates/websiteFunctions/website.html:133 -msgid "Logs Fetched" -msgstr "Логовете са изтеглени" - -#: emailMarketing/templates/emailMarketing/website.html:155 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 -#: websiteFunctions/templates/websiteFunctions/website.html:136 -msgid "" -"Could not fetch logs, see the logs file through command line. Error message:" -msgstr "" -"Лог файловете не са извлечени. Използвайте терминала за техния преглед. " -"Съобщение за грешка: " - -#: emailMarketing/templates/emailMarketing/website.html:179 -#: emailMarketing/templates/emailMarketing/website.html:221 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 -#: websiteFunctions/templates/websiteFunctions/website.html:154 -#: websiteFunctions/templates/websiteFunctions/website.html:199 -msgid "Next" -msgstr "Следваща" - -#: emailMarketing/templates/emailMarketing/website.html:181 -#: emailMarketing/templates/emailMarketing/website.html:223 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 -#: websiteFunctions/templates/websiteFunctions/website.html:156 -#: websiteFunctions/templates/websiteFunctions/website.html:201 -msgid "Previous" -msgstr "Минала" - -#: emailMarketing/templates/emailMarketing/website.html:254 -#: emailPremium/templates/emailPremium/listDomains.html:22 -#: packages/templates/packages/createPackage.html:36 -#: packages/templates/packages/listPackages.html:93 -#: packages/templates/packages/modifyPackage.html:40 -#: websiteFunctions/templates/websiteFunctions/website.html:225 -msgid "Domains" -msgstr "Домейни" - -#: emailMarketing/templates/emailMarketing/website.html:262 -#: emailMarketing/templates/emailMarketing/website.html:265 -#: emailMarketing/templates/emailMarketing/website.html:266 -#: emailMarketing/templates/emailMarketing/website.html:267 -#: websiteFunctions/templates/websiteFunctions/website.html:230 -#: websiteFunctions/templates/websiteFunctions/website.html:233 -#: websiteFunctions/templates/websiteFunctions/website.html:234 -#: websiteFunctions/templates/websiteFunctions/website.html:235 -msgid "Add Domains" -msgstr "Добави Домейни" - -#: emailMarketing/templates/emailMarketing/website.html:274 -#: emailMarketing/templates/emailMarketing/website.html:275 -#: emailMarketing/templates/emailMarketing/website.html:278 -#: emailMarketing/templates/emailMarketing/website.html:279 -#: emailMarketing/templates/emailMarketing/website.html:280 -#: emailMarketing/templates/emailMarketing/website.html:300 -#: emailMarketing/templates/emailMarketing/website.html:303 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: websiteFunctions/templates/websiteFunctions/website.html:240 -#: websiteFunctions/templates/websiteFunctions/website.html:241 -#: websiteFunctions/templates/websiteFunctions/website.html:244 -#: websiteFunctions/templates/websiteFunctions/website.html:245 -#: websiteFunctions/templates/websiteFunctions/website.html:246 -#: websiteFunctions/templates/websiteFunctions/website.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:266 -msgid "List Domains" -msgstr "Списък с Домейн" - -#: emailMarketing/templates/emailMarketing/website.html:286 -#: emailMarketing/templates/emailMarketing/website.html:287 -#: emailMarketing/templates/emailMarketing/website.html:290 -#: emailMarketing/templates/emailMarketing/website.html:291 -#: emailMarketing/templates/emailMarketing/website.html:292 -#: websiteFunctions/templates/websiteFunctions/website.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:252 -#: websiteFunctions/templates/websiteFunctions/website.html:255 -#: websiteFunctions/templates/websiteFunctions/website.html:256 -#: websiteFunctions/templates/websiteFunctions/website.html:257 -msgid "Domain Alias" -msgstr "Domain Alias" - -#: emailMarketing/templates/emailMarketing/website.html:299 -#: emailMarketing/templates/emailMarketing/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:262 -#: websiteFunctions/templates/websiteFunctions/website.html:267 -msgid "Add new Cron Job" -msgstr "Добави нова Cron Job" - -#: emailMarketing/templates/emailMarketing/website.html:305 -#: websiteFunctions/templates/websiteFunctions/website.html:268 -msgid "Cron Jobs" -msgstr "Cron Jobs" - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "This path is relative to: " -msgstr "Този път е относим към: " - -#: emailMarketing/templates/emailMarketing/website.html:332 -#: websiteFunctions/templates/websiteFunctions/website.html:295 -msgid "Leave empty to set default." -msgstr "Отсави празни за по-подразбиране" - -#: emailMarketing/templates/emailMarketing/website.html:336 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 -#: websiteFunctions/templates/websiteFunctions/website.html:299 -msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" -msgstr "" -"Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" - -#: emailMarketing/templates/emailMarketing/website.html:341 -#: emailMarketing/templates/emailMarketing/website.html:794 -#: managePHP/templates/managePHP/editPHPConfig.html:49 -#: managePHP/templates/managePHP/editPHPConfig.html:177 -#: managePHP/templates/managePHP/installExtensions.html:29 -#: tuning/templates/tuning/phpTuning.html:166 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 -#: websiteFunctions/templates/websiteFunctions/website.html:304 -#: websiteFunctions/templates/websiteFunctions/website.html:737 -msgid "Select PHP" -msgstr "Избери PHP" - -#: emailMarketing/templates/emailMarketing/website.html:354 -#: packages/templates/packages/createPackage.html:84 -#: packages/templates/packages/modifyPackage.html:87 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 -#: websiteFunctions/templates/websiteFunctions/website.html:317 -msgid "Additional Features" -msgstr "Допълнителни функции" - -#: emailMarketing/templates/emailMarketing/website.html:388 -#: websiteFunctions/templates/websiteFunctions/website.html:351 -msgid "Create Domain" -msgstr "Създай Домейн" - -#: emailMarketing/templates/emailMarketing/website.html:415 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 -#: websiteFunctions/templates/websiteFunctions/website.html:378 -msgid "Website succesfully created." -msgstr "Сайтът е успешно създаден." - -#: emailMarketing/templates/emailMarketing/website.html:449 -#: websiteFunctions/templates/websiteFunctions/website.html:412 -msgid "PHP Version Changed to:" -msgstr "PHP Версията е променена на:" - -#: emailMarketing/templates/emailMarketing/website.html:453 -#: websiteFunctions/templates/websiteFunctions/website.html:416 -msgid "Deleted:" -msgstr "Изтрит:" - -#: emailMarketing/templates/emailMarketing/website.html:457 -#: websiteFunctions/templates/websiteFunctions/website.html:420 -msgid "SSL Issued:" -msgstr "SSL издаден за: " - -#: emailMarketing/templates/emailMarketing/website.html:461 -#: websiteFunctions/templates/websiteFunctions/website.html:424 -msgid "Changes applied successfully." -msgstr "Промените са запаметени успешно." - -#: emailMarketing/templates/emailMarketing/website.html:528 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 -#: websiteFunctions/templates/websiteFunctions/website.html:492 -msgid "Issue" -msgstr "Издаден" - -#: emailMarketing/templates/emailMarketing/website.html:558 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 -#: websiteFunctions/templates/websiteFunctions/website.html:520 -msgid "Configurations" -msgstr "Конфигурация" - -#: emailMarketing/templates/emailMarketing/website.html:568 -#: emailMarketing/templates/emailMarketing/website.html:572 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 -#: websiteFunctions/templates/websiteFunctions/website.html:526 -#: websiteFunctions/templates/websiteFunctions/website.html:530 -msgid "Edit vHost Main Configurations" -msgstr "Редактирай vHost Main Configurations" - -#: emailMarketing/templates/emailMarketing/website.html:573 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 -#: websiteFunctions/templates/websiteFunctions/website.html:531 -msgid "vHost Conf" -msgstr "vHost Conf" - -#: emailMarketing/templates/emailMarketing/website.html:582 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 -#: websiteFunctions/templates/websiteFunctions/website.html:537 -msgid "Add Rewrite Rules (.htaccess)" -msgstr "Добави Rewrite Rules (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:586 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 -#: websiteFunctions/templates/websiteFunctions/website.html:541 -msgid "Rewrite Rules (.htaccess)" -msgstr "Rewrite Rules (.htaccess)" - -#: emailMarketing/templates/emailMarketing/website.html:587 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 -#: websiteFunctions/templates/websiteFunctions/website.html:542 -msgid "Rewrite Rules" -msgstr "Rewrite Rules" - -#: emailMarketing/templates/emailMarketing/website.html:595 -#: emailMarketing/templates/emailMarketing/website.html:598 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 -#: websiteFunctions/templates/websiteFunctions/website.html:547 -#: websiteFunctions/templates/websiteFunctions/website.html:550 -msgid "Add Your Own SSL" -msgstr "Добави свой SSL" - -#: emailMarketing/templates/emailMarketing/website.html:599 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 -#: websiteFunctions/templates/websiteFunctions/website.html:551 -msgid "Add SSL" -msgstr "Добави SSL" - -#: emailMarketing/templates/emailMarketing/website.html:607 -#: emailMarketing/templates/emailMarketing/website.html:610 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 -#: websiteFunctions/templates/websiteFunctions/website.html:556 -#: websiteFunctions/templates/websiteFunctions/website.html:559 -msgid "Change PHP Version" -msgstr "Промени PHP Версия" - -#: emailMarketing/templates/emailMarketing/website.html:611 -#: emailMarketing/templates/emailMarketing/website.html:815 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 -#: websiteFunctions/templates/websiteFunctions/website.html:560 -#: websiteFunctions/templates/websiteFunctions/website.html:758 -msgid "Change PHP" -msgstr "Промени PHP" - -#: emailMarketing/templates/emailMarketing/website.html:623 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 -#: websiteFunctions/templates/websiteFunctions/website.html:571 -msgid "SSL Saved" -msgstr "SSL Запазен" - -#: emailMarketing/templates/emailMarketing/website.html:628 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 -#: websiteFunctions/templates/websiteFunctions/website.html:576 -msgid "Could not save SSL. Error message:" -msgstr "SSL не е запазен, защото:" - -#: emailMarketing/templates/emailMarketing/website.html:678 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 -#: websiteFunctions/templates/websiteFunctions/website.html:619 -msgid "Current configuration in the file fetched." -msgstr "Текущата конфигурация във файла е изтеглена" - -#: emailMarketing/templates/emailMarketing/website.html:683 -#: emailMarketing/templates/emailMarketing/website.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 -#: websiteFunctions/templates/websiteFunctions/website.html:623 -#: websiteFunctions/templates/websiteFunctions/website.html:636 -msgid "Could not fetch current configuration. Error message:" -msgstr "Текущата конфигурация не е изтеглена, защото:" - -#: emailMarketing/templates/emailMarketing/website.html:693 -#: emailMarketing/templates/emailMarketing/website.html:753 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 -#: websiteFunctions/templates/websiteFunctions/website.html:632 -#: websiteFunctions/templates/websiteFunctions/website.html:699 -msgid "Configurations saved." -msgstr "Конфигурацията е запазена." - -#: emailMarketing/templates/emailMarketing/website.html:734 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 -msgid "Current rewrite rules in the file fetched." -msgstr "Наличните rewrite rules са изтеглени." - -#: emailMarketing/templates/emailMarketing/website.html:743 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 -#: websiteFunctions/templates/websiteFunctions/website.html:690 -msgid "Could not fetch current rewrite rules. Error message:" -msgstr "Наличните rewrite rules не са изтеглени, защото:" - -#: emailMarketing/templates/emailMarketing/website.html:757 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 -#: websiteFunctions/templates/websiteFunctions/website.html:703 -msgid "Could not save rewrite rules. Error message:" -msgstr "Новите rewrite rules не са запаметени, защото:" - -#: emailMarketing/templates/emailMarketing/website.html:776 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 -#: websiteFunctions/templates/websiteFunctions/website.html:721 -msgid "Save Rewrite Rules" -msgstr "Запази Rewrite Rules" - -#: emailMarketing/templates/emailMarketing/website.html:825 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 -#: websiteFunctions/templates/websiteFunctions/website.html:768 -msgid "Failed to change PHP version. Error message:" -msgstr "PHP Версията не е променена. Съобщение за грешка:" - -#: emailMarketing/templates/emailMarketing/website.html:830 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 -#: websiteFunctions/templates/websiteFunctions/website.html:773 -msgid "PHP successfully changed for: " -msgstr "PHP е успешно сменена за:" - -#: emailMarketing/templates/emailMarketing/website.html:855 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 -#: websiteFunctions/templates/websiteFunctions/website.html:795 -msgid "Files" -msgstr "Файлове" - -#: emailMarketing/templates/emailMarketing/website.html:863 -#: emailMarketing/templates/emailMarketing/website.html:866 -#: emailMarketing/templates/emailMarketing/website.html:867 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 -#: websiteFunctions/templates/websiteFunctions/website.html:800 -#: websiteFunctions/templates/websiteFunctions/website.html:803 -#: websiteFunctions/templates/websiteFunctions/website.html:804 -msgid "File Manager" -msgstr "Файл Мениджър" - -#: emailMarketing/templates/emailMarketing/website.html:874 -#: emailMarketing/templates/emailMarketing/website.html:877 -#: emailMarketing/templates/emailMarketing/website.html:915 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 -#: websiteFunctions/templates/websiteFunctions/website.html:809 -#: websiteFunctions/templates/websiteFunctions/website.html:812 -#: websiteFunctions/templates/websiteFunctions/website.html:845 -msgid "open_basedir Protection" -msgstr "open_basedir Защита" - -#: emailMarketing/templates/emailMarketing/website.html:878 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 -#: websiteFunctions/templates/websiteFunctions/website.html:813 -msgid "open_basedir" -msgstr "open_basedir" - -#: emailMarketing/templates/emailMarketing/website.html:890 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 -#: websiteFunctions/templates/websiteFunctions/website.html:825 -msgid "Create FTP Acct" -msgstr "Създай FTP Акаунт" - -#: emailMarketing/templates/emailMarketing/website.html:902 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 -#: websiteFunctions/templates/websiteFunctions/website.html:834 -msgid "Delete FTP Acct" -msgstr "Изтрий FTP Акаунт" - -#: emailMarketing/templates/emailMarketing/website.html:939 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 -#: websiteFunctions/templates/websiteFunctions/website.html:868 -msgid "Apply Changes" -msgstr "Запази промените" - -#: emailMarketing/templates/emailMarketing/website.html:951 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 -#: websiteFunctions/templates/websiteFunctions/website.html:880 -msgid "Changes successfully saved." -msgstr "Промените са успешно добавени." - -#: emailMarketing/templates/emailMarketing/website.html:986 -#: emailMarketing/templates/emailMarketing/website.html:989 -#: emailMarketing/templates/emailMarketing/website.html:990 -#: websiteFunctions/templates/websiteFunctions/website.html:915 -#: websiteFunctions/templates/websiteFunctions/website.html:919 -#: websiteFunctions/templates/websiteFunctions/website.html:920 -#, fuzzy -#| msgid "Create Alias" -msgid "Create Lists" -msgstr "Паркирай Домейн" - -#: emailMarketing/templates/emailMarketing/website.html:997 -#: emailMarketing/templates/emailMarketing/website.html:1000 -#: emailMarketing/templates/emailMarketing/website.html:1001 -#: websiteFunctions/templates/websiteFunctions/website.html:925 -#: websiteFunctions/templates/websiteFunctions/website.html:929 -#: websiteFunctions/templates/websiteFunctions/website.html:930 -#, fuzzy -#| msgid "Manage SSL" -msgid "Manage Lists" -msgstr "Нов SSL" - -#: emailMarketing/templates/emailMarketing/website.html:1008 -#: emailMarketing/templates/emailMarketing/website.html:1011 -#: emailMarketing/templates/emailMarketing/website.html:1012 -#: websiteFunctions/templates/websiteFunctions/website.html:935 -#: websiteFunctions/templates/websiteFunctions/website.html:939 -#: websiteFunctions/templates/websiteFunctions/website.html:940 -msgid "SMTP Hosts" -msgstr "" - -#: emailMarketing/templates/emailMarketing/website.html:1019 -#: emailMarketing/templates/emailMarketing/website.html:1022 -#: websiteFunctions/templates/websiteFunctions/website.html:945 -#: websiteFunctions/templates/websiteFunctions/website.html:950 -#, fuzzy -#| msgid "Compress" -msgid "Compose Message" -msgstr "Компресирай" - -#: emailMarketing/templates/emailMarketing/website.html:1023 -#: websiteFunctions/templates/websiteFunctions/website.html:951 -#, fuzzy -#| msgid "Compress" -msgid "Compose" -msgstr "Компресирай" - -#: emailMarketing/templates/emailMarketing/website.html:1050 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 -#: websiteFunctions/templates/websiteFunctions/website.html:977 -msgid "Application Installer" -msgstr "Инсталатор на Приложения" - -#: emailMarketing/templates/emailMarketing/website.html:1061 -#: emailMarketing/templates/emailMarketing/website.html:1065 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 -#: websiteFunctions/templates/websiteFunctions/website.html:985 -#: websiteFunctions/templates/websiteFunctions/website.html:989 -msgid "Install wordpress with LSCache" -msgstr "Инсталирай Wordpress с LSCache" - -#: emailMarketing/templates/emailMarketing/website.html:1066 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 -msgid "Wordpress with LSCache" -msgstr "Wordpress с LSCache" - -#: emailMarketing/templates/emailMarketing/website.html:1075 -#: emailMarketing/templates/emailMarketing/website.html:1079 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 -#: websiteFunctions/templates/websiteFunctions/website.html:996 -#: websiteFunctions/templates/websiteFunctions/website.html:1000 -msgid "Install Joomla with LSCache" -msgstr "Инсталирай Joomla с LSCache" - -#: emailMarketing/templates/emailMarketing/website.html:1080 -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 -#: websiteFunctions/templates/websiteFunctions/website.html:1001 -msgid "Joomla" -msgstr "Joomla" - -#: emailMarketing/templates/emailMarketing/website.html:1089 -#: emailMarketing/templates/emailMarketing/website.html:1093 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 -#: websiteFunctions/templates/websiteFunctions/website.html:1007 -#: websiteFunctions/templates/websiteFunctions/website.html:1011 -msgid "Attach Git with this website!" -msgstr "Закачи Git към този уебсайт!" - -#: emailMarketing/templates/emailMarketing/website.html:1094 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 -#: websiteFunctions/templates/websiteFunctions/website.html:1012 -msgid "Git" -msgstr "Git" - -#: emailMarketing/templates/emailMarketing/website.html:1103 -#: emailMarketing/templates/emailMarketing/website.html:1107 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 -#: websiteFunctions/templates/websiteFunctions/website.html:1018 -#: websiteFunctions/templates/websiteFunctions/website.html:1022 -msgid "Install Prestashop" -msgstr "Инсталирай Prestashop" - -#: emailMarketing/templates/emailMarketing/website.html:1108 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 -#: websiteFunctions/templates/websiteFunctions/website.html:1023 -msgid "Prestashop" -msgstr "Prestashop" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:3 -#: firewall/templates/firewall/spamassassin.html:3 -msgid "SpamAssassin - CyberPanel" -msgstr "SpamAssassin - CyberPanel" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:13 -#: firewall/templates/firewall/spamassassin.html:13 -msgid "SpamAssassin Configurations!" -msgstr "SpamAssassin Конфигурация" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:17 -msgid "SpamAssassin Docs" -msgstr "SpamAssassin Документация" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:19 -#: firewall/templates/firewall/spamassassin.html:14 -msgid "On this page you can configure SpamAssassin settings." -msgstr "От тази страница може да настройте SpamAssassin." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:34 -msgid "SpamAssassin is not installed " -msgstr "SpamAssassin не е инсталиран" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:37 -#: firewall/templates/firewall/csf.html:31 -#: firewall/templates/firewall/modSecurity.html:35 -#: firewall/templates/firewall/modSecurity.html:231 -#: firewall/templates/firewall/modSecurityRules.html:73 -#: firewall/templates/firewall/modSecurityRulesPacks.html:31 -#: firewall/templates/firewall/spamassassin.html:31 -msgid "Install Now." -msgstr "Инсталирай" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:49 -#: firewall/templates/firewall/csf.html:43 -#: firewall/templates/firewall/modSecurity.html:47 -#: firewall/templates/firewall/modSecurity.html:244 -#: firewall/templates/firewall/spamassassin.html:43 -msgid "Failed to start installation, Error message: " -msgstr "Неуспешно стартиране на инсталацията. Съобщение за грешка:" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:54 -#: emailPremium/templates/emailPremium/SpamAssassin.html:146 -#: emailPremium/templates/emailPremium/policyServer.html:60 -#: firewall/templates/firewall/csf.html:47 -#: firewall/templates/firewall/modSecurity.html:53 -#: firewall/templates/firewall/modSecurity.html:183 -#: firewall/templates/firewall/modSecurity.html:249 -#: firewall/templates/firewall/modSecurity.html:371 -#: firewall/templates/firewall/modSecurityRules.html:53 -#: firewall/templates/firewall/modSecurityRulesPacks.html:88 -#: firewall/templates/firewall/secureSSH.html:87 -#: firewall/templates/firewall/secureSSH.html:172 -#: firewall/templates/firewall/spamassassin.html:47 -#: firewall/templates/firewall/spamassassin.html:177 -#: mailServer/templates/mailServer/dkimManager.html:44 -#: managePHP/templates/managePHP/editPHPConfig.html:157 -#: managePHP/templates/managePHP/editPHPConfig.html:223 -#: managePHP/templates/managePHP/installExtensions.html:124 -#: manageServices/templates/manageServices/managePostfix.html:59 -#: manageServices/templates/manageServices/managePowerDNS.html:130 -#: manageServices/templates/manageServices/managePureFtpd.html:59 -msgid "Could not connect. Please refresh this page." -msgstr "Не можем да се свържем, моля презаредете страницата." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:58 -#: firewall/templates/firewall/csf.html:51 -#: firewall/templates/firewall/modSecurity.html:57 -#: firewall/templates/firewall/modSecurity.html:253 -#: firewall/templates/firewall/spamassassin.html:51 -msgid "Installation failed." -msgstr "Инсталацията не завърши успешно." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:62 -msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." -msgstr "" -"SpamAssassin е успешно инсталиран. Страницата ще се презареди след 3 " -"секунди.." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:74 -msgid "Winter is coming, but so is SpamAssassin." -msgstr "Зимата идва ... както и SpamAssassin." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:126 -#: firewall/templates/firewall/modSecurity.html:163 -#: firewall/templates/firewall/modSecurity.html:351 -#: firewall/templates/firewall/spamassassin.html:157 -msgid "Save changes." -msgstr "Запази промените." - -#: emailPremium/templates/emailPremium/SpamAssassin.html:137 -msgid "Failed to save SpamAssassin configurations. Error message: " -msgstr "Промените на SpamAssassin не са запазени. Съобщение за грешка :" - -#: emailPremium/templates/emailPremium/SpamAssassin.html:142 -msgid "SpamAssassin configurations successfully saved." -msgstr "SpamAssassin конфигурация е успешно променена." - -#: emailPremium/templates/emailPremium/emailLimits.html:13 -#: emailPremium/templates/emailPremium/listDomains.html:14 -#: emailPremium/templates/emailPremium/policyServer.html:13 -#, fuzzy -#| msgid "Emai Limits Docs" -msgid "Email Limits Docs" -msgstr "Email лимити документация" - -#: emailPremium/templates/emailPremium/emailLimits.html:14 -msgid "View and change email limits for a domain name." -msgstr "Преглед и редакция на email лимити за домейн." - -#: emailPremium/templates/emailPremium/emailLimits.html:25 -msgid "Domain Resource Usage" -msgstr "Използвани ресурси" - -#: emailPremium/templates/emailPremium/emailLimits.html:52 -#: emailPremium/templates/emailPremium/emailLimits.html:158 -#: emailPremium/templates/emailPremium/emailPage.html:54 -#: emailPremium/templates/emailPremium/listDomains.html:61 -msgid "Limits are being Applied!" -msgstr "Лимитите са зададени!" - -#: emailPremium/templates/emailPremium/emailLimits.html:54 -#: emailPremium/templates/emailPremium/emailLimits.html:160 -#: emailPremium/templates/emailPremium/emailPage.html:56 -#: emailPremium/templates/emailPremium/listDomains.html:63 -msgid "Limits are not being applied!" -msgstr "Лимитите не са променени!" - -#: emailPremium/templates/emailPremium/emailLimits.html:58 -#: emailPremium/templates/emailPremium/emailPage.html:66 -#: filemanager/templates/filemanager/index.html:79 -#: filemanager/templates/filemanager/index.html:699 -#: packages/templates/packages/listPackages.html:60 -#: userManagment/templates/userManagment/listUsers.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:66 -msgid "Edit" -msgstr "Редакция" - -#: emailPremium/templates/emailPremium/emailLimits.html:70 -#: emailPremium/templates/emailPremium/emailPage.html:78 -msgid "Monthly Limit" -msgstr "Месечен лимит" - -#: emailPremium/templates/emailPremium/emailLimits.html:83 -#: emailPremium/templates/emailPremium/emailPage.html:101 -msgid "Change Limits" -msgstr "Промени лимити" - -#: emailPremium/templates/emailPremium/emailLimits.html:93 -#: emailPremium/templates/emailPremium/emailPage.html:111 -msgid "Can not change limits. Error message:" -msgstr "Лимитите не са променени. Грешка:" - -#: emailPremium/templates/emailPremium/emailLimits.html:97 -msgid "Limits successfully changed, refreshing in 3 seconds." -msgstr "" -"Лимитите са успешно променени. Страницата ще се презареди след 3 секунди." - -#: emailPremium/templates/emailPremium/emailLimits.html:126 -#: emailPremium/templates/emailPremium/emailPage.html:25 -msgid "Email Resource Usage" -msgstr "Email използвани ресурси" - -#: emailPremium/templates/emailPremium/emailLimits.html:133 -msgid "Search Emails.." -msgstr "Търси Email..." - -#: emailPremium/templates/emailPremium/emailLimits.html:164 -#: emailPremium/templates/emailPremium/listDomains.html:67 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 -msgid "Manage" -msgstr "Управлявай" - -#: emailPremium/templates/emailPremium/emailPage.html:13 -msgid "Emai Limits Docs" -msgstr "Email лимити документация" - -#: emailPremium/templates/emailPremium/emailPage.html:14 -msgid "View and change limits for an Email Address." -msgstr "Прегледай и промени лимити за Email адрес." - -#: emailPremium/templates/emailPremium/emailPage.html:60 -msgid "Logging in ON!" -msgstr "Логването е включено!" - -#: emailPremium/templates/emailPremium/emailPage.html:62 -msgid "Logging is Off" -msgstr "Логването е спряно!" - -#: emailPremium/templates/emailPremium/emailPage.html:88 -msgid "Hourly Limit" -msgstr "Часови лимит" - -#: emailPremium/templates/emailPremium/emailPage.html:115 -msgid "Limits successfully changed." -msgstr "Лимитите са успешно променени." - -#: emailPremium/templates/emailPremium/emailPage.html:151 -msgid "Search Emails Logs.." -msgstr "Търси Emails логове." - -#: emailPremium/templates/emailPremium/emailPage.html:155 -msgid "Flush Logs" -msgstr "Опресни логове" - -#: emailPremium/templates/emailPremium/listDomains.html:3 -msgid "Domains - CyberPanel" -msgstr "Домейни - CyberPanel" - -#: emailPremium/templates/emailPremium/listDomains.html:15 -msgid "On this page you manage emails limits for Domains/Email Addresses" -msgstr "От тази страница може да управлявате лимитите за Домейни/Email адреси." - -#: emailPremium/templates/emailPremium/policyServer.html:3 -msgid "Email Policy Server - CyberPanel" -msgstr "Email Policy Server - CyberPanel" - -#: emailPremium/templates/emailPremium/policyServer.html:13 -msgid "Email Policy Server Configurations!" -msgstr "Email Policy Server Конфигурация!" - -#: emailPremium/templates/emailPremium/policyServer.html:14 -msgid "Turn ON Email Policy Server to use Email Limits Feature. " -msgstr "Включете Email Policy Server за да използвате Лимитите за Emails." - -#: emailPremium/templates/emailPremium/policyServer.html:40 -#: manageServices/templates/manageServices/managePostfix.html:41 -#: manageServices/templates/manageServices/managePowerDNS.html:112 -#: manageServices/templates/manageServices/managePureFtpd.html:41 -#, fuzzy -#| msgid "Save changes." -msgid "Save changes" -msgstr "Запази промените." - -#: emailPremium/templates/emailPremium/policyServer.html:52 -#: firewall/templates/firewall/secureSSH.html:78 -#: mailServer/templates/mailServer/dkimManager.html:40 -#: managePHP/templates/managePHP/editPHPConfig.html:148 -#: manageServices/templates/manageServices/managePostfix.html:51 -#: manageServices/templates/manageServices/managePowerDNS.html:122 -#: manageServices/templates/manageServices/managePureFtpd.html:51 -msgid "Error message: " -msgstr "Error Съобщение" - -#: emailPremium/templates/emailPremium/policyServer.html:56 -#: manageServices/templates/manageServices/managePostfix.html:55 -#: manageServices/templates/manageServices/managePowerDNS.html:126 -#: manageServices/templates/manageServices/managePureFtpd.html:55 -msgid "Changes successfully applied." -msgstr "Промените са успешно въведени." - -#: filemanager/templates/filemanager/index.html:5 -msgid "File Manager - CyberPanel" -msgstr "Файл Мениджър - CyberPanel" - -#: filemanager/templates/filemanager/index.html:54 -msgid " File Manager" -msgstr "Файл Мениджър" - -#: filemanager/templates/filemanager/index.html:58 -#: filemanager/templates/filemanager/index.html:197 -#: filemanager/templates/filemanager/index.html:227 -msgid "Upload" -msgstr "Качи" - -#: filemanager/templates/filemanager/index.html:61 -msgid "New File" -msgstr "Нов файл" - -#: filemanager/templates/filemanager/index.html:64 -msgid "New Folder" -msgstr "Нова директория" - -#: filemanager/templates/filemanager/index.html:70 -#: filemanager/templates/filemanager/index.html:557 -#: filemanager/templates/filemanager/index.html:693 -msgid "Copy" -msgstr "копирай" - -#: filemanager/templates/filemanager/index.html:73 -#: filemanager/templates/filemanager/index.html:522 -#: filemanager/templates/filemanager/index.html:691 -msgid "Move" -msgstr "Премести" - -#: filemanager/templates/filemanager/index.html:76 -#: filemanager/templates/filemanager/index.html:587 -#: filemanager/templates/filemanager/index.html:694 -msgid "Rename" -msgstr "Преименувай" - -#: filemanager/templates/filemanager/index.html:82 -#: filemanager/templates/filemanager/index.html:432 -#: filemanager/templates/filemanager/index.html:459 -#: filemanager/templates/filemanager/index.html:697 -msgid "Compress" -msgstr "Компресирай" - -#: filemanager/templates/filemanager/index.html:85 -#: filemanager/templates/filemanager/index.html:487 -#: filemanager/templates/filemanager/index.html:698 -msgid "Extract" -msgstr "Разархивирай" - -#: filemanager/templates/filemanager/index.html:88 -msgid "Fix Permissions" -msgstr "Поправи права" - -#: filemanager/templates/filemanager/index.html:113 -msgid "Current Path" -msgstr "Текущ път" - -#: filemanager/templates/filemanager/index.html:138 -msgid "Back" -msgstr "Назад" - -#: filemanager/templates/filemanager/index.html:142 -#: serverLogs/templates/serverLogs/accessLogs.html:38 -#: serverLogs/templates/serverLogs/emailLogs.html:39 -#: serverLogs/templates/serverLogs/errorLogs.html:35 -#: serverLogs/templates/serverLogs/ftplogs.html:35 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 -#: websiteFunctions/templates/websiteFunctions/listCron.html:36 -msgid "Refresh" -msgstr "Презареди" - -#: filemanager/templates/filemanager/index.html:146 -msgid "Select All" -msgstr "Избери всички" - -#: filemanager/templates/filemanager/index.html:150 -msgid "UnSelect All" -msgstr "Деселектирайте всички" - -#: filemanager/templates/filemanager/index.html:159 -msgid "Size (KB)" -msgstr "Размер (KB)" - -#: filemanager/templates/filemanager/index.html:160 -msgid "Last Modified" -msgstr "Последна промяна" - -#: filemanager/templates/filemanager/index.html:161 -msgid "Permissions" -msgstr "Права" - -#: filemanager/templates/filemanager/index.html:181 -msgid "Upload File" -msgstr "Качи файл" - -#: filemanager/templates/filemanager/index.html:181 -msgid "Upload Limits" -msgstr "Ограничение за качване" - -#: filemanager/templates/filemanager/index.html:187 -msgid "Upload queue" -msgstr "Опашна на качване" - -#: filemanager/templates/filemanager/index.html:188 -msgid "Queue length:" -msgstr "Дължина на опашката: " - -#: filemanager/templates/filemanager/index.html:192 -msgid "Drop" -msgstr "Постави" - -#: filemanager/templates/filemanager/index.html:193 -msgid "Drop Files here to upload them." -msgstr "Постави файловете за качване тук." - -#: filemanager/templates/filemanager/index.html:205 -msgid "Progress" -msgstr "Прогрес" - -#: filemanager/templates/filemanager/index.html:233 -msgid "Remove" -msgstr "Премахни" - -#: filemanager/templates/filemanager/index.html:243 -msgid "Queue progress:" -msgstr "Прогрес на опашката:" - -#: filemanager/templates/filemanager/index.html:252 -msgid "can not be uploaded, Error message:" -msgstr "Настройките не са въведени, защото:" - -#: filemanager/templates/filemanager/index.html:256 -msgid "Upload all" -msgstr "Качи всички" - -#: filemanager/templates/filemanager/index.html:259 -msgid "Cancel all" -msgstr "Откажи всички" - -#: filemanager/templates/filemanager/index.html:262 -msgid "Remove all" -msgstr "Премахни всички" - -#: filemanager/templates/filemanager/index.html:298 -msgid "File Successfully saved." -msgstr "Файловете са успешно запазени." - -#: filemanager/templates/filemanager/index.html:305 -#: firewall/templates/firewall/secureSSH.html:68 -#: managePHP/templates/managePHP/editPHPConfig.html:138 -#: managePHP/templates/managePHP/editPHPConfig.html:205 -#: userManagment/templates/userManagment/apiAccess.html:53 -#: userManagment/templates/userManagment/modifyACL.html:436 -#: userManagment/templates/userManagment/resellerCenter.html:58 -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 -msgid "Save Changes" -msgstr "Запази промените" - -#: filemanager/templates/filemanager/index.html:322 -msgid "Create new folder!" -msgstr "Създай нова директория!" - -#: filemanager/templates/filemanager/index.html:330 -msgid "New Folder Name" -msgstr "Име на директория" - -#: filemanager/templates/filemanager/index.html:332 -msgid "Folder will be created in your current directory" -msgstr "Директорията ще бъде създадена където се намирате в този момент" - -#: filemanager/templates/filemanager/index.html:334 -msgid "Create Folder" -msgstr "Създай директория" - -#: filemanager/templates/filemanager/index.html:347 -msgid "Folder Successfully created." -msgstr "Директорията е успешно създадена." - -#: filemanager/templates/filemanager/index.html:366 -msgid "Create new file!" -msgstr "Създай нов файл!" - -#: filemanager/templates/filemanager/index.html:374 -msgid "New File Name" -msgstr "Име на файл" - -#: filemanager/templates/filemanager/index.html:376 -msgid "" -"File will be created in your current directory, if it already exists it will " -"not overwirte." -msgstr "" -"Файловете ще бъдат създадени в текущата директория. Ако те вече съществуват " -"няма да бъдат презаписани." - -#: filemanager/templates/filemanager/index.html:378 -msgid "Create File" -msgstr "Създай файл" - -#: filemanager/templates/filemanager/index.html:391 -msgid "File Successfully created." -msgstr "Файлът е успешно създаден." - -#: filemanager/templates/filemanager/index.html:407 -msgid "Confirm Deletion!" -msgstr "Потвърди изтриването!" - -#: filemanager/templates/filemanager/index.html:440 -msgid "List of files/folder!" -msgstr "Списък на файлове/директории!" - -#: filemanager/templates/filemanager/index.html:444 -msgid "Compressed File Name" -msgstr "Име на компресирания файл" - -#: filemanager/templates/filemanager/index.html:446 -msgid "Enter without extension name!" -msgstr "Въведи без разширение!" - -#: filemanager/templates/filemanager/index.html:450 -msgid "Compression Type" -msgstr "Вид на компресия" - -#: filemanager/templates/filemanager/index.html:475 -msgid "Extracting" -msgstr "Разархивиране" - -#: filemanager/templates/filemanager/index.html:483 -msgid "Extract in" -msgstr "Разархивиране в" - -#: filemanager/templates/filemanager/index.html:485 -msgid "You can enter . to extract in current directory!" -msgstr "Може да въведете . за да разархивирате в текущата директория!" - -#: filemanager/templates/filemanager/index.html:503 -msgid "Move Files" -msgstr "Премести файлове" - -#: filemanager/templates/filemanager/index.html:511 -#: filemanager/templates/filemanager/index.html:546 -msgid "List of files/folders!" -msgstr "Списък на файлове/директории!" - -#: filemanager/templates/filemanager/index.html:515 -msgid "Move to" -msgstr "Премести в" - -#: filemanager/templates/filemanager/index.html:517 -msgid "Enter a path to move your files!" -msgstr "Въведи път за да преместиш файловете!" - -#: filemanager/templates/filemanager/index.html:538 -msgid "Copy Files" -msgstr "Копирай файлове" - -#: filemanager/templates/filemanager/index.html:550 -msgid "Copy to" -msgstr "Копирай в" - -#: filemanager/templates/filemanager/index.html:552 -msgid "Enter a path to copy your files to!" -msgstr "Въведи път, за да се копират файловете!" - -#: filemanager/templates/filemanager/index.html:572 -msgid "Renaming" -msgstr "Преименуване" - -#: filemanager/templates/filemanager/index.html:580 -msgid "New Name" -msgstr "Ново име" - -#: filemanager/templates/filemanager/index.html:582 -msgid "Enter new name of file!" -msgstr "Въведи ново име за файл!" - -#: filemanager/templates/filemanager/index.html:602 -msgid "Changing permissions for" -msgstr "Промени права за" - -#: filemanager/templates/filemanager/index.html:611 -msgid "Mode" -msgstr "Вид" - -#: filemanager/templates/filemanager/index.html:612 -#: serverStatus/templates/serverStatus/topProcesses.html:193 -msgid "User" -msgstr "Потребител" - -#: filemanager/templates/filemanager/index.html:613 -msgid "Group" -msgstr "Група" - -#: filemanager/templates/filemanager/index.html:614 -msgid "World" -msgstr "Всички" - -#: filemanager/templates/filemanager/index.html:619 -msgid "Read" -msgstr "Четене" - -#: filemanager/templates/filemanager/index.html:625 -msgid "Write" -msgstr "Запис" - -#: filemanager/templates/filemanager/index.html:631 -msgid "Execute" -msgstr "Изпълнение" - -#: filemanager/templates/filemanager/index.html:647 -#: filemanager/templates/filemanager/index.html:695 -msgid "Change Permissions" -msgstr "Промени права" - -#: filemanager/templates/filemanager/index.html:648 -msgid "Change Recursively" -msgstr "Рекурсивна промяна" - -#: filemanager/templates/filemanager/index.html:692 -msgid "Download" -msgstr "" - -#: firewall/templates/firewall/csf.html:3 -msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" -msgstr "CSF (ConfigServer Security and Firewall) - CyberPanel" - -#: firewall/templates/firewall/csf.html:13 -msgid "CSF (ConfigServer Security and Firewall)!" -msgstr "CSF (ConfigServer Security and Firewall)!" - -#: firewall/templates/firewall/csf.html:14 -msgid "" -"On this page you can configure CSF (ConfigServer Security and Firewall) " -"settings." -msgstr "" -"От тази страница може да променяте настройките на CSF (ConfigServer Security " -"and Firewall)." - -#: firewall/templates/firewall/csf.html:28 -msgid "CSF is not installed " -msgstr "CSF не е инсталиран" - -#: firewall/templates/firewall/csf.html:55 -msgid "CSF successfully installed, refreshing page in 3 seconds.." -msgstr "CSF е успешно инсталиран. Страницата ще се презареди след 3 секунди.." - -#: firewall/templates/firewall/csf.html:66 -msgid "In winter we must protect each other.." -msgstr "В зимата трябва да се защитаваме ние.." - -#: firewall/templates/firewall/csf.html:90 -msgid "General" -msgstr "Общ" - -#: firewall/templates/firewall/csf.html:100 -msgid "LFD" -msgstr "LFD" - -#: firewall/templates/firewall/csf.html:109 -msgid "Remove CSF" -msgstr "Премахни CSF" - -#: firewall/templates/firewall/csf.html:112 -msgid "Completely Remove CSF" -msgstr "Надяло премахни CSF" - -#: firewall/templates/firewall/csf.html:126 -msgid "Testing Mode" -msgstr "Тестов мод" - -#: firewall/templates/firewall/csf.html:133 -msgid "TCP IN Ports" -msgstr "TCP IN Портове" - -#: firewall/templates/firewall/csf.html:143 -msgid "TCP Out Ports" -msgstr "TCP Out Портове" - -#: firewall/templates/firewall/csf.html:153 -msgid "UDP In Ports" -msgstr "UDP In Портове" - -#: firewall/templates/firewall/csf.html:163 -msgid "UDP Out Ports" -msgstr "UDP Out Портове" - -#: firewall/templates/firewall/csf.html:181 -msgid "Allow IP" -msgstr "Позволи IP" - -#: firewall/templates/firewall/csf.html:191 -msgid "Block IP Address" -msgstr "Блокирай IP Адрес" - -#: firewall/templates/firewall/csf.html:203 -msgid "Coming Soon." -msgstr "Скоро." - -#: firewall/templates/firewall/firewall.html:3 -msgid "Firewall - CyberPanel" -msgstr "Защитна Стена - CyberPanel" - -#: firewall/templates/firewall/firewall.html:13 -msgid "Add/Delete Firewall Rules" -msgstr "Добави/Премахни Firewall правила" - -#: firewall/templates/firewall/firewall.html:14 -msgid "" -"On this page you can add/delete firewall rules. (By default all ports are " -"blocked, except mentioned below)" -msgstr "" -"От тази страница може да добавяте/премахвате Firewall правила. По-" -"подразбиране всички, освен посочените по-долу са забранени." - -#: firewall/templates/firewall/firewall.html:19 -msgid "Add/Delete Rules" -msgstr "Добави/Премахни Правила" - -#: firewall/templates/firewall/firewall.html:56 -msgid "Action failed. Error message:" -msgstr "Действието не е изпълнено, защото:" - -#: firewall/templates/firewall/firewall.html:61 -#: serverStatus/templates/serverStatus/litespeedStatus.html:82 -#: serverStatus/templates/serverStatus/litespeedStatus.html:305 -msgid "Action successful." -msgstr "Действието е успешно изпълнено." - -#: firewall/templates/firewall/firewall.html:121 -msgid "Protocol" -msgstr "Протокол" - -#: firewall/templates/firewall/firewall.html:157 -msgid "Rule successfully added." -msgstr "Правилата са успешно добавени." - -#: firewall/templates/firewall/index.html:3 -msgid "Security - CyberPanel" -msgstr "Защита - CyberPanel" - -#: firewall/templates/firewall/index.html:12 -msgid "Security Functions" -msgstr "Функции на Защитата" - -#: firewall/templates/firewall/index.html:13 -msgid "Manage the security of the server on this page." -msgstr "Управлявайте сигурността на сървъра от тази страница." - -#: firewall/templates/firewall/modSecurity.html:3 -msgid "ModSecurity - CyberPanel" -msgstr "ModSecurity - CyberPanel" - -#: firewall/templates/firewall/modSecurity.html:14 -#: firewall/templates/firewall/modSecurity.html:208 -msgid "ModSecurity Configurations!" -msgstr "ModSecurity Конфигурация!" - -#: firewall/templates/firewall/modSecurity.html:18 -#: firewall/templates/firewall/modSecurity.html:212 -#: firewall/templates/firewall/modSecurityRules.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -msgid "ModSec Docs" -msgstr "ModSec Документация" - -#: firewall/templates/firewall/modSecurity.html:20 -#: firewall/templates/firewall/modSecurity.html:214 -msgid "On this page you can configure ModSecurity settings." -msgstr "От тази страница може да настройте ModSecurity" - -#: firewall/templates/firewall/modSecurity.html:26 -#: firewall/templates/firewall/modSecurity.html:220 -msgid "ModSecurity" -msgstr "ModSecurity" - -#: firewall/templates/firewall/modSecurity.html:32 -#: firewall/templates/firewall/modSecurity.html:229 -#: firewall/templates/firewall/modSecurityRules.html:70 -#: firewall/templates/firewall/modSecurityRulesPacks.html:28 -#: firewall/templates/firewall/spamassassin.html:29 -msgid "ModSecurity is not installed " -msgstr "ModSecurity не е инсталиран" - -#: firewall/templates/firewall/modSecurity.html:61 -#: firewall/templates/firewall/modSecurity.html:257 -#: firewall/templates/firewall/spamassassin.html:55 -msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." -msgstr "" -"ModSecurity е успешно инсталиран. Страницата ще се презареди след 3 секунди.." - -#: firewall/templates/firewall/modSecurity.html:73 -#: firewall/templates/firewall/modSecurity.html:269 -#: firewall/templates/firewall/spamassassin.html:66 -msgid "Winter is coming, but so is ModSecurity." -msgstr "Зимата идва ... както и ModSecurity." - -#: firewall/templates/firewall/modSecurity.html:174 -#: firewall/templates/firewall/modSecurity.html:362 -#: firewall/templates/firewall/spamassassin.html:169 -msgid "Failed to save ModSecurity configurations. Error message: " -msgstr "Промените не са запазени. Съобщение са грешка:" - -#: firewall/templates/firewall/modSecurity.html:179 -#: firewall/templates/firewall/modSecurity.html:367 -#: firewall/templates/firewall/spamassassin.html:173 -msgid "ModSecurity configurations successfully saved." -msgstr "ModSecurity конфигурация е успешно обновлена." - -#: firewall/templates/firewall/modSecurityRules.html:3 -msgid "ModSecurity Rules - CyberPanel" -msgstr "ModSecurity Правила - CyberPanel" - -#: firewall/templates/firewall/modSecurityRules.html:13 -msgid "ModSecurity Rules!" -msgstr "ModSecurity Правила!" - -#: firewall/templates/firewall/modSecurityRules.html:14 -msgid "On this page you can add/delete ModSecurity rules." -msgstr "От тази страница може да добавяте/премахвате ModSecurity правила." - -#: firewall/templates/firewall/modSecurityRules.html:42 -msgid "Save Rules!" -msgstr "Запази правила!" - -#: firewall/templates/firewall/modSecurityRules.html:49 -msgid "ModSecurity Rules Saved" -msgstr "ModSecurity правила са запазени" - -#: firewall/templates/firewall/modSecurityRules.html:58 -msgid "Could not save rules, Error message: " -msgstr "Промените не са запазени. Съобщение за грешка:" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:3 -msgid "ModSecurity Rules Packs - CyberPanel" -msgstr "ModSecurity Rules Packs - CyberPanel" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:13 -#: firewall/templates/firewall/modSecurityRulesPacks.html:20 -msgid "ModSecurity Rules Packages!" -msgstr "ModSecurity Rules Packages!" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:14 -msgid "Install/Un-install ModSecurity rules packages." -msgstr "Инсталирай/Премахни ModSecurity Rules Packages!" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:60 -#: firewall/templates/firewall/modSecurityRulesPacks.html:71 -msgid "Configure" -msgstr "Конфигурация" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:84 -#: firewall/templates/firewall/modSecurityRulesPacks.html:96 -msgid "Operation successful." -msgstr "Действието е успешно изпълнено." - -#: firewall/templates/firewall/modSecurityRulesPacks.html:92 -msgid "Operation failed, Error message: " -msgstr "Действието не е изпълнено, защото:" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:110 -msgid "Supplier" -msgstr "Източник" - -#: firewall/templates/firewall/modSecurityRulesPacks.html:111 -msgid "Filename" -msgstr "Име" - -#: firewall/templates/firewall/secureSSH.html:3 -msgid "Secure SSH - CyberPanel" -msgstr "Secure SSH - CyberPanel" - -#: firewall/templates/firewall/secureSSH.html:13 -msgid "SSH Docs" -msgstr "SSH Документация" - -#: firewall/templates/firewall/secureSSH.html:14 -msgid "Secure or harden SSH Configurations." -msgstr "Подсигури SSH от тази страница." - -#: firewall/templates/firewall/secureSSH.html:28 -#: managePHP/templates/managePHP/editPHPConfig.html:29 -msgid "Basic" -msgstr "Базови" - -#: firewall/templates/firewall/secureSSH.html:34 -msgid "SSH Keys" -msgstr "SSH Ключ" - -#: firewall/templates/firewall/secureSSH.html:47 -msgid "SSH Port" -msgstr "SSH Порт" - -#: firewall/templates/firewall/secureSSH.html:56 -msgid "Permit Root Login" -msgstr "Позволи Root Достъп" - -#: firewall/templates/firewall/secureSSH.html:60 -msgid "" -"Before disabling root login, make sure you have another account with sudo " -"priviliges on server." -msgstr "" -"Преди да забраните root достъпа се уверете, че имате друг потребител със " -"sudo права." - -#: firewall/templates/firewall/secureSSH.html:82 -msgid "SSH Configurations Saved." -msgstr "SSH Конфигурацията е запаметена." - -#: firewall/templates/firewall/secureSSH.html:121 -msgid "Key" -msgstr "Ключ" - -#: firewall/templates/firewall/secureSSH.html:150 -msgid "Add Key" -msgstr "Добави Ключ" - -#: firewall/templates/firewall/secureSSH.html:167 -msgid "SSH Key Deleted" -msgstr "SSH Ключа е премахнат" - -#: ftp/templates/ftp/createFTPAccount.html:3 -msgid "Create FTP Account - CyberPanel" -msgstr "Създай FTP Акаунт - CyberPanel" - -#: ftp/templates/ftp/createFTPAccount.html:13 -msgid "" -"Select the website from list, and its home directory will be set as the path " -"to ftp account." -msgstr "" -"Изберете домейн от списъка и неговата home директория ще бъде поставена за " -"FTP акаунта." - -#: ftp/templates/ftp/createFTPAccount.html:26 -#: ftp/templates/ftp/deleteFTPAccount.html:25 -#: ftp/templates/ftp/listFTPAccounts.html:26 -msgid "PureFTPD is disabled." -msgstr "PureFTPD е спрян." - -#: ftp/templates/ftp/createFTPAccount.html:67 -msgid "FTP Password" -msgstr "FTP Парола" - -#: ftp/templates/ftp/createFTPAccount.html:90 -msgid "Path (Relative)" -msgstr "Път (Относителен)" - -#: ftp/templates/ftp/createFTPAccount.html:92 -msgid "Leave empty to select default home directory." -msgstr "Оставете празно за home директория." - -#: ftp/templates/ftp/createFTPAccount.html:105 -msgid "Create FTP" -msgstr "Създай FTP" - -#: ftp/templates/ftp/createFTPAccount.html:113 -msgid "Cannot create FTP account. Error message:" -msgstr "Дейстиете не е извършено. Съобщение за грешка: " - -#: ftp/templates/ftp/createFTPAccount.html:118 -#: ftp/templates/ftp/createFTPAccount.html:122 -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid "FTP Account with username:" -msgstr "FTP Акаунт с Име:" - -#: ftp/templates/ftp/createFTPAccount.html:119 -#: ftp/templates/ftp/createFTPAccount.html:123 -#: userManagment/templates/userManagment/createUser.html:129 -msgid "is successfully created." -msgstr "е успешно създаден." - -#: ftp/templates/ftp/deleteFTPAccount.html:3 -msgid "Delete FTP Account - CyberPanel" -msgstr "Премахни FTP Акаунт - CyberPanel" - -#: ftp/templates/ftp/deleteFTPAccount.html:13 -msgid "Select domain and delete its related FTP accounts." -msgstr "Избери домейн и премахни свързаните FTP акаунти." - -#: ftp/templates/ftp/deleteFTPAccount.html:52 -msgid "Select FTP Account" -msgstr "Избери FTP Акаунт" - -#: ftp/templates/ftp/deleteFTPAccount.html:83 -msgid "Cannot delete account. Error message:" -msgstr "Акаунта не е премахнат. Съобщение за грешка:" - -#: ftp/templates/ftp/deleteFTPAccount.html:87 -msgid " is successfully deleted." -msgstr "е успешно изтрит" - -#: ftp/templates/ftp/deleteFTPAccount.html:91 -#: userManagment/templates/userManagment/deleteUser.html:70 -msgid "Could not connect to the server. Please refresh this page." -msgstr "Връзката със сървъра прекъсна. Моля презаредете страницата." - -#: ftp/templates/ftp/index.html:3 -msgid "FTP Functions - CyberPanel" -msgstr "FTP Функции - CyberPanel" - -#: ftp/templates/ftp/index.html:13 -msgid "Delete and create FTP accounts on this page." -msgstr "Създай или премахни FTP акаунт от тази страница." - -#: ftp/templates/ftp/listFTPAccounts.html:3 -msgid "List FTP Accounts - CyberPanel" -msgstr "FTP Акаунти - CyberPanel" - -#: ftp/templates/ftp/listFTPAccounts.html:14 -msgid "List FTP Accounts or change their passwords." -msgstr "Преглед на FTP акаунти или промяна на паролите им." - -#: ftp/templates/ftp/listFTPAccounts.html:66 -msgid "Password changed for" -msgstr "Паролата е променена за" - -#: ftp/templates/ftp/listFTPAccounts.html:70 -msgid "" -"Cannot change password for {$ ftpUsername $}. Error message:" -msgstr "" -"Паролата за {$ ftpUsername $} не е променена. Съобщение за " -"грешка:" - -#: ftp/templates/ftp/listFTPAccounts.html:124 -msgid "Directory" -msgstr "Директория" - -#: mailServer/templates/mailServer/changeEmailPassword.html:3 -msgid "Change Email Password - CyberPanel" -msgstr "Промени Email Парола - CyberPanel" - -#: mailServer/templates/mailServer/changeEmailPassword.html:12 -#: mailServer/templates/mailServer/changeEmailPassword.html:19 -#: userManagment/templates/userManagment/createACL.html:299 -#: userManagment/templates/userManagment/modifyACL.html:303 -msgid "Change Email Password" -msgstr "Промени Email Парола" - -#: mailServer/templates/mailServer/changeEmailPassword.html:13 -msgid "Select a website from the list, to change its password." -msgstr "Изберете домейн от списъка за който да бъде променена паролата." - -#: mailServer/templates/mailServer/changeEmailPassword.html:27 -#: mailServer/templates/mailServer/createEmailAccount.html:27 -#: mailServer/templates/mailServer/deleteEmailAccount.html:27 -#: mailServer/templates/mailServer/emailForwarding.html:26 -#: mailServer/templates/mailServer/listEmails.html:27 -msgid "Postfix is disabled." -msgstr "Postfix е спрян" - -#: mailServer/templates/mailServer/changeEmailPassword.html:58 -#: mailServer/templates/mailServer/deleteEmailAccount.html:58 -#: mailServer/templates/mailServer/emailForwarding.html:52 -msgid "Select Email" -msgstr "Избери Email" - -#: mailServer/templates/mailServer/changeEmailPassword.html:106 -#: mailServer/templates/mailServer/deleteEmailAccount.html:90 -msgid "Cannot delete email account. Error message:" -msgstr "Действието не е извършено. Съобщение за грешка:" - -#: mailServer/templates/mailServer/changeEmailPassword.html:111 -msgid "Password successfully changed for :" -msgstr "Паролата е успешно променена за:" - -#: mailServer/templates/mailServer/changeEmailPassword.html:118 -#: mailServer/templates/mailServer/deleteEmailAccount.html:102 -msgid "Currently no email accounts exist for this domain." -msgstr "Към момента няма email акаунти за този домейн." - -#: mailServer/templates/mailServer/createEmailAccount.html:3 -msgid "Create Email Account - CyberPanel" -msgstr "Създай Email акаунт - CyberPanel" - -#: mailServer/templates/mailServer/createEmailAccount.html:13 -msgid "Select a website from the list, to create an email account." -msgstr "Избери за коя страница искате да създадете email акаунт." - -#: mailServer/templates/mailServer/createEmailAccount.html:106 -msgid "Cannot create email account. Error message:" -msgstr "Email акаунта не е създаден, защото:" - -#: mailServer/templates/mailServer/createEmailAccount.html:111 -msgid "Email with id :" -msgstr "Email с id:" - -#: mailServer/templates/mailServer/createEmailAccount.html:112 -msgid " is successfully created." -msgstr "е успешно създаден." - -#: mailServer/templates/mailServer/deleteEmailAccount.html:3 -msgid "Delete Email Account - CyberPanel" -msgstr "Премахни Email Акаунт - CyberPanel" - -#: mailServer/templates/mailServer/deleteEmailAccount.html:13 -msgid "Select a website from the list, to delete an email account." -msgstr "Изберете домейн от списъка за който да премахнете email акаунт." - -#: mailServer/templates/mailServer/deleteEmailAccount.html:95 -msgid "Email with id : {$ deletedID $} is successfully deleted." -msgstr "Email с id : {$ deletedID $} е успешно премахнато." - -#: mailServer/templates/mailServer/dkimManager.html:3 -msgid "DKIM Manager - CyberPanel" -msgstr "DKIM Мениджър - CyberPanel" - -#: mailServer/templates/mailServer/dkimManager.html:13 -msgid "DKIM Docs" -msgstr "DKIM Документация" - -#: mailServer/templates/mailServer/dkimManager.html:14 -msgid "This page can be used to generate and view DKIM keys for Domains" -msgstr "" -"От тази страница може да генерирате и преглеждате DKIM ключове за домейните." - -#: mailServer/templates/mailServer/dkimManager.html:27 -msgid "OpenDKIM is not installed. " -msgstr "OpenDKIM не е инсталиран." - -#: mailServer/templates/mailServer/dkimManager.html:28 -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 -msgid "Install Now" -msgstr "Инсталирай" - -#: mailServer/templates/mailServer/dkimManager.html:48 -msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." -msgstr "" -"OpenDKIM е успешно инсталиран. Страницата ще се презареди след 3 секунди..." - -#: mailServer/templates/mailServer/dkimManager.html:97 -msgid "Keys not available for this domain." -msgstr "Ключовете не са позволени за този домейн." - -#: mailServer/templates/mailServer/dkimManager.html:98 -msgid "Generate Now" -msgstr "Генерирай сега" - -#: mailServer/templates/mailServer/dkimManager.html:110 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 -msgid "Domain" -msgstr "Домейн" - -#: mailServer/templates/mailServer/dkimManager.html:111 -msgid "Private Key" -msgstr "Личен ключ" - -#: mailServer/templates/mailServer/dkimManager.html:112 -msgid "Public Key" -msgstr "Публичен ключ" - -#: mailServer/templates/mailServer/emailForwarding.html:3 -msgid "Setup Email Forwarding - CyberPanel" -msgstr "Email пренасочване - CyberPanel" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -#: mailServer/templates/mailServer/emailForwarding.html:19 -msgid "Setup Email Forwarding" -msgstr "Email пренасочване" - -#: mailServer/templates/mailServer/emailForwarding.html:12 -msgid "Forwarding Docs" -msgstr "Email пренасочване Документация" - -#: mailServer/templates/mailServer/emailForwarding.html:13 -msgid "This page help you setup email forwarding for your emails." -msgstr "От тази страница може да създадете Email пренасочвания." - -#: mailServer/templates/mailServer/emailForwarding.html:61 -#, fuzzy -#| msgid "Forwarding Docs" -msgid "Forwarding Options" -msgstr "Email пренасочване Документация" - -#: mailServer/templates/mailServer/emailForwarding.html:97 -#: mailServer/templates/mailServer/emailForwarding.html:118 -msgid "Source" -msgstr "източник" - -#: mailServer/templates/mailServer/emailForwarding.html:101 -msgid "or path to the program" -msgstr "" - -#: mailServer/templates/mailServer/emailForwarding.html:106 -msgid "Forward Email" -msgstr "Пренасочи Email" - -#: mailServer/templates/mailServer/index.html:3 -msgid "Mail Functions - CyberPanel" -msgstr "Mail Функции - CyberPanel" - -#: mailServer/templates/mailServer/index.html:12 -msgid "Mail Functions" -msgstr "Mail Функции" - -#: mailServer/templates/mailServer/index.html:13 -msgid "Manage email accounts on this page." -msgstr "Управлявайте email акаунтите от тази страница." - -#: mailServer/templates/mailServer/listEmails.html:3 -#, fuzzy -#| msgid "List FTP Accounts - CyberPanel" -msgid "List Email Accounts - CyberPanel" -msgstr "FTP Акаунти - CyberPanel" - -#: mailServer/templates/mailServer/listEmails.html:13 -#: mailServer/templates/mailServer/listEmails.html:19 -#, fuzzy -#| msgid "List FTP Accounts" -msgid "List Email Accounts" -msgstr "Преглед FTP Акаунти" - -#: mailServer/templates/mailServer/listEmails.html:14 -#, fuzzy -#| msgid "List FTP Accounts or change their passwords." -msgid "List Emails Accounts. Change their passwords or delete them." -msgstr "Преглед на FTP акаунти или промяна на паролите им." - -#: managePHP/templates/managePHP/editPHPConfig.html:3 -msgid "Edit PHP Configurations - CyberPanel" -msgstr "Редактирай PHP Конфигурация - CyberPanel" - -#: managePHP/templates/managePHP/editPHPConfig.html:14 -#: managePHP/templates/managePHP/editPHPConfig.html:21 -msgid "Edit PHP Configurations" -msgstr "Редактирай PHP Конфигурация" - -#: managePHP/templates/managePHP/editPHPConfig.html:15 -msgid "Edit PHP Configurations on this page." -msgstr "Редактирай PHP конфигурация от тази страница." - -#: managePHP/templates/managePHP/editPHPConfig.html:36 -msgid "Advanced" -msgstr "За Напреднали" - -#: managePHP/templates/managePHP/editPHPConfig.html:65 -msgid "display_errors" -msgstr "display_errors" - -#: managePHP/templates/managePHP/editPHPConfig.html:72 -msgid "file_uploads" -msgstr "file_uploads" - -#: managePHP/templates/managePHP/editPHPConfig.html:80 -msgid "allow_url_fopen" -msgstr "allow_url_fopen" - -#: managePHP/templates/managePHP/editPHPConfig.html:88 -msgid "allow_url_include" -msgstr "allow_url_include" - -#: managePHP/templates/managePHP/editPHPConfig.html:96 -msgid "memory_limit" -msgstr "memory_limit" - -#: managePHP/templates/managePHP/editPHPConfig.html:103 -msgid "max_execution_time" -msgstr "max_execution_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:111 -msgid "upload_max_filesize" -msgstr "upload_max_filesize" - -#: managePHP/templates/managePHP/editPHPConfig.html:119 -msgid "post_max_size" -msgstr "post_max_size" - -#: managePHP/templates/managePHP/editPHPConfig.html:126 -msgid "max_input_time" -msgstr "max_input_time" - -#: managePHP/templates/managePHP/editPHPConfig.html:152 -#: managePHP/templates/managePHP/editPHPConfig.html:218 -msgid "PHP Configs Saved." -msgstr "PHP Configs са запазени." - -#: managePHP/templates/managePHP/index.html:3 -msgid "Manage PHP Installations - CyberPanel" -msgstr "Управление на PHP - CyberPanel" - -#: managePHP/templates/managePHP/index.html:12 -msgid "Manage PHP Installations" -msgstr "Управление на PHP " - -#: managePHP/templates/managePHP/index.html:13 -msgid "Edit your PHP Configurations to suit your needs." -msgstr "Редактирайте PHP конфигурацията според нуждите Ви." - -#: managePHP/templates/managePHP/installExtensions.html:3 -msgid "Install PHP Extensions - CyberPanel" -msgstr "Инсталирай PHP модули - CyberPanel" - -#: managePHP/templates/managePHP/installExtensions.html:14 -msgid "Install/uninstall php extensions on this page." -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 Версия" - -#: managePHP/templates/managePHP/installExtensions.html:47 -msgid "Search Extensions.." -msgstr "Търси разширение.." - -#: managePHP/templates/managePHP/installExtensions.html:62 -msgid "Extension Name" -msgstr "Име на разширение" - -#: managePHP/templates/managePHP/installExtensions.html:63 -#: pluginHolder/templates/pluginHolder/plugins.html:30 -msgid "Description" -msgstr "Описание" - -#: managePHP/templates/managePHP/installExtensions.html:65 -#: managePHP/templates/managePHP/installExtensions.html:81 -msgid "Install" -msgstr "Инсталирай" - -#: managePHP/templates/managePHP/installExtensions.html:66 -#: managePHP/templates/managePHP/installExtensions.html:86 -msgid "Uninstall" -msgstr "Де-Инсталирай" - -#: managePHP/templates/managePHP/installExtensions.html:115 -#: tuning/templates/tuning/phpTuning.html:115 -#: tuning/templates/tuning/phpTuning.html:255 -#: userManagment/templates/userManagment/modifyUser.html:126 -msgid "Cannot fetch details. Error message:" -msgstr "Детайлите не са извлечени, защото:" - -#: managePHP/templates/managePHP/installExtensions.html:119 -msgid "Cannot perform operation. Error message:" -msgstr "Операцията не е изпълнена, защото:" - -#: manageSSL/templates/manageSSL/index.html:3 -msgid "SSL Functions - CyberPanel" -msgstr "SSL Функции - CyberPanel" - -#: manageSSL/templates/manageSSL/index.html:13 -msgid "SSL Functions" -msgstr "SSL Функции" - -#: manageSSL/templates/manageSSL/index.html:14 -msgid "Issue Let’s Encrypt SSLs for websites and hostname." -msgstr "Издаване на Let’s Encrypt SSLs за сайтове и hostname." - -#: manageSSL/templates/manageSSL/manageSSL.html:3 -msgid "Manage SSL - CyberPanel" -msgstr "SSL - CyberPanel" - -#: manageSSL/templates/manageSSL/manageSSL.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -msgid "SSL Docs" -msgstr "SSL Документация" - -#: manageSSL/templates/manageSSL/manageSSL.html:14 -msgid "" -"This page can be used to issue Let’s Encrypt SSL for existing websites on " -"server." -msgstr "" -"От тази страница може да издавате Let’s Encrypt SSL сертификати за Вашите " -"сайтове." - -#: manageSSL/templates/manageSSL/manageSSL.html:42 -#: manageSSL/templates/manageSSL/sslForHostName.html:42 -#: manageSSL/templates/manageSSL/sslForMailServer.html:40 -msgid "Issue SSL" -msgstr "Издаване на SSL" - -#: manageSSL/templates/manageSSL/manageSSL.html:52 -#: manageSSL/templates/manageSSL/sslForHostName.html:52 -#: manageSSL/templates/manageSSL/sslForMailServer.html:50 -msgid "Cannot issue SSL. Error message:" -msgstr "Сертификата не е издаден. Съобщение за грешка: " - -#: manageSSL/templates/manageSSL/manageSSL.html:56 -msgid "SSL Issued for" -msgstr "SSL издаден за" - -#: manageSSL/templates/manageSSL/sslForHostName.html:3 -msgid "Issue SSL For Hostname - CyberPanel" -msgstr "Издай SSL за Hostname - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForHostName.html:13 -#: manageSSL/templates/manageSSL/sslForHostName.html:20 -msgid "Issue SSL For Hostname" -msgstr "Издай SSL за Hostname" - -#: manageSSL/templates/manageSSL/sslForHostName.html:14 -msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." -msgstr "" -"Let’s Encrypt SSL за hostname за да достъпвате CyberPanel през валиден https " -"адрес." - -#: manageSSL/templates/manageSSL/sslForHostName.html:56 -#: manageSSL/templates/manageSSL/sslForHostName.html:60 -msgid "SSL Issued. You can now access CyberPanel at:" -msgstr "Сертификата е издаден! Вече може да достъпвате CyberPanel чрез: " - -#: manageSSL/templates/manageSSL/sslForMailServer.html:3 -msgid "Issue SSL For MailServer - CyberPanel" -msgstr "Издай SSL за Mail сървъра - CyberPanel" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:13 -#: manageSSL/templates/manageSSL/sslForMailServer.html:20 -msgid "Issue SSL For MailServer" -msgstr "Издай SSL за Mail сървъра" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:14 -msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." -msgstr "Let’s Encrypt SSL за Mail сървър (Postfix/Dovecot)." - -#: manageSSL/templates/manageSSL/sslForMailServer.html:54 -msgid "SSL Issued, your mail server now uses Lets Encrypt!" -msgstr "" -"SSL сертификата е издаден. Mail сървъра Ви вече използва Lets Encrypt!" - -#: manageSSL/templates/manageSSL/sslForMailServer.html:58 -msgid "Could not connect to server, please refresh this page." -msgstr "Не можем да се свържем със сървъра, моля презаредете страницата." - -#: manageServices/templates/manageServices/managePostfix.html:3 -msgid "Manage Email Server (Postfix) - CyberPanel" -msgstr "Управление на Email сървър (Postfix) - Cyberpanel" - -#: manageServices/templates/manageServices/managePostfix.html:13 -msgid "Manage Email Server (Postfix)!" -msgstr "Управление на Email сървър (Postfix)!" - -#: manageServices/templates/manageServices/managePostfix.html:13 -#: manageServices/templates/manageServices/managePowerDNS.html:16 -#: manageServices/templates/manageServices/managePureFtpd.html:13 -msgid "Services Docs" -msgstr "Допълнителна документация" - -#: manageServices/templates/manageServices/managePostfix.html:14 -msgid "Enable or disable Email services. " -msgstr "Позволи или забрани Email сървъра." - -#: manageServices/templates/manageServices/managePostfix.html:79 -#: manageServices/templates/manageServices/managePowerDNS.html:149 -#: manageServices/templates/manageServices/managePureFtpd.html:79 -msgid "Only administrator can manage services." -msgstr "Само Администраторите могат да управляват сървайсес." - -#: manageServices/templates/manageServices/managePowerDNS.html:3 -msgid "Manage PowerDNS - CyberPanel" -msgstr "Управление на PowerDNS - CyberPanel" - -#: manageServices/templates/manageServices/managePowerDNS.html:13 -msgid "Manage PowerDNS!" -msgstr "Управление на PowerDNS" - -#: manageServices/templates/manageServices/managePowerDNS.html:17 -msgid "Enable or disable DNS services. " -msgstr "Позволи или забрани DNS сървър." - -#: manageServices/templates/manageServices/managePowerDNS.html:42 -#, fuzzy -#| msgid "Security Functions" -msgid "Select Function Mode" -msgstr "Функции на Защитата" - -#: manageServices/templates/manageServices/managePowerDNS.html:53 -#, fuzzy -#| msgid "Name server" -msgid "Slave Server" -msgstr "Name server" - -#: manageServices/templates/manageServices/managePowerDNS.html:60 -#, fuzzy -#| msgid "MailServer SSL" -msgid "Master Server IP" -msgstr "MailServer SSL" - -#: manageServices/templates/manageServices/managePowerDNS.html:67 -#, fuzzy -#| msgid "Name server" -msgid "Slave Server 1" -msgstr "Name server" - -#: manageServices/templates/manageServices/managePowerDNS.html:74 -#, fuzzy -#| msgid "Name server" -msgid "Slave Server IP" -msgstr "Name server" - -#: manageServices/templates/manageServices/managePowerDNS.html:81 -msgid "Slave Server 2 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:88 -msgid "Slave Server IP 2 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:95 -msgid "Slave Server 3 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePowerDNS.html:102 -msgid "Slave Server IP 3 (Optional)" -msgstr "" - -#: manageServices/templates/manageServices/managePureFtpd.html:3 -msgid "Manage FTP Server (Pure FTPD) - CyberPanel" -msgstr "Управление на FTP сървър (Pure FTPD) - CyberPanel" - -#: manageServices/templates/manageServices/managePureFtpd.html:13 -msgid "Manage FTP Server (Pure FTPD)!" -msgstr "Управление на FTP сървър (Pure FTPD)!" - -#: manageServices/templates/manageServices/managePureFtpd.html:14 -msgid "Enable or disable FTP services. " -msgstr "Позволи или забрани FTP сървър." - -#: manageServices/templates/manageServices/managePureFtpd.html:22 -msgid "Manage PureFTPD" -msgstr "Управлявай PureFTPD" - -#: packages/templates/packages/createPackage.html:3 -msgid "Create Package - CyberPanel" -msgstr "Създай Пакет - CyberPanel" - -#: packages/templates/packages/createPackage.html:14 -#: packages/templates/packages/deletePackage.html:13 -#: packages/templates/packages/index.html:14 -#: packages/templates/packages/modifyPackage.html:10 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 -msgid "" -"Packages define resources for your websites, you need to add package before " -"creating a website." -msgstr "Пакетите дефинират ресурсите, които сайтовете могат да използват." - -#: packages/templates/packages/createPackage.html:19 -msgid "Package Details" -msgstr "Детайли за Пакет" - -#: packages/templates/packages/createPackage.html:41 -#: packages/templates/packages/listPackages.html:98 -#: packages/templates/packages/modifyPackage.html:44 -msgid "(0 = Unlimited)" -msgstr "( 0 = Без Лимит )" - -#: packages/templates/packages/createPackage.html:45 -#: packages/templates/packages/listPackages.html:104 -#: packages/templates/packages/modifyPackage.html:49 -msgid "Disk Space" -msgstr "Дисково Място" - -#: packages/templates/packages/createPackage.html:49 -#: packages/templates/packages/createPackage.html:57 -#: packages/templates/packages/listPackages.html:109 -#: packages/templates/packages/listPackages.html:119 -#: packages/templates/packages/modifyPackage.html:53 -#: packages/templates/packages/modifyPackage.html:61 -msgid "MB (0 = Unlimited)" -msgstr "MB (0 = Без лимит)" - -#: packages/templates/packages/createPackage.html:53 -#: packages/templates/packages/listPackages.html:35 -#: packages/templates/packages/listPackages.html:114 -#: packages/templates/packages/modifyPackage.html:57 -msgid "Bandwidth" -msgstr "Трафик" - -#: packages/templates/packages/createPackage.html:62 -#: packages/templates/packages/listPackages.html:125 -#: packages/templates/packages/modifyPackage.html:66 -msgid "FTP Accounts" -msgstr "FTP Акаунти" - -#: packages/templates/packages/createPackage.html:108 -msgid "Cannot create package. Error message:" -msgstr "Пакета не е създаден, защото:" - -#: packages/templates/packages/createPackage.html:113 -msgid "Successfully Created" -msgstr "Успешно е създаден" - -#: packages/templates/packages/deletePackage.html:3 -msgid "Delete Package - CyberPanel" -msgstr "Изтрий пакет - CyberPanel" - -#: packages/templates/packages/deletePackage.html:56 -msgid "Cannot delete package. Error message:" -msgstr "Пакета не може да бъде премахнат, защото:" - -#: packages/templates/packages/deletePackage.html:60 -#, fuzzy -#| msgid " Successfully Deleted" -msgid " Successfully Deleted." -msgstr "Успешно е премахнато" - -#: packages/templates/packages/index.html:3 -msgid "Packages - CyberPanel" -msgstr "Пакети - CyberPanel" - -#: packages/templates/packages/listPackages.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid "List Packages - CyberPanel" -msgstr "Пакети - CyberPanel" - -#: packages/templates/packages/listPackages.html:14 -msgid "List Packages and delete or edit them." -msgstr "" - -#: packages/templates/packages/listPackages.html:34 -#, fuzzy -#| msgid "Disk Space" -msgid "Diskspace" -msgstr "Дисково Място" - -#: packages/templates/packages/listPackages.html:36 -#, fuzzy -#| msgid "Create Email Account" -msgid "Email Accounts" -msgstr "Създай Email Акаунт" - -#: packages/templates/packages/listPackages.html:38 -msgid "FTPs" -msgstr "" - -#: packages/templates/packages/listPackages.html:39 -#, fuzzy -#| msgid "Add Domains" -msgid "Child Domains" -msgstr "Добави Домейни" - -#: packages/templates/packages/listPackages.html:40 -msgid "Allow FQDN as Childs" -msgstr "" - -#: packages/templates/packages/listPackages.html:152 -#, fuzzy -#| msgid "Additional Features" -msgid "Additional" -msgstr "Допълнителни функции" - -#: packages/templates/packages/modifyPackage.html:3 -msgid "Modify Package - CyberPanel" -msgstr "Промени Пакет - CyberPanel" - -#: packages/templates/packages/modifyPackage.html:117 -msgid "Cannot fetch package details. Error message:" -msgstr "Детайлите за пакета не са извлечени, защото:" - -#: packages/templates/packages/modifyPackage.html:121 -msgid "Package Details Successfully Fetched" -msgstr "Детайлите за пакета са успешно извлечени" - -#: packages/templates/packages/modifyPackage.html:125 -msgid "Successfully Modified" -msgstr "Успешно Променено" - -#: pluginHolder/templates/pluginHolder/plugins.html:15 -#, fuzzy -#| msgid "List Databases - CyberPanel" -msgid "List of installed plugins on your CyberPanel." -msgstr "Бази от Данни - CyberPanel" - -#: pluginHolder/templates/pluginHolder/plugins.html:31 -#, fuzzy -#| msgid "Latest Version" -msgid "Version" -msgstr "Последна Версия" - -#: serverLogs/templates/serverLogs/accessLogs.html:3 -msgid "Access Logs - CyberPanel" -msgstr "Access Логове - CyberPanel" - -#: serverLogs/templates/serverLogs/accessLogs.html:17 -msgid "Access Logs for main web server." -msgstr "Access логове за главния web сървър" - -#: serverLogs/templates/serverLogs/accessLogs.html:24 -#: serverLogs/templates/serverLogs/emailLogs.html:23 -#: serverLogs/templates/serverLogs/errorLogs.html:21 -#: serverLogs/templates/serverLogs/ftplogs.html:21 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 -msgid "Last 50 Lines" -msgstr "Последните 50 реда" - -#: serverLogs/templates/serverLogs/accessLogs.html:41 -#: serverLogs/templates/serverLogs/emailLogs.html:42 -#: serverLogs/templates/serverLogs/errorLogs.html:38 -#: serverLogs/templates/serverLogs/ftplogs.html:38 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 -msgid "Clear Logs" -msgstr "Почисти логове" - -#: serverLogs/templates/serverLogs/accessLogs.html:47 -#: serverLogs/templates/serverLogs/emailLogs.html:49 -#: serverLogs/templates/serverLogs/errorLogs.html:45 -#: serverLogs/templates/serverLogs/ftplogs.html:44 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 -msgid "Last 50 Lines Fetched" -msgstr "Последните 50 реда са извлечени" - -#: serverLogs/templates/serverLogs/accessLogs.html:52 -#: serverLogs/templates/serverLogs/emailLogs.html:54 -#: serverLogs/templates/serverLogs/errorLogs.html:50 -#: serverLogs/templates/serverLogs/ftplogs.html:49 -#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 -msgid "Could not fetch logs. Use the command line to view the log file." -msgstr "" -"Логовете не могат да бъдат показани. Използвайте терминала за прегледа им." - -#: serverLogs/templates/serverLogs/emailLogs.html:3 -#: serverLogs/templates/serverLogs/errorLogs.html:3 -msgid "Error Logs - CyberPanel" -msgstr "Error логове - CyberPanel" - -#: serverLogs/templates/serverLogs/emailLogs.html:15 -msgid "Email Logs for main web server." -msgstr "Email логове за главния web сървър" - -#: serverLogs/templates/serverLogs/errorLogs.html:14 -msgid "Error Logs for main web server." -msgstr "Error логове за главния web сървър" - -#: serverLogs/templates/serverLogs/ftplogs.html:3 -msgid "FTP Logs - CyberPanel" -msgstr "FTP Логове - CyberPanel" - -#: serverLogs/templates/serverLogs/ftplogs.html:14 -msgid "FTP Logs for main web server." -msgstr "FTP логове за главния web сървър" - -#: serverLogs/templates/serverLogs/index.html:3 -msgid "Server Logs - CyberPanel" -msgstr "Сървърни Логове - Cyberpanel" - -#: serverLogs/templates/serverLogs/index.html:13 -msgid "Server Logs" -msgstr "Сървърни Логове" - -#: serverLogs/templates/serverLogs/index.html:14 -msgid "" -"These are the logs from main server, to see logs for your website navigate " -"to: Websites -> List Websites -> Select Website -> View Logs." -msgstr "Това са логовете на главния сървър." - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 -msgid "ModSecurity Audit Logs - CyberPanel" -msgstr "ModSecurity Audit логове - CyberPanel" - -#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 -msgid "ModSecurity Audit logs" -msgstr "ModSecurity Audit логове" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 -msgid "CyberPanel Main Log File - CyberPanel" -msgstr "Главен Лог на CyberPanel - CyberPanel" - -#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 -msgid "" -"This log file corresponds to errors generated by CyberPanel for your domain " -"errors log you can look into /home/domain/logs." -msgstr "Това е лог файл относно грешки в CyberPanel." - -#: serverStatus/templates/serverStatus/index.html:3 -msgid "Server Status - CyberPanel" -msgstr "Сървър Статус - CyberPanel" - -#: serverStatus/templates/serverStatus/index.html:14 -msgid "View LiteSpeed status and log files." -msgstr "Виж LiteSpeed статус и логове." - -#: serverStatus/templates/serverStatus/index.html:41 -#, fuzzy -#| msgid "CyberPanel Main Log File" -msgid "CyberPanel Main Log" -msgstr "Главен CyberPanel Лог" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:3 -msgid "LiteSpeed Status - CyberPanel" -msgstr "LiteSpeed Статус - CyberPanel" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:14 -#: serverStatus/templates/serverStatus/litespeedStatus.html:221 -msgid "LiteSpeed Status:" -msgstr "LiteSpeed Статус" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:16 -#: serverStatus/templates/serverStatus/litespeedStatus.html:222 -msgid "" -"On this page you can get information regarding your LiteSpeed processes." -msgstr "" -"На тази страница може да разгледате информация за OpenLiteSpeed процесите" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:30 -#: serverStatus/templates/serverStatus/litespeedStatus.html:254 -msgid "LiteSpeed Processes" -msgstr "LiteSpeed Processes" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:37 -#: serverStatus/templates/serverStatus/litespeedStatus.html:261 -msgid "Process ID" -msgstr "Process ID" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:49 -#: serverStatus/templates/serverStatus/litespeedStatus.html:273 -msgid "Main Process" -msgstr "Main Процес" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:52 -#: serverStatus/templates/serverStatus/litespeedStatus.html:276 -msgid "lscgid Process" -msgstr "lscgid Процес" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:55 -#: serverStatus/templates/serverStatus/litespeedStatus.html:279 -msgid "Worker Process" -msgstr "Worker Process" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:67 -#: serverStatus/templates/serverStatus/litespeedStatus.html:291 -msgid "Reboot Litespeed" -msgstr "Рестартирай LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:73 -#: serverStatus/templates/serverStatus/litespeedStatus.html:297 -msgid "Stop LiteSpeed" -msgstr "Спри LiteSpeed" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:87 -#: serverStatus/templates/serverStatus/litespeedStatus.html:310 -msgid "Error Occurred. See CyberPanel main log file." -msgstr "Възникна проблем. Прегледайте главния лог на CyberPanel" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:92 -#: serverStatus/templates/serverStatus/litespeedStatus.html:315 -msgid "Could not connect to server." -msgstr "Няма връзка със сървъра." - -#: serverStatus/templates/serverStatus/litespeedStatus.html:138 -msgid "Switch to LiteSpeed Enterprise Web Server" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:149 -#, fuzzy -#| msgid "LiteSpeed Processes" -msgid "LiteSpeed Serial No. (License Key)" -msgstr "LiteSpeed Processes" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:160 -msgid "Switch" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:162 -msgid "Get 15 Days Trial" -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:175 -msgid "" -"Note: If you select 15 days trial there is no need to enter the serial key, " -"CyberPanel will auto fetch 15 days trial key for you. Make sure this server " -"have not used trial already." -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:193 -msgid "With great wisdom comes great responsibility." -msgstr "" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:329 -#, fuzzy -#| msgid "File Manager" -msgid "License Manager" -msgstr "Файл Мениджър" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:336 -#: serverStatus/templates/serverStatus/litespeedStatus.html:340 -#: serverStatus/templates/serverStatus/litespeedStatus.html:341 -#, fuzzy -#| msgid "Services Status" -msgid "License Status" -msgstr "Сървър Статус" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:346 -#: serverStatus/templates/serverStatus/litespeedStatus.html:350 -#: serverStatus/templates/serverStatus/litespeedStatus.html:351 -#, fuzzy -#| msgid "Change Limits" -msgid "Change License" -msgstr "Промени лимити" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:378 -#, fuzzy -#| msgid "New File" -msgid "New key" -msgstr "Нов файл" - -#: serverStatus/templates/serverStatus/litespeedStatus.html:388 -#, fuzzy -#| msgid "Change" -msgid "Change Key" -msgstr "Промени" - -#: serverStatus/templates/serverStatus/services.html:3 -msgid "Services - CyberPanel" -msgstr "Services - CyberPanel" - -#: serverStatus/templates/serverStatus/services.html:25 -msgid "Show stats for services and actions (Start, Stop, Restart)" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:3 -#, fuzzy -#| msgid "Packages - CyberPanel" -msgid "Top Processes - CyberPanel" -msgstr "Пакети - CyberPanel" - -#: serverStatus/templates/serverStatus/topProcesses.html:16 -msgid "List of top processes on your server. (Refresh every 3 seconds)" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:27 -msgid "Cores" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:28 -#, fuzzy -#| msgid "New Name" -msgid "Model Name" -msgstr "Ново име" - -#: serverStatus/templates/serverStatus/topProcesses.html:29 -msgid "CPU Mhz" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:30 -#, fuzzy -#| msgid "Cache Size in memory" -msgid "Cache Size" -msgstr "Cache Size in memory" - -#: serverStatus/templates/serverStatus/topProcesses.html:51 -#, fuzzy -#| msgid "Process ID" -msgid "Processes" -msgstr "Process ID" - -#: serverStatus/templates/serverStatus/topProcesses.html:53 -msgid "Sleeping" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:54 -#, fuzzy -#| msgid "Stop" -msgid "Stopped" -msgstr "Спри" - -#: serverStatus/templates/serverStatus/topProcesses.html:55 -msgid "Zombie" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:80 -#, fuzzy -#| msgid "CPU Load Average" -msgid "CPU Load" -msgstr "Средно CPU Натоварване" - -#: serverStatus/templates/serverStatus/topProcesses.html:81 -msgid "1 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:82 -msgid "5 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:83 -msgid "15 Min" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:104 -msgid "I/O Wait" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:105 -msgid "Idle Time" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:106 -msgid "HW Interrupts" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:107 -msgid "Softirqs" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:132 -#: serverStatus/templates/serverStatus/topProcesses.html:156 -msgid "Free" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:133 -#: serverStatus/templates/serverStatus/topProcesses.html:157 -msgid "Used" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:134 -#: serverStatus/templates/serverStatus/topProcesses.html:158 -msgid "buff/cache" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:155 -msgid "SWAP" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:192 -#, fuzzy -#| msgid "ID" -msgid "PID" -msgstr "ID" - -#: serverStatus/templates/serverStatus/topProcesses.html:194 -msgid "VIRT" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:195 -msgid "RES" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:196 -#, fuzzy -#| msgid "Status" -msgid "State" -msgstr "Статус" - -#: serverStatus/templates/serverStatus/topProcesses.html:197 -#, python-format -msgid "%%CPU" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:198 -#, python-format -msgid "%%MEM" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:199 -msgid "Time" -msgstr "" - -#: serverStatus/templates/serverStatus/topProcesses.html:200 -#: websiteFunctions/templates/websiteFunctions/listCron.html:51 -#: websiteFunctions/templates/websiteFunctions/listCron.html:126 -msgid "Command" -msgstr "Команда" - -#: tuning/templates/tuning/index.html:3 -msgid "Server Tuning - CyberPanel" -msgstr "Server Tuning - CyberPanel" - -#: tuning/templates/tuning/index.html:12 -msgid "Server Tuning" -msgstr "Оптимизация на Сървър" - -#: tuning/templates/tuning/index.html:13 -msgid "" -"On this page you can set runing parameters for your webserver depending on " -"your hardware." -msgstr "" -"От тази страница може да променяте настройките на уеб сървъра според Вашия " -"hardware." - -#: tuning/templates/tuning/liteSpeedTuning.html:3 -msgid "LiteSpeed Tuning - CyberPanel" -msgstr "LiteSpeed Настройки - CyberPanel" - -#: tuning/templates/tuning/liteSpeedTuning.html:13 -msgid "" -"You can use this page to tweak your server according to your website " -"requirments." -msgstr "" -"Може да използвате тази страница за настройка на сървъра Ви според " -"изискванията на сайта Ви." - -#: tuning/templates/tuning/liteSpeedTuning.html:18 -msgid "Tuning Details" -msgstr "Детайли за Настройки" - -#: tuning/templates/tuning/liteSpeedTuning.html:28 -#: tuning/templates/tuning/phpTuning.html:52 -#: tuning/templates/tuning/phpTuning.html:192 -msgid "Max Connections" -msgstr "Max Connections" - -#: tuning/templates/tuning/liteSpeedTuning.html:36 -msgid "Max SSL Connections" -msgstr "Max SSL Connections" - -#: tuning/templates/tuning/liteSpeedTuning.html:44 -msgid "Connection Timeout" -msgstr "Connection Timeout" - -#: tuning/templates/tuning/liteSpeedTuning.html:52 -msgid "Keep Alive Timeout" -msgstr "Keep Alive Timeout" - -#: tuning/templates/tuning/liteSpeedTuning.html:60 -msgid "Cache Size in memory" -msgstr "Cache Size in memory" - -#: tuning/templates/tuning/liteSpeedTuning.html:67 -msgid "Enable GZIP Compression" -msgstr "Включи GZIP Компресия" - -#: tuning/templates/tuning/liteSpeedTuning.html:74 -#: tuning/templates/tuning/phpTuning.html:97 -#: tuning/templates/tuning/phpTuning.html:237 -msgid "Currently:" -msgstr "В момента" - -#: tuning/templates/tuning/liteSpeedTuning.html:82 -msgid "Tune Web Server" -msgstr "Настрой Web Сървър" - -#: tuning/templates/tuning/liteSpeedTuning.html:92 -msgid "" -"Cannot fetch Current Value, but you can still submit new changes, error " -"reported from server:" -msgstr "" -"Действащата валута не е извлечена, но все пак може да я променяте. " -"Съобщението за грешка: " - -#: tuning/templates/tuning/liteSpeedTuning.html:96 -msgid "Cannot save details, Error Message: " -msgstr "Детайлите не са запазени. Съобщение за грешка: " - -#: tuning/templates/tuning/liteSpeedTuning.html:101 -msgid "Web Server Successfully tuned." -msgstr "Уеб сървъра е успешно оптимизиран." - -#: tuning/templates/tuning/phpTuning.html:3 -msgid "PHP Tuning - CyberPanel" -msgstr "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:45 -#: tuning/templates/tuning/phpTuning.html:185 -msgid "Initial Request Timeout (secs)" -msgstr "Initial Request Timeout (secs)" - -#: tuning/templates/tuning/phpTuning.html:60 -#: tuning/templates/tuning/phpTuning.html:200 -msgid "Memory Soft Limit" -msgstr "Memory Soft Limit" - -#: tuning/templates/tuning/phpTuning.html:67 -#: tuning/templates/tuning/phpTuning.html:207 -msgid "Memory Hard Limit" -msgstr "Memory Hard Limit" - -#: tuning/templates/tuning/phpTuning.html:75 -#: tuning/templates/tuning/phpTuning.html:215 -msgid "Process Soft Limit" -msgstr "Process Soft Limit" - -#: tuning/templates/tuning/phpTuning.html:82 -#: tuning/templates/tuning/phpTuning.html:222 -msgid "Process Hard Limit" -msgstr "Process Hard Limit" - -#: tuning/templates/tuning/phpTuning.html:90 -#: tuning/templates/tuning/phpTuning.html:230 -msgid "Persistent Connection" -msgstr "Persistent Connection" - -#: tuning/templates/tuning/phpTuning.html:106 -#: tuning/templates/tuning/phpTuning.html:246 -msgid "Tune PHP" -msgstr "Настрой PHP" - -#: tuning/templates/tuning/phpTuning.html:119 -#: tuning/templates/tuning/phpTuning.html:259 -msgid "Cannot tune. Error message:" -msgstr "Настройките не са въведени, защото:" - -#: tuning/templates/tuning/phpTuning.html:124 -#: tuning/templates/tuning/phpTuning.html:264 -msgid "Details Successfully fetched." -msgstr "Детайлите са успешно извлечени." - -#: tuning/templates/tuning/phpTuning.html:128 -#: tuning/templates/tuning/phpTuning.html:268 -msgid "PHP for " -msgstr "PHP Версия за" - -#: tuning/templates/tuning/phpTuning.html:129 -#: tuning/templates/tuning/phpTuning.html:269 -msgid "Successfully tuned." -msgstr "Успешно настроен" - -#: userManagment/templates/userManagment/apiAccess.html:3 -#, fuzzy -#| msgid "Access Logs - CyberPanel" -msgid "API Access for User - CyberPanel" -msgstr "Access Логове - CyberPanel" - -#: userManagment/templates/userManagment/apiAccess.html:14 -msgid "" -"Allow/Remove API access for account, this effects Cloud Platform Connection " -"and Third Party Modules." -msgstr "" - -#: userManagment/templates/userManagment/apiAccess.html:29 -#: userManagment/templates/userManagment/changeUserACL.html:28 -#: userManagment/templates/userManagment/deleteUser.html:29 -#: userManagment/templates/userManagment/resellerCenter.html:25 -msgid "Select User" -msgstr "Избери Потребител" - -#: userManagment/templates/userManagment/apiAccess.html:40 -#, fuzzy -#| msgid "Access Log" -msgid "Access" -msgstr "Access Лог" - -#: userManagment/templates/userManagment/changeUserACL.html:3 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Change User ACL - CyberPanel" -msgstr "Създай Потребител - CyberPanel" - -#: userManagment/templates/userManagment/changeUserACL.html:12 -#: userManagment/templates/userManagment/changeUserACL.html:19 -#: userManagment/templates/userManagment/createACL.html:100 -#: userManagment/templates/userManagment/modifyACL.html:104 -#, fuzzy -#| msgid "Create User" -msgid "Change User ACL" -msgstr "Създай Потребител" - -#: userManagment/templates/userManagment/changeUserACL.html:13 -#, fuzzy -#| msgid "This page can be used to Back up your websites" -msgid "This page can be used to change ACL for CyberPanel users." -msgstr "От тази страница може да направите архив на Вашите страници" - -#: userManagment/templates/userManagment/changeUserACL.html:39 -#: userManagment/templates/userManagment/createUser.html:56 -#: userManagment/templates/userManagment/deleteACL.html:26 -#: userManagment/templates/userManagment/listUsers.html:99 -#: userManagment/templates/userManagment/modifyACL.html:28 -#, fuzzy -#| msgid "Select All" -msgid "Select ACL" -msgstr "Избери всички" - -#: userManagment/templates/userManagment/changeUserACL.html:55 -#, fuzzy -#| msgid "Change" -msgid "Change ACL" -msgstr "Промени" - -#: userManagment/templates/userManagment/createACL.html:3 -#, fuzzy -#| msgid "Create New User - CyberPanel" -msgid "Create new ACL - CyberPanel" -msgstr "Създай Потребител - CyberPanel" - -#: userManagment/templates/userManagment/createACL.html:13 -msgid "" -"Create new Access Control defination, that specifies what CyberPanel users " -"can do." -msgstr "" - -#: userManagment/templates/userManagment/createACL.html:19 -#: userManagment/templates/userManagment/modifyACL.html:19 -#, fuzzy -#| msgid "Details" -msgid "ACL Details" -msgstr "Детайли" - -#: userManagment/templates/userManagment/createACL.html:26 -#, fuzzy -#| msgid "Last Name" -msgid "ACL Name" -msgstr "Фанилия" - -#: userManagment/templates/userManagment/createACL.html:40 -#: userManagment/templates/userManagment/modifyACL.html:44 -#, fuzzy -#| msgid "Admin" -msgid "Make Admin" -msgstr "Admin" - -#: userManagment/templates/userManagment/createACL.html:59 -#: userManagment/templates/userManagment/modifyACL.html:63 -#, fuzzy -#| msgid "Cron Management" -msgid "User Management" -msgstr "Cron Мениджър" - -#: userManagment/templates/userManagment/createACL.html:91 -#: userManagment/templates/userManagment/deleteUser.html:13 -#: userManagment/templates/userManagment/deleteUser.html:20 -#: userManagment/templates/userManagment/deleteUser.html:42 -#: userManagment/templates/userManagment/index.html:78 -#: userManagment/templates/userManagment/index.html:81 -#: userManagment/templates/userManagment/modifyACL.html:95 -msgid "Delete User" -msgstr "Изтрий Потребител" - -#: userManagment/templates/userManagment/createACL.html:107 -#: userManagment/templates/userManagment/modifyACL.html:111 -#, fuzzy -#| msgid "Git Management" -msgid "Website Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:130 -#: userManagment/templates/userManagment/modifyACL.html:134 -#, fuzzy -#| msgid "Suspend/Unsuspend Website" -msgid "Suspend Website" -msgstr "Пусни/Спри Страница" - -#: userManagment/templates/userManagment/createACL.html:147 -#: userManagment/templates/userManagment/modifyACL.html:151 -#, fuzzy -#| msgid "Package Name" -msgid "Package Management" -msgstr "Име на Пакет" - -#: userManagment/templates/userManagment/createACL.html:186 -#: userManagment/templates/userManagment/modifyACL.html:190 -#, fuzzy -#| msgid "Database Name" -msgid "Database Management" -msgstr "Име на База от Данни" - -#: userManagment/templates/userManagment/createACL.html:216 -#: userManagment/templates/userManagment/modifyACL.html:220 -#, fuzzy -#| msgid "Git Management" -msgid "DNS Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:249 -#: userManagment/templates/userManagment/modifyACL.html:253 -#, fuzzy -#| msgid "Add/Delete Rules" -msgid "Add/Delete" -msgstr "Добави/Премахни Правила" - -#: userManagment/templates/userManagment/createACL.html:257 -#: userManagment/templates/userManagment/modifyACL.html:261 -#, fuzzy -#| msgid "Git Management" -msgid "Email Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:317 -#: userManagment/templates/userManagment/modifyACL.html:321 -#, fuzzy -#| msgid "Git Management" -msgid "FTP Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:347 -#: userManagment/templates/userManagment/modifyACL.html:351 -#, fuzzy -#| msgid "Git Management" -msgid "Backup Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:399 -#: userManagment/templates/userManagment/modifyACL.html:403 -#, fuzzy -#| msgid "Git Management" -msgid "SSL Management" -msgstr "Git Мениджър" - -#: userManagment/templates/userManagment/createACL.html:432 -#, fuzzy -#| msgid "Create Alias" -msgid "Create ACL" -msgstr "Паркирай Домейн" - -#: userManagment/templates/userManagment/createUser.html:3 -msgid "Create New User - CyberPanel" -msgstr "Създай Потребител - CyberPanel" - -#: userManagment/templates/userManagment/createUser.html:13 -msgid "Create root, reseller or normal users on this page." -msgstr "Създай root, reseller или нормален потребител от тази страница." - -#: userManagment/templates/userManagment/createUser.html:19 -msgid "User Details" -msgstr "Детайли" - -#: userManagment/templates/userManagment/createUser.html:25 -#: userManagment/templates/userManagment/modifyUser.html:39 -#: userManagment/templates/userManagment/userProfile.html:24 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 -msgid "First Name" -msgstr "Име" - -#: userManagment/templates/userManagment/createUser.html:31 -msgid "First Name should contain only alphabetic characters." -msgstr "Името е необходимо да съдържа само букви" - -#: userManagment/templates/userManagment/createUser.html:35 -#: userManagment/templates/userManagment/modifyUser.html:46 -#: userManagment/templates/userManagment/userProfile.html:29 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 -msgid "Last Name" -msgstr "Фанилия" - -#: userManagment/templates/userManagment/createUser.html:41 -msgid "Last Name should contain only alphabetic characters." -msgstr "Фамилията е необходимо да съдържа само букви" - -#: userManagment/templates/userManagment/createUser.html:50 -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 -msgid "Invalid Email" -msgstr "Невалиден Email" - -#: userManagment/templates/userManagment/createUser.html:68 -#: userManagment/templates/userManagment/listUsers.html:33 -#: userManagment/templates/userManagment/resellerCenter.html:48 -#: userManagment/templates/userManagment/userProfile.html:53 -msgid "Websites Limit" -msgstr "Лимити за страници" - -#: userManagment/templates/userManagment/createUser.html:107 -#: userManagment/templates/userManagment/modifyUser.html:85 -#, fuzzy -#| msgid "Security" -msgid "Security Level" -msgstr "Сигурност" - -#: userManagment/templates/userManagment/createUser.html:120 -#: userManagment/templates/userManagment/index.html:49 -#: userManagment/templates/userManagment/index.html:52 -msgid "Create User" -msgstr "Създай Потребител" - -#: userManagment/templates/userManagment/createUser.html:128 -#: userManagment/templates/userManagment/modifyUser.html:112 -msgid "Account with username:" -msgstr "Акаунт с Потребителско име:" - -#: userManagment/templates/userManagment/createUser.html:133 -msgid "Cannot create user. Error message:" -msgstr "Потребителя не е създаден. Съобщение за грешка:" - -#: userManagment/templates/userManagment/createUser.html:141 -msgid "" -"Length of first and last name combined should be less than or equal to 20 " -"characters" -msgstr "" -"Дължината на Първото и последното име комбинирано не трябва да превишава 20 " -"символа." - -#: userManagment/templates/userManagment/deleteACL.html:3 -#, fuzzy -#| msgid "Delete User - CyberPanel" -msgid "Delete ACL - CyberPanel" -msgstr "Премахни потребител - CyberPanel" - -#: userManagment/templates/userManagment/deleteACL.html:13 -#, fuzzy -#| msgid "This page can be used to suspend/unsuspend website." -msgid "This page can be used to delete ACL." -msgstr "От тази страница може да пускате или спирате страници." - -#: userManagment/templates/userManagment/deleteUser.html:3 -msgid "Delete User - CyberPanel" -msgstr "Премахни потребител - CyberPanel" - -#: userManagment/templates/userManagment/deleteUser.html:14 -msgid "Websites owned by this user will automatically transfer to the root." -msgstr "" -"Уеб страниците на този потребител ще бъдат автоматично прехвърлени към admin." - -#: userManagment/templates/userManagment/deleteUser.html:61 -msgid "Cannot delete user. Error message:" -msgstr "Потребителя не може да бъде премахнат. Съобщение за грешка: " - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid "User " -msgstr "Потребител" - -#: userManagment/templates/userManagment/deleteUser.html:65 -msgid " Successfully Deleted" -msgstr "Успешно е премахнато" - -#: userManagment/templates/userManagment/index.html:3 -msgid "User Functions - CyberPanel" -msgstr "Потребителски функции - CyberPanel" - -#: userManagment/templates/userManagment/index.html:14 -msgid "Create, edit and delete users on this page." -msgstr "Създавай, променяй или премахвайте потребители от тази страница." - -#: userManagment/templates/userManagment/listUsers.html:3 -#, fuzzy -#| msgid "List Databases - CyberPanel" -msgid "List Users - CyberPanel" -msgstr "Бази от Данни - CyberPanel" - -#: userManagment/templates/userManagment/listUsers.html:14 -msgid "List Users that you own." -msgstr "" - -#: userManagment/templates/userManagment/listUsers.html:35 -msgid "ACL" -msgstr "" - -#: userManagment/templates/userManagment/listUsers.html:84 -#: userManagment/templates/userManagment/resellerCenter.html:37 -#, fuzzy -#| msgid "Select Owner" -msgid "New Owner" -msgstr "Избери Собственик" - -#: userManagment/templates/userManagment/modifyACL.html:3 -#, fuzzy -#| msgid "Modify User - CyberPanel" -msgid "Modify an ACL - CyberPanel" -msgstr "Промени Потребител - CyberPanel" - -#: userManagment/templates/userManagment/modifyACL.html:12 -msgid "Modify an ACL" -msgstr "" - -#: userManagment/templates/userManagment/modifyACL.html:13 -#, fuzzy -#| msgid "On this page you can configure SpamAssassin settings." -msgid "On this page you can modify an existing ACL." -msgstr "От тази страница може да настройте SpamAssassin." - -#: userManagment/templates/userManagment/modifyUser.html:3 -msgid "Modify User - CyberPanel" -msgstr "Промени Потребител - CyberPanel" - -#: userManagment/templates/userManagment/modifyUser.html:13 -msgid "Modify existing user settings on this page." -msgstr "Променяйте настройките за съществуващ потребител от тази страница." - -#: userManagment/templates/userManagment/modifyUser.html:27 -msgid "Select Account" -msgstr "Избери Акаунт" - -#: userManagment/templates/userManagment/modifyUser.html:113 -msgid " is successfully modified." -msgstr "е успешно променен." - -#: userManagment/templates/userManagment/modifyUser.html:117 -msgid "Cannot modify user. Error message:" -msgstr "Потребителя не е променен. Съобщение за грешка:" - -#: userManagment/templates/userManagment/modifyUser.html:130 -msgid "Details fetched." -msgstr "Детайлите са изтеглени." - -#: userManagment/templates/userManagment/resellerCenter.html:3 -#, fuzzy -#| msgid "Restore Website - CyberPanel" -msgid "Reseller Center - CyberPanel" -msgstr "Възстанови Страница - CyberPanel" - -#: userManagment/templates/userManagment/resellerCenter.html:13 -msgid "Change owner of users and change websites limits." -msgstr "" - -#: userManagment/templates/userManagment/userProfile.html:3 -msgid "Account Details - CyberPanel" -msgstr "Детайли за Акаунт - CyberPanel" - -#: userManagment/templates/userManagment/userProfile.html:12 -#: userManagment/templates/userManagment/userProfile.html:18 -msgid "Account Details" -msgstr "Детайли за Акаунт" - -#: userManagment/templates/userManagment/userProfile.html:13 -msgid "List the account details for the currently logged in user." -msgstr "Преглед на акаунтите, които са влезнали в този момент." - -#: userManagment/templates/userManagment/userProfile.html:48 -#, fuzzy -#| msgid "Account Level" -msgid "Account ACL" -msgstr "Акаунт Левел" - -#: userManagment/templates/userManagment/userProfile.html:55 -msgid "( 0 = Unlimited )" -msgstr "( 0 = Без Лимит )" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 -msgid "Application Installer - CyberPanel" -msgstr "Инсталатор на Приложения - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 -msgid "One-click application install." -msgstr "Инсталатор на Приложения" - -#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 -msgid "Install Joomla with(?) LSCache" -msgstr "Инсталирай Joomla(?) с LSCache" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 -msgid "Create New Website - CyberPanel" -msgstr "Добави нова страница - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/index.html:14 -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 -msgid "" -"On this page you can launch, list, modify and delete websites from your " -"server." -msgstr "" -"От тази страница може да стартирате, преглеждате, променяте или премахвате " -"уеб сайтове на Вашия сървър." - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 -msgid "Website Details" -msgstr "Детайли за Страницата" - -#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 -msgid "Do not enter WWW, it will be auto created!" -msgstr "НЕ въвеждайте www. То ще бъде автоматично създадено!" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 -msgid "Delete Website - CyberPanel" -msgstr "Премахни страница - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 -msgid "" -"This page can be used to delete website, once deleted it can not be " -"recovered." -msgstr "" -"От тази страница може да премахвате уеб сайтове. Веднъж премахнати те няма " -"как да бъдат възстановени." - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 -msgid "Cannot delete website, Error message: " -msgstr "Страницата не е премахната. Съобщение за грешка:" - -#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 -msgid "Successfully Deleted." -msgstr "Успешно е Изтрита." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 -msgid "Domain Aliases - CyberPanel" -msgstr "Паркирани Домейни - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 -msgid "Domain Aliases" -msgstr "Паркирани Домейни" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 -msgid "" -"With Domain Aliases you can visit example.com using example.net and view the " -"same content." -msgstr "" -"С паркирания домейн Вие може да заредите example.com като посетите example." -"net." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 -msgid "Create Alias" -msgstr "Паркирай Домейн" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 -msgid "Master Domain" -msgstr "Главен домейн" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 -msgid "Alias" -msgstr "Паркиран домейн" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 -msgid "File System Path" -msgstr "Системен път" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 -msgid "Domain Aliases not found." -msgstr "Няма паркиран домейн" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 -msgid "Alias Domain" -msgstr "Паркиран Домейн" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 -msgid "" -"For SSL to work DNS of domain should point to server, otherwise self signed " -"SSL will be issued, you can add your own SSL later." -msgstr "" -"За да бъде издаден SSL домейн името трябва да бъде пренасочено към сървъра " -"Ви. В противен случай ще бъде издаден Self SSL. Винаги може да добавите Ваш " -"SSL по-късно." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 -msgid "Operation failed. Error message:" -msgstr "Действието не е изпълнено. Съобщение за грешка:" - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 -msgid "Alias successfully created. Refreshing page in 3 seconds..." -msgstr "" -"Домейна е успешно паркиран. Страницата ще се презареди след 3 секунди..." - -#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 -msgid "Operation Successfull." -msgstr "Действието е успешно изпълнено." - -#: websiteFunctions/templates/websiteFunctions/index.html:3 -msgid "Website Functions - CyberPanel" -msgstr "Настройки на Страница - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/index.html:33 -#: websiteFunctions/templates/websiteFunctions/index.html:57 -#, fuzzy -#| msgid "List Websites" -msgid "List Website" -msgstr "Преглед на Страници" - -#: websiteFunctions/templates/websiteFunctions/index.html:79 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 -msgid "Suspend/Unsuspend Website" -msgstr "Пусни/Спри Страница" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 -msgid "Install Joomla - CyberPanel" -msgstr "Инсталирай Joomla - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 -msgid "Install Joomla" -msgstr "Инсталирай Joomla" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 -msgid "One-click Joomla Install!" -msgstr "Инсталирай Joomla!" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 -msgid "Installation Details" -msgstr "Детайли:" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 -msgid "Site Name" -msgstr "Име на сайт" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 -msgid "Login User" -msgstr "Потребителско име" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 -msgid "Login Password" -msgstr "Парола" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 -msgid "Database Prefix" -msgstr "База от данни prefix" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 -msgid "Installation failed. Error message:" -msgstr "Инсталацията Не завърши, защото:" - -#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 -#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 -msgid "Installation successful. Visit:" -msgstr "Инсталацията завърши успешно. Посети: " - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 -#, fuzzy -#| msgid "Install PrestaShop - CyberPanel" -msgid "Install Magento - CyberPanel" -msgstr "Инсталирай PrestaShop -CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 -#: websiteFunctions/templates/websiteFunctions/website.html:1029 -#: websiteFunctions/templates/websiteFunctions/website.html:1033 -#, fuzzy -#| msgid "Packages" -msgid "Install Magento" -msgstr "Пакети" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 -#, fuzzy -#| msgid "One-click PrestaShop Install!" -msgid "One-click Magento Install!" -msgstr "Инсталирай PrestaShop!" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 -#, fuzzy -#| msgid "Username" -msgid "Admin Username" -msgstr "Потребителско Име" - -#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 -msgid "" -"does not work on OpenLiteSpeed. It is highly recommended to use this " -"installer with LiteSpeed Enterprise only." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 -msgid "Install PrestaShop - CyberPanel" -msgstr "Инсталирай PrestaShop -CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 -msgid "Install PrestaShop" -msgstr "Инсталирай PrestaShop" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 -msgid "One-click PrestaShop Install!" -msgstr "Инсталирай PrestaShop!" - -#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 -msgid "Shop Name" -msgstr "Име на магазин" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 -msgid "Install WordPress - CyberPanel" -msgstr "Wordpress с LSCache" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 -msgid "Install WordPress" -msgstr "Инсталирай WordPress" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 -msgid "Install WordPress with LSCache." -msgstr "Wordpress с LSCache" - -#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 -msgid "Blog Title" -msgstr "Име на Блог" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 -msgid "Copy/Sync to Master" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 -#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 -#: websiteFunctions/templates/websiteFunctions/website.html:990 -msgid "WP + LSCache" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 -#: websiteFunctions/templates/websiteFunctions/website.html:1034 -msgid "Magento" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:3 -msgid "Cron Management - CyberPanel" -msgstr "Cron Мениджър - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -#: websiteFunctions/templates/websiteFunctions/listCron.html:19 -msgid "Cron Management" -msgstr "Cron Мениджър" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:12 -msgid "Cron Docs" -msgstr "Cron документация" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:13 -msgid "Create, edit or delete your cron jobs from this page." -msgstr "Създай, редактирай или премахвайте cron задачи от тази страница." - -#: websiteFunctions/templates/websiteFunctions/listCron.html:37 -msgid "Add Cron" -msgstr "Добави Cron" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:46 -#: websiteFunctions/templates/websiteFunctions/listCron.html:95 -msgid "Minute" -msgstr "Минута" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:47 -#: websiteFunctions/templates/websiteFunctions/listCron.html:101 -msgid "Hour" -msgstr "Час" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:48 -msgid "Day of Month" -msgstr "Ден от месеца" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:49 -#: websiteFunctions/templates/websiteFunctions/listCron.html:113 -msgid "Month" -msgstr "Месец" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:50 -msgid "Day of Week" -msgstr "Ден от седмица" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:79 -msgid "Pre defined" -msgstr "Предварително дефинирано" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:82 -msgid "Every minute" -msgstr "Всяка минута" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:83 -msgid "Every 5 minutes" -msgstr "Всеки 5 минути" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:84 -msgid "Every 30 minutes" -msgstr "Всеки 30 минути" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:85 -msgid "Every hour" -msgstr "Всеки час" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:86 -msgid "Every day" -msgstr "Всеки ден" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:87 -msgid "Every week" -msgstr "Всяка седмица" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:88 -msgid "Every month" -msgstr "Всеки месец" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:89 -msgid "Every year" -msgstr "Всяка година" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:107 -msgid "Day of month" -msgstr "Ден от месеца" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:119 -msgid "Day of week" -msgstr "Ден от седмицата" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:135 -msgid "Save edits" -msgstr "Запази промените" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:142 -msgid "Add cron" -msgstr "Добави крон" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:152 -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 -msgid "Cannot fetch website details. Error message:" -msgstr "Информацията за страницата не са обновени, защото:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:156 -msgid "Unable to add/save Cron. Error message:" -msgstr "Cron задачата не е добавена/променена. Съобщение за грешка:" - -#: websiteFunctions/templates/websiteFunctions/listCron.html:159 -msgid "Cron job saved" -msgstr "Cron задачата е запазена" - -#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 -msgid "Websites Hosted - CyberPanel" -msgstr "Websites Hosted - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 -msgid "Modify Website - CyberPanel" -msgstr "Редактирай Страница - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 -msgid "Current Package:" -msgstr "Текущ Пакет" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 -msgid "Current Owner:" -msgstr "Текущ собственик:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 -msgid "Cannot modify website. Error message:" -msgstr "Страницата не може да бъде променена, защото:" - -#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 -msgid "Website Details Successfully fetched" -msgstr "Детайлите за страницата са изтеглени" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 -msgid "Git Management - CyberPanel" -msgstr "Git Мениджър - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 -msgid "Git Management" -msgstr "Git Мениджър" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 -msgid "Attach git to your websites." -msgstr "Прикачи Git за тази страница." - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 -msgid "Attach Git" -msgstr "Прикачи Git" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 -msgid "Providers" -msgstr "Източници" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 -msgid "Deployment Key" -msgstr "Deployment ключ" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 -msgid "" -"Before attaching repo to your website, make sure to place your Development " -"key in your GIT repository." -msgstr "" -"Преди да прикачите хранилище за страницата Ви се уверете, че сте поставили " -"Вашия Development ключ във Вашето GIT хранилище." - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 -msgid "Repository Name" -msgstr "Име на хранилището" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 -msgid "Branch" -msgstr "Разклонение" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 -msgid "Attach Now" -msgstr "Прикачи" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 -msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" -msgstr "" -"GIT е успешно прикачен. Страницата ще се презареди след 3 секунди ... Посети:" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 -#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 -msgid "Change Branch" -msgstr "Промени разклонение" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 -msgid "Detach Repo" -msgstr "Откачи хранилище" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 -msgid "Webhook URL" -msgstr "Webhook URL" - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 -msgid "" -"Add this URL to Webhooks section of your Git respository, if you've used " -"hostname SSL then replace IP with your hostname. Otherwise use IP and " -"disable SSL check while configuring webhook. This will initiate a pull from " -"your resposity as soon as you commit some changes." -msgstr "" -"Добави този URL адрес към Webhooks секцията на Вашето Git хранилище. Ако сте " -"използвали hostname SSL тогава заменете IP адреса с hostname. В противен " -"случай използвайте IP и забранете SSL проверката при конфигурацията на " -"webhook." - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 -msgid "Repo successfully detached, refreshing in 3 seconds.." -msgstr "" -"Хранилището е успешно откачено. Страницата ще се презареди след 3 секунди.." - -#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 -msgid "Branch successfully changed." -msgstr "Разклонението е успешно променено." - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 -#, fuzzy -#| msgid "Git Management - CyberPanel" -msgid "Set up Staging Enviroment - CyberPanel" -msgstr "Git Мениджър - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 -msgid "Set up Staging Enviroment" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 -msgid "Set up staging enviroment for " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 -msgid "" -". Any domain that you will choose here will be created as child-domain for " -"this master site." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 -msgid "Domain that you will enter below will be created as child-domain to " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 -msgid "." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 -#, fuzzy -#| msgid "Start" -msgid "Start Cloning" -msgstr "Стартирай" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 -#, fuzzy -#| msgid "Manage SSL - CyberPanel" -msgid "SSH and CageFS - CyberPanel" -msgstr "SSL - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 -#, fuzzy -#| msgid "SSH Docs" -msgid "SSH Access" -msgstr "SSH Документация" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid "Set up SSH access and enable/disable CageFS for " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 -msgid " CageFS require CloudLinux OS." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 -msgid "Set up SSH access for " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -#, fuzzy -#| msgid "SSL Issued for" -msgid "SSH user for " -msgstr "SSL издаден за" - -#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 -msgid " is " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 -msgid "Suspend/Unsuspend Website - CyberPanel" -msgstr "Спри/Пусни Страница - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 -msgid "This page can be used to suspend/unsuspend website." -msgstr "От тази страница може да пускате или спирате страници." - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 -msgid "Suspend" -msgstr "Спри" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 -msgid "Un-Suspend" -msgstr "Пусни" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 -msgid "Cannot suspend website, Error message: " -msgstr "Страницата не е спряна, защото:" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 -msgid "Cannot unsuspend website. Error message:" -msgstr "Страницата не е пусната, защото:" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Website " -msgstr "Страница" - -#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 -msgid "Successfully " -msgstr "Успешно" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 -#, fuzzy -#| msgid "DNS Functions - CyberPanel" -msgid "Sync to Master - CyberPanel" -msgstr "DNS Функции - CyberPanel" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 -msgid "Sync your site to Master" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid "Right now you can only sync your child domains to master domains." -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 -msgid " will be synced to " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -msgid "Sync " -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 -#, fuzzy -#| msgid "Stop" -msgid "to " -msgstr "Спри" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 -msgid "What to Sync" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 -msgid "Start Syncing" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:29 -msgid "Clone/Staging" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:30 -msgid "Set up SSH Access" -msgstr "" - -#: websiteFunctions/templates/websiteFunctions/website.html:665 -msgid "It is not required to modify rules if you are using OpenLiteSpeed." -msgstr "" - -#, fuzzy -#~| msgid "Last Name" -#~ msgid "List" -#~ msgstr "Фанилия" - -#~ msgid "" -#~ "Could not fetch details, either LiteSpeed is not running or some error " -#~ "occurred, please see CyberPanel Main log file." -#~ msgstr "" -#~ "Детайлите не са извлечени. OpenLiteSpeed или не е стартиран или има " -#~ "критична грешка. Разгледайте главния Cyberpanel лог за повече информация." - -#, fuzzy -#~| msgid "Schedule Back up" -#~ msgid "Achedule Back up" -#~ msgstr "Планирано Архивиране " - -#, fuzzy -#~| msgid "Modify User" -#~ msgid "Modify" -#~ msgstr "Промени Потребител" - -#~ msgid "Start" -#~ msgstr "Стартирай" - -#~ msgid "Reload" -#~ msgstr "Презареди" - -#~ msgid "CPU Status" -#~ msgstr "CPU Статус" - -#~ msgid "Fullscreen" -#~ msgstr "Пълен Екран" - -#~ msgid "System Status" -#~ msgstr "Статус" - -#~ msgid "Update started..." -#~ msgstr "Начало на актуализация" - -#~ msgid "Update finished..." -#~ msgstr "Актуализацията приключи" - -#~ msgid "Account Type" -#~ msgstr "Вид на акаунт" - -#~ msgid "User Accounts Limit" -#~ msgstr "Лимити за Потребителски акаунти" - -#~ msgid "Only Numbers" -#~ msgstr "Само Числа" - -#~ msgid "Username should be lowercase alphanumeric." -#~ msgstr "Потребителскоро име трябва да бъде само с малки букви." - -#~ msgid "Must contain one number and one special character." -#~ msgstr "Трябва да съдържа поне един номер и специален символ." - -#~ msgid "Cannot create website. Error message:" -#~ msgstr "Страницата не е създадена, защото:" - -#~ msgid "Website with domain" -#~ msgstr "Страница с домейн" - -#~ msgid " is Successfully Created" -#~ msgstr "е Успешно Създаден" - -#~ msgid "Installation successful. To complete the setup visit:" -#~ msgstr "Инсталацията завърши успешно. " - -#, fuzzy -#~| msgid "Password" -#~ msgid "Admin Password" -#~ msgstr "Парола" - -#, fuzzy -#~| msgid "Database Name" -#~ msgid "Database prefix" -#~ msgstr "Име на База от Данни" - -#~ msgid "Daily" -#~ msgstr "Дневно" - -#~ msgid "Weekly" -#~ msgstr "Седмично" - -#~ msgid "HTTP Statistics" -#~ msgstr "HTTP Статистика" - -#~ msgid "Available/Max Connections" -#~ msgstr "Налични/Максимални Връзки" - -#~ msgid "Available/Max SSL Connections" -#~ msgstr "Налични/Максимални SSL Връзки" - -#~ msgid "Requests Processing" -#~ msgstr "Обработвани заявки" - -#~ msgid "Total Requests" -#~ msgstr "Всички Заявки" - -#~ msgid "IPV6" -#~ msgstr "IPv6" - -#~ msgid "Normal User" -#~ msgstr "Нормален Потребител" - -#~ msgid "Edit Virtual Host Main Configurations" -#~ msgstr "Редактирай Virtual Host Main Configurations" - -#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." -#~ msgstr "" -#~ "Конфигурацията е запазена. Рестартирайте LiteSpeed, за да влезнат в сила " -#~ "промените." From 5cc3c5375a11b1369db4a165d4a2fdd1f1d5c108 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sun, 27 Jun 2021 11:43:13 +0200 Subject: [PATCH 29/31] Delete django.mo --- locale/rs/LC_MESSAGES/django.mo | Bin 77444 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 locale/rs/LC_MESSAGES/django.mo diff --git a/locale/rs/LC_MESSAGES/django.mo b/locale/rs/LC_MESSAGES/django.mo deleted file mode 100644 index bf16539842b99177852fe10370163615979ee6e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 77444 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 Date: Sun, 27 Jun 2021 11:44:12 +0200 Subject: [PATCH 30/31] poeditor --- locale/rs/LC_MESSAGES/django.mo | Bin 0 -> 82411 bytes locale/rs/LC_MESSAGES/django.po | 7049 +++++++++++++++++++++++++++++++ 2 files changed, 7049 insertions(+) create mode 100644 locale/rs/LC_MESSAGES/django.mo create mode 100644 locale/rs/LC_MESSAGES/django.po diff --git a/locale/rs/LC_MESSAGES/django.mo b/locale/rs/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..abfa81090da94d4b297ab3954a7859db8f970af4 GIT binary patch literal 82411 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 literal 0 HcmV?d00001 diff --git a/locale/rs/LC_MESSAGES/django.po b/locale/rs/LC_MESSAGES/django.po new file mode 100644 index 000000000..2a8bfec51 --- /dev/null +++ b/locale/rs/LC_MESSAGES/django.po @@ -0,0 +1,7049 @@ +# CyberPanel Translation File. +# Copyright (C) 2017 LiteSpeedTech +# This file is distributed under the same license as the CyberPanel package. +# Stefan Pejcic , 2021. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-11-21 19:54+0500\n" +"PO-Revision-Date: 2021-06-27 11:42+0200\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.0\n" + +#: CLManager/templates/CLManager/createPackage.html:3 +#, fuzzy +#| msgid "Create Package - CyberPanel" +msgid "Create Cloud Linux Package - CyberPanel" +msgstr "Направите Пакет - CyberPanel" + +#: CLManager/templates/CLManager/createPackage.html:9 +#, fuzzy +#| msgid "Create Package" +msgid "Create CloudLinux Package." +msgstr "Направи Пакет" + +#: CLManager/templates/CLManager/createPackage.html:10 +msgid "" +"Each CloudLinux package have one associated (owner) CyberPanel package. During " +"website creation associated CloudLinux package will be assigned to website user." +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:15 +#: CLManager/templates/CLManager/createPackage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:435 +#: baseTemplate/templates/baseTemplate/index.html:666 +#: packages/templates/packages/createPackage.html:13 +#: packages/templates/packages/createPackage.html:100 +#: packages/templates/packages/index.html:25 +#: packages/templates/packages/index.html:28 +#: userManagment/templates/userManagment/createACL.html:152 +#: userManagment/templates/userManagment/modifyACL.html:156 +msgid "Create Package" +msgstr "Направи Пакет" + +#: CLManager/templates/CLManager/createPackage.html:24 +#: packages/templates/packages/deletePackage.html:26 +#: packages/templates/packages/modifyPackage.html:24 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:29 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:45 +msgid "Select Package" +msgstr "Изабери Пакет" + +#: CLManager/templates/CLManager/createPackage.html:40 +#: packages/templates/packages/createPackage.html:27 +msgid "Package Name" +msgstr "Име Пакета" + +#: CLManager/templates/CLManager/createPackage.html:47 +#: CLManager/templates/CLManager/listPackages.html:87 +msgid "SPEED" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:56 +#: CLManager/templates/CLManager/listPackages.html:98 +msgid "VMEM" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:64 +#: CLManager/templates/CLManager/listPackages.html:109 +msgid "PMEM" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:73 +#: CLManager/templates/CLManager/listPackages.html:120 +msgid "IO" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:81 +#: CLManager/templates/CLManager/listPackages.html:131 +#: containerization/templates/containerization/websiteContainerLimit.html:52 +#: containerization/templates/containerization/websiteContainerLimit.html:99 +msgid "IOPS" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:89 +#: CLManager/templates/CLManager/listPackages.html:142 +msgid "EP" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:97 +#: CLManager/templates/CLManager/listPackages.html:153 +msgid "NPROC" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:105 +#: CLManager/templates/CLManager/listPackages.html:164 +msgid "INODES soft" +msgstr "" + +#: CLManager/templates/CLManager/createPackage.html:113 +#: CLManager/templates/CLManager/listPackages.html:175 +msgid "INODES hard" +msgstr "" + +#: CLManager/templates/CLManager/listPackages.html:3 +#, fuzzy +#| msgid "Modify Package - CyberPanel" +msgid "Manage CloudLinux Packages - CyberPanel" +msgstr "Промени Пакет - CyberPanel" + +#: CLManager/templates/CLManager/listPackages.html:14 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage CloudLinux Packages" +msgstr "Управљање Пакетима" + +#: CLManager/templates/CLManager/listPackages.html:15 +msgid "Manage/Delete CloudLinux Packages." +msgstr "Управљање/Брисање Пакета." + +#: CLManager/templates/CLManager/listPackages.html:76 +#: dns/templates/dns/addDeleteDNSRecords.html:74 +#: dns/templates/dns/addDeleteDNSRecords.html:97 +#: dns/templates/dns/addDeleteDNSRecords.html:121 +#: dns/templates/dns/addDeleteDNSRecords.html:144 +#: dns/templates/dns/addDeleteDNSRecords.html:172 +#: dns/templates/dns/addDeleteDNSRecords.html:196 +#: dns/templates/dns/addDeleteDNSRecords.html:220 +#: dns/templates/dns/addDeleteDNSRecords.html:244 +#: dns/templates/dns/addDeleteDNSRecords.html:268 +#: dns/templates/dns/addDeleteDNSRecords.html:295 +#: dns/templates/dns/addDeleteDNSRecords.html:328 +#: dockerManager/templates/dockerManager/runContainer.html:29 +#: filemanager/templates/filemanager/index.html:203 +#: firewall/templates/firewall/firewall.html:120 +#: packages/templates/packages/listPackages.html:84 +#: pluginHolder/templates/pluginHolder/plugins.html:28 +#: serverStatus/templates/serverStatus/litespeedStatus.html:38 +#: serverStatus/templates/serverStatus/litespeedStatus.html:262 +#: userManagment/templates/userManagment/listUsers.html:75 +msgid "Name" +msgstr "Име" + +#: CLManager/templates/CLManager/listPackages.html:205 +#: CLManager/templates/CLManager/listWebsites.html:86 +#: CLManager/templates/CLManager/monitorUsage.html:57 +#: containerization/templates/containerization/listWebsites.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:172 +#: emailPremium/templates/emailPremium/emailPage.html:179 +#: emailPremium/templates/emailPremium/listDomains.html:75 +#: pluginHolder/templates/pluginHolder/plugins.html:51 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:133 +msgid "Cannot list websites. Error message:" +msgstr "Сајт се не приказује. Грешка:" + +#: CLManager/templates/CLManager/listWebsites.html:3 +#, fuzzy +#| msgid "Manage SSL - CyberPanel" +msgid "CageFS - CyberPanel" +msgstr "SSL - CyberPanel" + +#: CLManager/templates/CLManager/listWebsites.html:14 +#: CLManager/templates/CLManager/monitorUsage.html:14 +#: baseTemplate/templates/baseTemplate/index.html:411 +#: containerization/templates/containerization/listWebsites.html:14 +#: websiteFunctions/templates/websiteFunctions/index.html:31 +#: websiteFunctions/templates/websiteFunctions/index.html:55 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:19 +msgid "List Websites" +msgstr "Листа Сајтова" + +#: CLManager/templates/CLManager/listWebsites.html:15 +msgid "Enable/Disable and view CageFS status for websites." +msgstr "Укључи/Искључи и прегледај CageFS статус за сајтове" + +#: CLManager/templates/CLManager/listWebsites.html:28 +msgid "Default: " +msgstr "" + +#: CLManager/templates/CLManager/monitorUsage.html:3 +#, fuzzy +#| msgid "Modify User - CyberPanel" +msgid "Monitor Usage - CyberPanel" +msgstr "Преглед Искоришћености - CyberPanel" + +#: CLManager/templates/CLManager/monitorUsage.html:15 +#, fuzzy +#| msgid "Attach git to your websites." +msgid "Monitor usage of your websites." +msgstr "Додајте git на ваш сајт." + +#: CLManager/templates/CLManager/monitorUsage.html:21 +#: baseTemplate/templates/baseTemplate/homePage.html:42 +#: baseTemplate/templates/baseTemplate/index.html:276 +#: baseTemplate/templates/baseTemplate/index.html:400 +#: baseTemplate/templates/baseTemplate/index.html:401 +#: baseTemplate/templates/baseTemplate/index.html:402 +#: containerization/templates/containerization/listWebsites.html:21 +msgid "Websites" +msgstr "Сајт" + +#: CLManager/templates/CLManager/notAvailable.html:3 +#: containerization/templates/containerization/notAvailable.html:3 +#, fuzzy +#| msgid "Domain Aliases - CyberPanel" +msgid "Not available - CyberPanel" +msgstr "Паркирани Домейни - CyberPanel" + +#: CLManager/templates/CLManager/notAvailable.html:13 +#: containerization/templates/containerization/notAvailable.html:13 +msgid "Not available" +msgstr "Није доступно" + +#: CLManager/templates/CLManager/notAvailable.html:14 +msgid "Either CageFS is not installed or you are not on CloudLinux OS." +msgstr "CageFS није инсталиран или не користите CloudLinux OS." + +#: CLManager/templates/CLManager/notAvailable.html:22 +msgid "CageFS is only available with CloudLinux OS. " +msgstr "CageFS је доступан само уз CloudLinux OS." + +#: CLManager/templates/CLManager/notAvailable.html:24 +#: containerization/templates/containerization/notAvailable.html:24 +msgid " for conversion details." +msgstr " за више детаља око преласка." + +#: CLManager/templates/CLManager/notAvailable.html:34 +#: containerization/templates/containerization/notAvailable.html:34 +#, fuzzy +#| msgid "Packages" +msgid "Install Packages" +msgstr "Пакети" + +#: CLManager/templates/CLManager/notAvailable.html:39 +msgid "CageFS is not installed on this server. Please proceed to installation." +msgstr "CageFS није инсталиран на овај сервер. Молимо вас наставите са инсталацијом." + +#: CLManager/templates/CLManager/websiteContainerLimit.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid " usage - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:14 +#: emailMarketing/templates/emailMarketing/website.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:43 +#: websiteFunctions/templates/websiteFunctions/website.html:43 +msgid "Usage" +msgstr "Искоришћеност" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:15 +msgid "View CPU, Memory and Disk usage for " +msgstr "" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:21 +#: containerization/templates/containerization/websiteContainerLimit.html:155 +#, fuzzy +#| msgid "CPU Usage" +msgid "CPU Usage of" +msgstr "CPU Искоришћеност" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:30 +#: containerization/templates/containerization/websiteContainerLimit.html:164 +#, fuzzy +#| msgid "Resource Usage" +msgid "Memory Usage of" +msgstr "Потрошња Ресурса" + +#: CLManager/templates/CLManager/websiteContainerLimit.html:39 +#: containerization/templates/containerization/websiteContainerLimit.html:173 +#, fuzzy +#| msgid "Disk Usage" +msgid "Disk Usage of" +msgstr "Искоришћеност Диска" + +#: CyberCP/settings.py:175 +msgid "English" +msgstr "Енглески" + +#: CyberCP/settings.py:176 +msgid "Chinese" +msgstr "Кинески" + +#: CyberCP/settings.py:177 +msgid "Bulgarian" +msgstr "Бугарски" + +#: CyberCP/settings.py:178 +msgid "Portuguese" +msgstr "Португалски" + +#: CyberCP/settings.py:179 +msgid "Japanese" +msgstr "Јапански" + +#: CyberCP/settings.py:180 +msgid "Bosnian" +msgstr "Босански" + +#: CyberCP/settings.py:181 +msgid "Greek" +msgstr "Грчки" + +#: CyberCP/settings.py:182 +msgid "Russian" +msgstr "Руски" + +#: CyberCP/settings.py:183 +msgid "Turkish" +msgstr "Турски" + +#: CyberCP/settings.py:184 +msgid "Spanish" +msgstr "Шпански" + +#: CyberCP/settings.py:185 +msgid "French" +msgstr "франсуски" + +#: CyberCP/settings.py:186 +#, fuzzy +#| msgid "Policy" +msgid "Polish" +msgstr "Пољски" + +#: CyberCP/settings.py:187 +#, fuzzy +#| msgid "Filename" +msgid "Vietnamese" +msgstr "Вијетнамски" + +#: CyberCP/settings.py:188 +msgid "Italian" +msgstr "Италијански" + +#: CyberCP/settings.py:189 +msgid "Deutsch" +msgstr "Немачки" + +#: IncBackups/templates/IncBackups/backupSchedule.html:3 +#: backup/templates/backup/backupSchedule.html:3 +msgid "Schedule Back up - CyberPanel" +msgstr "Планирано Архивирање - CyberPanel" + +#: IncBackups/templates/IncBackups/backupSchedule.html:13 +#: IncBackups/templates/IncBackups/backupSchedule.html:23 +#: backup/templates/backup/backupSchedule.html:13 +#: backup/templates/backup/backupSchedule.html:23 +#: backup/templates/backup/index.html:75 backup/templates/backup/index.html:77 +#: baseTemplate/templates/baseTemplate/index.html:578 +#: userManagment/templates/userManagment/createACL.html:381 +#: userManagment/templates/userManagment/modifyACL.html:385 +msgid "Schedule Back up" +msgstr "Заказивање Архивирања " + +#: IncBackups/templates/IncBackups/backupSchedule.html:16 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:18 +#: backup/templates/backup/backupDestinations.html:14 +#: backup/templates/backup/backupSchedule.html:16 +#: backup/templates/backup/remoteBackups.html:14 +#: backup/templates/backup/remoteBackups.html:21 +msgid "Remote Backups" +msgstr "Удаљена Архива" + +#: IncBackups/templates/IncBackups/backupSchedule.html:17 +#: backup/templates/backup/backupSchedule.html:17 +msgid "" +"On this page you can schedule Back ups to localhost or remote server (If you have " +"added one)." +msgstr "" +"На овој страници можете заказати Архивирање на овом или неком удљеном серверу " + +#: IncBackups/templates/IncBackups/backupSchedule.html:33 +#: backup/templates/backup/backupSchedule.html:33 +msgid "Select Destination" +msgstr "Изаберите Одредиште" + +#: IncBackups/templates/IncBackups/backupSchedule.html:44 +#: backup/templates/backup/backupSchedule.html:44 +msgid "Select Frequency" +msgstr "Изберите Учесталост" + +#: IncBackups/templates/IncBackups/backupSchedule.html:54 +#: IncBackups/templates/IncBackups/createBackup.html:56 +#, fuzzy +#| msgid "Git Management" +msgid "Backup Content" +msgstr "Git Употреба" + +#: IncBackups/templates/IncBackups/backupSchedule.html:98 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:72 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:134 +#: backup/templates/backup/backupDestinations.html:55 +#: backup/templates/backup/backupSchedule.html:67 +#: baseTemplate/templates/baseTemplate/index.html:575 +msgid "Add Destination" +msgstr "Додај Одредиште" + +#: IncBackups/templates/IncBackups/backupSchedule.html:112 +#: backup/templates/backup/remoteBackups.html:96 +msgid "Search Accounts.." +msgstr "Претражи Налоге.." + +#: IncBackups/templates/IncBackups/backupSchedule.html:124 +msgid "Select sites to be included in this job" +msgstr "Изаберите сајтове које желите укључити у ово архивирање" + +#: IncBackups/templates/IncBackups/backupSchedule.html:150 +#: IncBackups/templates/IncBackups/createBackup.html:127 +#: backup/templates/backup/backup.html:102 +#: backup/templates/backup/backupDestinations.html:96 +#: backup/templates/backup/backupSchedule.html:102 +#: databases/templates/databases/listDataBases.html:104 +#: dns/templates/dns/addDeleteDNSRecords.html:326 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:43 +#: emailMarketing/templates/emailMarketing/manageLists.html:141 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:74 +#: firewall/templates/firewall/firewall.html:119 +#: firewall/templates/firewall/modSecurityRulesPacks.html:109 +#: ftp/templates/ftp/listFTPAccounts.html:122 +#: mailServer/templates/mailServer/emailForwarding.html:117 +#: managePHP/templates/managePHP/installExtensions.html:60 +msgid "ID" +msgstr "ID" + +#: IncBackups/templates/IncBackups/backupSchedule.html:151 +#: IncBackups/templates/IncBackups/createBackup.html:44 +#: IncBackups/templates/IncBackups/createBackup.html:164 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:46 +#: backup/templates/backup/backup.html:41 +#: backup/templates/backup/backupSchedule.html:103 +#: mailServer/templates/mailServer/emailForwarding.html:101 +#: mailServer/templates/mailServer/emailForwarding.html:119 +msgid "Destination" +msgstr "Дестинациja" + +#: IncBackups/templates/IncBackups/backupSchedule.html:152 +#: backup/templates/backup/backupSchedule.html:104 +msgid "Frequency" +msgstr "Учесталост" + +#: IncBackups/templates/IncBackups/backupSchedule.html:153 +#: IncBackups/templates/IncBackups/createBackup.html:130 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:93 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:154 +#: backup/templates/backup/backup.html:107 +#: backup/templates/backup/backupDestinations.html:99 +#: backup/templates/backup/backupSchedule.html:105 +#: dns/templates/dns/addDeleteDNSRecords.html:332 +#: emailMarketing/templates/emailMarketing/manageLists.html:156 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:92 +#: emailMarketing/templates/emailMarketing/sendEmails.html:170 +#: emailMarketing/templates/emailMarketing/website.html:533 +#: filemanager/templates/filemanager/index.html:67 +#: filemanager/templates/filemanager/index.html:696 +#: firewall/templates/firewall/firewall.html:124 +#: firewall/templates/firewall/secureSSH.html:122 +#: mailServer/templates/mailServer/listEmails.html:78 +#: packages/templates/packages/listPackages.html:63 +#: userManagment/templates/userManagment/listUsers.html:54 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:40 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:55 +#: websiteFunctions/templates/websiteFunctions/listCron.html:65 +#: websiteFunctions/templates/websiteFunctions/website.html:497 +msgid "Delete" +msgstr "Обриши" + +#: IncBackups/templates/IncBackups/createBackup.html:3 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Create Incremental Backup" +msgstr "Откажи Архивирање" + +#: IncBackups/templates/IncBackups/createBackup.html:13 +#: IncBackups/templates/IncBackups/createBackup.html:23 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:25 +#: backup/templates/backup/backup.html:4 backup/templates/backup/backup.html:14 +#: backup/templates/backup/backup.html:21 +msgid "Back up Website" +msgstr "Архивирај Сајт" + +#: IncBackups/templates/IncBackups/createBackup.html:15 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:17 +#: backup/templates/backup/backup.html:14 backup/templates/backup/restore.html:14 +msgid "Backup Docs" +msgstr "Документација о Архивирању" + +#: IncBackups/templates/IncBackups/createBackup.html:17 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "This page can be used to create incremental backups for your websites." +msgstr "На овој страници можете направити Архиве ваших сајтова" + +#: IncBackups/templates/IncBackups/createBackup.html:33 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:35 +#: backup/templates/backup/backup.html:30 +#: databases/templates/databases/createDatabase.html:26 +#: databases/templates/databases/deleteDatabase.html:26 +#: databases/templates/databases/phpMyAdmin.html:26 +#: ftp/templates/ftp/createFTPAccount.html:42 +#: mailServer/templates/mailServer/changeEmailPassword.html:44 +#: mailServer/templates/mailServer/createEmailAccount.html:44 +#: mailServer/templates/mailServer/deleteEmailAccount.html:44 +#: mailServer/templates/mailServer/dkimManager.html:83 +#: mailServer/templates/mailServer/emailForwarding.html:38 +#: manageSSL/templates/manageSSL/manageSSL.html:29 +#: manageSSL/templates/manageSSL/sslForHostName.html:29 +#: manageSSL/templates/manageSSL/sslForMailServer.html:27 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/listCron.html:28 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:28 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:29 +msgid "Select Website" +msgstr "Избери Сајт" + +#: IncBackups/templates/IncBackups/createBackup.html:113 +#: backup/templates/backup/backup.html:81 +#: baseTemplate/templates/baseTemplate/index.html:569 +#: baseTemplate/templates/baseTemplate/index.html:598 +#: userManagment/templates/userManagment/createACL.html:352 +#: userManagment/templates/userManagment/modifyACL.html:356 +msgid "Create Back up" +msgstr "Направи Архиву" + +#: IncBackups/templates/IncBackups/createBackup.html:128 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:98 +#: backup/templates/backup/backup.html:104 +#: emailMarketing/templates/emailMarketing/sendEmails.html:152 +msgid "Date" +msgstr "Датум" + +#: IncBackups/templates/IncBackups/createBackup.html:129 +#: backup/templates/backup/index.html:46 backup/templates/backup/restore.html:45 +msgid "Restore" +msgstr "Враћање података" + +#: IncBackups/templates/IncBackups/createBackup.html:161 +#: emailMarketing/templates/emailMarketing/sendEmails.html:151 +msgid "Job ID" +msgstr "" + +#: IncBackups/templates/IncBackups/createBackup.html:162 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:97 +msgid "Snapshot ID" +msgstr "" + +#: IncBackups/templates/IncBackups/createBackup.html:163 +#: dns/templates/dns/addDeleteDNSRecords.html:327 +#: pluginHolder/templates/pluginHolder/plugins.html:29 +msgid "Type" +msgstr "Тип" + +#: IncBackups/templates/IncBackups/createBackup.html:165 +#: websiteFunctions/templates/websiteFunctions/listCron.html:52 +msgid "Action" +msgstr "Акција" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:3 +#: backup/templates/backup/backupDestinations.html:14 +msgid "Set up Back up Destinations" +msgstr "Постави одредиште за Архивирање" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:14 +#, fuzzy +#| msgid "Set up Back up Destinations" +msgid "Set up Incremental Back up Destinations" +msgstr "Постави одредиште за Архивирање" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:20 +#, fuzzy +#| msgid "On this page you can set up your Back up destinations. (SFTP)" +msgid "On this page you can set up your Back up destinations. (SFTP and AWS)" +msgstr "На овој страни можете подесити одредиште за Архиве (SFTP)" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:26 +#, fuzzy +#| msgid "Set up Back up Destinations" +msgid "Set up Back up Destinations." +msgstr "Постави одредиште за Архиве." + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:35 +#, fuzzy +#| msgid "Select Website" +msgid "Select Type" +msgstr "Избери Сајт" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:47 +#: backup/templates/backup/backupDestinations.html:30 +#: backup/templates/backup/remoteBackups.html:29 +#: dns/templates/dns/addDeleteDNSRecords.html:82 +#: dns/templates/dns/createNameServer.html:55 +#: dns/templates/dns/createNameServer.html:71 +#: firewall/templates/firewall/firewall.html:122 +msgid "IP Address" +msgstr "IP Адреса" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:54 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:58 +#: backup/templates/backup/backupDestinations.html:38 +#: backup/templates/backup/remoteBackups.html:37 +#: databases/templates/databases/createDatabase.html:56 +#: databases/templates/databases/listDataBases.html:107 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:50 +#: ftp/templates/ftp/listFTPAccounts.html:126 +#: mailServer/templates/mailServer/changeEmailPassword.html:68 +#: mailServer/templates/mailServer/createEmailAccount.html:68 +#: mailServer/templates/mailServer/listEmails.html:113 +#: userManagment/templates/userManagment/createUser.html:83 +#: userManagment/templates/userManagment/modifyUser.html:62 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:58 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:56 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:33 +msgid "Password" +msgstr "Лозинка" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:61 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:92 +#: backup/templates/backup/backupDestinations.html:45 +#: dockerManager/templates/dockerManager/runContainer.html:74 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:36 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:77 +#: firewall/templates/firewall/firewall.html:123 +msgid "Port" +msgstr "Порт" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:63 +#: backup/templates/backup/backupDestinations.html:47 +msgid "Backup server SSH Port, leave empty for 22." +msgstr "Backup server SSH порт, оставете празни за 22." + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:91 +#: backup/templates/backup/backupDestinations.html:97 +msgid "IP" +msgstr "IP" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:117 +#: IncBackups/templates/IncBackups/incrementalDestinations.html:153 +msgid "AWS_ACCESS_KEY_ID" +msgstr "" + +#: IncBackups/templates/IncBackups/incrementalDestinations.html:124 +msgid "AWS_SECRET_ACCESS_KEY" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:3 +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:13 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Restore Remote Incremental Backups" +msgstr "Откажи Архивирање" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:19 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "" +"This page can be used to restore remote incremental backups for your websites." +msgstr "На овој страни можете вратити предашње стање из Архива за ваше сајтове." + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:69 +msgid "Fetch Restore Points" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:99 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:76 +msgid "Host" +msgstr "" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:100 +#: emailMarketing/templates/emailMarketing/createEmailList.html:33 +#: emailMarketing/templates/emailMarketing/manageLists.html:74 +#: emailMarketing/templates/emailMarketing/website.html:330 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:56 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:67 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:70 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:56 +#: websiteFunctions/templates/websiteFunctions/website.html:293 +msgid "Path" +msgstr "Путања" + +#: IncBackups/templates/IncBackups/restoreRemoteBackups.html:101 +#: dockerManager/templates/dockerManager/viewContainer.html:108 +#: emailMarketing/templates/emailMarketing/manageLists.html:145 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:79 +#: emailMarketing/templates/emailMarketing/sendEmails.html:157 +#: filemanager/templates/filemanager/index.html:207 +#: mailServer/templates/mailServer/emailForwarding.html:120 +#: mailServer/templates/mailServer/listEmails.html:65 +#: packages/templates/packages/listPackages.html:41 +#: serverStatus/templates/serverStatus/topProcesses.html:201 +#: userManagment/templates/userManagment/listUsers.html:37 +msgid "Actions" +msgstr "Акције" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Terminal - CyberPanel" +msgstr "Домени - CyberPanel" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:16 +#: baseTemplate/templates/baseTemplate/index.html:641 +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Terminal" +msgstr "Терминал" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:18 +msgid "Web Terminal Docs" +msgstr "" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:19 +msgid "Execute your terminal commands." +msgstr "Изврши команде у терминалу." + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:26 +#: baseTemplate/templates/baseTemplate/index.html:643 +msgid "Web Terminal" +msgstr "Web Терминал" + +#: WebTerminal/templates/WebTerminal/WebTerminal.html:28 +msgid "Reboot SSH Server" +msgstr "Рестарт SSH Сервиса" + +#: backup/templates/backup/backup.html:15 +msgid "This page can be used to Back up your websites" +msgstr "От тази страница може да направите архив на Вашите страници" + +#: backup/templates/backup/backup.html:44 +#: baseTemplate/templates/baseTemplate/homePage.html:12 +#: filemanager/templates/filemanager/index.html:135 +msgid "Home" +msgstr "Почетна" + +#: backup/templates/backup/backup.html:60 backup/templates/backup/restore.html:62 +#: filemanager/templates/filemanager/index.html:158 +msgid "File Name" +msgstr "Назив Фајла" + +#: backup/templates/backup/backup.html:61 backup/templates/backup/backup.html:106 +#: backup/templates/backup/restore.html:63 +#: baseTemplate/templates/baseTemplate/homePage.html:132 +#: baseTemplate/templates/baseTemplate/index.html:311 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:45 +#: filemanager/templates/filemanager/index.html:206 +#: firewall/templates/firewall/firewall.html:35 +#: firewall/templates/firewall/modSecurityRulesPacks.html:112 +#: managePHP/templates/managePHP/installExtensions.html:64 +msgid "Status" +msgstr "Статус" + +#: backup/templates/backup/backup.html:66 +#: serverStatus/templates/serverStatus/topProcesses.html:52 +msgid "Running" +msgstr "У току" + +#: backup/templates/backup/backup.html:88 +msgid "Cancel Backup" +msgstr "Откажи Архивирање" + +#: backup/templates/backup/backup.html:103 +msgid "File" +msgstr "Фајл" + +#: backup/templates/backup/backup.html:105 +#: filemanager/templates/filemanager/index.html:204 +#: ftp/templates/ftp/listFTPAccounts.html:125 +msgid "Size" +msgstr "Величина" + +#: backup/templates/backup/backup.html:131 +msgid "Cannot delete website, Error message: " +msgstr "Сајт не може бити обрисан, Грешка: " + +#: backup/templates/backup/backup.html:135 +msgid "Successfully Deleted" +msgstr "Успешно Обрисано" + +#: backup/templates/backup/backupDestinations.html:15 +msgid "On this page you can set up your Back up destinations. (SFTP)" +msgstr "На овој страници можете подесити локације за Архивирање (SFTP)" + +#: backup/templates/backup/backupDestinations.html:21 +msgid "Set up Back up Destinations (SSH port should be 22 on backup server)" +msgstr "Постави дестинацију за архиве ( SSH порт треба бити 22)" + +#: backup/templates/backup/backupDestinations.html:68 +#: backup/templates/backup/backupDestinations.html:72 +msgid "Connection to" +msgstr "Повезивање на" + +#: backup/templates/backup/backupDestinations.html:68 +msgid "failed. Please delete and re-add. " +msgstr "неуспешно. Молимо вас обришите и покушајте поново." + +#: backup/templates/backup/backupDestinations.html:72 +msgid "successful." +msgstr "успешно" + +#: backup/templates/backup/backupDestinations.html:76 +msgid "Cannot add destination. Error message:" +msgstr "Дестинација није додата. Грешка:" + +#: backup/templates/backup/backupDestinations.html:80 +msgid "Destination Added." +msgstr "Дестинација је успешно додата" + +#: backup/templates/backup/backupDestinations.html:84 +#: backup/templates/backup/backupSchedule.html:90 +#: backup/templates/backup/restore.html:95 +#: databases/templates/databases/createDatabase.html:98 +#: databases/templates/databases/deleteDatabase.html:69 +#: databases/templates/databases/phpMyAdmin.html:50 +#: dns/templates/dns/addDeleteDNSRecords.html:384 +#: dns/templates/dns/createDNSZone.html:70 +#: dns/templates/dns/createNameServer.html:102 +#: dns/templates/dns/deleteDNSZone.html:77 +#: dockerManager/templates/dockerManager/runContainer.html:185 +#: emailMarketing/templates/emailMarketing/website.html:161 +#: emailMarketing/templates/emailMarketing/website.html:420 +#: emailMarketing/templates/emailMarketing/website.html:471 +#: emailMarketing/templates/emailMarketing/website.html:633 +#: emailMarketing/templates/emailMarketing/website.html:689 +#: emailMarketing/templates/emailMarketing/website.html:749 +#: emailMarketing/templates/emailMarketing/website.html:835 +#: emailMarketing/templates/emailMarketing/website.html:955 +#: emailPremium/templates/emailPremium/emailLimits.html:101 +#: emailPremium/templates/emailPremium/emailPage.html:119 +#: mailServer/templates/mailServer/changeEmailPassword.html:114 +#: mailServer/templates/mailServer/createEmailAccount.html:115 +#: mailServer/templates/mailServer/deleteEmailAccount.html:98 +#: mailServer/templates/mailServer/dkimManager.html:156 +#: mailServer/templates/mailServer/emailForwarding.html:83 +#: manageSSL/templates/manageSSL/manageSSL.html:60 +#: userManagment/templates/userManagment/createUser.html:137 +#: userManagment/templates/userManagment/modifyUser.html:121 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:145 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:126 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:101 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:135 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:115 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:101 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:323 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:379 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:435 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:521 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:644 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:127 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:247 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:293 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:77 +#: websiteFunctions/templates/websiteFunctions/website.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:383 +#: websiteFunctions/templates/websiteFunctions/website.html:434 +#: websiteFunctions/templates/websiteFunctions/website.html:581 +#: websiteFunctions/templates/websiteFunctions/website.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:695 +#: websiteFunctions/templates/websiteFunctions/website.html:778 +#: websiteFunctions/templates/websiteFunctions/website.html:884 +msgid "Could not connect to server. Please refresh this page." +msgstr "Неуспешно повезивање на сервер. Молимо вас освежите страницу." + +#: backup/templates/backup/backupDestinations.html:98 +#: backup/templates/backup/backupDestinations.html:106 +msgid "Check Connection" +msgstr "Провери повезивање" + +#: backup/templates/backup/backupSchedule.html:54 +msgid "Local Path" +msgstr "" + +#: backup/templates/backup/backupSchedule.html:57 +msgid "Local directory where backups will be moved after creation." +msgstr "Локална путања на којој ће архиве бити смештене након прављења." + +#: backup/templates/backup/backupSchedule.html:82 +msgid "Cannot add schedule. Error message:" +msgstr "Заказивање није успело. Грешка: " + +#: backup/templates/backup/backupSchedule.html:86 +msgid "Schedule Added" +msgstr "Заказивање је успешно додато" + +#: backup/templates/backup/index.html:3 +msgid "Back up Home - CyberPanel" +msgstr "Архивирање - CyberPanel" + +#: backup/templates/backup/index.html:13 backup/templates/backup/index.html:30 +#: baseTemplate/templates/baseTemplate/homePage.html:95 +#: baseTemplate/templates/baseTemplate/homePage.html:97 +#: baseTemplate/templates/baseTemplate/index.html:561 +#: baseTemplate/templates/baseTemplate/index.html:563 +#: baseTemplate/templates/baseTemplate/index.html:616 +msgid "Back up" +msgstr "Архивирање" + +#: backup/templates/backup/index.html:14 +msgid "Back up and restore sites." +msgstr "Архивирање и враћање стања сајтова." + +#: backup/templates/backup/index.html:19 +#: baseTemplate/templates/baseTemplate/homePage.html:23 +#: databases/templates/databases/index.html:19 dns/templates/dns/index.html:19 +#: dockerManager/templates/dockerManager/index.html:21 +#: firewall/templates/firewall/index.html:19 ftp/templates/ftp/index.html:19 +#: mailServer/templates/mailServer/index.html:19 +#: managePHP/templates/managePHP/index.html:18 +#: manageSSL/templates/manageSSL/index.html:20 +#: packages/templates/packages/index.html:19 +#: serverLogs/templates/serverLogs/index.html:19 +#: serverStatus/templates/serverStatus/index.html:19 +#: tuning/templates/tuning/index.html:18 +#: userManagment/templates/userManagment/index.html:19 +#: websiteFunctions/templates/websiteFunctions/index.html:21 +msgid "Available Functions" +msgstr "Доступне опције" + +#: backup/templates/backup/index.html:28 +msgid "Back up Site" +msgstr "Архивирање Сајта" + +#: backup/templates/backup/index.html:44 +#: baseTemplate/templates/baseTemplate/index.html:572 +#: baseTemplate/templates/baseTemplate/index.html:601 +#: userManagment/templates/userManagment/createACL.html:361 +#: userManagment/templates/userManagment/modifyACL.html:365 +msgid "Restore Back up" +msgstr "Враћање стања Сајта" + +#: backup/templates/backup/index.html:60 backup/templates/backup/index.html:62 +#, fuzzy +#| msgid "Add/Delete Destination" +msgid "Add/Delete Destinations" +msgstr "Додавање/Брисање Дестинација" + +#: backup/templates/backup/index.html:90 backup/templates/backup/index.html:92 +#: baseTemplate/templates/baseTemplate/index.html:581 +#: userManagment/templates/userManagment/createACL.html:391 +#: userManagment/templates/userManagment/modifyACL.html:395 +msgid "Remote Back ups" +msgstr "Удаљене Архиве" + +#: backup/templates/backup/remoteBackups.html:3 +msgid "Transfer Websites from Remote Server - CyberPanel" +msgstr "Пребацивање сајтова са удаљеног сервера - CyberPanel" + +#: backup/templates/backup/remoteBackups.html:14 +msgid "Remote Transfer" +msgstr "Удаљени Трансфер" + +#: backup/templates/backup/remoteBackups.html:15 +msgid "This feature can import website(s) from remote server" +msgstr "Ова опција вам омогућава увоз сајт(ова) са удањеног сервера" + +#: backup/templates/backup/remoteBackups.html:46 +msgid "Fetch Accounts" +msgstr "Преузми Налоге" + +#: backup/templates/backup/remoteBackups.html:55 +msgid "Start Transfer" +msgstr "Започни Трансфер" + +#: backup/templates/backup/remoteBackups.html:59 +#: emailMarketing/templates/emailMarketing/website.html:324 +#: emailMarketing/templates/emailMarketing/website.html:804 +#: emailMarketing/templates/emailMarketing/website.html:928 +#: emailPremium/templates/emailPremium/emailLimits.html:75 +#: emailPremium/templates/emailPremium/emailPage.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:93 +#: filemanager/templates/filemanager/index.html:230 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:490 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:617 +#: websiteFunctions/templates/websiteFunctions/website.html:286 +#: websiteFunctions/templates/websiteFunctions/website.html:747 +#: websiteFunctions/templates/websiteFunctions/website.html:858 +msgid "Cancel" +msgstr "Откажи" + +#: backup/templates/backup/remoteBackups.html:72 +msgid "Could not connect, please refresh this page." +msgstr "Повезивање неуспешно, молимо вас освежите страницу." + +#: backup/templates/backup/remoteBackups.html:76 +msgid "Accounts Successfully Fetched from remote server." +msgstr "Налози су успешно преузети са удаљеног сервера." + +#: backup/templates/backup/remoteBackups.html:80 +msgid "Backup Process successfully started." +msgstr "Процес Архивирања је успешно започет." + +#: backup/templates/backup/remoteBackups.html:84 +msgid "Backup successfully cancelled." +msgstr "Архивирање је обустављено." + +#: backup/templates/backup/remoteBackups.html:107 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Website" +msgstr "Сајт" + +#: backup/templates/backup/remoteBackups.html:108 +#: baseTemplate/templates/baseTemplate/homePage.html:143 +#: baseTemplate/templates/baseTemplate/index.html:768 +#: baseTemplate/templates/baseTemplate/index.html:770 +#: managePHP/templates/managePHP/installExtensions.html:61 +msgid "PHP" +msgstr "PHP" + +#: backup/templates/backup/remoteBackups.html:109 +#: packages/templates/packages/createPackage.html:112 +#: packages/templates/packages/deletePackage.html:60 +#: packages/templates/packages/listPackages.html:33 +#: packages/templates/packages/modifyPackage.html:125 +msgid "Package" +msgstr "Пакети" + +#: backup/templates/backup/remoteBackups.html:110 +#: baseTemplate/templates/baseTemplate/index.html:505 +#: baseTemplate/templates/baseTemplate/index.html:507 +#: mailServer/templates/mailServer/listEmails.html:101 +#: userManagment/templates/userManagment/createUser.html:45 +#: userManagment/templates/userManagment/modifyUser.html:54 +#: userManagment/templates/userManagment/userProfile.html:41 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:61 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:44 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:49 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:49 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:67 +msgid "Email" +msgstr "Email" + +#: backup/templates/backup/restore.html:3 +msgid "Restore Website - CyberPanel" +msgstr "Враћање стања Сајта - CyberPanel" + +#: backup/templates/backup/restore.html:14 backup/templates/backup/restore.html:21 +msgid "Restore Website" +msgstr "Враћање стања Сајта" + +#: backup/templates/backup/restore.html:15 +msgid "" +"This page can be used to restore your websites, Back up should be generated from " +"CyberPanel Back up generation tool, it will detect all Back ups under /" +"home/backup." +msgstr "" +"На овој страници можете вратити предашње стање сајтова, Архиве се генеришу из " +"CyberPanel алата за Архивирање, који детектује све архиве унутар фолдера /" +"home/backup." + +#: backup/templates/backup/restore.html:30 +msgid "Select Back up" +msgstr "Избери Архиву" + +#: backup/templates/backup/restore.html:61 +msgid "Condition" +msgstr "Услов" + +#: backup/templates/backup/restore.html:86 +#: databases/templates/databases/deleteDatabase.html:60 +#: databases/templates/databases/listDataBases.html:54 +#: dockerManager/templates/dockerManager/listContainers.html:57 +#: dockerManager/templates/dockerManager/runContainer.html:176 +#: emailMarketing/templates/emailMarketing/website.html:411 +#: emailMarketing/templates/emailMarketing/website.html:947 +#: firewall/templates/firewall/firewall.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:214 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:136 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:636 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:117 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:237 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:283 +#: websiteFunctions/templates/websiteFunctions/website.html:374 +#: websiteFunctions/templates/websiteFunctions/website.html:876 +msgid "Error message:" +msgstr "Грешка" + +#: backup/templates/backup/restore.html:90 +msgid "Site related to this Back up already exists." +msgstr "Сајт из ове архиве већ постоји." + +#: baseTemplate/templates/baseTemplate/homePage.html:3 +msgid "Home - CyberPanel" +msgstr "Почетна - CyberPanel" + +#: baseTemplate/templates/baseTemplate/homePage.html:13 +msgid "Use the tabs to navigate through the control panel." +msgstr "Използвай tab за навигация в контролния панел." + +#: baseTemplate/templates/baseTemplate/homePage.html:29 +#: userManagment/templates/userManagment/index.html:13 +msgid "User Functions" +msgstr "Функции на Потребителите" + +#: baseTemplate/templates/baseTemplate/homePage.html:31 +#: baseTemplate/templates/baseTemplate/index.html:361 +#: baseTemplate/templates/baseTemplate/index.html:362 +#: baseTemplate/templates/baseTemplate/index.html:363 +msgid "Users" +msgstr "Потребители" + +#: baseTemplate/templates/baseTemplate/homePage.html:40 +#: websiteFunctions/templates/websiteFunctions/index.html:13 +msgid "Website Functions" +msgstr "Функции на Страниците" + +#: baseTemplate/templates/baseTemplate/homePage.html:51 +msgid "Add/Modify Packages" +msgstr "Добави/Промени Пакет" + +#: baseTemplate/templates/baseTemplate/homePage.html:53 +#: baseTemplate/templates/baseTemplate/index.html:283 +#: baseTemplate/templates/baseTemplate/index.html:427 +#: baseTemplate/templates/baseTemplate/index.html:429 +#: packages/templates/packages/index.html:13 +msgid "Packages" +msgstr "Пакети" + +#: baseTemplate/templates/baseTemplate/homePage.html:62 +#: databases/templates/databases/index.html:12 +msgid "Database Functions" +msgstr "Функции на Бази от Данни" + +#: baseTemplate/templates/baseTemplate/homePage.html:64 +#: baseTemplate/templates/baseTemplate/index.html:452 +#: baseTemplate/templates/baseTemplate/index.html:453 +#: baseTemplate/templates/baseTemplate/index.html:454 +#: emailMarketing/templates/emailMarketing/website.html:51 +#: packages/templates/packages/createPackage.html:69 +#: packages/templates/packages/listPackages.html:37 +#: packages/templates/packages/listPackages.html:134 +#: packages/templates/packages/modifyPackage.html:73 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:54 +#: websiteFunctions/templates/websiteFunctions/website.html:54 +msgid "Databases" +msgstr "База от Данни" + +#: baseTemplate/templates/baseTemplate/homePage.html:73 +msgid "Control DNS" +msgstr "Контрол на DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:75 +#: baseTemplate/templates/baseTemplate/index.html:290 +#: baseTemplate/templates/baseTemplate/index.html:477 +#: baseTemplate/templates/baseTemplate/index.html:479 +msgid "DNS" +msgstr "DNS" + +#: baseTemplate/templates/baseTemplate/homePage.html:84 +#: ftp/templates/ftp/index.html:12 +msgid "FTP Functions" +msgstr "FTP Функции" + +#: baseTemplate/templates/baseTemplate/homePage.html:86 +#: baseTemplate/templates/baseTemplate/index.html:297 +#: baseTemplate/templates/baseTemplate/index.html:539 +#: baseTemplate/templates/baseTemplate/index.html:541 +#: emailMarketing/templates/emailMarketing/website.html:46 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:49 +#: websiteFunctions/templates/websiteFunctions/website.html:49 +msgid "FTP" +msgstr "FTP" + +#: baseTemplate/templates/baseTemplate/homePage.html:106 +#: baseTemplate/templates/baseTemplate/homePage.html:108 +#: mailServer/templates/mailServer/listEmails.html:64 +#: packages/templates/packages/createPackage.html:77 +#: packages/templates/packages/listPackages.html:143 +#: packages/templates/packages/modifyPackage.html:80 +msgid "Emails" +msgstr "Emails" + +#: baseTemplate/templates/baseTemplate/homePage.html:117 +#: baseTemplate/templates/baseTemplate/homePage.html:119 +#: baseTemplate/templates/baseTemplate/index.html:617 +#: baseTemplate/templates/baseTemplate/index.html:618 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:39 +msgid "SSL" +msgstr "SSL" + +#: baseTemplate/templates/baseTemplate/homePage.html:130 +#: baseTemplate/templates/baseTemplate/index.html:743 +#: baseTemplate/templates/baseTemplate/index.html:745 +#: baseTemplate/templates/baseTemplate/index.html:787 +#: emailPremium/templates/emailPremium/policyServer.html:30 +#: serverStatus/templates/serverStatus/index.html:13 +msgid "Server Status" +msgstr "Сървър Статус" + +#: baseTemplate/templates/baseTemplate/homePage.html:141 +msgid "PHP Configurations" +msgstr "PHP Конфигурация" + +#: baseTemplate/templates/baseTemplate/homePage.html:152 +#: baseTemplate/templates/baseTemplate/homePage.html:154 +#: baseTemplate/templates/baseTemplate/index.html:789 +#: dockerManager/templates/dockerManager/viewContainer.html:174 +#: emailMarketing/templates/emailMarketing/website.html:117 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:118 +#: websiteFunctions/templates/websiteFunctions/website.html:106 +msgid "Logs" +msgstr "Логове" + +#: baseTemplate/templates/baseTemplate/homePage.html:163 +#: baseTemplate/templates/baseTemplate/homePage.html:165 +#: baseTemplate/templates/baseTemplate/index.html:811 +#: baseTemplate/templates/baseTemplate/index.html:813 +msgid "Security" +msgstr "Сигурност" + +#: baseTemplate/templates/baseTemplate/homePage.html:188 +#, fuzzy +#| msgid "Resource" +msgid "Resources" +msgstr "Ресурси" + +#: baseTemplate/templates/baseTemplate/homePage.html:197 +#: baseTemplate/templates/baseTemplate/index.html:139 +#: dockerManager/templates/dockerManager/viewContainer.html:48 +msgid "CPU Usage" +msgstr "CPU Използване" + +#: baseTemplate/templates/baseTemplate/homePage.html:218 +#: baseTemplate/templates/baseTemplate/index.html:150 +msgid "Ram Usage" +msgstr "Използване на RAM" + +#: baseTemplate/templates/baseTemplate/homePage.html:239 +msgid "Disk Usage '/'" +msgstr "Зает Диск" + +#: baseTemplate/templates/baseTemplate/index.html:159 +#: emailMarketing/templates/emailMarketing/website.html:58 +#: emailMarketing/templates/emailMarketing/website.html:78 +#: userManagment/templates/userManagment/listUsers.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:61 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:81 +#: websiteFunctions/templates/websiteFunctions/website.html:59 +#: websiteFunctions/templates/websiteFunctions/website.html:77 +msgid "Disk Usage" +msgstr "Използван диск" + +#: baseTemplate/templates/baseTemplate/index.html:192 +#: baseTemplate/templates/baseTemplate/index.html:195 +#: baseTemplate/templates/baseTemplate/index.html:199 +msgid "CyberPanel" +msgstr "CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:197 +#: baseTemplate/templates/baseTemplate/index.html:201 +msgid "Web Hosting Control Panel" +msgstr "Уеб Хостинг Панел" + +#: baseTemplate/templates/baseTemplate/index.html:203 +msgid "Close sidebar" +msgstr "Затвори страничен бар" + +#: baseTemplate/templates/baseTemplate/index.html:209 +msgid "My Account" +msgstr "Моят Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:228 +msgid "Edit profile" +msgstr "Промени профил" + +#: baseTemplate/templates/baseTemplate/index.html:230 +#: baseTemplate/templates/baseTemplate/index.html:369 +#: userManagment/templates/userManagment/index.html:24 +#: userManagment/templates/userManagment/index.html:27 +msgid "View Profile" +msgstr "Преглед на профил" + +#: baseTemplate/templates/baseTemplate/index.html:237 +#: baseTemplate/templates/baseTemplate/index.html:319 +msgid "Logout" +msgstr "Излез" + +#: baseTemplate/templates/baseTemplate/index.html:249 +#: baseTemplate/templates/baseTemplate/index.html:254 +#: baseTemplate/templates/baseTemplate/index.html:259 +msgid "CPU Load Average" +msgstr "Средно CPU Натоварване" + +#: baseTemplate/templates/baseTemplate/index.html:265 +msgid "Dashboard Quick Menu" +msgstr "Бързо Меню" + +#: baseTemplate/templates/baseTemplate/index.html:304 +#: baseTemplate/templates/baseTemplate/index.html:725 +#: baseTemplate/templates/baseTemplate/index.html:727 +msgid "Tuning" +msgstr "Настройка" + +#: baseTemplate/templates/baseTemplate/index.html:332 +msgid "Overview" +msgstr "Преглед" + +#: baseTemplate/templates/baseTemplate/index.html:334 +#: baseTemplate/templates/baseTemplate/index.html:335 +msgid "Server IP Address" +msgstr "Сървърен IP Адрес" + +#: baseTemplate/templates/baseTemplate/index.html:339 +#: baseTemplate/templates/baseTemplate/index.html:341 +msgid "Dashboard" +msgstr "Начало" + +#: baseTemplate/templates/baseTemplate/index.html:344 +#: baseTemplate/templates/baseTemplate/index.html:346 +#: baseTemplate/templates/baseTemplate/index.html:348 +#: baseTemplate/templates/baseTemplate/versionManagment.html:10 +#: userManagment/templates/userManagment/createACL.html:47 +#: userManagment/templates/userManagment/createACL.html:52 +#: userManagment/templates/userManagment/modifyACL.html:51 +#: userManagment/templates/userManagment/modifyACL.html:56 +msgid "Version Management" +msgstr "Мениджър на Версия" + +#: baseTemplate/templates/baseTemplate/index.html:351 +#: baseTemplate/templates/baseTemplate/index.html:352 +#: baseTemplate/templates/baseTemplate/index.html:354 +#, fuzzy +#| msgid "Connection to" +msgid "Connect" +msgstr "Връзка към" + +#: baseTemplate/templates/baseTemplate/index.html:358 +msgid "Main" +msgstr "Главно" + +#: baseTemplate/templates/baseTemplate/index.html:372 +#: userManagment/templates/userManagment/createACL.html:64 +#: userManagment/templates/userManagment/createUser.html:12 +#: userManagment/templates/userManagment/modifyACL.html:68 +msgid "Create New User" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:375 +#: userManagment/templates/userManagment/createACL.html:73 +#: userManagment/templates/userManagment/index.html:36 +#: userManagment/templates/userManagment/index.html:39 +#: userManagment/templates/userManagment/listUsers.html:13 +#: userManagment/templates/userManagment/listUsers.html:19 +#: userManagment/templates/userManagment/modifyACL.html:77 +#, fuzzy +#| msgid "Login User" +msgid "List Users" +msgstr "Потребителско име" + +#: baseTemplate/templates/baseTemplate/index.html:378 +#: userManagment/templates/userManagment/index.html:61 +#: userManagment/templates/userManagment/index.html:64 +#: userManagment/templates/userManagment/modifyUser.html:12 +#: userManagment/templates/userManagment/modifyUser.html:102 +msgid "Modify User" +msgstr "Промени Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:380 +#: userManagment/templates/userManagment/createACL.html:82 +#: userManagment/templates/userManagment/modifyACL.html:86 +#: userManagment/templates/userManagment/resellerCenter.html:12 +#: userManagment/templates/userManagment/resellerCenter.html:19 +#, fuzzy +#| msgid "Reseller" +msgid "Reseller Center" +msgstr "Resseler" + +#: baseTemplate/templates/baseTemplate/index.html:383 +#: userManagment/templates/userManagment/createACL.html:12 +#, fuzzy +#| msgid "Create New User" +msgid "Create New ACL" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:386 +#: userManagment/templates/userManagment/deleteACL.html:12 +#: userManagment/templates/userManagment/deleteACL.html:40 +#, fuzzy +#| msgid "Delete" +msgid "Delete ACL" +msgstr "Изтрий" + +#: baseTemplate/templates/baseTemplate/index.html:389 +#, fuzzy +#| msgid "Modify User" +msgid "Modify ACL" +msgstr "Промени Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:392 +#: userManagment/templates/userManagment/apiAccess.html:13 +#: userManagment/templates/userManagment/apiAccess.html:20 +#, fuzzy +#| msgid "Access Log" +msgid "API Access" +msgstr "Access Лог" + +#: baseTemplate/templates/baseTemplate/index.html:408 +#: userManagment/templates/userManagment/createACL.html:112 +#: userManagment/templates/userManagment/modifyACL.html:116 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:115 +#: websiteFunctions/templates/websiteFunctions/index.html:43 +#: websiteFunctions/templates/websiteFunctions/index.html:45 +msgid "Create Website" +msgstr "Нова Страница" + +#: baseTemplate/templates/baseTemplate/index.html:414 +#: userManagment/templates/userManagment/createACL.html:121 +#: userManagment/templates/userManagment/modifyACL.html:125 +#: websiteFunctions/templates/websiteFunctions/index.html:67 +#: websiteFunctions/templates/websiteFunctions/index.html:69 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:93 +msgid "Modify Website" +msgstr "Промени Страница" + +#: baseTemplate/templates/baseTemplate/index.html:417 +#: websiteFunctions/templates/websiteFunctions/index.html:81 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:41 +msgid "Suspend/Unsuspend" +msgstr "Пусни/Спри" + +#: baseTemplate/templates/baseTemplate/index.html:420 +#: userManagment/templates/userManagment/createACL.html:139 +#: userManagment/templates/userManagment/deleteACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:143 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:12 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:19 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:42 +#: websiteFunctions/templates/websiteFunctions/index.html:90 +#: websiteFunctions/templates/websiteFunctions/index.html:92 +msgid "Delete Website" +msgstr "Изтрий Страница" + +#: baseTemplate/templates/baseTemplate/index.html:438 +#: baseTemplate/templates/baseTemplate/index.html:671 +#: packages/templates/packages/listPackages.html:13 +#: packages/templates/packages/listPackages.html:19 +#: userManagment/templates/userManagment/createACL.html:161 +#: userManagment/templates/userManagment/modifyACL.html:165 +#, fuzzy +#| msgid "Packages" +msgid "List Packages" +msgstr "Пакети" + +#: baseTemplate/templates/baseTemplate/index.html:441 +#: packages/templates/packages/deletePackage.html:12 +#: packages/templates/packages/deletePackage.html:18 +#: packages/templates/packages/deletePackage.html:39 +#: packages/templates/packages/index.html:38 +#: packages/templates/packages/index.html:41 +#: userManagment/templates/userManagment/createACL.html:170 +#: userManagment/templates/userManagment/modifyACL.html:174 +msgid "Delete Package" +msgstr "Изтрий Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:444 +#: packages/templates/packages/index.html:51 +#: packages/templates/packages/index.html:54 +#: packages/templates/packages/modifyPackage.html:9 +#: packages/templates/packages/modifyPackage.html:15 +#: packages/templates/packages/modifyPackage.html:108 +#: userManagment/templates/userManagment/createACL.html:179 +#: userManagment/templates/userManagment/modifyACL.html:183 +msgid "Modify Package" +msgstr "Промени Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:460 +#: databases/templates/databases/createDatabase.html:12 +#: databases/templates/databases/createDatabase.html:19 +#: databases/templates/databases/createDatabase.html:79 +#: databases/templates/databases/index.html:25 +#: databases/templates/databases/index.html:27 +#: databases/templates/databases/phpMyAdmin.html:12 +#: databases/templates/databases/phpMyAdmin.html:19 +#: userManagment/templates/userManagment/createACL.html:191 +#: userManagment/templates/userManagment/modifyACL.html:195 +msgid "Create Database" +msgstr "Нова База от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:463 +#: databases/templates/databases/deleteDatabase.html:12 +#: databases/templates/databases/deleteDatabase.html:19 +#: databases/templates/databases/deleteDatabase.html:51 +#: databases/templates/databases/index.html:37 +#: databases/templates/databases/index.html:39 +#: userManagment/templates/userManagment/createACL.html:200 +#: userManagment/templates/userManagment/modifyACL.html:204 +msgid "Delete Database" +msgstr "Изтрий База от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:466 +#: databases/templates/databases/index.html:48 +#: databases/templates/databases/index.html:50 +#: databases/templates/databases/listDataBases.html:13 +#: databases/templates/databases/listDataBases.html:19 +#: userManagment/templates/userManagment/createACL.html:209 +#: userManagment/templates/userManagment/modifyACL.html:213 +msgid "List Databases" +msgstr "Преглед на Бази от Данни" + +#: baseTemplate/templates/baseTemplate/index.html:468 +#: baseTemplate/templates/baseTemplate/index.html:469 +#: databases/templates/databases/index.html:59 +#: databases/templates/databases/index.html:61 +msgid "PHPMYAdmin" +msgstr "PhpMyAdmin" + +#: baseTemplate/templates/baseTemplate/index.html:485 +#: dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/createNameServer.html:80 dns/templates/dns/index.html:72 +#: dns/templates/dns/index.html:74 +#: userManagment/templates/userManagment/createACL.html:221 +#: userManagment/templates/userManagment/modifyACL.html:225 +msgid "Create Nameserver" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:488 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Configure Default Nameservers" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:488 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Config Default Nameservers" +msgstr "Създай Nameserver" + +#: baseTemplate/templates/baseTemplate/index.html:491 +#: dns/templates/dns/createDNSZone.html:12 dns/templates/dns/createDNSZone.html:50 +#: dns/templates/dns/index.html:29 dns/templates/dns/index.html:31 +#: dns/templates/dns/index.html:84 dns/templates/dns/index.html:86 +msgid "Create DNS Zone" +msgstr "Създай DNS Зона" + +#: baseTemplate/templates/baseTemplate/index.html:494 +#: dns/templates/dns/deleteDNSZone.html:50 dns/templates/dns/index.html:41 +#: dns/templates/dns/index.html:43 dns/templates/dns/index.html:96 +#: dns/templates/dns/index.html:98 +#: userManagment/templates/userManagment/createACL.html:239 +#: userManagment/templates/userManagment/modifyACL.html:243 +msgid "Delete Zone" +msgstr "Изтрий Зона" + +#: baseTemplate/templates/baseTemplate/index.html:497 +msgid "Add/Delete Records" +msgstr "Добави/Премахни Записи" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:12 +#: mailServer/templates/mailServer/createEmailAccount.html:19 +msgid "Create Email Account" +msgstr "Създай Email Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:513 +#: mailServer/templates/mailServer/createEmailAccount.html:98 +#: mailServer/templates/mailServer/index.html:25 +#: mailServer/templates/mailServer/index.html:28 +#: userManagment/templates/userManagment/createACL.html:262 +#: userManagment/templates/userManagment/modifyACL.html:266 +msgid "Create Email" +msgstr "Създай Email" + +#: baseTemplate/templates/baseTemplate/index.html:516 +#: userManagment/templates/userManagment/createACL.html:271 +#: userManagment/templates/userManagment/modifyACL.html:275 +#, fuzzy +#| msgid "List Domains" +msgid "List Emails" +msgstr "Списък с Домейн" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:12 +#: mailServer/templates/mailServer/deleteEmailAccount.html:19 +msgid "Delete Email Account" +msgstr "Изтрий Email Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:519 +#: mailServer/templates/mailServer/deleteEmailAccount.html:73 +#: mailServer/templates/mailServer/index.html:38 +#: mailServer/templates/mailServer/index.html:41 +#: userManagment/templates/userManagment/createACL.html:280 +#: userManagment/templates/userManagment/modifyACL.html:284 +msgid "Delete Email" +msgstr "Изтрий Email" + +#: baseTemplate/templates/baseTemplate/index.html:522 +#: userManagment/templates/userManagment/createACL.html:289 +#: userManagment/templates/userManagment/modifyACL.html:293 +msgid "Email Forwarding" +msgstr "Email пренасочване" + +#: baseTemplate/templates/baseTemplate/index.html:525 +#: databases/templates/databases/listDataBases.html:90 +#: ftp/templates/ftp/listFTPAccounts.html:108 +#: mailServer/templates/mailServer/changeEmailPassword.html:97 +#: mailServer/templates/mailServer/index.html:51 +#: mailServer/templates/mailServer/index.html:54 +#: mailServer/templates/mailServer/listEmails.html:76 +msgid "Change Password" +msgstr "Промени Парола" + +#: baseTemplate/templates/baseTemplate/index.html:528 +#: mailServer/templates/mailServer/dkimManager.html:13 +#: mailServer/templates/mailServer/dkimManager.html:22 +#: mailServer/templates/mailServer/dkimManager.html:75 +#: userManagment/templates/userManagment/createACL.html:309 +#: userManagment/templates/userManagment/modifyACL.html:313 +msgid "DKIM Manager" +msgstr "DKIM Мениджър" + +#: baseTemplate/templates/baseTemplate/index.html:530 +#: baseTemplate/templates/baseTemplate/index.html:531 +msgid "Access Webmail" +msgstr "Webmail" + +#: baseTemplate/templates/baseTemplate/index.html:547 +#: emailMarketing/templates/emailMarketing/website.html:886 +#: emailMarketing/templates/emailMarketing/website.html:889 +#: ftp/templates/ftp/createFTPAccount.html:12 +#: ftp/templates/ftp/createFTPAccount.html:19 ftp/templates/ftp/index.html:24 +#: ftp/templates/ftp/index.html:26 +#: userManagment/templates/userManagment/createACL.html:322 +#: userManagment/templates/userManagment/modifyACL.html:326 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:576 +#: websiteFunctions/templates/websiteFunctions/website.html:821 +#: websiteFunctions/templates/websiteFunctions/website.html:824 +msgid "Create FTP Account" +msgstr "Създай FTP Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:550 +#: emailMarketing/templates/emailMarketing/website.html:898 +#: emailMarketing/templates/emailMarketing/website.html:901 +#: ftp/templates/ftp/deleteFTPAccount.html:12 +#: ftp/templates/ftp/deleteFTPAccount.html:18 +#: ftp/templates/ftp/deleteFTPAccount.html:64 ftp/templates/ftp/index.html:35 +#: ftp/templates/ftp/index.html:37 +#: userManagment/templates/userManagment/createACL.html:331 +#: userManagment/templates/userManagment/modifyACL.html:335 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:585 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:588 +#: websiteFunctions/templates/websiteFunctions/website.html:830 +#: websiteFunctions/templates/websiteFunctions/website.html:833 +msgid "Delete FTP Account" +msgstr "Изтрий FTP Акаунт" + +#: baseTemplate/templates/baseTemplate/index.html:553 ftp/templates/ftp/index.html:46 +#: ftp/templates/ftp/index.html:48 ftp/templates/ftp/listFTPAccounts.html:13 +#: ftp/templates/ftp/listFTPAccounts.html:19 +#: userManagment/templates/userManagment/createACL.html:340 +#: userManagment/templates/userManagment/modifyACL.html:344 +msgid "List FTP Accounts" +msgstr "Преглед FTP Акаунти" + +#: baseTemplate/templates/baseTemplate/index.html:575 +#: userManagment/templates/userManagment/createACL.html:370 +#: userManagment/templates/userManagment/modifyACL.html:374 +msgid "Add/Delete Destination" +msgstr "Добави/Премахни Дестинация" + +#: baseTemplate/templates/baseTemplate/index.html:590 +msgid "Incremental Back up - Beta" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:592 +#, fuzzy +#| msgid "Cancel Backup" +msgid "Incremental Back up" +msgstr "Откажи Архив" + +#: baseTemplate/templates/baseTemplate/index.html:598 +#, fuzzy +#| msgid "Restore Back up" +msgid "Create/Restore Back up" +msgstr "Възстанови Архив" + +#: baseTemplate/templates/baseTemplate/index.html:601 +#, fuzzy +#| msgid "Add/Delete Destination" +msgid "Add/Remove Destinations" +msgstr "Добави/Премахни Дестинация" + +#: baseTemplate/templates/baseTemplate/index.html:604 +#, fuzzy +#| msgid "Schedule Back up" +msgid "Schedule Back ups" +msgstr "Планирано Архивиране " + +#: baseTemplate/templates/baseTemplate/index.html:607 +#, fuzzy +#| msgid "Transfer Websites from Remote Server - CyberPanel" +msgid "Restore from Remote Server" +msgstr "Премести страница от отдалечен сървър - CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:607 +#, fuzzy +#| msgid "Restore Website" +msgid "Restore from Remote" +msgstr "Възстанови Страница" + +#: baseTemplate/templates/baseTemplate/index.html:624 +#: manageSSL/templates/manageSSL/index.html:29 +#: manageSSL/templates/manageSSL/index.html:31 +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/manageSSL.html:20 +#: userManagment/templates/userManagment/createACL.html:404 +#: userManagment/templates/userManagment/modifyACL.html:408 +msgid "Manage SSL" +msgstr "Нов SSL" + +#: baseTemplate/templates/baseTemplate/index.html:627 +#: manageSSL/templates/manageSSL/index.html:45 +#: manageSSL/templates/manageSSL/index.html:47 +#: userManagment/templates/userManagment/createACL.html:413 +#: userManagment/templates/userManagment/modifyACL.html:417 +msgid "Hostname SSL" +msgstr "Hostname SSL" + +#: baseTemplate/templates/baseTemplate/index.html:630 +#: manageSSL/templates/manageSSL/index.html:60 +#: manageSSL/templates/manageSSL/index.html:62 +#: userManagment/templates/userManagment/createACL.html:422 +#: userManagment/templates/userManagment/modifyACL.html:426 +msgid "MailServer SSL" +msgstr "MailServer SSL" + +#: baseTemplate/templates/baseTemplate/index.html:637 +msgid "Server" +msgstr "Сървър" + +#: baseTemplate/templates/baseTemplate/index.html:644 +#: baseTemplate/templates/baseTemplate/index.html:660 +#: baseTemplate/templates/baseTemplate/index.html:688 +#: baseTemplate/templates/baseTemplate/index.html:705 +#: baseTemplate/templates/baseTemplate/index.html:846 +msgid "NEW" +msgstr "НОВ" + +#: baseTemplate/templates/baseTemplate/index.html:650 +msgid "Web Based Terminal" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:657 +#: baseTemplate/templates/baseTemplate/index.html:659 +msgid "CloudLinux" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:666 +#, fuzzy +#| msgid "Create Package" +msgid "Create Cloud Linux Package" +msgstr "Създай Пакет" + +#: baseTemplate/templates/baseTemplate/index.html:671 +msgid "List Cloud Linux Package" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:676 +#, fuzzy +#| msgid "Attach git to your websites." +msgid "Monitor Usage of your Websites" +msgstr "Прикачи Git за тази страница." + +#: baseTemplate/templates/baseTemplate/index.html:676 +#, fuzzy +#| msgid "Resource Usage" +msgid "Monitor Usage" +msgstr "Използвани ресурси" + +#: baseTemplate/templates/baseTemplate/index.html:685 +#: baseTemplate/templates/baseTemplate/index.html:687 +#, fuzzy +#| msgid "Configurations" +msgid "Containerization" +msgstr "Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:694 +#, fuzzy +#| msgid "Create Website" +msgid "Create Website Limits" +msgstr "Нова Страница" + +#: baseTemplate/templates/baseTemplate/index.html:694 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Limits" +msgstr "Паркирай Домейн" + +#: baseTemplate/templates/baseTemplate/index.html:702 +msgid "Docker" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:704 +#, fuzzy +#| msgid "DKIM Manager" +msgid "Docker Manager" +msgstr "DKIM Мениджър" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage Docker Images" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:711 +#: dockerManager/templates/dockerManager/index.html:49 +#: dockerManager/templates/dockerManager/index.html:51 +#: dockerManager/templates/dockerManager/manageImages.html:14 +#, fuzzy +#| msgid "Change Email Password" +msgid "Manage Images" +msgstr "Промени Email Парола" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#, fuzzy +#| msgid "Manage Services" +msgid "Manage Docker Containers" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:714 +#: dockerManager/templates/dockerManager/index.html:29 +#: dockerManager/templates/dockerManager/index.html:31 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage Containers" +msgstr "Управлявай Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:717 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Create New Docker Container" +msgstr "Създай Потребител - CyberPanel" + +#: baseTemplate/templates/baseTemplate/index.html:717 +#, fuzzy +#| msgid "Create New User" +msgid "Create New Container" +msgstr "Нов Потребител" + +#: baseTemplate/templates/baseTemplate/index.html:733 +#: tuning/templates/tuning/index.html:24 tuning/templates/tuning/index.html:26 +#: tuning/templates/tuning/liteSpeedTuning.html:12 +msgid "LiteSpeed Tuning" +msgstr "LiteSpeed Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:736 +#: tuning/templates/tuning/index.html:36 tuning/templates/tuning/index.html:38 +#: tuning/templates/tuning/phpTuning.html:13 +#: tuning/templates/tuning/phpTuning.html:149 +msgid "PHP Tuning" +msgstr "PHP Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:751 +#: serverStatus/templates/serverStatus/topProcesses.html:14 +#: serverStatus/templates/serverStatus/topProcesses.html:179 +#, fuzzy +#| msgid "LiteSpeed Processes" +msgid "Top Processes" +msgstr "LiteSpeed Processes" + +#: baseTemplate/templates/baseTemplate/index.html:754 +#: serverStatus/templates/serverStatus/index.html:25 +#: serverStatus/templates/serverStatus/index.html:28 +msgid "LiteSpeed Status" +msgstr "LiteSpeed Статус" + +#: baseTemplate/templates/baseTemplate/index.html:757 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:13 +#: serverStatus/templates/serverStatus/index.html:38 +msgid "CyberPanel Main Log File" +msgstr "Главен CyberPanel Лог" + +#: baseTemplate/templates/baseTemplate/index.html:760 +msgid "Services Status" +msgstr "Сървър Статус" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/installExtensions.html:13 +msgid "Install PHP Extensions" +msgstr "Инсталирай PHP Модул" + +#: baseTemplate/templates/baseTemplate/index.html:776 +#: managePHP/templates/managePHP/index.html:24 +#: managePHP/templates/managePHP/index.html:26 +msgid "Install Extensions" +msgstr "Инсталирай Модул" + +#: baseTemplate/templates/baseTemplate/index.html:779 +#: managePHP/templates/managePHP/index.html:35 +#: managePHP/templates/managePHP/index.html:37 +msgid "Edit PHP Configs" +msgstr "Промени PHP Config" + +#: baseTemplate/templates/baseTemplate/index.html:795 +msgid "Access Log" +msgstr "Access Лог" + +#: baseTemplate/templates/baseTemplate/index.html:797 +#: emailMarketing/templates/emailMarketing/website.html:139 +#: serverLogs/templates/serverLogs/errorLogs.html:13 +#: serverLogs/templates/serverLogs/index.html:37 +#: serverLogs/templates/serverLogs/index.html:40 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:138 +#: websiteFunctions/templates/websiteFunctions/website.html:126 +msgid "Error Logs" +msgstr "Error Логове" + +#: baseTemplate/templates/baseTemplate/index.html:799 +#: emailPremium/templates/emailPremium/emailPage.html:144 +#: serverLogs/templates/serverLogs/emailLogs.html:14 +#: serverLogs/templates/serverLogs/index.html:49 +#: serverLogs/templates/serverLogs/index.html:52 +msgid "Email Logs" +msgstr "Email Логове" + +#: baseTemplate/templates/baseTemplate/index.html:799 +msgid "Email Log" +msgstr "Email Лог" + +#: baseTemplate/templates/baseTemplate/index.html:801 +#: serverLogs/templates/serverLogs/ftplogs.html:13 +#: serverLogs/templates/serverLogs/index.html:61 +#: serverLogs/templates/serverLogs/index.html:64 +msgid "FTP Logs" +msgstr "FTP Логове" + +#: baseTemplate/templates/baseTemplate/index.html:803 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:14 +msgid "ModSecurity Audit Logs" +msgstr "ModSecurity Audit логове" + +#: baseTemplate/templates/baseTemplate/index.html:803 +msgid "ModSec Audit Logs" +msgstr "ModSec Audit логове" + +#: baseTemplate/templates/baseTemplate/index.html:819 +msgid "Firewall Home" +msgstr "Защитна Стена" + +#: baseTemplate/templates/baseTemplate/index.html:819 +#: firewall/templates/firewall/csf.html:119 firewall/templates/firewall/index.html:25 +#: firewall/templates/firewall/index.html:27 +msgid "Firewall" +msgstr "Защитна Стена" + +#: baseTemplate/templates/baseTemplate/index.html:821 +#: firewall/templates/firewall/index.html:36 +#: firewall/templates/firewall/index.html:38 +#: firewall/templates/firewall/secureSSH.html:13 +#: firewall/templates/firewall/secureSSH.html:20 +msgid "Secure SSH" +msgstr "Сигурен SSH" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:58 +msgid "ModSecurity Configurations" +msgstr "Редактирай ModSecurity Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:823 +#: firewall/templates/firewall/index.html:60 +msgid "ModSecurity Conf" +msgstr "ModSecurity Conf" + +#: baseTemplate/templates/baseTemplate/index.html:826 +#: firewall/templates/firewall/index.html:69 +#: firewall/templates/firewall/index.html:71 +#: firewall/templates/firewall/modSecurityRules.html:20 +msgid "ModSecurity Rules" +msgstr "ModSecurity Rules" + +#: baseTemplate/templates/baseTemplate/index.html:829 +#: firewall/templates/firewall/index.html:80 +#: firewall/templates/firewall/index.html:82 +msgid "ModSecurity Rules Packs" +msgstr "ModSecurity Rules Packs" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/index.html:47 +msgid "ConfigServer Security & Firewall (CSF)" +msgstr "ConfigServer Security & Firewall (CSF)" + +#: baseTemplate/templates/baseTemplate/index.html:832 +#: firewall/templates/firewall/csf.html:21 firewall/templates/firewall/csf.html:86 +#: firewall/templates/firewall/csf.html:95 firewall/templates/firewall/index.html:49 +msgid "CSF" +msgstr "CSF" + +#: baseTemplate/templates/baseTemplate/index.html:835 +#, fuzzy +#| msgid "Configurations" +msgid "CageFS Configurations" +msgstr "Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:835 +msgid "CageFS" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:843 +#: baseTemplate/templates/baseTemplate/index.html:845 +msgid "Mail Settings" +msgstr "Mail Настройки" + +#: baseTemplate/templates/baseTemplate/index.html:852 +#: emailPremium/templates/emailPremium/policyServer.html:20 +msgid "Email Policy Server" +msgstr "Email Policy Server" + +#: baseTemplate/templates/baseTemplate/index.html:855 +msgid "Email Limits" +msgstr "Email Лимити" + +#: baseTemplate/templates/baseTemplate/index.html:858 +msgid "SpamAssassin Configurations" +msgstr "SpamAssassin Конфигурация" + +#: baseTemplate/templates/baseTemplate/index.html:858 +#: emailPremium/templates/emailPremium/SpamAssassin.html:25 +#: firewall/templates/firewall/spamassassin.html:20 +msgid "SpamAssassin" +msgstr "SpamAssassin" + +#: baseTemplate/templates/baseTemplate/index.html:861 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:14 +#: emailMarketing/templates/emailMarketing/emailMarketing.html:22 +#: emailMarketing/templates/emailMarketing/website.html:978 +#: websiteFunctions/templates/websiteFunctions/website.html:909 +#, fuzzy +#| msgid "Email Forwarding" +msgid "Email Marketing" +msgstr "Email пренасочване" + +#: baseTemplate/templates/baseTemplate/index.html:869 +#: baseTemplate/templates/baseTemplate/index.html:871 +msgid "Manage Services" +msgstr "Manage Services" + +#: baseTemplate/templates/baseTemplate/index.html:877 +#: manageServices/templates/manageServices/managePowerDNS.html:25 +msgid "Manage PowerDNS" +msgstr "Управлявай PowerDNS" + +#: baseTemplate/templates/baseTemplate/index.html:880 +#: manageServices/templates/manageServices/managePostfix.html:22 +msgid "Manage Postfix" +msgstr "Управлявай Postfix" + +#: baseTemplate/templates/baseTemplate/index.html:883 +msgid "Manage FTP" +msgstr "Управлявай FTP" + +#: baseTemplate/templates/baseTemplate/index.html:890 +#: baseTemplate/templates/baseTemplate/index.html:892 +#: pluginHolder/templates/pluginHolder/plugins.html:14 +#: pluginHolder/templates/pluginHolder/plugins.html:21 +msgid "Plugins" +msgstr "" + +#: baseTemplate/templates/baseTemplate/index.html:898 +#, fuzzy +#| msgid "Install Extensions" +msgid "Installed Plugins" +msgstr "Инсталирай Модул" + +#: baseTemplate/templates/baseTemplate/index.html:898 +#, fuzzy +#| msgid "Install" +msgid "Installed" +msgstr "Инсталирай" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:3 +msgid "Version Management - CyberPanel" +msgstr "Мениджър на Версия - CyberPanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:11 +msgid "" +"On this page you can manage versions and or upgrade to latest version of CyberPanel" +msgstr "" +"От тази страница може да променяте версията на панела, както и да извършвате " +"upgrade до последната версия на CyberPanel" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:25 +msgid "Current Version" +msgstr "Сегашна Версия" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:33 +msgid "Build" +msgstr "Билд" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:42 +msgid "Latest Version" +msgstr "Последна Версия" + +#: baseTemplate/templates/baseTemplate/versionManagment.html:50 +msgid "Latest Build" +msgstr "Последен Билд" + +#: containerization/templates/containerization/listWebsites.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "Limits - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: containerization/templates/containerization/listWebsites.html:15 +msgid "Launch and set limits for the websites." +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:14 +msgid "CyberPanel Ent is required for Containerization." +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:22 +msgid "Containerization is only available on CyberPanel Ent. " +msgstr "" + +#: containerization/templates/containerization/notAvailable.html:39 +msgid "" +"Required packages are not installed on this server. Please proceed to installation." +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid " limits - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: containerization/templates/containerization/websiteContainerLimit.html:14 +#, fuzzy +#| msgid "Disk Usage" +msgid "Limits/Usage" +msgstr "Използван диск" + +#: containerization/templates/containerization/websiteContainerLimit.html:16 +msgid "Set limits and view usage for " +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:25 +msgid "Limits are not being inforced, click Edit Limits to inforace the limits." +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:33 +msgid "Limit" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:34 +#: dns/templates/dns/addDeleteDNSRecords.html:330 +msgid "Value" +msgstr "Валута" + +#: containerization/templates/containerization/websiteContainerLimit.html:40 +#: containerization/templates/containerization/websiteContainerLimit.html:77 +#, fuzzy +#| msgid "CPU Usage" +msgid "CPU Percentage" +msgstr "CPU Използване" + +#: containerization/templates/containerization/websiteContainerLimit.html:44 +#: serverStatus/templates/serverStatus/topProcesses.html:131 +msgid "Memory" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:48 +#: containerization/templates/containerization/websiteContainerLimit.html:91 +msgid "I/O" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:56 +#: containerization/templates/containerization/websiteContainerLimit.html:107 +msgid "Network Speed" +msgstr "" + +#: containerization/templates/containerization/websiteContainerLimit.html:84 +#, fuzzy +#| msgid "Memory Soft Limit" +msgid "Memory Limit" +msgstr "Memory Soft Limit" + +#: databases/templates/databases/createDatabase.html:3 +msgid "Create New Database - CyberPanel" +msgstr "Създай нова База от Данни - CyberPanel" + +#: databases/templates/databases/createDatabase.html:13 +#: databases/templates/databases/phpMyAdmin.html:13 +msgid "Create a new database on this page." +msgstr "Създай нова база от данни от тази страница." + +#: databases/templates/databases/createDatabase.html:40 +#: databases/templates/databases/listDataBases.html:105 +msgid "Database Name" +msgstr "Име на База от Данни" + +#: databases/templates/databases/createDatabase.html:48 +#: firewall/templates/firewall/secureSSH.html:120 +#: ftp/templates/ftp/createFTPAccount.html:57 +#: ftp/templates/ftp/listFTPAccounts.html:123 +#: mailServer/templates/mailServer/createEmailAccount.html:59 +msgid "User Name" +msgstr "Потребителско Име" + +#: databases/templates/databases/createDatabase.html:61 +#: databases/templates/databases/listDataBases.html:74 +#: ftp/templates/ftp/createFTPAccount.html:73 +#: ftp/templates/ftp/listFTPAccounts.html:92 +#: mailServer/templates/mailServer/changeEmailPassword.html:74 +#: mailServer/templates/mailServer/createEmailAccount.html:74 +#: userManagment/templates/userManagment/createUser.html:90 +#: userManagment/templates/userManagment/modifyUser.html:68 +#, fuzzy +#| msgid "Generate Now" +msgid "Generate" +msgstr "Генерирай сега" + +#: databases/templates/databases/createDatabase.html:66 +#: databases/templates/databases/listDataBases.html:77 +#: ftp/templates/ftp/createFTPAccount.html:78 +#: ftp/templates/ftp/listFTPAccounts.html:96 +#: mailServer/templates/mailServer/changeEmailPassword.html:79 +#: mailServer/templates/mailServer/createEmailAccount.html:79 +#: userManagment/templates/userManagment/createUser.html:95 +#: userManagment/templates/userManagment/modifyUser.html:73 +#, fuzzy +#| msgid "Change Password" +msgid "Generated Password" +msgstr "Промени Парола" + +#: databases/templates/databases/createDatabase.html:71 +#: databases/templates/databases/listDataBases.html:84 +#: ftp/templates/ftp/createFTPAccount.html:85 +#: ftp/templates/ftp/listFTPAccounts.html:103 +#: mailServer/templates/mailServer/changeEmailPassword.html:86 +#: mailServer/templates/mailServer/createEmailAccount.html:86 +#: userManagment/templates/userManagment/createUser.html:101 +#: userManagment/templates/userManagment/modifyUser.html:79 +#, fuzzy +#| msgid "User" +msgid "Use" +msgstr "Потребител" + +#: databases/templates/databases/createDatabase.html:89 +#: databases/templates/databases/phpMyAdmin.html:41 +msgid "Cannot create database. Error message:" +msgstr "Базата от Данни не е създадена, защото:" + +#: databases/templates/databases/createDatabase.html:93 +#: databases/templates/databases/phpMyAdmin.html:45 +msgid "Database created successfully." +msgstr "Базата от Данни е създадена успешно." + +#: databases/templates/databases/deleteDatabase.html:3 +msgid "Delete Database - CyberPanel" +msgstr "Премахни База от Данни - CyberPanel" + +#: databases/templates/databases/deleteDatabase.html:13 +msgid "Delete an existing database on this page." +msgstr "Премахни налична база от данни." + +#: databases/templates/databases/deleteDatabase.html:38 +msgid "Select Database" +msgstr "Избери База от Данни" + +#: databases/templates/databases/deleteDatabase.html:64 +msgid "Database deleted successfully." +msgstr "Базата от Данни е успешно премахната." + +#: databases/templates/databases/index.html:3 +msgid "Database Functions - CyberPanel" +msgstr "Бази от Данни - CyberPanel" + +#: databases/templates/databases/index.html:13 +msgid "Create, edit and delete databases on this page." +msgstr "Създай, редактирай базите от данни." + +#: databases/templates/databases/listDataBases.html:3 +msgid "List Databases - CyberPanel" +msgstr "Бази от Данни - CyberPanel" + +#: databases/templates/databases/listDataBases.html:14 +msgid "List Databases or change their passwords." +msgstr "Списък на базите от данни или промени техните пароли." + +#: databases/templates/databases/listDataBases.html:26 +#: dns/templates/dns/addDeleteDNSRecords.html:42 +#: ftp/templates/ftp/deleteFTPAccount.html:39 +#: ftp/templates/ftp/listFTPAccounts.html:42 +#: mailServer/templates/mailServer/listEmails.html:43 +#: tuning/templates/tuning/phpTuning.html:30 +msgid "Select Domain" +msgstr "Избери Домейн" + +#: databases/templates/databases/listDataBases.html:44 +#: dns/templates/dns/addDeleteDNSRecords.html:367 +#: ftp/templates/ftp/listFTPAccounts.html:61 +msgid "Records successfully fetched for" +msgstr "Записите са успешно извлечени за" + +#: databases/templates/databases/listDataBases.html:49 +msgid "Password changed for: " +msgstr "Паролата е променена за" + +#: databases/templates/databases/listDataBases.html:53 +msgid "Cannot change password for " +msgstr "Невъзмона промяна на паролата за" + +#: databases/templates/databases/listDataBases.html:59 +#: firewall/templates/firewall/firewall.html:161 +#: ftp/templates/ftp/listFTPAccounts.html:76 +msgid "Could Not Connect to server. Please refresh this page" +msgstr "Действието не е изпълнение. Моля презаредете страницата." + +#: databases/templates/databases/listDataBases.html:106 +msgid "Database User" +msgstr "Потребител за база от данни" + +#: databases/templates/databases/listDataBases.html:117 +#: ftp/templates/ftp/listFTPAccounts.html:139 +msgid "Change" +msgstr "Промени" + +#: databases/templates/databases/phpMyAdmin.html:3 +#, fuzzy +#| msgid "Domains - CyberPanel" +msgid "phpMyAdmin - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:3 +msgid "Add/Modify DNS Records - CyberPanel" +msgstr "Добави/Промени DNS записи - CyberPanel" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +msgid "Add/Modify DNS Zone" +msgstr "Добави/Промени DNS записи" + +#: dns/templates/dns/addDeleteDNSRecords.html:13 +#: dns/templates/dns/configureDefaultNameServers.html:12 +#: dns/templates/dns/createDNSZone.html:12 dns/templates/dns/createNameServer.html:12 +#: dns/templates/dns/deleteDNSZone.html:12 +msgid "DNS Docs" +msgstr "DNS Документация" + +#: dns/templates/dns/addDeleteDNSRecords.html:14 +msgid "" +"On this page you can add/modify dns records for domains whose dns zone is already " +"created." +msgstr "" +"От тази страница може да добавяте или променяте dns записи за домейните чиито dns " +"зони са вече създадени." + +#: dns/templates/dns/addDeleteDNSRecords.html:19 +msgid "Add Records" +msgstr "Добави записи" + +#: dns/templates/dns/addDeleteDNSRecords.html:27 +#: dns/templates/dns/configureDefaultNameServers.html:24 +#: dns/templates/dns/createDNSZone.html:24 dns/templates/dns/createNameServer.html:24 +#: dns/templates/dns/deleteDNSZone.html:25 +msgid "PowerDNS is disabled." +msgstr "PowerDNS е спрян" + +#: dns/templates/dns/addDeleteDNSRecords.html:29 +#: dns/templates/dns/configureDefaultNameServers.html:26 +#: dns/templates/dns/createDNSZone.html:26 dns/templates/dns/createNameServer.html:26 +#: dns/templates/dns/deleteDNSZone.html:27 ftp/templates/ftp/createFTPAccount.html:29 +#: ftp/templates/ftp/deleteFTPAccount.html:27 +#: ftp/templates/ftp/listFTPAccounts.html:29 +#: mailServer/templates/mailServer/changeEmailPassword.html:30 +#: mailServer/templates/mailServer/createEmailAccount.html:30 +#: mailServer/templates/mailServer/deleteEmailAccount.html:30 +#: mailServer/templates/mailServer/emailForwarding.html:28 +#: mailServer/templates/mailServer/listEmails.html:30 +msgid "Enable Now" +msgstr "Позволи" + +#: dns/templates/dns/addDeleteDNSRecords.html:78 +#: dns/templates/dns/addDeleteDNSRecords.html:101 +#: dns/templates/dns/addDeleteDNSRecords.html:125 +#: dns/templates/dns/addDeleteDNSRecords.html:148 +#: dns/templates/dns/addDeleteDNSRecords.html:176 +#: dns/templates/dns/addDeleteDNSRecords.html:200 +#: dns/templates/dns/addDeleteDNSRecords.html:224 +#: dns/templates/dns/addDeleteDNSRecords.html:248 +#: dns/templates/dns/addDeleteDNSRecords.html:272 +#: dns/templates/dns/addDeleteDNSRecords.html:298 +#: dns/templates/dns/addDeleteDNSRecords.html:329 +msgid "TTL" +msgstr "TTL" + +#: dns/templates/dns/addDeleteDNSRecords.html:88 +#: dns/templates/dns/addDeleteDNSRecords.html:111 +#: dns/templates/dns/addDeleteDNSRecords.html:135 +#: dns/templates/dns/addDeleteDNSRecords.html:162 +#: dns/templates/dns/addDeleteDNSRecords.html:187 +#: dns/templates/dns/addDeleteDNSRecords.html:211 +#: dns/templates/dns/addDeleteDNSRecords.html:235 +#: dns/templates/dns/addDeleteDNSRecords.html:259 +#: dns/templates/dns/addDeleteDNSRecords.html:287 +#: dns/templates/dns/addDeleteDNSRecords.html:304 +#: firewall/templates/firewall/firewall.html:104 +msgid "Add" +msgstr "Добави" + +#: dns/templates/dns/addDeleteDNSRecords.html:105 +msgid "IPV6 Address" +msgstr "IPV6 Адрес" + +#: dns/templates/dns/addDeleteDNSRecords.html:129 +#: dns/templates/dns/addDeleteDNSRecords.html:156 +#: dns/templates/dns/createDNSZone.html:38 dns/templates/dns/createNameServer.html:36 +#: emailMarketing/templates/emailMarketing/website.html:318 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:51 +#: websiteFunctions/templates/websiteFunctions/website.html:280 +msgid "Domain Name" +msgstr "Домейн Име" + +#: dns/templates/dns/addDeleteDNSRecords.html:152 +#: dns/templates/dns/addDeleteDNSRecords.html:331 +msgid "Priority" +msgstr "Приоритет" + +#: dns/templates/dns/addDeleteDNSRecords.html:181 +msgid "Policy" +msgstr "Политика" + +#: dns/templates/dns/addDeleteDNSRecords.html:205 +msgid "Text" +msgstr "Текст" + +#: dns/templates/dns/addDeleteDNSRecords.html:229 +msgid "SOA Value" +msgstr "SOA стойност" + +#: dns/templates/dns/addDeleteDNSRecords.html:253 +msgid "Name server" +msgstr "Name server" + +#: dns/templates/dns/addDeleteDNSRecords.html:276 +msgid "Prioirty" +msgstr "Приоритет" + +#: dns/templates/dns/addDeleteDNSRecords.html:281 +msgid "Content" +msgstr "Стойност" + +#: dns/templates/dns/addDeleteDNSRecords.html:359 +msgid "Cannot fetch records. Error message:" +msgstr "Записите не са извлечени, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:363 +msgid "Cannot add record. Error message: " +msgstr "Записа не е добавен, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:371 +msgid "Record Successfully Deleted" +msgstr "Записа е успешно премахнат" + +#: dns/templates/dns/addDeleteDNSRecords.html:375 +msgid "Cannot delete record. Error message:" +msgstr "Записа не е премахнат, защото:" + +#: dns/templates/dns/addDeleteDNSRecords.html:379 +msgid "Record Successfully Added." +msgstr "Записа е успешно добавен." + +#: dns/templates/dns/configureDefaultNameServers.html:3 +#, fuzzy +#| msgid "Create Nameserver - CyberPanel" +msgid "Configure Default Nameserver - CyberPanel" +msgstr "Създай Nameserver - CyberPanel" + +#: dns/templates/dns/configureDefaultNameServers.html:12 +#, fuzzy +#| msgid "Create Nameserver" +msgid "Configure Default Nameserver" +msgstr "Създай Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:13 +#: dns/templates/dns/createNameServer.html:13 +msgid "" +"You can use this page to setup nameservers using which people on the internet can " +"resolve websites hosted on this server." +msgstr "От тази страница може да добавяте NameServers." + +#: dns/templates/dns/configureDefaultNameServers.html:18 +#: dns/templates/dns/createDNSZone.html:18 dns/templates/dns/createNameServer.html:18 +#: userManagment/templates/userManagment/modifyUser.html:19 +msgid "Details" +msgstr "Детайли" + +#: dns/templates/dns/configureDefaultNameServers.html:36 +#: dns/templates/dns/createNameServer.html:46 +msgid "First Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:45 +#, fuzzy +#| msgid "Second Nameserver (Back up)" +msgid "Second Nameserver" +msgstr "Втори Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:52 +#, fuzzy +#| msgid "First Nameserver" +msgid "Third Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:59 +#, fuzzy +#| msgid "First Nameserver" +msgid "Forth Nameserver" +msgstr "Първи Nameserver" + +#: dns/templates/dns/configureDefaultNameServers.html:68 +#: emailMarketing/templates/emailMarketing/website.html:656 +#: emailMarketing/templates/emailMarketing/website.html:716 +#: firewall/templates/firewall/secureSSH.html:158 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:346 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:406 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:55 +#: websiteFunctions/templates/websiteFunctions/website.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:654 +msgid "Save" +msgstr "Запази" + +#: dns/templates/dns/createDNSZone.html:3 +msgid "Create DNS Zone - CyberPanel" +msgstr "Създай DNS Зона - CyberPanel" + +#: dns/templates/dns/createDNSZone.html:13 +msgid "" +"This page is used to create DNS zone, to edit dns zone you can visit Modify DNS " +"Zone Page." +msgstr "" +"Тази страница се използва за създаването на DNS зони. За редакция използвайте " +"страницата за редакция на DNS зони." + +#: dns/templates/dns/createDNSZone.html:61 +msgid "Cannot create DNS Zone. Error message:" +msgstr "DNS зоната не е създадена, защото:" + +#: dns/templates/dns/createDNSZone.html:65 +msgid "DNS Zone for domain:" +msgstr "DNS Зона за домейн:" + +#: dns/templates/dns/createNameServer.html:3 +msgid "Create Nameserver - CyberPanel" +msgstr "Създай Nameserver - CyberPanel" + +#: dns/templates/dns/createNameServer.html:62 +msgid "Second Nameserver (Back up)" +msgstr "Втори Nameserver" + +#: dns/templates/dns/createNameServer.html:89 +msgid "Nameserver cannot be created. Error message:" +msgstr "Nameserver не са създадени. Съобшение за грешка:" + +#: dns/templates/dns/createNameServer.html:93 +msgid "The following nameservers were successfully created:" +msgstr "Следните Nameserver са успешно създадени:" + +#: dns/templates/dns/deleteDNSZone.html:3 +msgid "Delete DNS Zone - CyberPanel" +msgstr "Премахни DNS Зона - CyberPanel" + +#: dns/templates/dns/deleteDNSZone.html:12 dns/templates/dns/deleteDNSZone.html:18 +#: userManagment/templates/userManagment/createACL.html:230 +#: userManagment/templates/userManagment/modifyACL.html:234 +msgid "Delete DNS Zone" +msgstr "Премахни DNS Зона" + +#: dns/templates/dns/deleteDNSZone.html:13 +msgid "" +"This page can be used to delete DNS Zone. Deleting the DNS zone will remove all " +"its related records as well." +msgstr "" +"От тази страница може да премахвате DNS зони. Премахването на зона ще премахне и " +"всички свързани с нея записи." + +#: dns/templates/dns/deleteDNSZone.html:37 +msgid "Select Zone" +msgstr "Избери Зона" + +#: dns/templates/dns/deleteDNSZone.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:51 +#: emailMarketing/templates/emailMarketing/sendEmails.html:51 +#: ftp/templates/ftp/deleteFTPAccount.html:73 +#: mailServer/templates/mailServer/deleteEmailAccount.html:82 +#: packages/templates/packages/deletePackage.html:47 +#: userManagment/templates/userManagment/deleteACL.html:49 +#: userManagment/templates/userManagment/deleteUser.html:51 +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:51 +msgid "Are you sure?" +msgstr "Сирен ли си?" + +#: dns/templates/dns/deleteDNSZone.html:69 +msgid "Cannot delete zone. Error message: " +msgstr "Зоната не е премахната. Съобщение за грешка:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "Zone for domain:" +msgstr "Зона за домейн:" + +#: dns/templates/dns/deleteDNSZone.html:73 +msgid "is successfully erased." +msgstr "е успешно заличено." + +#: dns/templates/dns/index.html:3 +msgid "DNS Functions - CyberPanel" +msgstr "DNS Функции - CyberPanel" + +#: dns/templates/dns/index.html:12 +msgid "DNS Functions" +msgstr "DNS Функции" + +#: dns/templates/dns/index.html:13 +msgid "Create, edit and delete DNS zones on this page." +msgstr "Създавай, редактирай или премахвай DNS зони от тази страница." + +#: dns/templates/dns/index.html:53 dns/templates/dns/index.html:108 +msgid "Add Delete Records" +msgstr "Добави Премахни Записи" + +#: dns/templates/dns/index.html:55 dns/templates/dns/index.html:110 +msgid "Add Delete/Records" +msgstr "Добави Премахни/Записи" + +#: dockerManager/templates/dockerManager/images.html:3 +#: dockerManager/templates/dockerManager/manageImages.html:3 +#, fuzzy +#| msgid "Cron Management - CyberPanel" +msgid "Docker Manage Images - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/images.html:14 +#: dockerManager/templates/dockerManager/index.html:39 +#, fuzzy +#| msgid "Create new folder!" +msgid "Create new container" +msgstr "Създай нова директория!" + +#: dockerManager/templates/dockerManager/images.html:15 +msgid "Search new images and manage existing ones" +msgstr "" + +#: dockerManager/templates/dockerManager/images.html:22 +msgid "Locally Available Images" +msgstr "" + +#: dockerManager/templates/dockerManager/images.html:48 +#, fuzzy +#| msgid "Create FTP" +msgid "Create" +msgstr "Създай FTP" + +#: dockerManager/templates/dockerManager/index.html:3 +#, fuzzy +#| msgid "Cron Management - CyberPanel" +msgid "Docker Container Management - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/index.html:13 +#, fuzzy +#| msgid "Version Management" +msgid "Docker Container Management" +msgstr "Мениджър на Версия" + +#: dockerManager/templates/dockerManager/index.html:41 +#, fuzzy +#| msgid "Select Owner" +msgid "New Container" +msgstr "Избери Собственик" + +#: dockerManager/templates/dockerManager/install.html:3 +#, fuzzy +#| msgid "Install Joomla - CyberPanel" +msgid "Install Docker - CyberPanel" +msgstr "Инсталирай Joomla - CyberPanel" + +#: dockerManager/templates/dockerManager/install.html:12 +#: dockerManager/templates/dockerManager/install.html:18 +#, fuzzy +#| msgid "Install Now" +msgid "Install Docker" +msgstr "Инсталирай" + +#: dockerManager/templates/dockerManager/install.html:26 +msgid "" +"Unable to connect to docker daemon, please try restarting docker from service page" +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:28 +msgid "You do not have sufficient permissions to access this page" +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:32 +msgid "" +"Docker is currently not installed on this server. To manage containers, you must " +"first install it." +msgstr "" + +#: dockerManager/templates/dockerManager/install.html:53 +msgid "" +"You do not have permissions to install Docker. Please contact your system " +"administrator" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:3 +#, fuzzy +#| msgid "Create Email Account - CyberPanel" +msgid "Containers List - CyberPanel" +msgstr "Създай Email акаунт - CyberPanel" + +#: dockerManager/templates/dockerManager/listContainers.html:14 +#, fuzzy +#| msgid "List Domains" +msgid "List Containers" +msgstr "Списък с Домейн" + +#: dockerManager/templates/dockerManager/listContainers.html:17 +msgid "Manage containers on server" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:23 +msgid "Containers" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "Unlisted Containers" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:85 +msgid "" +"Containers listed below were either not created through panel or were not saved to " +"database properly" +msgstr "" + +#: dockerManager/templates/dockerManager/listContainers.html:148 +#: dockerManager/templates/dockerManager/runContainer.html:52 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:40 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:56 +msgid "Select Owner" +msgstr "Избери Собственик" + +#: dockerManager/templates/dockerManager/manageImages.html:17 +#, fuzzy +#| msgid "On this page you can configure ModSecurity settings." +msgid "On this page you can manage docker images." +msgstr "От тази страница може да настройте ModSecurity" + +#: dockerManager/templates/dockerManager/manageImages.html:65 +#: dockerManager/templates/dockerManager/manageImages.html:66 +msgid "Images" +msgstr "" + +#: dockerManager/templates/dockerManager/manageImages.html:67 +#, fuzzy +#| msgid "Delete Website" +msgid "Delete unused images" +msgstr "Изтрий Страница" + +#: dockerManager/templates/dockerManager/manageImages.html:95 +msgid "Official image" +msgstr "" + +#: dockerManager/templates/dockerManager/manageImages.html:104 +msgid "Pull" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:3 +#, fuzzy +#| msgid "File Manager - CyberPanel" +msgid "Run new container - CyberPanel" +msgstr "Файл Мениджър - CyberPanel" + +#: dockerManager/templates/dockerManager/runContainer.html:12 +msgid "Run Container" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:13 +msgid "Modify parameters for your new container" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:20 +#, fuzzy +#| msgid "Tuning Details" +msgid "Container Details" +msgstr "Детайли за Настройки" + +#: dockerManager/templates/dockerManager/runContainer.html:36 +#: dockerManager/templates/dockerManager/viewContainer.html:70 +msgid "Image" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:44 +msgid "Tag" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:64 +#: dockerManager/templates/dockerManager/viewContainer.html:206 +#, fuzzy +#| msgid "memory_limit" +msgid "Memory limit" +msgstr "memory_limit" + +#: dockerManager/templates/dockerManager/runContainer.html:104 +#: dockerManager/templates/dockerManager/viewContainer.html:250 +msgid "ENV" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:125 +#: dockerManager/templates/dockerManager/viewContainer.html:283 +msgid "Map Volumes" +msgstr "" + +#: dockerManager/templates/dockerManager/runContainer.html:153 +#: dockerManager/templates/dockerManager/viewContainer.html:310 +#, fuzzy +#| msgid "Add Key" +msgid "Add field" +msgstr "Добави Ключ" + +#: dockerManager/templates/dockerManager/runContainer.html:161 +#, fuzzy +#| msgid "Create Domain" +msgid "Create Container" +msgstr "Създай Домейн" + +#: dockerManager/templates/dockerManager/runContainer.html:180 +#, fuzzy +#| msgid "is successfully created." +msgid "Container succesfully created." +msgstr "е успешно създаден." + +#: dockerManager/templates/dockerManager/runContainer.html:196 +#: emailMarketing/templates/emailMarketing/createEmailList.html:59 +#: emailMarketing/templates/emailMarketing/manageLists.html:100 +#: emailMarketing/templates/emailMarketing/sendEmails.html:135 +#: emailMarketing/templates/emailMarketing/website.html:431 +#: managePHP/templates/managePHP/installExtensions.html:103 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:156 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:111 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:146 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:125 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:111 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:137 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:74 +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:90 +#: websiteFunctions/templates/websiteFunctions/website.html:394 +msgid "Go Back" +msgstr "Назад" + +#: dockerManager/templates/dockerManager/viewContainer.html:3 +#, fuzzy +#| msgid "Home - CyberPanel" +msgid "Container Home - CyberPanel" +msgstr "Начало - CyberPanel" + +#: dockerManager/templates/dockerManager/viewContainer.html:14 +#, fuzzy +#| msgid "Manage Postfix" +msgid "Manage Container" +msgstr "Управлявай Postfix" + +#: dockerManager/templates/dockerManager/viewContainer.html:15 +#, fuzzy +#| msgid "Currently:" +msgid "Currently managing: " +msgstr "В момента" + +#: dockerManager/templates/dockerManager/viewContainer.html:24 +msgid "Container Information" +msgstr "" + +#: dockerManager/templates/dockerManager/viewContainer.html:37 +#, fuzzy +#| msgid "Resource Usage" +msgid "Memory Usage" +msgstr "Използвани ресурси" + +#: dockerManager/templates/dockerManager/viewContainer.html:68 +#, fuzzy +#| msgid "Control DNS" +msgid "Container ID" +msgstr "Контрол на DNS" + +#: dockerManager/templates/dockerManager/viewContainer.html:77 +#, fuzzy +#| msgid "Port" +msgid "Ports" +msgstr "Порт" + +#: dockerManager/templates/dockerManager/viewContainer.html:79 +#, fuzzy +#| msgid "Stop" +msgid "to" +msgstr "Спри" + +#: dockerManager/templates/dockerManager/viewContainer.html:227 +#, fuzzy +#| msgid "Configurations" +msgid "Confirmation" +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:42 +#, fuzzy +#| msgid "Create Alias" +msgid "Create List" +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:33 +msgid "Enable Now." +msgstr "Позволи" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:44 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:43 +#: emailMarketing/templates/emailMarketing/manageSMTPHosts.html:78 +#: userManagment/templates/userManagment/createUser.html:76 +#: userManagment/templates/userManagment/listUsers.html:32 +#: userManagment/templates/userManagment/userProfile.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:69 +msgid "Username" +msgstr "Потребителско Име" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:54 +msgid "Email Marketing Enabled." +msgstr "" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:53 +#: emailPremium/templates/emailPremium/emailLimits.html:159 +#: emailPremium/templates/emailPremium/emailPage.html:55 +#: emailPremium/templates/emailPremium/emailPage.html:61 +#: emailPremium/templates/emailPremium/listDomains.html:62 +#: tuning/templates/tuning/phpTuning.html:94 +#: tuning/templates/tuning/phpTuning.html:234 +msgid "Disable" +msgstr "Забрани" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:56 +msgid "Email Marketing Disabled." +msgstr "" + +#: emailMarketing/templates/emailMarketing/emailMarketing.html:57 +#: emailPremium/templates/emailPremium/emailLimits.html:55 +#: emailPremium/templates/emailPremium/emailLimits.html:161 +#: emailPremium/templates/emailPremium/emailPage.html:57 +#: emailPremium/templates/emailPremium/emailPage.html:63 +#: emailPremium/templates/emailPremium/listDomains.html:64 +#: tuning/templates/tuning/phpTuning.html:93 +#: tuning/templates/tuning/phpTuning.html:233 +msgid "Enable" +msgstr "Позволи" + +#: emailMarketing/templates/emailMarketing/manageLists.html:3 +#, 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:484 +#: filemanager/templates/filemanager/index.html:417 +#: filemanager/templates/filemanager/index.html:460 +#: filemanager/templates/filemanager/index.html:523 +#: filemanager/templates/filemanager/index.html:558 +#: filemanager/templates/filemanager/index.html:588 +#: filemanager/templates/filemanager/index.html:649 +#: websiteFunctions/templates/websiteFunctions/website.html:447 +msgid "Close" +msgstr "Затвори" + +#: emailMarketing/templates/emailMarketing/manageLists.html:55 +#: emailMarketing/templates/emailMarketing/sendEmails.html:55 +#: filemanager/templates/filemanager/index.html:416 +msgid "Confirm" +msgstr "Потвърди" + +#: emailMarketing/templates/emailMarketing/manageLists.html:63 +msgid "Verify This List" +msgstr "" + +#: emailMarketing/templates/emailMarketing/manageLists.html:66 +#, 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/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 +#: userManagment/templates/userManagment/listUsers.html:36 +#, fuzzy +#| msgid "Select Owner" +msgid "Owner" +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:1030 +#: emailMarketing/templates/emailMarketing/website.html:1033 +#: emailMarketing/templates/emailMarketing/website.html:1034 +#: websiteFunctions/templates/websiteFunctions/website.html:956 +#: websiteFunctions/templates/websiteFunctions/website.html:960 +#: websiteFunctions/templates/websiteFunctions/website.html:961 +#, 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 +#: websiteFunctions/templates/websiteFunctions/website.html:677 +#, 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: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:16 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:17 +#: websiteFunctions/templates/websiteFunctions/website.html:16 +msgid "Preview" +msgstr "Покажи" + +#: emailMarketing/templates/emailMarketing/website.html:17 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:18 +#: websiteFunctions/templates/websiteFunctions/website.html:17 +msgid "All functions related to a particular site." +msgstr "Всички функции, които са свързани с определена страница." + +#: emailMarketing/templates/emailMarketing/website.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:28 +#: websiteFunctions/templates/websiteFunctions/website.html:28 +msgid "Resource Usage" +msgstr "Използвани ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:39 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:42 +#: websiteFunctions/templates/websiteFunctions/website.html:42 +msgid "Resource" +msgstr "Ресурси" + +#: emailMarketing/templates/emailMarketing/website.html:41 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:44 +#: websiteFunctions/templates/websiteFunctions/website.html:44 +msgid "Allowed" +msgstr "Позволено" + +#: emailMarketing/templates/emailMarketing/website.html:63 +#: emailMarketing/templates/emailMarketing/website.html:89 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:66 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:92 +#: websiteFunctions/templates/websiteFunctions/website.html:64 +#: websiteFunctions/templates/websiteFunctions/website.html:86 +msgid "Bandwidth Usage" +msgstr "Използван Трафик" + +#: emailMarketing/templates/emailMarketing/website.html:124 +#: emailMarketing/templates/emailMarketing/website.html:127 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:123 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:127 +#: websiteFunctions/templates/websiteFunctions/website.html:112 +#: websiteFunctions/templates/websiteFunctions/website.html:116 +msgid "Load Access Logs" +msgstr "Зареди Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:128 +#: serverLogs/templates/serverLogs/accessLogs.html:16 +#: serverLogs/templates/serverLogs/index.html:25 +#: serverLogs/templates/serverLogs/index.html:28 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:128 +#: websiteFunctions/templates/websiteFunctions/website.html:117 +msgid "Access Logs" +msgstr "Access Логове" + +#: emailMarketing/templates/emailMarketing/website.html:135 +#: emailMarketing/templates/emailMarketing/website.html:138 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:133 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:137 +#: websiteFunctions/templates/websiteFunctions/website.html:121 +#: websiteFunctions/templates/websiteFunctions/website.html:125 +msgid "Load Error Logs" +msgstr "Зареди Error Логове" + +#: emailMarketing/templates/emailMarketing/website.html:150 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:147 +#: websiteFunctions/templates/websiteFunctions/website.html:133 +msgid "Logs Fetched" +msgstr "Логовете са изтеглени" + +#: emailMarketing/templates/emailMarketing/website.html:155 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:152 +#: websiteFunctions/templates/websiteFunctions/website.html:136 +msgid "Could not fetch logs, see the logs file through command line. Error message:" +msgstr "" +"Лог файловете не са извлечени. Използвайте терминала за техния преглед. Съобщение " +"за грешка: " + +#: emailMarketing/templates/emailMarketing/website.html:179 +#: emailMarketing/templates/emailMarketing/website.html:221 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:176 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:219 +#: websiteFunctions/templates/websiteFunctions/website.html:154 +#: websiteFunctions/templates/websiteFunctions/website.html:199 +msgid "Next" +msgstr "Следваща" + +#: emailMarketing/templates/emailMarketing/website.html:181 +#: emailMarketing/templates/emailMarketing/website.html:223 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:178 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:221 +#: websiteFunctions/templates/websiteFunctions/website.html:156 +#: websiteFunctions/templates/websiteFunctions/website.html:201 +msgid "Previous" +msgstr "Минала" + +#: emailMarketing/templates/emailMarketing/website.html:254 +#: emailPremium/templates/emailPremium/listDomains.html:22 +#: packages/templates/packages/createPackage.html:36 +#: packages/templates/packages/listPackages.html:93 +#: packages/templates/packages/modifyPackage.html:40 +#: websiteFunctions/templates/websiteFunctions/website.html:225 +msgid "Domains" +msgstr "Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:262 +#: emailMarketing/templates/emailMarketing/website.html:265 +#: emailMarketing/templates/emailMarketing/website.html:266 +#: emailMarketing/templates/emailMarketing/website.html:267 +#: websiteFunctions/templates/websiteFunctions/website.html:230 +#: websiteFunctions/templates/websiteFunctions/website.html:233 +#: websiteFunctions/templates/websiteFunctions/website.html:234 +#: websiteFunctions/templates/websiteFunctions/website.html:235 +msgid "Add Domains" +msgstr "Добави Домейни" + +#: emailMarketing/templates/emailMarketing/website.html:274 +#: emailMarketing/templates/emailMarketing/website.html:275 +#: emailMarketing/templates/emailMarketing/website.html:278 +#: emailMarketing/templates/emailMarketing/website.html:279 +#: emailMarketing/templates/emailMarketing/website.html:280 +#: emailMarketing/templates/emailMarketing/website.html:300 +#: emailMarketing/templates/emailMarketing/website.html:303 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: websiteFunctions/templates/websiteFunctions/website.html:240 +#: websiteFunctions/templates/websiteFunctions/website.html:241 +#: websiteFunctions/templates/websiteFunctions/website.html:244 +#: websiteFunctions/templates/websiteFunctions/website.html:245 +#: websiteFunctions/templates/websiteFunctions/website.html:246 +#: websiteFunctions/templates/websiteFunctions/website.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:266 +msgid "List Domains" +msgstr "Списък с Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:286 +#: emailMarketing/templates/emailMarketing/website.html:287 +#: emailMarketing/templates/emailMarketing/website.html:290 +#: emailMarketing/templates/emailMarketing/website.html:291 +#: emailMarketing/templates/emailMarketing/website.html:292 +#: websiteFunctions/templates/websiteFunctions/website.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:252 +#: websiteFunctions/templates/websiteFunctions/website.html:255 +#: websiteFunctions/templates/websiteFunctions/website.html:256 +#: websiteFunctions/templates/websiteFunctions/website.html:257 +msgid "Domain Alias" +msgstr "Domain Alias" + +#: emailMarketing/templates/emailMarketing/website.html:299 +#: emailMarketing/templates/emailMarketing/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:262 +#: websiteFunctions/templates/websiteFunctions/website.html:267 +msgid "Add new Cron Job" +msgstr "Добави нова Cron Job" + +#: emailMarketing/templates/emailMarketing/website.html:305 +#: websiteFunctions/templates/websiteFunctions/website.html:268 +msgid "Cron Jobs" +msgstr "Cron Jobs" + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "This path is relative to: " +msgstr "Този път е относим към: " + +#: emailMarketing/templates/emailMarketing/website.html:332 +#: websiteFunctions/templates/websiteFunctions/website.html:295 +msgid "Leave empty to set default." +msgstr "Отсави празни за по-подразбиране" + +#: emailMarketing/templates/emailMarketing/website.html:336 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:57 +#: websiteFunctions/templates/websiteFunctions/website.html:299 +msgid "Invalid Domain (Note: You don't need to add 'http' or 'https')" +msgstr "" +"Невалиден домейн (Забележка: Не е необходимо да поставяте 'http' или 'https')" + +#: emailMarketing/templates/emailMarketing/website.html:341 +#: emailMarketing/templates/emailMarketing/website.html:794 +#: managePHP/templates/managePHP/editPHPConfig.html:49 +#: managePHP/templates/managePHP/editPHPConfig.html:177 +#: managePHP/templates/managePHP/installExtensions.html:29 +#: tuning/templates/tuning/phpTuning.html:166 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:70 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:480 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:74 +#: websiteFunctions/templates/websiteFunctions/website.html:304 +#: websiteFunctions/templates/websiteFunctions/website.html:737 +msgid "Select PHP" +msgstr "Избери PHP" + +#: emailMarketing/templates/emailMarketing/website.html:354 +#: packages/templates/packages/createPackage.html:84 +#: packages/templates/packages/modifyPackage.html:87 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:81 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:86 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:75 +#: websiteFunctions/templates/websiteFunctions/website.html:317 +msgid "Additional Features" +msgstr "Допълнителни функции" + +#: emailMarketing/templates/emailMarketing/website.html:388 +#: websiteFunctions/templates/websiteFunctions/website.html:351 +msgid "Create Domain" +msgstr "Създай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:415 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:140 +#: websiteFunctions/templates/websiteFunctions/website.html:378 +msgid "Website succesfully created." +msgstr "Сайтът е успешно създаден." + +#: emailMarketing/templates/emailMarketing/website.html:449 +#: websiteFunctions/templates/websiteFunctions/website.html:412 +msgid "PHP Version Changed to:" +msgstr "PHP Версията е променена на:" + +#: emailMarketing/templates/emailMarketing/website.html:453 +#: websiteFunctions/templates/websiteFunctions/website.html:416 +msgid "Deleted:" +msgstr "Изтрит:" + +#: emailMarketing/templates/emailMarketing/website.html:457 +#: websiteFunctions/templates/websiteFunctions/website.html:420 +msgid "SSL Issued:" +msgstr "SSL издаден за: " + +#: emailMarketing/templates/emailMarketing/website.html:461 +#: websiteFunctions/templates/websiteFunctions/website.html:424 +msgid "Changes applied successfully." +msgstr "Промените са запаметени успешно." + +#: emailMarketing/templates/emailMarketing/website.html:528 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:53 +#: websiteFunctions/templates/websiteFunctions/website.html:492 +msgid "Issue" +msgstr "Издаден" + +#: emailMarketing/templates/emailMarketing/website.html:558 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:251 +#: websiteFunctions/templates/websiteFunctions/website.html:520 +msgid "Configurations" +msgstr "Конфигурация" + +#: emailMarketing/templates/emailMarketing/website.html:568 +#: emailMarketing/templates/emailMarketing/website.html:572 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:259 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:263 +#: websiteFunctions/templates/websiteFunctions/website.html:526 +#: websiteFunctions/templates/websiteFunctions/website.html:530 +msgid "Edit vHost Main Configurations" +msgstr "Редактирай vHost Main Configurations" + +#: emailMarketing/templates/emailMarketing/website.html:573 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:264 +#: websiteFunctions/templates/websiteFunctions/website.html:531 +msgid "vHost Conf" +msgstr "vHost Conf" + +#: emailMarketing/templates/emailMarketing/website.html:582 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:272 +#: websiteFunctions/templates/websiteFunctions/website.html:537 +msgid "Add Rewrite Rules (.htaccess)" +msgstr "Добави Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:586 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:276 +#: websiteFunctions/templates/websiteFunctions/website.html:541 +msgid "Rewrite Rules (.htaccess)" +msgstr "Rewrite Rules (.htaccess)" + +#: emailMarketing/templates/emailMarketing/website.html:587 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:277 +#: websiteFunctions/templates/websiteFunctions/website.html:542 +msgid "Rewrite Rules" +msgstr "Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:595 +#: emailMarketing/templates/emailMarketing/website.html:598 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:284 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:288 +#: websiteFunctions/templates/websiteFunctions/website.html:547 +#: websiteFunctions/templates/websiteFunctions/website.html:550 +msgid "Add Your Own SSL" +msgstr "Добави свой SSL" + +#: emailMarketing/templates/emailMarketing/website.html:599 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:289 +#: websiteFunctions/templates/websiteFunctions/website.html:551 +msgid "Add SSL" +msgstr "Добави SSL" + +#: emailMarketing/templates/emailMarketing/website.html:607 +#: emailMarketing/templates/emailMarketing/website.html:610 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:296 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:300 +#: websiteFunctions/templates/websiteFunctions/website.html:556 +#: websiteFunctions/templates/websiteFunctions/website.html:559 +msgid "Change PHP Version" +msgstr "Промени PHP Версия" + +#: emailMarketing/templates/emailMarketing/website.html:611 +#: emailMarketing/templates/emailMarketing/website.html:815 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:301 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:501 +#: websiteFunctions/templates/websiteFunctions/website.html:560 +#: websiteFunctions/templates/websiteFunctions/website.html:758 +msgid "Change PHP" +msgstr "Промени PHP" + +#: emailMarketing/templates/emailMarketing/website.html:623 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:313 +#: websiteFunctions/templates/websiteFunctions/website.html:571 +msgid "SSL Saved" +msgstr "SSL Запазен" + +#: emailMarketing/templates/emailMarketing/website.html:628 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:318 +#: websiteFunctions/templates/websiteFunctions/website.html:576 +msgid "Could not save SSL. Error message:" +msgstr "SSL не е запазен, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:678 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:368 +#: websiteFunctions/templates/websiteFunctions/website.html:619 +msgid "Current configuration in the file fetched." +msgstr "Текущата конфигурация във файла е изтеглена" + +#: emailMarketing/templates/emailMarketing/website.html:683 +#: emailMarketing/templates/emailMarketing/website.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:373 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:387 +#: websiteFunctions/templates/websiteFunctions/website.html:623 +#: websiteFunctions/templates/websiteFunctions/website.html:636 +msgid "Could not fetch current configuration. Error message:" +msgstr "Текущата конфигурация не е изтеглена, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:693 +#: emailMarketing/templates/emailMarketing/website.html:753 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:383 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:439 +#: websiteFunctions/templates/websiteFunctions/website.html:632 +#: websiteFunctions/templates/websiteFunctions/website.html:699 +msgid "Configurations saved." +msgstr "Конфигурацията е запазена." + +#: emailMarketing/templates/emailMarketing/website.html:734 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:424 +msgid "Current rewrite rules in the file fetched." +msgstr "Наличните rewrite rules са изтеглени." + +#: emailMarketing/templates/emailMarketing/website.html:743 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:429 +#: websiteFunctions/templates/websiteFunctions/website.html:690 +msgid "Could not fetch current rewrite rules. Error message:" +msgstr "Наличните rewrite rules не са изтеглени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:757 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:443 +#: websiteFunctions/templates/websiteFunctions/website.html:703 +msgid "Could not save rewrite rules. Error message:" +msgstr "Новите rewrite rules не са запаметени, защото:" + +#: emailMarketing/templates/emailMarketing/website.html:776 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:462 +#: websiteFunctions/templates/websiteFunctions/website.html:721 +msgid "Save Rewrite Rules" +msgstr "Запази Rewrite Rules" + +#: emailMarketing/templates/emailMarketing/website.html:825 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:511 +#: websiteFunctions/templates/websiteFunctions/website.html:768 +msgid "Failed to change PHP version. Error message:" +msgstr "PHP Версията не е променена. Съобщение за грешка:" + +#: emailMarketing/templates/emailMarketing/website.html:830 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:516 +#: websiteFunctions/templates/websiteFunctions/website.html:773 +msgid "PHP successfully changed for: " +msgstr "PHP е успешно сменена за:" + +#: emailMarketing/templates/emailMarketing/website.html:855 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:541 +#: websiteFunctions/templates/websiteFunctions/website.html:795 +msgid "Files" +msgstr "Файлове" + +#: emailMarketing/templates/emailMarketing/website.html:863 +#: emailMarketing/templates/emailMarketing/website.html:866 +#: emailMarketing/templates/emailMarketing/website.html:867 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:549 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:552 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:553 +#: websiteFunctions/templates/websiteFunctions/website.html:800 +#: websiteFunctions/templates/websiteFunctions/website.html:803 +#: websiteFunctions/templates/websiteFunctions/website.html:804 +msgid "File Manager" +msgstr "Файл Мениджър" + +#: emailMarketing/templates/emailMarketing/website.html:874 +#: emailMarketing/templates/emailMarketing/website.html:877 +#: emailMarketing/templates/emailMarketing/website.html:915 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:560 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:563 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:604 +#: websiteFunctions/templates/websiteFunctions/website.html:809 +#: websiteFunctions/templates/websiteFunctions/website.html:812 +#: websiteFunctions/templates/websiteFunctions/website.html:845 +msgid "open_basedir Protection" +msgstr "open_basedir Защита" + +#: emailMarketing/templates/emailMarketing/website.html:878 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:564 +#: websiteFunctions/templates/websiteFunctions/website.html:813 +msgid "open_basedir" +msgstr "open_basedir" + +#: emailMarketing/templates/emailMarketing/website.html:890 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:577 +#: websiteFunctions/templates/websiteFunctions/website.html:825 +msgid "Create FTP Acct" +msgstr "Създай FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:902 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:589 +#: websiteFunctions/templates/websiteFunctions/website.html:834 +msgid "Delete FTP Acct" +msgstr "Изтрий FTP Акаунт" + +#: emailMarketing/templates/emailMarketing/website.html:939 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:628 +#: websiteFunctions/templates/websiteFunctions/website.html:868 +msgid "Apply Changes" +msgstr "Запази промените" + +#: emailMarketing/templates/emailMarketing/website.html:951 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:640 +#: websiteFunctions/templates/websiteFunctions/website.html:880 +msgid "Changes successfully saved." +msgstr "Промените са успешно добавени." + +#: emailMarketing/templates/emailMarketing/website.html:986 +#: emailMarketing/templates/emailMarketing/website.html:989 +#: emailMarketing/templates/emailMarketing/website.html:990 +#: websiteFunctions/templates/websiteFunctions/website.html:915 +#: websiteFunctions/templates/websiteFunctions/website.html:919 +#: websiteFunctions/templates/websiteFunctions/website.html:920 +#, fuzzy +#| msgid "Create Alias" +msgid "Create Lists" +msgstr "Паркирай Домейн" + +#: emailMarketing/templates/emailMarketing/website.html:997 +#: emailMarketing/templates/emailMarketing/website.html:1000 +#: emailMarketing/templates/emailMarketing/website.html:1001 +#: websiteFunctions/templates/websiteFunctions/website.html:925 +#: websiteFunctions/templates/websiteFunctions/website.html:929 +#: websiteFunctions/templates/websiteFunctions/website.html:930 +#, fuzzy +#| msgid "Manage SSL" +msgid "Manage Lists" +msgstr "Нов SSL" + +#: emailMarketing/templates/emailMarketing/website.html:1008 +#: emailMarketing/templates/emailMarketing/website.html:1011 +#: emailMarketing/templates/emailMarketing/website.html:1012 +#: websiteFunctions/templates/websiteFunctions/website.html:935 +#: websiteFunctions/templates/websiteFunctions/website.html:939 +#: websiteFunctions/templates/websiteFunctions/website.html:940 +msgid "SMTP Hosts" +msgstr "" + +#: emailMarketing/templates/emailMarketing/website.html:1019 +#: emailMarketing/templates/emailMarketing/website.html:1022 +#: websiteFunctions/templates/websiteFunctions/website.html:945 +#: websiteFunctions/templates/websiteFunctions/website.html:950 +#, fuzzy +#| msgid "Compress" +msgid "Compose Message" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:1023 +#: websiteFunctions/templates/websiteFunctions/website.html:951 +#, fuzzy +#| msgid "Compress" +msgid "Compose" +msgstr "Компресирай" + +#: emailMarketing/templates/emailMarketing/website.html:1050 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:14 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:22 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:666 +#: websiteFunctions/templates/websiteFunctions/website.html:977 +msgid "Application Installer" +msgstr "Инсталатор на Приложения" + +#: emailMarketing/templates/emailMarketing/website.html:1061 +#: emailMarketing/templates/emailMarketing/website.html:1065 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:28 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:31 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:34 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:677 +#: websiteFunctions/templates/websiteFunctions/website.html:985 +#: websiteFunctions/templates/websiteFunctions/website.html:989 +msgid "Install wordpress with LSCache" +msgstr "Инсталирай Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1066 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:35 +msgid "Wordpress with LSCache" +msgstr "Wordpress с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1075 +#: emailMarketing/templates/emailMarketing/website.html:1079 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:44 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:47 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:685 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:689 +#: websiteFunctions/templates/websiteFunctions/website.html:996 +#: websiteFunctions/templates/websiteFunctions/website.html:1000 +msgid "Install Joomla with LSCache" +msgstr "Инсталирай Joomla с LSCache" + +#: emailMarketing/templates/emailMarketing/website.html:1080 +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:48 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:690 +#: websiteFunctions/templates/websiteFunctions/website.html:1001 +msgid "Joomla" +msgstr "Joomla" + +#: emailMarketing/templates/emailMarketing/website.html:1089 +#: emailMarketing/templates/emailMarketing/website.html:1093 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:697 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:701 +#: websiteFunctions/templates/websiteFunctions/website.html:1007 +#: websiteFunctions/templates/websiteFunctions/website.html:1011 +msgid "Attach Git with this website!" +msgstr "Закачи Git към този уебсайт!" + +#: emailMarketing/templates/emailMarketing/website.html:1094 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:702 +#: websiteFunctions/templates/websiteFunctions/website.html:1012 +msgid "Git" +msgstr "Git" + +#: emailMarketing/templates/emailMarketing/website.html:1103 +#: emailMarketing/templates/emailMarketing/website.html:1107 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:711 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:715 +#: websiteFunctions/templates/websiteFunctions/website.html:1018 +#: websiteFunctions/templates/websiteFunctions/website.html:1022 +msgid "Install Prestashop" +msgstr "Инсталирай Prestashop" + +#: emailMarketing/templates/emailMarketing/website.html:1108 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:716 +#: websiteFunctions/templates/websiteFunctions/website.html:1023 +msgid "Prestashop" +msgstr "Prestashop" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:3 +#: firewall/templates/firewall/spamassassin.html:3 +msgid "SpamAssassin - CyberPanel" +msgstr "SpamAssassin - CyberPanel" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:13 +#: firewall/templates/firewall/spamassassin.html:13 +msgid "SpamAssassin Configurations!" +msgstr "SpamAssassin Конфигурация" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:17 +msgid "SpamAssassin Docs" +msgstr "SpamAssassin Документация" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:19 +#: firewall/templates/firewall/spamassassin.html:14 +msgid "On this page you can configure SpamAssassin settings." +msgstr "От тази страница може да настройте SpamAssassin." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:34 +msgid "SpamAssassin is not installed " +msgstr "SpamAssassin не е инсталиран" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:37 +#: firewall/templates/firewall/csf.html:31 +#: firewall/templates/firewall/modSecurity.html:35 +#: firewall/templates/firewall/modSecurity.html:231 +#: firewall/templates/firewall/modSecurityRules.html:73 +#: firewall/templates/firewall/modSecurityRulesPacks.html:31 +#: firewall/templates/firewall/spamassassin.html:31 +msgid "Install Now." +msgstr "Инсталирай" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:49 +#: firewall/templates/firewall/csf.html:43 +#: firewall/templates/firewall/modSecurity.html:47 +#: firewall/templates/firewall/modSecurity.html:244 +#: firewall/templates/firewall/spamassassin.html:43 +msgid "Failed to start installation, Error message: " +msgstr "Неуспешно стартиране на инсталацията. Съобщение за грешка:" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:54 +#: emailPremium/templates/emailPremium/SpamAssassin.html:146 +#: emailPremium/templates/emailPremium/policyServer.html:60 +#: firewall/templates/firewall/csf.html:47 +#: firewall/templates/firewall/modSecurity.html:53 +#: firewall/templates/firewall/modSecurity.html:183 +#: firewall/templates/firewall/modSecurity.html:249 +#: firewall/templates/firewall/modSecurity.html:371 +#: firewall/templates/firewall/modSecurityRules.html:53 +#: firewall/templates/firewall/modSecurityRulesPacks.html:88 +#: firewall/templates/firewall/secureSSH.html:87 +#: firewall/templates/firewall/secureSSH.html:172 +#: firewall/templates/firewall/spamassassin.html:47 +#: firewall/templates/firewall/spamassassin.html:177 +#: mailServer/templates/mailServer/dkimManager.html:44 +#: managePHP/templates/managePHP/editPHPConfig.html:157 +#: managePHP/templates/managePHP/editPHPConfig.html:223 +#: managePHP/templates/managePHP/installExtensions.html:124 +#: manageServices/templates/manageServices/managePostfix.html:59 +#: manageServices/templates/manageServices/managePowerDNS.html:130 +#: manageServices/templates/manageServices/managePureFtpd.html:59 +msgid "Could not connect. Please refresh this page." +msgstr "Не можем да се свържем, моля презаредете страницата." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:58 +#: firewall/templates/firewall/csf.html:51 +#: firewall/templates/firewall/modSecurity.html:57 +#: firewall/templates/firewall/modSecurity.html:253 +#: firewall/templates/firewall/spamassassin.html:51 +msgid "Installation failed." +msgstr "Инсталацията не завърши успешно." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:62 +msgid "SpamAssassin successfully installed, refreshing page in 3 seconds.." +msgstr "" +"SpamAssassin е успешно инсталиран. Страницата ще се презареди след 3 секунди.." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:74 +msgid "Winter is coming, but so is SpamAssassin." +msgstr "Зимата идва ... както и SpamAssassin." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:126 +#: firewall/templates/firewall/modSecurity.html:163 +#: firewall/templates/firewall/modSecurity.html:351 +#: firewall/templates/firewall/spamassassin.html:157 +msgid "Save changes." +msgstr "Запази промените." + +#: emailPremium/templates/emailPremium/SpamAssassin.html:137 +msgid "Failed to save SpamAssassin configurations. Error message: " +msgstr "Промените на SpamAssassin не са запазени. Съобщение за грешка :" + +#: emailPremium/templates/emailPremium/SpamAssassin.html:142 +msgid "SpamAssassin configurations successfully saved." +msgstr "SpamAssassin конфигурация е успешно променена." + +#: emailPremium/templates/emailPremium/emailLimits.html:13 +#: emailPremium/templates/emailPremium/listDomains.html:14 +#: emailPremium/templates/emailPremium/policyServer.html:13 +#, fuzzy +#| msgid "Emai Limits Docs" +msgid "Email Limits Docs" +msgstr "Email лимити документация" + +#: emailPremium/templates/emailPremium/emailLimits.html:14 +msgid "View and change email limits for a domain name." +msgstr "Преглед и редакция на email лимити за домейн." + +#: emailPremium/templates/emailPremium/emailLimits.html:25 +msgid "Domain Resource Usage" +msgstr "Използвани ресурси" + +#: emailPremium/templates/emailPremium/emailLimits.html:52 +#: emailPremium/templates/emailPremium/emailLimits.html:158 +#: emailPremium/templates/emailPremium/emailPage.html:54 +#: emailPremium/templates/emailPremium/listDomains.html:61 +msgid "Limits are being Applied!" +msgstr "Лимитите са зададени!" + +#: emailPremium/templates/emailPremium/emailLimits.html:54 +#: emailPremium/templates/emailPremium/emailLimits.html:160 +#: emailPremium/templates/emailPremium/emailPage.html:56 +#: emailPremium/templates/emailPremium/listDomains.html:63 +msgid "Limits are not being applied!" +msgstr "Лимитите не са променени!" + +#: emailPremium/templates/emailPremium/emailLimits.html:58 +#: emailPremium/templates/emailPremium/emailPage.html:66 +#: filemanager/templates/filemanager/index.html:79 +#: filemanager/templates/filemanager/index.html:699 +#: packages/templates/packages/listPackages.html:60 +#: userManagment/templates/userManagment/listUsers.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:66 +msgid "Edit" +msgstr "Редакция" + +#: emailPremium/templates/emailPremium/emailLimits.html:70 +#: emailPremium/templates/emailPremium/emailPage.html:78 +msgid "Monthly Limit" +msgstr "Месечен лимит" + +#: emailPremium/templates/emailPremium/emailLimits.html:83 +#: emailPremium/templates/emailPremium/emailPage.html:101 +msgid "Change Limits" +msgstr "Промени лимити" + +#: emailPremium/templates/emailPremium/emailLimits.html:93 +#: emailPremium/templates/emailPremium/emailPage.html:111 +msgid "Can not change limits. Error message:" +msgstr "Лимитите не са променени. Грешка:" + +#: emailPremium/templates/emailPremium/emailLimits.html:97 +msgid "Limits successfully changed, refreshing in 3 seconds." +msgstr "Лимитите са успешно променени. Страницата ще се презареди след 3 секунди." + +#: emailPremium/templates/emailPremium/emailLimits.html:126 +#: emailPremium/templates/emailPremium/emailPage.html:25 +msgid "Email Resource Usage" +msgstr "Email използвани ресурси" + +#: emailPremium/templates/emailPremium/emailLimits.html:133 +msgid "Search Emails.." +msgstr "Търси Email..." + +#: emailPremium/templates/emailPremium/emailLimits.html:164 +#: emailPremium/templates/emailPremium/listDomains.html:67 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:207 +msgid "Manage" +msgstr "Управлявай" + +#: emailPremium/templates/emailPremium/emailPage.html:13 +msgid "Emai Limits Docs" +msgstr "Email лимити документация" + +#: emailPremium/templates/emailPremium/emailPage.html:14 +msgid "View and change limits for an Email Address." +msgstr "Прегледай и промени лимити за Email адрес." + +#: emailPremium/templates/emailPremium/emailPage.html:60 +msgid "Logging in ON!" +msgstr "Логването е включено!" + +#: emailPremium/templates/emailPremium/emailPage.html:62 +msgid "Logging is Off" +msgstr "Логването е спряно!" + +#: emailPremium/templates/emailPremium/emailPage.html:88 +msgid "Hourly Limit" +msgstr "Часови лимит" + +#: emailPremium/templates/emailPremium/emailPage.html:115 +msgid "Limits successfully changed." +msgstr "Лимитите са успешно променени." + +#: emailPremium/templates/emailPremium/emailPage.html:151 +msgid "Search Emails Logs.." +msgstr "Търси Emails логове." + +#: emailPremium/templates/emailPremium/emailPage.html:155 +msgid "Flush Logs" +msgstr "Опресни логове" + +#: emailPremium/templates/emailPremium/listDomains.html:3 +msgid "Domains - CyberPanel" +msgstr "Домейни - CyberPanel" + +#: emailPremium/templates/emailPremium/listDomains.html:15 +msgid "On this page you manage emails limits for Domains/Email Addresses" +msgstr "От тази страница може да управлявате лимитите за Домейни/Email адреси." + +#: emailPremium/templates/emailPremium/policyServer.html:3 +msgid "Email Policy Server - CyberPanel" +msgstr "Email Policy Server - CyberPanel" + +#: emailPremium/templates/emailPremium/policyServer.html:13 +msgid "Email Policy Server Configurations!" +msgstr "Email Policy Server Конфигурация!" + +#: emailPremium/templates/emailPremium/policyServer.html:14 +msgid "Turn ON Email Policy Server to use Email Limits Feature. " +msgstr "Включете Email Policy Server за да използвате Лимитите за Emails." + +#: emailPremium/templates/emailPremium/policyServer.html:40 +#: manageServices/templates/manageServices/managePostfix.html:41 +#: manageServices/templates/manageServices/managePowerDNS.html:112 +#: manageServices/templates/manageServices/managePureFtpd.html:41 +#, fuzzy +#| msgid "Save changes." +msgid "Save changes" +msgstr "Запази промените." + +#: emailPremium/templates/emailPremium/policyServer.html:52 +#: firewall/templates/firewall/secureSSH.html:78 +#: mailServer/templates/mailServer/dkimManager.html:40 +#: managePHP/templates/managePHP/editPHPConfig.html:148 +#: manageServices/templates/manageServices/managePostfix.html:51 +#: manageServices/templates/manageServices/managePowerDNS.html:122 +#: manageServices/templates/manageServices/managePureFtpd.html:51 +msgid "Error message: " +msgstr "Error Съобщение" + +#: emailPremium/templates/emailPremium/policyServer.html:56 +#: manageServices/templates/manageServices/managePostfix.html:55 +#: manageServices/templates/manageServices/managePowerDNS.html:126 +#: manageServices/templates/manageServices/managePureFtpd.html:55 +msgid "Changes successfully applied." +msgstr "Промените са успешно въведени." + +#: filemanager/templates/filemanager/index.html:5 +msgid "File Manager - CyberPanel" +msgstr "Файл Мениджър - CyberPanel" + +#: filemanager/templates/filemanager/index.html:54 +msgid " File Manager" +msgstr "Файл Мениджър" + +#: filemanager/templates/filemanager/index.html:58 +#: filemanager/templates/filemanager/index.html:197 +#: filemanager/templates/filemanager/index.html:227 +msgid "Upload" +msgstr "Качи" + +#: filemanager/templates/filemanager/index.html:61 +msgid "New File" +msgstr "Нов файл" + +#: filemanager/templates/filemanager/index.html:64 +msgid "New Folder" +msgstr "Нова директория" + +#: filemanager/templates/filemanager/index.html:70 +#: filemanager/templates/filemanager/index.html:557 +#: filemanager/templates/filemanager/index.html:693 +msgid "Copy" +msgstr "копирай" + +#: filemanager/templates/filemanager/index.html:73 +#: filemanager/templates/filemanager/index.html:522 +#: filemanager/templates/filemanager/index.html:691 +msgid "Move" +msgstr "Премести" + +#: filemanager/templates/filemanager/index.html:76 +#: filemanager/templates/filemanager/index.html:587 +#: filemanager/templates/filemanager/index.html:694 +msgid "Rename" +msgstr "Преименувай" + +#: filemanager/templates/filemanager/index.html:82 +#: filemanager/templates/filemanager/index.html:432 +#: filemanager/templates/filemanager/index.html:459 +#: filemanager/templates/filemanager/index.html:697 +msgid "Compress" +msgstr "Компресирай" + +#: filemanager/templates/filemanager/index.html:85 +#: filemanager/templates/filemanager/index.html:487 +#: filemanager/templates/filemanager/index.html:698 +msgid "Extract" +msgstr "Разархивирай" + +#: filemanager/templates/filemanager/index.html:88 +msgid "Fix Permissions" +msgstr "Поправи права" + +#: filemanager/templates/filemanager/index.html:113 +msgid "Current Path" +msgstr "Текущ път" + +#: filemanager/templates/filemanager/index.html:138 +msgid "Back" +msgstr "Назад" + +#: filemanager/templates/filemanager/index.html:142 +#: serverLogs/templates/serverLogs/accessLogs.html:38 +#: serverLogs/templates/serverLogs/emailLogs.html:39 +#: serverLogs/templates/serverLogs/errorLogs.html:35 +#: serverLogs/templates/serverLogs/ftplogs.html:35 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:36 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:37 +#: websiteFunctions/templates/websiteFunctions/listCron.html:36 +msgid "Refresh" +msgstr "Презареди" + +#: filemanager/templates/filemanager/index.html:146 +msgid "Select All" +msgstr "Избери всички" + +#: filemanager/templates/filemanager/index.html:150 +msgid "UnSelect All" +msgstr "Деселектирайте всички" + +#: filemanager/templates/filemanager/index.html:159 +msgid "Size (KB)" +msgstr "Размер (KB)" + +#: filemanager/templates/filemanager/index.html:160 +msgid "Last Modified" +msgstr "Последна промяна" + +#: filemanager/templates/filemanager/index.html:161 +msgid "Permissions" +msgstr "Права" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload File" +msgstr "Качи файл" + +#: filemanager/templates/filemanager/index.html:181 +msgid "Upload Limits" +msgstr "Ограничение за качване" + +#: filemanager/templates/filemanager/index.html:187 +msgid "Upload queue" +msgstr "Опашна на качване" + +#: filemanager/templates/filemanager/index.html:188 +msgid "Queue length:" +msgstr "Дължина на опашката: " + +#: filemanager/templates/filemanager/index.html:192 +msgid "Drop" +msgstr "Постави" + +#: filemanager/templates/filemanager/index.html:193 +msgid "Drop Files here to upload them." +msgstr "Постави файловете за качване тук." + +#: filemanager/templates/filemanager/index.html:205 +msgid "Progress" +msgstr "Прогрес" + +#: filemanager/templates/filemanager/index.html:233 +msgid "Remove" +msgstr "Премахни" + +#: filemanager/templates/filemanager/index.html:243 +msgid "Queue progress:" +msgstr "Прогрес на опашката:" + +#: filemanager/templates/filemanager/index.html:252 +msgid "can not be uploaded, Error message:" +msgstr "Настройките не са въведени, защото:" + +#: filemanager/templates/filemanager/index.html:256 +msgid "Upload all" +msgstr "Качи всички" + +#: filemanager/templates/filemanager/index.html:259 +msgid "Cancel all" +msgstr "Откажи всички" + +#: filemanager/templates/filemanager/index.html:262 +msgid "Remove all" +msgstr "Премахни всички" + +#: filemanager/templates/filemanager/index.html:298 +msgid "File Successfully saved." +msgstr "Файловете са успешно запазени." + +#: filemanager/templates/filemanager/index.html:305 +#: firewall/templates/firewall/secureSSH.html:68 +#: managePHP/templates/managePHP/editPHPConfig.html:138 +#: managePHP/templates/managePHP/editPHPConfig.html:205 +#: userManagment/templates/userManagment/apiAccess.html:53 +#: userManagment/templates/userManagment/modifyACL.html:436 +#: userManagment/templates/userManagment/resellerCenter.html:58 +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:42 +msgid "Save Changes" +msgstr "Запази промените" + +#: filemanager/templates/filemanager/index.html:322 +msgid "Create new folder!" +msgstr "Създай нова директория!" + +#: filemanager/templates/filemanager/index.html:330 +msgid "New Folder Name" +msgstr "Име на директория" + +#: filemanager/templates/filemanager/index.html:332 +msgid "Folder will be created in your current directory" +msgstr "Директорията ще бъде създадена където се намирате в този момент" + +#: filemanager/templates/filemanager/index.html:334 +msgid "Create Folder" +msgstr "Създай директория" + +#: filemanager/templates/filemanager/index.html:347 +msgid "Folder Successfully created." +msgstr "Директорията е успешно създадена." + +#: filemanager/templates/filemanager/index.html:366 +msgid "Create new file!" +msgstr "Създай нов файл!" + +#: filemanager/templates/filemanager/index.html:374 +msgid "New File Name" +msgstr "Име на файл" + +#: filemanager/templates/filemanager/index.html:376 +msgid "" +"File will be created in your current directory, if it already exists it will not " +"overwirte." +msgstr "" +"Файловете ще бъдат създадени в текущата директория. Ако те вече съществуват няма " +"да бъдат презаписани." + +#: filemanager/templates/filemanager/index.html:378 +msgid "Create File" +msgstr "Създай файл" + +#: filemanager/templates/filemanager/index.html:391 +msgid "File Successfully created." +msgstr "Файлът е успешно създаден." + +#: filemanager/templates/filemanager/index.html:407 +msgid "Confirm Deletion!" +msgstr "Потвърди изтриването!" + +#: filemanager/templates/filemanager/index.html:440 +msgid "List of files/folder!" +msgstr "Списък на файлове/директории!" + +#: filemanager/templates/filemanager/index.html:444 +msgid "Compressed File Name" +msgstr "Име на компресирания файл" + +#: filemanager/templates/filemanager/index.html:446 +msgid "Enter without extension name!" +msgstr "Въведи без разширение!" + +#: filemanager/templates/filemanager/index.html:450 +msgid "Compression Type" +msgstr "Вид на компресия" + +#: filemanager/templates/filemanager/index.html:475 +msgid "Extracting" +msgstr "Разархивиране" + +#: filemanager/templates/filemanager/index.html:483 +msgid "Extract in" +msgstr "Разархивиране в" + +#: filemanager/templates/filemanager/index.html:485 +msgid "You can enter . to extract in current directory!" +msgstr "Може да въведете . за да разархивирате в текущата директория!" + +#: filemanager/templates/filemanager/index.html:503 +msgid "Move Files" +msgstr "Премести файлове" + +#: filemanager/templates/filemanager/index.html:511 +#: filemanager/templates/filemanager/index.html:546 +msgid "List of files/folders!" +msgstr "Списък на файлове/директории!" + +#: filemanager/templates/filemanager/index.html:515 +msgid "Move to" +msgstr "Премести в" + +#: filemanager/templates/filemanager/index.html:517 +msgid "Enter a path to move your files!" +msgstr "Въведи път за да преместиш файловете!" + +#: filemanager/templates/filemanager/index.html:538 +msgid "Copy Files" +msgstr "Копирай файлове" + +#: filemanager/templates/filemanager/index.html:550 +msgid "Copy to" +msgstr "Копирай в" + +#: filemanager/templates/filemanager/index.html:552 +msgid "Enter a path to copy your files to!" +msgstr "Въведи път, за да се копират файловете!" + +#: filemanager/templates/filemanager/index.html:572 +msgid "Renaming" +msgstr "Преименуване" + +#: filemanager/templates/filemanager/index.html:580 +msgid "New Name" +msgstr "Ново име" + +#: filemanager/templates/filemanager/index.html:582 +msgid "Enter new name of file!" +msgstr "Въведи ново име за файл!" + +#: filemanager/templates/filemanager/index.html:602 +msgid "Changing permissions for" +msgstr "Промени права за" + +#: filemanager/templates/filemanager/index.html:611 +msgid "Mode" +msgstr "Вид" + +#: filemanager/templates/filemanager/index.html:612 +#: serverStatus/templates/serverStatus/topProcesses.html:193 +msgid "User" +msgstr "Потребител" + +#: filemanager/templates/filemanager/index.html:613 +msgid "Group" +msgstr "Група" + +#: filemanager/templates/filemanager/index.html:614 +msgid "World" +msgstr "Всички" + +#: filemanager/templates/filemanager/index.html:619 +msgid "Read" +msgstr "Четене" + +#: filemanager/templates/filemanager/index.html:625 +msgid "Write" +msgstr "Запис" + +#: filemanager/templates/filemanager/index.html:631 +msgid "Execute" +msgstr "Изпълнение" + +#: filemanager/templates/filemanager/index.html:647 +#: filemanager/templates/filemanager/index.html:695 +msgid "Change Permissions" +msgstr "Промени права" + +#: filemanager/templates/filemanager/index.html:648 +msgid "Change Recursively" +msgstr "Рекурсивна промяна" + +#: filemanager/templates/filemanager/index.html:692 +msgid "Download" +msgstr "" + +#: firewall/templates/firewall/csf.html:3 +msgid "CSF (ConfigServer Security and Firewall) - CyberPanel" +msgstr "CSF (ConfigServer Security and Firewall) - CyberPanel" + +#: firewall/templates/firewall/csf.html:13 +msgid "CSF (ConfigServer Security and Firewall)!" +msgstr "CSF (ConfigServer Security and Firewall)!" + +#: firewall/templates/firewall/csf.html:14 +msgid "" +"On this page you can configure CSF (ConfigServer Security and Firewall) settings." +msgstr "" +"От тази страница може да променяте настройките на CSF (ConfigServer Security and " +"Firewall)." + +#: firewall/templates/firewall/csf.html:28 +msgid "CSF is not installed " +msgstr "CSF не е инсталиран" + +#: firewall/templates/firewall/csf.html:55 +msgid "CSF successfully installed, refreshing page in 3 seconds.." +msgstr "CSF е успешно инсталиран. Страницата ще се презареди след 3 секунди.." + +#: firewall/templates/firewall/csf.html:66 +msgid "In winter we must protect each other.." +msgstr "В зимата трябва да се защитаваме ние.." + +#: firewall/templates/firewall/csf.html:90 +msgid "General" +msgstr "Общ" + +#: firewall/templates/firewall/csf.html:100 +msgid "LFD" +msgstr "LFD" + +#: firewall/templates/firewall/csf.html:109 +msgid "Remove CSF" +msgstr "Премахни CSF" + +#: firewall/templates/firewall/csf.html:112 +msgid "Completely Remove CSF" +msgstr "Надяло премахни CSF" + +#: firewall/templates/firewall/csf.html:126 +msgid "Testing Mode" +msgstr "Тестов мод" + +#: firewall/templates/firewall/csf.html:133 +msgid "TCP IN Ports" +msgstr "TCP IN Портове" + +#: firewall/templates/firewall/csf.html:143 +msgid "TCP Out Ports" +msgstr "TCP Out Портове" + +#: firewall/templates/firewall/csf.html:153 +msgid "UDP In Ports" +msgstr "UDP In Портове" + +#: firewall/templates/firewall/csf.html:163 +msgid "UDP Out Ports" +msgstr "UDP Out Портове" + +#: firewall/templates/firewall/csf.html:181 +msgid "Allow IP" +msgstr "Позволи IP" + +#: firewall/templates/firewall/csf.html:191 +msgid "Block IP Address" +msgstr "Блокирай IP Адрес" + +#: firewall/templates/firewall/csf.html:203 +msgid "Coming Soon." +msgstr "Скоро." + +#: firewall/templates/firewall/firewall.html:3 +msgid "Firewall - CyberPanel" +msgstr "Защитна Стена - CyberPanel" + +#: firewall/templates/firewall/firewall.html:13 +msgid "Add/Delete Firewall Rules" +msgstr "Добави/Премахни Firewall правила" + +#: firewall/templates/firewall/firewall.html:14 +msgid "" +"On this page you can add/delete firewall rules. (By default all ports are blocked, " +"except mentioned below)" +msgstr "" +"От тази страница може да добавяте/премахвате Firewall правила. По-подразбиране " +"всички, освен посочените по-долу са забранени." + +#: firewall/templates/firewall/firewall.html:19 +msgid "Add/Delete Rules" +msgstr "Добави/Премахни Правила" + +#: firewall/templates/firewall/firewall.html:56 +msgid "Action failed. Error message:" +msgstr "Действието не е изпълнено, защото:" + +#: firewall/templates/firewall/firewall.html:61 +#: serverStatus/templates/serverStatus/litespeedStatus.html:82 +#: serverStatus/templates/serverStatus/litespeedStatus.html:305 +msgid "Action successful." +msgstr "Действието е успешно изпълнено." + +#: firewall/templates/firewall/firewall.html:121 +msgid "Protocol" +msgstr "Протокол" + +#: firewall/templates/firewall/firewall.html:157 +msgid "Rule successfully added." +msgstr "Правилата са успешно добавени." + +#: firewall/templates/firewall/index.html:3 +msgid "Security - CyberPanel" +msgstr "Защита - CyberPanel" + +#: firewall/templates/firewall/index.html:12 +msgid "Security Functions" +msgstr "Функции на Защитата" + +#: firewall/templates/firewall/index.html:13 +msgid "Manage the security of the server on this page." +msgstr "Управлявайте сигурността на сървъра от тази страница." + +#: firewall/templates/firewall/modSecurity.html:3 +msgid "ModSecurity - CyberPanel" +msgstr "ModSecurity - CyberPanel" + +#: firewall/templates/firewall/modSecurity.html:14 +#: firewall/templates/firewall/modSecurity.html:208 +msgid "ModSecurity Configurations!" +msgstr "ModSecurity Конфигурация!" + +#: firewall/templates/firewall/modSecurity.html:18 +#: firewall/templates/firewall/modSecurity.html:212 +#: firewall/templates/firewall/modSecurityRules.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +msgid "ModSec Docs" +msgstr "ModSec Документация" + +#: firewall/templates/firewall/modSecurity.html:20 +#: firewall/templates/firewall/modSecurity.html:214 +msgid "On this page you can configure ModSecurity settings." +msgstr "От тази страница може да настройте ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:26 +#: firewall/templates/firewall/modSecurity.html:220 +msgid "ModSecurity" +msgstr "ModSecurity" + +#: firewall/templates/firewall/modSecurity.html:32 +#: firewall/templates/firewall/modSecurity.html:229 +#: firewall/templates/firewall/modSecurityRules.html:70 +#: firewall/templates/firewall/modSecurityRulesPacks.html:28 +#: firewall/templates/firewall/spamassassin.html:29 +msgid "ModSecurity is not installed " +msgstr "ModSecurity не е инсталиран" + +#: firewall/templates/firewall/modSecurity.html:61 +#: firewall/templates/firewall/modSecurity.html:257 +#: firewall/templates/firewall/spamassassin.html:55 +msgid "ModSecurity successfully installed, refreshing page in 3 seconds.." +msgstr "" +"ModSecurity е успешно инсталиран. Страницата ще се презареди след 3 секунди.." + +#: firewall/templates/firewall/modSecurity.html:73 +#: firewall/templates/firewall/modSecurity.html:269 +#: firewall/templates/firewall/spamassassin.html:66 +msgid "Winter is coming, but so is ModSecurity." +msgstr "Зимата идва ... както и ModSecurity." + +#: firewall/templates/firewall/modSecurity.html:174 +#: firewall/templates/firewall/modSecurity.html:362 +#: firewall/templates/firewall/spamassassin.html:169 +msgid "Failed to save ModSecurity configurations. Error message: " +msgstr "Промените не са запазени. Съобщение са грешка:" + +#: firewall/templates/firewall/modSecurity.html:179 +#: firewall/templates/firewall/modSecurity.html:367 +#: firewall/templates/firewall/spamassassin.html:173 +msgid "ModSecurity configurations successfully saved." +msgstr "ModSecurity конфигурация е успешно обновлена." + +#: firewall/templates/firewall/modSecurityRules.html:3 +msgid "ModSecurity Rules - CyberPanel" +msgstr "ModSecurity Правила - CyberPanel" + +#: firewall/templates/firewall/modSecurityRules.html:13 +msgid "ModSecurity Rules!" +msgstr "ModSecurity Правила!" + +#: firewall/templates/firewall/modSecurityRules.html:14 +msgid "On this page you can add/delete ModSecurity rules." +msgstr "От тази страница може да добавяте/премахвате ModSecurity правила." + +#: firewall/templates/firewall/modSecurityRules.html:42 +msgid "Save Rules!" +msgstr "Запази правила!" + +#: firewall/templates/firewall/modSecurityRules.html:49 +msgid "ModSecurity Rules Saved" +msgstr "ModSecurity правила са запазени" + +#: firewall/templates/firewall/modSecurityRules.html:58 +msgid "Could not save rules, Error message: " +msgstr "Промените не са запазени. Съобщение за грешка:" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:3 +msgid "ModSecurity Rules Packs - CyberPanel" +msgstr "ModSecurity Rules Packs - CyberPanel" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:13 +#: firewall/templates/firewall/modSecurityRulesPacks.html:20 +msgid "ModSecurity Rules Packages!" +msgstr "ModSecurity Rules Packages!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:14 +msgid "Install/Un-install ModSecurity rules packages." +msgstr "Инсталирай/Премахни ModSecurity Rules Packages!" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:60 +#: firewall/templates/firewall/modSecurityRulesPacks.html:71 +msgid "Configure" +msgstr "Конфигурация" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:84 +#: firewall/templates/firewall/modSecurityRulesPacks.html:96 +msgid "Operation successful." +msgstr "Действието е успешно изпълнено." + +#: firewall/templates/firewall/modSecurityRulesPacks.html:92 +msgid "Operation failed, Error message: " +msgstr "Действието не е изпълнено, защото:" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:110 +msgid "Supplier" +msgstr "Източник" + +#: firewall/templates/firewall/modSecurityRulesPacks.html:111 +msgid "Filename" +msgstr "Име" + +#: firewall/templates/firewall/secureSSH.html:3 +msgid "Secure SSH - CyberPanel" +msgstr "Secure SSH - CyberPanel" + +#: firewall/templates/firewall/secureSSH.html:13 +msgid "SSH Docs" +msgstr "SSH Документация" + +#: firewall/templates/firewall/secureSSH.html:14 +msgid "Secure or harden SSH Configurations." +msgstr "Подсигури SSH от тази страница." + +#: firewall/templates/firewall/secureSSH.html:28 +#: managePHP/templates/managePHP/editPHPConfig.html:29 +msgid "Basic" +msgstr "Базови" + +#: firewall/templates/firewall/secureSSH.html:34 +msgid "SSH Keys" +msgstr "SSH Ключ" + +#: firewall/templates/firewall/secureSSH.html:47 +msgid "SSH Port" +msgstr "SSH Порт" + +#: firewall/templates/firewall/secureSSH.html:56 +msgid "Permit Root Login" +msgstr "Позволи Root Достъп" + +#: firewall/templates/firewall/secureSSH.html:60 +msgid "" +"Before disabling root login, make sure you have another account with sudo " +"priviliges on server." +msgstr "" +"Преди да забраните root достъпа се уверете, че имате друг потребител със sudo " +"права." + +#: firewall/templates/firewall/secureSSH.html:82 +msgid "SSH Configurations Saved." +msgstr "SSH Конфигурацията е запаметена." + +#: firewall/templates/firewall/secureSSH.html:121 +msgid "Key" +msgstr "Ключ" + +#: firewall/templates/firewall/secureSSH.html:150 +msgid "Add Key" +msgstr "Добави Ключ" + +#: firewall/templates/firewall/secureSSH.html:167 +msgid "SSH Key Deleted" +msgstr "SSH Ключа е премахнат" + +#: ftp/templates/ftp/createFTPAccount.html:3 +msgid "Create FTP Account - CyberPanel" +msgstr "Създай FTP Акаунт - CyberPanel" + +#: ftp/templates/ftp/createFTPAccount.html:13 +msgid "" +"Select the website from list, and its home directory will be set as the path to " +"ftp account." +msgstr "" +"Изберете домейн от списъка и неговата home директория ще бъде поставена за FTP " +"акаунта." + +#: ftp/templates/ftp/createFTPAccount.html:26 +#: ftp/templates/ftp/deleteFTPAccount.html:25 +#: ftp/templates/ftp/listFTPAccounts.html:26 +msgid "PureFTPD is disabled." +msgstr "PureFTPD е спрян." + +#: ftp/templates/ftp/createFTPAccount.html:67 +msgid "FTP Password" +msgstr "FTP Парола" + +#: ftp/templates/ftp/createFTPAccount.html:90 +msgid "Path (Relative)" +msgstr "Път (Относителен)" + +#: ftp/templates/ftp/createFTPAccount.html:92 +msgid "Leave empty to select default home directory." +msgstr "Оставете празно за home директория." + +#: ftp/templates/ftp/createFTPAccount.html:105 +msgid "Create FTP" +msgstr "Създай FTP" + +#: ftp/templates/ftp/createFTPAccount.html:113 +msgid "Cannot create FTP account. Error message:" +msgstr "Дейстиете не е извършено. Съобщение за грешка: " + +#: ftp/templates/ftp/createFTPAccount.html:118 +#: ftp/templates/ftp/createFTPAccount.html:122 +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid "FTP Account with username:" +msgstr "FTP Акаунт с Име:" + +#: ftp/templates/ftp/createFTPAccount.html:119 +#: ftp/templates/ftp/createFTPAccount.html:123 +#: userManagment/templates/userManagment/createUser.html:129 +msgid "is successfully created." +msgstr "е успешно създаден." + +#: ftp/templates/ftp/deleteFTPAccount.html:3 +msgid "Delete FTP Account - CyberPanel" +msgstr "Премахни FTP Акаунт - CyberPanel" + +#: ftp/templates/ftp/deleteFTPAccount.html:13 +msgid "Select domain and delete its related FTP accounts." +msgstr "Избери домейн и премахни свързаните FTP акаунти." + +#: ftp/templates/ftp/deleteFTPAccount.html:52 +msgid "Select FTP Account" +msgstr "Избери FTP Акаунт" + +#: ftp/templates/ftp/deleteFTPAccount.html:83 +msgid "Cannot delete account. Error message:" +msgstr "Акаунта не е премахнат. Съобщение за грешка:" + +#: ftp/templates/ftp/deleteFTPAccount.html:87 +msgid " is successfully deleted." +msgstr "е успешно изтрит" + +#: ftp/templates/ftp/deleteFTPAccount.html:91 +#: userManagment/templates/userManagment/deleteUser.html:70 +msgid "Could not connect to the server. Please refresh this page." +msgstr "Връзката със сървъра прекъсна. Моля презаредете страницата." + +#: ftp/templates/ftp/index.html:3 +msgid "FTP Functions - CyberPanel" +msgstr "FTP Функции - CyberPanel" + +#: ftp/templates/ftp/index.html:13 +msgid "Delete and create FTP accounts on this page." +msgstr "Създай или премахни FTP акаунт от тази страница." + +#: ftp/templates/ftp/listFTPAccounts.html:3 +msgid "List FTP Accounts - CyberPanel" +msgstr "FTP Акаунти - CyberPanel" + +#: ftp/templates/ftp/listFTPAccounts.html:14 +msgid "List FTP Accounts or change their passwords." +msgstr "Преглед на FTP акаунти или промяна на паролите им." + +#: ftp/templates/ftp/listFTPAccounts.html:66 +msgid "Password changed for" +msgstr "Паролата е променена за" + +#: ftp/templates/ftp/listFTPAccounts.html:70 +msgid "Cannot change password for {$ ftpUsername $}. Error message:" +msgstr "" +"Паролата за {$ ftpUsername $} не е променена. Съобщение за грешка:" + +#: ftp/templates/ftp/listFTPAccounts.html:124 +msgid "Directory" +msgstr "Директория" + +#: mailServer/templates/mailServer/changeEmailPassword.html:3 +msgid "Change Email Password - CyberPanel" +msgstr "Промени Email Парола - CyberPanel" + +#: mailServer/templates/mailServer/changeEmailPassword.html:12 +#: mailServer/templates/mailServer/changeEmailPassword.html:19 +#: userManagment/templates/userManagment/createACL.html:299 +#: userManagment/templates/userManagment/modifyACL.html:303 +msgid "Change Email Password" +msgstr "Промени Email Парола" + +#: mailServer/templates/mailServer/changeEmailPassword.html:13 +msgid "Select a website from the list, to change its password." +msgstr "Изберете домейн от списъка за който да бъде променена паролата." + +#: mailServer/templates/mailServer/changeEmailPassword.html:27 +#: mailServer/templates/mailServer/createEmailAccount.html:27 +#: mailServer/templates/mailServer/deleteEmailAccount.html:27 +#: mailServer/templates/mailServer/emailForwarding.html:26 +#: mailServer/templates/mailServer/listEmails.html:27 +msgid "Postfix is disabled." +msgstr "Postfix е спрян" + +#: mailServer/templates/mailServer/changeEmailPassword.html:58 +#: mailServer/templates/mailServer/deleteEmailAccount.html:58 +#: mailServer/templates/mailServer/emailForwarding.html:52 +msgid "Select Email" +msgstr "Избери Email" + +#: mailServer/templates/mailServer/changeEmailPassword.html:106 +#: mailServer/templates/mailServer/deleteEmailAccount.html:90 +msgid "Cannot delete email account. Error message:" +msgstr "Действието не е извършено. Съобщение за грешка:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:111 +msgid "Password successfully changed for :" +msgstr "Паролата е успешно променена за:" + +#: mailServer/templates/mailServer/changeEmailPassword.html:118 +#: mailServer/templates/mailServer/deleteEmailAccount.html:102 +msgid "Currently no email accounts exist for this domain." +msgstr "Към момента няма email акаунти за този домейн." + +#: mailServer/templates/mailServer/createEmailAccount.html:3 +msgid "Create Email Account - CyberPanel" +msgstr "Създай Email акаунт - CyberPanel" + +#: mailServer/templates/mailServer/createEmailAccount.html:13 +msgid "Select a website from the list, to create an email account." +msgstr "Избери за коя страница искате да създадете email акаунт." + +#: mailServer/templates/mailServer/createEmailAccount.html:106 +msgid "Cannot create email account. Error message:" +msgstr "Email акаунта не е създаден, защото:" + +#: mailServer/templates/mailServer/createEmailAccount.html:111 +msgid "Email with id :" +msgstr "Email с id:" + +#: mailServer/templates/mailServer/createEmailAccount.html:112 +msgid " is successfully created." +msgstr "е успешно създаден." + +#: mailServer/templates/mailServer/deleteEmailAccount.html:3 +msgid "Delete Email Account - CyberPanel" +msgstr "Премахни Email Акаунт - CyberPanel" + +#: mailServer/templates/mailServer/deleteEmailAccount.html:13 +msgid "Select a website from the list, to delete an email account." +msgstr "Изберете домейн от списъка за който да премахнете email акаунт." + +#: mailServer/templates/mailServer/deleteEmailAccount.html:95 +msgid "Email with id : {$ deletedID $} is successfully deleted." +msgstr "Email с id : {$ deletedID $} е успешно премахнато." + +#: mailServer/templates/mailServer/dkimManager.html:3 +msgid "DKIM Manager - CyberPanel" +msgstr "DKIM Мениджър - CyberPanel" + +#: mailServer/templates/mailServer/dkimManager.html:13 +msgid "DKIM Docs" +msgstr "DKIM Документация" + +#: mailServer/templates/mailServer/dkimManager.html:14 +msgid "This page can be used to generate and view DKIM keys for Domains" +msgstr "От тази страница може да генерирате и преглеждате DKIM ключове за домейните." + +#: mailServer/templates/mailServer/dkimManager.html:27 +msgid "OpenDKIM is not installed. " +msgstr "OpenDKIM не е инсталиран." + +#: mailServer/templates/mailServer/dkimManager.html:28 +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:67 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:104 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:81 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:67 +msgid "Install Now" +msgstr "Инсталирай" + +#: mailServer/templates/mailServer/dkimManager.html:48 +msgid "OpenDKIM successfully installed, refreshing page in 3 seconds.." +msgstr "OpenDKIM е успешно инсталиран. Страницата ще се презареди след 3 секунди..." + +#: mailServer/templates/mailServer/dkimManager.html:97 +msgid "Keys not available for this domain." +msgstr "Ключовете не са позволени за този домейн." + +#: mailServer/templates/mailServer/dkimManager.html:98 +msgid "Generate Now" +msgstr "Генерирай сега" + +#: mailServer/templates/mailServer/dkimManager.html:110 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:37 +msgid "Domain" +msgstr "Домейн" + +#: mailServer/templates/mailServer/dkimManager.html:111 +msgid "Private Key" +msgstr "Личен ключ" + +#: mailServer/templates/mailServer/dkimManager.html:112 +msgid "Public Key" +msgstr "Публичен ключ" + +#: mailServer/templates/mailServer/emailForwarding.html:3 +msgid "Setup Email Forwarding - CyberPanel" +msgstr "Email пренасочване - CyberPanel" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +#: mailServer/templates/mailServer/emailForwarding.html:19 +msgid "Setup Email Forwarding" +msgstr "Email пренасочване" + +#: mailServer/templates/mailServer/emailForwarding.html:12 +msgid "Forwarding Docs" +msgstr "Email пренасочване Документация" + +#: mailServer/templates/mailServer/emailForwarding.html:13 +msgid "This page help you setup email forwarding for your emails." +msgstr "От тази страница може да създадете Email пренасочвания." + +#: mailServer/templates/mailServer/emailForwarding.html:61 +#, fuzzy +#| msgid "Forwarding Docs" +msgid "Forwarding Options" +msgstr "Email пренасочване Документация" + +#: mailServer/templates/mailServer/emailForwarding.html:97 +#: mailServer/templates/mailServer/emailForwarding.html:118 +msgid "Source" +msgstr "източник" + +#: mailServer/templates/mailServer/emailForwarding.html:101 +msgid "or path to the program" +msgstr "" + +#: mailServer/templates/mailServer/emailForwarding.html:106 +msgid "Forward Email" +msgstr "Пренасочи Email" + +#: mailServer/templates/mailServer/index.html:3 +msgid "Mail Functions - CyberPanel" +msgstr "Mail Функции - CyberPanel" + +#: mailServer/templates/mailServer/index.html:12 +msgid "Mail Functions" +msgstr "Mail Функции" + +#: mailServer/templates/mailServer/index.html:13 +msgid "Manage email accounts on this page." +msgstr "Управлявайте email акаунтите от тази страница." + +#: mailServer/templates/mailServer/listEmails.html:3 +#, fuzzy +#| msgid "List FTP Accounts - CyberPanel" +msgid "List Email Accounts - CyberPanel" +msgstr "FTP Акаунти - CyberPanel" + +#: mailServer/templates/mailServer/listEmails.html:13 +#: mailServer/templates/mailServer/listEmails.html:19 +#, fuzzy +#| msgid "List FTP Accounts" +msgid "List Email Accounts" +msgstr "Преглед FTP Акаунти" + +#: mailServer/templates/mailServer/listEmails.html:14 +#, fuzzy +#| msgid "List FTP Accounts or change their passwords." +msgid "List Emails Accounts. Change their passwords or delete them." +msgstr "Преглед на FTP акаунти или промяна на паролите им." + +#: managePHP/templates/managePHP/editPHPConfig.html:3 +msgid "Edit PHP Configurations - CyberPanel" +msgstr "Редактирай PHP Конфигурация - CyberPanel" + +#: managePHP/templates/managePHP/editPHPConfig.html:14 +#: managePHP/templates/managePHP/editPHPConfig.html:21 +msgid "Edit PHP Configurations" +msgstr "Редактирай PHP Конфигурация" + +#: managePHP/templates/managePHP/editPHPConfig.html:15 +msgid "Edit PHP Configurations on this page." +msgstr "Редактирай PHP конфигурация от тази страница." + +#: managePHP/templates/managePHP/editPHPConfig.html:36 +msgid "Advanced" +msgstr "За Напреднали" + +#: managePHP/templates/managePHP/editPHPConfig.html:65 +msgid "display_errors" +msgstr "display_errors" + +#: managePHP/templates/managePHP/editPHPConfig.html:72 +msgid "file_uploads" +msgstr "file_uploads" + +#: managePHP/templates/managePHP/editPHPConfig.html:80 +msgid "allow_url_fopen" +msgstr "allow_url_fopen" + +#: managePHP/templates/managePHP/editPHPConfig.html:88 +msgid "allow_url_include" +msgstr "allow_url_include" + +#: managePHP/templates/managePHP/editPHPConfig.html:96 +msgid "memory_limit" +msgstr "memory_limit" + +#: managePHP/templates/managePHP/editPHPConfig.html:103 +msgid "max_execution_time" +msgstr "max_execution_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:111 +msgid "upload_max_filesize" +msgstr "upload_max_filesize" + +#: managePHP/templates/managePHP/editPHPConfig.html:119 +msgid "post_max_size" +msgstr "post_max_size" + +#: managePHP/templates/managePHP/editPHPConfig.html:126 +msgid "max_input_time" +msgstr "max_input_time" + +#: managePHP/templates/managePHP/editPHPConfig.html:152 +#: managePHP/templates/managePHP/editPHPConfig.html:218 +msgid "PHP Configs Saved." +msgstr "PHP Configs са запазени." + +#: managePHP/templates/managePHP/index.html:3 +msgid "Manage PHP Installations - CyberPanel" +msgstr "Управление на PHP - CyberPanel" + +#: managePHP/templates/managePHP/index.html:12 +msgid "Manage PHP Installations" +msgstr "Управление на PHP " + +#: managePHP/templates/managePHP/index.html:13 +msgid "Edit your PHP Configurations to suit your needs." +msgstr "Редактирайте PHP конфигурацията според нуждите Ви." + +#: managePHP/templates/managePHP/installExtensions.html:3 +msgid "Install PHP Extensions - CyberPanel" +msgstr "Инсталирай PHP модули - CyberPanel" + +#: managePHP/templates/managePHP/installExtensions.html:14 +msgid "Install/uninstall php extensions on this page." +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 Версия" + +#: managePHP/templates/managePHP/installExtensions.html:47 +msgid "Search Extensions.." +msgstr "Търси разширение.." + +#: managePHP/templates/managePHP/installExtensions.html:62 +msgid "Extension Name" +msgstr "Име на разширение" + +#: managePHP/templates/managePHP/installExtensions.html:63 +#: pluginHolder/templates/pluginHolder/plugins.html:30 +msgid "Description" +msgstr "Описание" + +#: managePHP/templates/managePHP/installExtensions.html:65 +#: managePHP/templates/managePHP/installExtensions.html:81 +msgid "Install" +msgstr "Инсталирай" + +#: managePHP/templates/managePHP/installExtensions.html:66 +#: managePHP/templates/managePHP/installExtensions.html:86 +msgid "Uninstall" +msgstr "Де-Инсталирай" + +#: managePHP/templates/managePHP/installExtensions.html:115 +#: tuning/templates/tuning/phpTuning.html:115 +#: tuning/templates/tuning/phpTuning.html:255 +#: userManagment/templates/userManagment/modifyUser.html:126 +msgid "Cannot fetch details. Error message:" +msgstr "Детайлите не са извлечени, защото:" + +#: managePHP/templates/managePHP/installExtensions.html:119 +msgid "Cannot perform operation. Error message:" +msgstr "Операцията не е изпълнена, защото:" + +#: manageSSL/templates/manageSSL/index.html:3 +msgid "SSL Functions - CyberPanel" +msgstr "SSL Функции - CyberPanel" + +#: manageSSL/templates/manageSSL/index.html:13 +msgid "SSL Functions" +msgstr "SSL Функции" + +#: manageSSL/templates/manageSSL/index.html:14 +msgid "Issue Let’s Encrypt SSLs for websites and hostname." +msgstr "Издаване на Let’s Encrypt SSLs за сайтове и hostname." + +#: manageSSL/templates/manageSSL/manageSSL.html:3 +msgid "Manage SSL - CyberPanel" +msgstr "SSL - CyberPanel" + +#: manageSSL/templates/manageSSL/manageSSL.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +msgid "SSL Docs" +msgstr "SSL Документация" + +#: manageSSL/templates/manageSSL/manageSSL.html:14 +msgid "" +"This page can be used to issue Let’s Encrypt SSL for existing websites on server." +msgstr "" +"От тази страница може да издавате Let’s Encrypt SSL сертификати за Вашите сайтове." + +#: manageSSL/templates/manageSSL/manageSSL.html:42 +#: manageSSL/templates/manageSSL/sslForHostName.html:42 +#: manageSSL/templates/manageSSL/sslForMailServer.html:40 +msgid "Issue SSL" +msgstr "Издаване на SSL" + +#: manageSSL/templates/manageSSL/manageSSL.html:52 +#: manageSSL/templates/manageSSL/sslForHostName.html:52 +#: manageSSL/templates/manageSSL/sslForMailServer.html:50 +msgid "Cannot issue SSL. Error message:" +msgstr "Сертификата не е издаден. Съобщение за грешка: " + +#: manageSSL/templates/manageSSL/manageSSL.html:56 +msgid "SSL Issued for" +msgstr "SSL издаден за" + +#: manageSSL/templates/manageSSL/sslForHostName.html:3 +msgid "Issue SSL For Hostname - CyberPanel" +msgstr "Издай SSL за Hostname - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForHostName.html:13 +#: manageSSL/templates/manageSSL/sslForHostName.html:20 +msgid "Issue SSL For Hostname" +msgstr "Издай SSL за Hostname" + +#: manageSSL/templates/manageSSL/sslForHostName.html:14 +msgid "Let’s Encrypt SSL for hostname to access CyberPanel on verified SSL." +msgstr "" +"Let’s Encrypt SSL за hostname за да достъпвате CyberPanel през валиден https адрес." + +#: manageSSL/templates/manageSSL/sslForHostName.html:56 +#: manageSSL/templates/manageSSL/sslForHostName.html:60 +msgid "SSL Issued. You can now access CyberPanel at:" +msgstr "Сертификата е издаден! Вече може да достъпвате CyberPanel чрез: " + +#: manageSSL/templates/manageSSL/sslForMailServer.html:3 +msgid "Issue SSL For MailServer - CyberPanel" +msgstr "Издай SSL за Mail сървъра - CyberPanel" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:13 +#: manageSSL/templates/manageSSL/sslForMailServer.html:20 +msgid "Issue SSL For MailServer" +msgstr "Издай SSL за Mail сървъра" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:14 +msgid "Let’s Encrypt SSL for MailServer (Postfix/Dovecot)." +msgstr "Let’s Encrypt SSL за Mail сървър (Postfix/Dovecot)." + +#: manageSSL/templates/manageSSL/sslForMailServer.html:54 +msgid "SSL Issued, your mail server now uses Lets Encrypt!" +msgstr "SSL сертификата е издаден. Mail сървъра Ви вече използва Lets Encrypt!" + +#: manageSSL/templates/manageSSL/sslForMailServer.html:58 +msgid "Could not connect to server, please refresh this page." +msgstr "Не можем да се свържем със сървъра, моля презаредете страницата." + +#: manageServices/templates/manageServices/managePostfix.html:3 +msgid "Manage Email Server (Postfix) - CyberPanel" +msgstr "Управление на Email сървър (Postfix) - Cyberpanel" + +#: manageServices/templates/manageServices/managePostfix.html:13 +msgid "Manage Email Server (Postfix)!" +msgstr "Управление на Email сървър (Postfix)!" + +#: manageServices/templates/manageServices/managePostfix.html:13 +#: manageServices/templates/manageServices/managePowerDNS.html:16 +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Services Docs" +msgstr "Допълнителна документация" + +#: manageServices/templates/manageServices/managePostfix.html:14 +msgid "Enable or disable Email services. " +msgstr "Позволи или забрани Email сървъра." + +#: manageServices/templates/manageServices/managePostfix.html:79 +#: manageServices/templates/manageServices/managePowerDNS.html:149 +#: manageServices/templates/manageServices/managePureFtpd.html:79 +msgid "Only administrator can manage services." +msgstr "Само Администраторите могат да управляват сървайсес." + +#: manageServices/templates/manageServices/managePowerDNS.html:3 +msgid "Manage PowerDNS - CyberPanel" +msgstr "Управление на PowerDNS - CyberPanel" + +#: manageServices/templates/manageServices/managePowerDNS.html:13 +msgid "Manage PowerDNS!" +msgstr "Управление на PowerDNS" + +#: manageServices/templates/manageServices/managePowerDNS.html:17 +msgid "Enable or disable DNS services. " +msgstr "Позволи или забрани DNS сървър." + +#: manageServices/templates/manageServices/managePowerDNS.html:42 +#, fuzzy +#| msgid "Security Functions" +msgid "Select Function Mode" +msgstr "Функции на Защитата" + +#: manageServices/templates/manageServices/managePowerDNS.html:53 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:60 +#, fuzzy +#| msgid "MailServer SSL" +msgid "Master Server IP" +msgstr "MailServer SSL" + +#: manageServices/templates/manageServices/managePowerDNS.html:67 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server 1" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:74 +#, fuzzy +#| msgid "Name server" +msgid "Slave Server IP" +msgstr "Name server" + +#: manageServices/templates/manageServices/managePowerDNS.html:81 +msgid "Slave Server 2 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:88 +msgid "Slave Server IP 2 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:95 +msgid "Slave Server 3 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePowerDNS.html:102 +msgid "Slave Server IP 3 (Optional)" +msgstr "" + +#: manageServices/templates/manageServices/managePureFtpd.html:3 +msgid "Manage FTP Server (Pure FTPD) - CyberPanel" +msgstr "Управление на FTP сървър (Pure FTPD) - CyberPanel" + +#: manageServices/templates/manageServices/managePureFtpd.html:13 +msgid "Manage FTP Server (Pure FTPD)!" +msgstr "Управление на FTP сървър (Pure FTPD)!" + +#: manageServices/templates/manageServices/managePureFtpd.html:14 +msgid "Enable or disable FTP services. " +msgstr "Позволи или забрани FTP сървър." + +#: manageServices/templates/manageServices/managePureFtpd.html:22 +msgid "Manage PureFTPD" +msgstr "Управлявай PureFTPD" + +#: packages/templates/packages/createPackage.html:3 +msgid "Create Package - CyberPanel" +msgstr "Създай Пакет - CyberPanel" + +#: packages/templates/packages/createPackage.html:14 +#: packages/templates/packages/deletePackage.html:13 +#: packages/templates/packages/index.html:14 +#: packages/templates/packages/modifyPackage.html:10 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:13 +msgid "" +"Packages define resources for your websites, you need to add package before " +"creating a website." +msgstr "Пакетите дефинират ресурсите, които сайтовете могат да използват." + +#: packages/templates/packages/createPackage.html:19 +msgid "Package Details" +msgstr "Детайли за Пакет" + +#: packages/templates/packages/createPackage.html:41 +#: packages/templates/packages/listPackages.html:98 +#: packages/templates/packages/modifyPackage.html:44 +msgid "(0 = Unlimited)" +msgstr "( 0 = Без Лимит )" + +#: packages/templates/packages/createPackage.html:45 +#: packages/templates/packages/listPackages.html:104 +#: packages/templates/packages/modifyPackage.html:49 +msgid "Disk Space" +msgstr "Дисково Място" + +#: packages/templates/packages/createPackage.html:49 +#: packages/templates/packages/createPackage.html:57 +#: packages/templates/packages/listPackages.html:109 +#: packages/templates/packages/listPackages.html:119 +#: packages/templates/packages/modifyPackage.html:53 +#: packages/templates/packages/modifyPackage.html:61 +msgid "MB (0 = Unlimited)" +msgstr "MB (0 = Без лимит)" + +#: packages/templates/packages/createPackage.html:53 +#: packages/templates/packages/listPackages.html:35 +#: packages/templates/packages/listPackages.html:114 +#: packages/templates/packages/modifyPackage.html:57 +msgid "Bandwidth" +msgstr "Трафик" + +#: packages/templates/packages/createPackage.html:62 +#: packages/templates/packages/listPackages.html:125 +#: packages/templates/packages/modifyPackage.html:66 +msgid "FTP Accounts" +msgstr "FTP Акаунти" + +#: packages/templates/packages/createPackage.html:108 +msgid "Cannot create package. Error message:" +msgstr "Пакета не е създаден, защото:" + +#: packages/templates/packages/createPackage.html:113 +msgid "Successfully Created" +msgstr "Успешно е създаден" + +#: packages/templates/packages/deletePackage.html:3 +msgid "Delete Package - CyberPanel" +msgstr "Изтрий пакет - CyberPanel" + +#: packages/templates/packages/deletePackage.html:56 +msgid "Cannot delete package. Error message:" +msgstr "Пакета не може да бъде премахнат, защото:" + +#: packages/templates/packages/deletePackage.html:60 +#, fuzzy +#| msgid " Successfully Deleted" +msgid " Successfully Deleted." +msgstr "Успешно е премахнато" + +#: packages/templates/packages/index.html:3 +msgid "Packages - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: packages/templates/packages/listPackages.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid "List Packages - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: packages/templates/packages/listPackages.html:14 +msgid "List Packages and delete or edit them." +msgstr "" + +#: packages/templates/packages/listPackages.html:34 +#, fuzzy +#| msgid "Disk Space" +msgid "Diskspace" +msgstr "Дисково Място" + +#: packages/templates/packages/listPackages.html:36 +#, fuzzy +#| msgid "Create Email Account" +msgid "Email Accounts" +msgstr "Създай Email Акаунт" + +#: packages/templates/packages/listPackages.html:38 +msgid "FTPs" +msgstr "" + +#: packages/templates/packages/listPackages.html:39 +#, fuzzy +#| msgid "Add Domains" +msgid "Child Domains" +msgstr "Добави Домейни" + +#: packages/templates/packages/listPackages.html:40 +msgid "Allow FQDN as Childs" +msgstr "" + +#: packages/templates/packages/listPackages.html:152 +#, fuzzy +#| msgid "Additional Features" +msgid "Additional" +msgstr "Допълнителни функции" + +#: packages/templates/packages/modifyPackage.html:3 +msgid "Modify Package - CyberPanel" +msgstr "Промени Пакет - CyberPanel" + +#: packages/templates/packages/modifyPackage.html:117 +msgid "Cannot fetch package details. Error message:" +msgstr "Детайлите за пакета не са извлечени, защото:" + +#: packages/templates/packages/modifyPackage.html:121 +msgid "Package Details Successfully Fetched" +msgstr "Детайлите за пакета са успешно извлечени" + +#: packages/templates/packages/modifyPackage.html:125 +msgid "Successfully Modified" +msgstr "Успешно Променено" + +#: pluginHolder/templates/pluginHolder/plugins.html:15 +#, fuzzy +#| msgid "List Databases - CyberPanel" +msgid "List of installed plugins on your CyberPanel." +msgstr "Бази от Данни - CyberPanel" + +#: pluginHolder/templates/pluginHolder/plugins.html:31 +#, fuzzy +#| msgid "Latest Version" +msgid "Version" +msgstr "Последна Версия" + +#: serverLogs/templates/serverLogs/accessLogs.html:3 +msgid "Access Logs - CyberPanel" +msgstr "Access Логове - CyberPanel" + +#: serverLogs/templates/serverLogs/accessLogs.html:17 +msgid "Access Logs for main web server." +msgstr "Access логове за главния web сървър" + +#: serverLogs/templates/serverLogs/accessLogs.html:24 +#: serverLogs/templates/serverLogs/emailLogs.html:23 +#: serverLogs/templates/serverLogs/errorLogs.html:21 +#: serverLogs/templates/serverLogs/ftplogs.html:21 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:22 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:21 +msgid "Last 50 Lines" +msgstr "Последните 50 реда" + +#: serverLogs/templates/serverLogs/accessLogs.html:41 +#: serverLogs/templates/serverLogs/emailLogs.html:42 +#: serverLogs/templates/serverLogs/errorLogs.html:38 +#: serverLogs/templates/serverLogs/ftplogs.html:38 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:39 +msgid "Clear Logs" +msgstr "Почисти логове" + +#: serverLogs/templates/serverLogs/accessLogs.html:47 +#: serverLogs/templates/serverLogs/emailLogs.html:49 +#: serverLogs/templates/serverLogs/errorLogs.html:45 +#: serverLogs/templates/serverLogs/ftplogs.html:44 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:45 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:44 +msgid "Last 50 Lines Fetched" +msgstr "Последните 50 реда са извлечени" + +#: serverLogs/templates/serverLogs/accessLogs.html:52 +#: serverLogs/templates/serverLogs/emailLogs.html:54 +#: serverLogs/templates/serverLogs/errorLogs.html:50 +#: serverLogs/templates/serverLogs/ftplogs.html:49 +#: serverLogs/templates/serverLogs/modSecAuditLog.html:49 +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:49 +msgid "Could not fetch logs. Use the command line to view the log file." +msgstr "Логовете не могат да бъдат показани. Използвайте терминала за прегледа им." + +#: serverLogs/templates/serverLogs/emailLogs.html:3 +#: serverLogs/templates/serverLogs/errorLogs.html:3 +msgid "Error Logs - CyberPanel" +msgstr "Error логове - CyberPanel" + +#: serverLogs/templates/serverLogs/emailLogs.html:15 +msgid "Email Logs for main web server." +msgstr "Email логове за главния web сървър" + +#: serverLogs/templates/serverLogs/errorLogs.html:14 +msgid "Error Logs for main web server." +msgstr "Error логове за главния web сървър" + +#: serverLogs/templates/serverLogs/ftplogs.html:3 +msgid "FTP Logs - CyberPanel" +msgstr "FTP Логове - CyberPanel" + +#: serverLogs/templates/serverLogs/ftplogs.html:14 +msgid "FTP Logs for main web server." +msgstr "FTP логове за главния web сървър" + +#: serverLogs/templates/serverLogs/index.html:3 +msgid "Server Logs - CyberPanel" +msgstr "Сървърни Логове - Cyberpanel" + +#: serverLogs/templates/serverLogs/index.html:13 +msgid "Server Logs" +msgstr "Сървърни Логове" + +#: serverLogs/templates/serverLogs/index.html:14 +msgid "" +"These are the logs from main server, to see logs for your website navigate to: " +"Websites -> List Websites -> Select Website -> View Logs." +msgstr "Това са логовете на главния сървър." + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:3 +msgid "ModSecurity Audit Logs - CyberPanel" +msgstr "ModSecurity Audit логове - CyberPanel" + +#: serverLogs/templates/serverLogs/modSecAuditLog.html:15 +msgid "ModSecurity Audit logs" +msgstr "ModSecurity Audit логове" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:3 +msgid "CyberPanel Main Log File - CyberPanel" +msgstr "Главен Лог на CyberPanel - CyberPanel" + +#: serverStatus/templates/serverStatus/cybercpmainlogfile.html:14 +msgid "" +"This log file corresponds to errors generated by CyberPanel for your domain errors " +"log you can look into /home/domain/logs." +msgstr "Това е лог файл относно грешки в CyberPanel." + +#: serverStatus/templates/serverStatus/index.html:3 +msgid "Server Status - CyberPanel" +msgstr "Сървър Статус - CyberPanel" + +#: serverStatus/templates/serverStatus/index.html:14 +msgid "View LiteSpeed status and log files." +msgstr "Виж LiteSpeed статус и логове." + +#: serverStatus/templates/serverStatus/index.html:41 +#, fuzzy +#| msgid "CyberPanel Main Log File" +msgid "CyberPanel Main Log" +msgstr "Главен CyberPanel Лог" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:3 +msgid "LiteSpeed Status - CyberPanel" +msgstr "LiteSpeed Статус - CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:14 +#: serverStatus/templates/serverStatus/litespeedStatus.html:221 +msgid "LiteSpeed Status:" +msgstr "LiteSpeed Статус" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:16 +#: serverStatus/templates/serverStatus/litespeedStatus.html:222 +msgid "On this page you can get information regarding your LiteSpeed processes." +msgstr "На тази страница може да разгледате информация за OpenLiteSpeed процесите" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:30 +#: serverStatus/templates/serverStatus/litespeedStatus.html:254 +msgid "LiteSpeed Processes" +msgstr "LiteSpeed Processes" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:37 +#: serverStatus/templates/serverStatus/litespeedStatus.html:261 +msgid "Process ID" +msgstr "Process ID" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:49 +#: serverStatus/templates/serverStatus/litespeedStatus.html:273 +msgid "Main Process" +msgstr "Main Процес" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:52 +#: serverStatus/templates/serverStatus/litespeedStatus.html:276 +msgid "lscgid Process" +msgstr "lscgid Процес" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:55 +#: serverStatus/templates/serverStatus/litespeedStatus.html:279 +msgid "Worker Process" +msgstr "Worker Process" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:67 +#: serverStatus/templates/serverStatus/litespeedStatus.html:291 +msgid "Reboot Litespeed" +msgstr "Рестартирай LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:73 +#: serverStatus/templates/serverStatus/litespeedStatus.html:297 +msgid "Stop LiteSpeed" +msgstr "Спри LiteSpeed" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:87 +#: serverStatus/templates/serverStatus/litespeedStatus.html:310 +msgid "Error Occurred. See CyberPanel main log file." +msgstr "Възникна проблем. Прегледайте главния лог на CyberPanel" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:92 +#: serverStatus/templates/serverStatus/litespeedStatus.html:315 +msgid "Could not connect to server." +msgstr "Няма връзка със сървъра." + +#: serverStatus/templates/serverStatus/litespeedStatus.html:138 +msgid "Switch to LiteSpeed Enterprise Web Server" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:149 +#, fuzzy +#| msgid "LiteSpeed Processes" +msgid "LiteSpeed Serial No. (License Key)" +msgstr "LiteSpeed Processes" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:160 +msgid "Switch" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:162 +msgid "Get 15 Days Trial" +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:175 +msgid "" +"Note: If you select 15 days trial there is no need to enter the serial key, " +"CyberPanel will auto fetch 15 days trial key for you. Make sure this server have " +"not used trial already." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:193 +msgid "With great wisdom comes great responsibility." +msgstr "" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:329 +#, fuzzy +#| msgid "File Manager" +msgid "License Manager" +msgstr "Файл Мениджър" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:336 +#: serverStatus/templates/serverStatus/litespeedStatus.html:340 +#: serverStatus/templates/serverStatus/litespeedStatus.html:341 +#, fuzzy +#| msgid "Services Status" +msgid "License Status" +msgstr "Сървър Статус" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:346 +#: serverStatus/templates/serverStatus/litespeedStatus.html:350 +#: serverStatus/templates/serverStatus/litespeedStatus.html:351 +#, fuzzy +#| msgid "Change Limits" +msgid "Change License" +msgstr "Промени лимити" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:378 +#, fuzzy +#| msgid "New File" +msgid "New key" +msgstr "Нов файл" + +#: serverStatus/templates/serverStatus/litespeedStatus.html:388 +#, fuzzy +#| msgid "Change" +msgid "Change Key" +msgstr "Промени" + +#: serverStatus/templates/serverStatus/services.html:3 +msgid "Services - CyberPanel" +msgstr "Services - CyberPanel" + +#: serverStatus/templates/serverStatus/services.html:25 +msgid "Show stats for services and actions (Start, Stop, Restart)" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:3 +#, fuzzy +#| msgid "Packages - CyberPanel" +msgid "Top Processes - CyberPanel" +msgstr "Пакети - CyberPanel" + +#: serverStatus/templates/serverStatus/topProcesses.html:16 +msgid "List of top processes on your server. (Refresh every 3 seconds)" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:27 +msgid "Cores" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:28 +#, fuzzy +#| msgid "New Name" +msgid "Model Name" +msgstr "Ново име" + +#: serverStatus/templates/serverStatus/topProcesses.html:29 +msgid "CPU Mhz" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:30 +#, fuzzy +#| msgid "Cache Size in memory" +msgid "Cache Size" +msgstr "Cache Size in memory" + +#: serverStatus/templates/serverStatus/topProcesses.html:51 +#, fuzzy +#| msgid "Process ID" +msgid "Processes" +msgstr "Process ID" + +#: serverStatus/templates/serverStatus/topProcesses.html:53 +msgid "Sleeping" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:54 +#, fuzzy +#| msgid "Stop" +msgid "Stopped" +msgstr "Спри" + +#: serverStatus/templates/serverStatus/topProcesses.html:55 +msgid "Zombie" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:80 +#, fuzzy +#| msgid "CPU Load Average" +msgid "CPU Load" +msgstr "Средно CPU Натоварване" + +#: serverStatus/templates/serverStatus/topProcesses.html:81 +msgid "1 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:82 +msgid "5 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:83 +msgid "15 Min" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:104 +msgid "I/O Wait" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:105 +msgid "Idle Time" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:106 +msgid "HW Interrupts" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:107 +msgid "Softirqs" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:132 +#: serverStatus/templates/serverStatus/topProcesses.html:156 +msgid "Free" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:133 +#: serverStatus/templates/serverStatus/topProcesses.html:157 +msgid "Used" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:134 +#: serverStatus/templates/serverStatus/topProcesses.html:158 +msgid "buff/cache" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:155 +msgid "SWAP" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:192 +#, fuzzy +#| msgid "ID" +msgid "PID" +msgstr "ID" + +#: serverStatus/templates/serverStatus/topProcesses.html:194 +msgid "VIRT" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:195 +msgid "RES" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:196 +#, fuzzy +#| msgid "Status" +msgid "State" +msgstr "Статус" + +#: serverStatus/templates/serverStatus/topProcesses.html:197 +#, python-format +msgid "%%CPU" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:198 +#, python-format +msgid "%%MEM" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:199 +msgid "Time" +msgstr "" + +#: serverStatus/templates/serverStatus/topProcesses.html:200 +#: websiteFunctions/templates/websiteFunctions/listCron.html:51 +#: websiteFunctions/templates/websiteFunctions/listCron.html:126 +msgid "Command" +msgstr "Команда" + +#: tuning/templates/tuning/index.html:3 +msgid "Server Tuning - CyberPanel" +msgstr "Server Tuning - CyberPanel" + +#: tuning/templates/tuning/index.html:12 +msgid "Server Tuning" +msgstr "Оптимизация на Сървър" + +#: tuning/templates/tuning/index.html:13 +msgid "" +"On this page you can set runing parameters for your webserver depending on your " +"hardware." +msgstr "" +"От тази страница може да променяте настройките на уеб сървъра според Вашия " +"hardware." + +#: tuning/templates/tuning/liteSpeedTuning.html:3 +msgid "LiteSpeed Tuning - CyberPanel" +msgstr "LiteSpeed Настройки - CyberPanel" + +#: tuning/templates/tuning/liteSpeedTuning.html:13 +msgid "" +"You can use this page to tweak your server according to your website requirments." +msgstr "" +"Може да използвате тази страница за настройка на сървъра Ви според изискванията на " +"сайта Ви." + +#: tuning/templates/tuning/liteSpeedTuning.html:18 +msgid "Tuning Details" +msgstr "Детайли за Настройки" + +#: tuning/templates/tuning/liteSpeedTuning.html:28 +#: tuning/templates/tuning/phpTuning.html:52 +#: tuning/templates/tuning/phpTuning.html:192 +msgid "Max Connections" +msgstr "Max Connections" + +#: tuning/templates/tuning/liteSpeedTuning.html:36 +msgid "Max SSL Connections" +msgstr "Max SSL Connections" + +#: tuning/templates/tuning/liteSpeedTuning.html:44 +msgid "Connection Timeout" +msgstr "Connection Timeout" + +#: tuning/templates/tuning/liteSpeedTuning.html:52 +msgid "Keep Alive Timeout" +msgstr "Keep Alive Timeout" + +#: tuning/templates/tuning/liteSpeedTuning.html:60 +msgid "Cache Size in memory" +msgstr "Cache Size in memory" + +#: tuning/templates/tuning/liteSpeedTuning.html:67 +msgid "Enable GZIP Compression" +msgstr "Включи GZIP Компресия" + +#: tuning/templates/tuning/liteSpeedTuning.html:74 +#: tuning/templates/tuning/phpTuning.html:97 +#: tuning/templates/tuning/phpTuning.html:237 +msgid "Currently:" +msgstr "В момента" + +#: tuning/templates/tuning/liteSpeedTuning.html:82 +msgid "Tune Web Server" +msgstr "Настрой Web Сървър" + +#: tuning/templates/tuning/liteSpeedTuning.html:92 +msgid "" +"Cannot fetch Current Value, but you can still submit new changes, error reported " +"from server:" +msgstr "" +"Действащата валута не е извлечена, но все пак може да я променяте. Съобщението за " +"грешка: " + +#: tuning/templates/tuning/liteSpeedTuning.html:96 +msgid "Cannot save details, Error Message: " +msgstr "Детайлите не са запазени. Съобщение за грешка: " + +#: tuning/templates/tuning/liteSpeedTuning.html:101 +msgid "Web Server Successfully tuned." +msgstr "Уеб сървъра е успешно оптимизиран." + +#: tuning/templates/tuning/phpTuning.html:3 +msgid "PHP Tuning - CyberPanel" +msgstr "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:45 +#: tuning/templates/tuning/phpTuning.html:185 +msgid "Initial Request Timeout (secs)" +msgstr "Initial Request Timeout (secs)" + +#: tuning/templates/tuning/phpTuning.html:60 +#: tuning/templates/tuning/phpTuning.html:200 +msgid "Memory Soft Limit" +msgstr "Memory Soft Limit" + +#: tuning/templates/tuning/phpTuning.html:67 +#: tuning/templates/tuning/phpTuning.html:207 +msgid "Memory Hard Limit" +msgstr "Memory Hard Limit" + +#: tuning/templates/tuning/phpTuning.html:75 +#: tuning/templates/tuning/phpTuning.html:215 +msgid "Process Soft Limit" +msgstr "Process Soft Limit" + +#: tuning/templates/tuning/phpTuning.html:82 +#: tuning/templates/tuning/phpTuning.html:222 +msgid "Process Hard Limit" +msgstr "Process Hard Limit" + +#: tuning/templates/tuning/phpTuning.html:90 +#: tuning/templates/tuning/phpTuning.html:230 +msgid "Persistent Connection" +msgstr "Persistent Connection" + +#: tuning/templates/tuning/phpTuning.html:106 +#: tuning/templates/tuning/phpTuning.html:246 +msgid "Tune PHP" +msgstr "Настрой PHP" + +#: tuning/templates/tuning/phpTuning.html:119 +#: tuning/templates/tuning/phpTuning.html:259 +msgid "Cannot tune. Error message:" +msgstr "Настройките не са въведени, защото:" + +#: tuning/templates/tuning/phpTuning.html:124 +#: tuning/templates/tuning/phpTuning.html:264 +msgid "Details Successfully fetched." +msgstr "Детайлите са успешно извлечени." + +#: tuning/templates/tuning/phpTuning.html:128 +#: tuning/templates/tuning/phpTuning.html:268 +msgid "PHP for " +msgstr "PHP Версия за" + +#: tuning/templates/tuning/phpTuning.html:129 +#: tuning/templates/tuning/phpTuning.html:269 +msgid "Successfully tuned." +msgstr "Успешно настроен" + +#: userManagment/templates/userManagment/apiAccess.html:3 +#, fuzzy +#| msgid "Access Logs - CyberPanel" +msgid "API Access for User - CyberPanel" +msgstr "Access Логове - CyberPanel" + +#: userManagment/templates/userManagment/apiAccess.html:14 +msgid "" +"Allow/Remove API access for account, this effects Cloud Platform Connection and " +"Third Party Modules." +msgstr "" + +#: userManagment/templates/userManagment/apiAccess.html:29 +#: userManagment/templates/userManagment/changeUserACL.html:28 +#: userManagment/templates/userManagment/deleteUser.html:29 +#: userManagment/templates/userManagment/resellerCenter.html:25 +msgid "Select User" +msgstr "Избери Потребител" + +#: userManagment/templates/userManagment/apiAccess.html:40 +#, fuzzy +#| msgid "Access Log" +msgid "Access" +msgstr "Access Лог" + +#: userManagment/templates/userManagment/changeUserACL.html:3 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Change User ACL - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/changeUserACL.html:12 +#: userManagment/templates/userManagment/changeUserACL.html:19 +#: userManagment/templates/userManagment/createACL.html:100 +#: userManagment/templates/userManagment/modifyACL.html:104 +#, fuzzy +#| msgid "Create User" +msgid "Change User ACL" +msgstr "Създай Потребител" + +#: userManagment/templates/userManagment/changeUserACL.html:13 +#, fuzzy +#| msgid "This page can be used to Back up your websites" +msgid "This page can be used to change ACL for CyberPanel users." +msgstr "От тази страница може да направите архив на Вашите страници" + +#: userManagment/templates/userManagment/changeUserACL.html:39 +#: userManagment/templates/userManagment/createUser.html:56 +#: userManagment/templates/userManagment/deleteACL.html:26 +#: userManagment/templates/userManagment/listUsers.html:99 +#: userManagment/templates/userManagment/modifyACL.html:28 +#, fuzzy +#| msgid "Select All" +msgid "Select ACL" +msgstr "Избери всички" + +#: userManagment/templates/userManagment/changeUserACL.html:55 +#, fuzzy +#| msgid "Change" +msgid "Change ACL" +msgstr "Промени" + +#: userManagment/templates/userManagment/createACL.html:3 +#, fuzzy +#| msgid "Create New User - CyberPanel" +msgid "Create new ACL - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/createACL.html:13 +msgid "" +"Create new Access Control defination, that specifies what CyberPanel users can do." +msgstr "" + +#: userManagment/templates/userManagment/createACL.html:19 +#: userManagment/templates/userManagment/modifyACL.html:19 +msgid "ACL Details" +msgstr "ACL Подаци" + +#: userManagment/templates/userManagment/createACL.html:26 +msgid "ACL Name" +msgstr "ACL Име" + +#: userManagment/templates/userManagment/createACL.html:40 +#: userManagment/templates/userManagment/modifyACL.html:44 +msgid "Make Admin" +msgstr "Постави за Администратора" + +#: userManagment/templates/userManagment/createACL.html:59 +#: userManagment/templates/userManagment/modifyACL.html:63 +msgid "User Management" +msgstr "Управљање Корисницима" + +#: userManagment/templates/userManagment/createACL.html:91 +#: userManagment/templates/userManagment/deleteUser.html:13 +#: userManagment/templates/userManagment/deleteUser.html:20 +#: userManagment/templates/userManagment/deleteUser.html:42 +#: userManagment/templates/userManagment/index.html:78 +#: userManagment/templates/userManagment/index.html:81 +#: userManagment/templates/userManagment/modifyACL.html:95 +msgid "Delete User" +msgstr "Брисање Корисника" + +#: userManagment/templates/userManagment/createACL.html:107 +#: userManagment/templates/userManagment/modifyACL.html:111 +msgid "Website Management" +msgstr "Управљање Сајтовима" + +#: userManagment/templates/userManagment/createACL.html:130 +#: userManagment/templates/userManagment/modifyACL.html:134 +msgid "Suspend Website" +msgstr "Суспендовање Сајта" + +#: userManagment/templates/userManagment/createACL.html:147 +#: userManagment/templates/userManagment/modifyACL.html:151 +msgid "Package Management" +msgstr "Пакети" + +#: userManagment/templates/userManagment/createACL.html:186 +#: userManagment/templates/userManagment/modifyACL.html:190 +msgid "Database Management" +msgstr "Базе Података" + +#: userManagment/templates/userManagment/createACL.html:216 +#: userManagment/templates/userManagment/modifyACL.html:220 +msgid "DNS Management" +msgstr "DNS Управљање" + +#: userManagment/templates/userManagment/createACL.html:249 +#: userManagment/templates/userManagment/modifyACL.html:253 +msgid "Add/Delete" +msgstr "Додај/Уклони" + +#: userManagment/templates/userManagment/createACL.html:257 +#: userManagment/templates/userManagment/modifyACL.html:261 +msgid "Email Management" +msgstr "Емаил Подешавања" + +#: userManagment/templates/userManagment/createACL.html:317 +#: userManagment/templates/userManagment/modifyACL.html:321 +msgid "FTP Management" +msgstr "FTP Подаци" + +#: userManagment/templates/userManagment/createACL.html:347 +#: userManagment/templates/userManagment/modifyACL.html:351 +msgid "Backup Management" +msgstr "Архивирање" + +#: userManagment/templates/userManagment/createACL.html:399 +#: userManagment/templates/userManagment/modifyACL.html:403 +msgid "SSL Management" +msgstr "SSL Поставке" + +#: userManagment/templates/userManagment/createACL.html:432 +msgid "Create ACL" +msgstr "Паркирање Домена" + +#: userManagment/templates/userManagment/createUser.html:3 +msgid "Create New User - CyberPanel" +msgstr "Създай Потребител - CyberPanel" + +#: userManagment/templates/userManagment/createUser.html:13 +msgid "Create root, reseller or normal users on this page." +msgstr "Създай root, reseller или нормален потребител от тази страница." + +#: userManagment/templates/userManagment/createUser.html:19 +msgid "User Details" +msgstr "Детаљи" + +#: userManagment/templates/userManagment/createUser.html:25 +#: userManagment/templates/userManagment/modifyUser.html:39 +#: userManagment/templates/userManagment/userProfile.html:24 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:30 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:35 +msgid "First Name" +msgstr "Име" + +#: userManagment/templates/userManagment/createUser.html:31 +msgid "First Name should contain only alphabetic characters." +msgstr "Името е необходимо да съдържа само букви" + +#: userManagment/templates/userManagment/createUser.html:35 +#: userManagment/templates/userManagment/modifyUser.html:46 +#: userManagment/templates/userManagment/userProfile.html:29 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:37 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:42 +msgid "Last Name" +msgstr "Презиме" + +#: userManagment/templates/userManagment/createUser.html:41 +msgid "Last Name should contain only alphabetic characters." +msgstr "Фамилията е необходимо да съдържа само букви" + +#: userManagment/templates/userManagment/createUser.html:50 +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:66 +msgid "Invalid Email" +msgstr "Не исправна емаил адреса" + +#: userManagment/templates/userManagment/createUser.html:68 +#: userManagment/templates/userManagment/listUsers.html:33 +#: userManagment/templates/userManagment/resellerCenter.html:48 +#: userManagment/templates/userManagment/userProfile.html:53 +msgid "Websites Limit" +msgstr "Лимити за Сајтове" + +#: userManagment/templates/userManagment/createUser.html:107 +#: userManagment/templates/userManagment/modifyUser.html:85 +msgid "Security Level" +msgstr "Ниво Безбедности" + +#: userManagment/templates/userManagment/createUser.html:120 +#: userManagment/templates/userManagment/index.html:49 +#: userManagment/templates/userManagment/index.html:52 +msgid "Create User" +msgstr "Додај Корисника" + +#: userManagment/templates/userManagment/createUser.html:128 +#: userManagment/templates/userManagment/modifyUser.html:112 +msgid "Account with username:" +msgstr "Корисник:" + +#: userManagment/templates/userManagment/createUser.html:133 +msgid "Cannot create user. Error message:" +msgstr "Неуспењно додавање корисника. Грешка:" + +#: userManagment/templates/userManagment/createUser.html:141 +msgid "" +"Length of first and last name combined should be less than or equal to 20 " +"characters" +msgstr "" +"Дължината на Първото и последното име комбинирано не трябва да превишава 20 " +"символа." + +#: userManagment/templates/userManagment/deleteACL.html:3 +msgid "Delete ACL - CyberPanel" +msgstr "Обриши ACL - CyberPanel" + +#: userManagment/templates/userManagment/deleteACL.html:13 +msgid "This page can be used to delete ACL." +msgstr "На овој страници можете брисати ACL." + +#: userManagment/templates/userManagment/deleteUser.html:3 +msgid "Delete User - CyberPanel" +msgstr "Брисање корисника - CyberPanel" + +#: userManagment/templates/userManagment/deleteUser.html:14 +msgid "Websites owned by this user will automatically transfer to the root." +msgstr "Сви сајтови под овим корисником биће аутоматски додељени root кориснику." + +#: userManagment/templates/userManagment/deleteUser.html:61 +msgid "Cannot delete user. Error message:" +msgstr "Потребителя не може да бъде премахнат. Съобщение за грешка: " + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid "User " +msgstr "Потребител" + +#: userManagment/templates/userManagment/deleteUser.html:65 +msgid " Successfully Deleted" +msgstr "Успешно е премахнато" + +#: userManagment/templates/userManagment/index.html:3 +msgid "User Functions - CyberPanel" +msgstr "Кориснићке Функције - CyberPanel" + +#: userManagment/templates/userManagment/index.html:14 +msgid "Create, edit and delete users on this page." +msgstr "Додавање, измена и брисање корисника." + +#: userManagment/templates/userManagment/listUsers.html:3 +msgid "List Users - CyberPanel" +msgstr "Сви Корисници - CyberPanel" + +#: userManagment/templates/userManagment/listUsers.html:14 +msgid "List Users that you own." +msgstr "Ваши Корисници" + +#: userManagment/templates/userManagment/listUsers.html:35 +msgid "ACL" +msgstr "" + +#: userManagment/templates/userManagment/listUsers.html:84 +#: userManagment/templates/userManagment/resellerCenter.html:37 +msgid "New Owner" +msgstr "Нови Власник" + +#: userManagment/templates/userManagment/modifyACL.html:3 +msgid "Modify an ACL - CyberPanel" +msgstr "Измени ACL - CyberPanel" + +#: userManagment/templates/userManagment/modifyACL.html:12 +msgid "Modify an ACL" +msgstr "Измени ACL" + +#: userManagment/templates/userManagment/modifyACL.html:13 +#, fuzzy +#| msgid "On this page you can configure SpamAssassin settings." +msgid "On this page you can modify an existing ACL." +msgstr "От тази страница може да настройте SpamAssassin." + +#: userManagment/templates/userManagment/modifyUser.html:3 +msgid "Modify User - CyberPanel" +msgstr "Промени Потребител - CyberPanel" + +#: userManagment/templates/userManagment/modifyUser.html:13 +msgid "Modify existing user settings on this page." +msgstr "Променяйте настройките за съществуващ потребител от тази страница." + +#: userManagment/templates/userManagment/modifyUser.html:27 +msgid "Select Account" +msgstr "Избери Акаунт" + +#: userManagment/templates/userManagment/modifyUser.html:113 +msgid " is successfully modified." +msgstr "е успешно променен." + +#: userManagment/templates/userManagment/modifyUser.html:117 +msgid "Cannot modify user. Error message:" +msgstr "Потребителя не е променен. Съобщение за грешка:" + +#: userManagment/templates/userManagment/modifyUser.html:130 +msgid "Details fetched." +msgstr "Детайлите са изтеглени." + +#: userManagment/templates/userManagment/resellerCenter.html:3 +#, fuzzy +#| msgid "Restore Website - CyberPanel" +msgid "Reseller Center - CyberPanel" +msgstr "Възстанови Страница - CyberPanel" + +#: userManagment/templates/userManagment/resellerCenter.html:13 +msgid "Change owner of users and change websites limits." +msgstr "" + +#: userManagment/templates/userManagment/userProfile.html:3 +msgid "Account Details - CyberPanel" +msgstr "Детайли за Акаунт - CyberPanel" + +#: userManagment/templates/userManagment/userProfile.html:12 +#: userManagment/templates/userManagment/userProfile.html:18 +msgid "Account Details" +msgstr "Детайли за Акаунт" + +#: userManagment/templates/userManagment/userProfile.html:13 +msgid "List the account details for the currently logged in user." +msgstr "Преглед на акаунтите, които са влезнали в този момент." + +#: userManagment/templates/userManagment/userProfile.html:48 +#, fuzzy +#| msgid "Account Level" +msgid "Account ACL" +msgstr "Акаунт Левел" + +#: userManagment/templates/userManagment/userProfile.html:55 +msgid "( 0 = Unlimited )" +msgstr "( 0 = Без Лимит )" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:3 +msgid "Application Installer - CyberPanel" +msgstr "Инсталатор на Приложения - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:15 +msgid "One-click application install." +msgstr "Инсталатор на Приложения" + +#: websiteFunctions/templates/websiteFunctions/applicationInstaller.html:41 +msgid "Install Joomla with(?) LSCache" +msgstr "Инсталирай Joomla(?) с LSCache" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:3 +msgid "Create New Website - CyberPanel" +msgstr "Добави нова страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/index.html:14 +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:21 +msgid "" +"On this page you can launch, list, modify and delete websites from your server." +msgstr "" +"От тази страница може да стартирате, преглеждате, променяте или премахвате уеб " +"сайтове на Вашия сървър." + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:20 +msgid "Website Details" +msgstr "Детайли за Страницата" + +#: websiteFunctions/templates/websiteFunctions/createWebsite.html:54 +msgid "Do not enter WWW, it will be auto created!" +msgstr "НЕ въвеждайте www. То ще бъде автоматично създадено!" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:3 +msgid "Delete Website - CyberPanel" +msgstr "Премахни страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:13 +msgid "" +"This page can be used to delete website, once deleted it can not be recovered." +msgstr "" +"От тази страница може да премахвате уеб сайтове. Веднъж премахнати те няма как да " +"бъдат възстановени." + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:61 +msgid "Cannot delete website, Error message: " +msgstr "Страницата не е премахната. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/deleteWebsite.html:65 +msgid "Successfully Deleted." +msgstr "Успешно е Изтрита." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:3 +msgid "Domain Aliases - CyberPanel" +msgstr "Паркирани Домейни - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:12 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:19 +msgid "Domain Aliases" +msgstr "Паркирани Домейни" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:13 +msgid "" +"With Domain Aliases you can visit example.com using example.net and view the same " +"content." +msgstr "" +"С паркирания домейн Вие може да заредите example.com като посетите example.net." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:29 +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:105 +msgid "Create Alias" +msgstr "Паркирай Домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:36 +msgid "Master Domain" +msgstr "Главен домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:37 +msgid "Alias" +msgstr "Паркиран домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:38 +msgid "File System Path" +msgstr "Системен път" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:63 +msgid "Domain Aliases not found." +msgstr "Няма паркиран домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:79 +msgid "Alias Domain" +msgstr "Паркиран Домейн" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:93 +msgid "" +"For SSL to work DNS of domain should point to server, otherwise self signed SSL " +"will be issued, you can add your own SSL later." +msgstr "" +"За да бъде издаден SSL домейн името трябва да бъде пренасочено към сървъра Ви. В " +"противен случай ще бъде издаден Self SSL. Винаги може да добавите Ваш SSL по-късно." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:114 +msgid "Operation failed. Error message:" +msgstr "Действието не е изпълнено. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:118 +msgid "Alias successfully created. Refreshing page in 3 seconds..." +msgstr "Домейна е успешно паркиран. Страницата ще се презареди след 3 секунди..." + +#: websiteFunctions/templates/websiteFunctions/domainAlias.html:122 +msgid "Operation Successfull." +msgstr "Действието е успешно изпълнено." + +#: websiteFunctions/templates/websiteFunctions/index.html:3 +msgid "Website Functions - CyberPanel" +msgstr "Настройки на Страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/index.html:33 +#: websiteFunctions/templates/websiteFunctions/index.html:57 +#, fuzzy +#| msgid "List Websites" +msgid "List Website" +msgstr "Преглед на Страници" + +#: websiteFunctions/templates/websiteFunctions/index.html:79 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:13 +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:20 +msgid "Suspend/Unsuspend Website" +msgstr "Пусни/Спри Страница" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:3 +msgid "Install Joomla - CyberPanel" +msgstr "Инсталирай Joomla - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:12 +msgid "Install Joomla" +msgstr "Инсталирай Joomla" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:13 +msgid "One-click Joomla Install!" +msgstr "Инсталирай Joomla!" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:20 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:20 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:20 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:20 +msgid "Installation Details" +msgstr "Детайли:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:28 +msgid "Site Name" +msgstr "Име на сайт" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:35 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:35 +msgid "Login User" +msgstr "Потребителско име" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:42 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:42 +msgid "Login Password" +msgstr "Парола" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:49 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:63 +msgid "Database Prefix" +msgstr "База от данни prefix" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:91 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:126 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:105 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:91 +msgid "Installation failed. Error message:" +msgstr "Инсталацията Не завърши, защото:" + +#: websiteFunctions/templates/websiteFunctions/installJoomla.html:95 +#: websiteFunctions/templates/websiteFunctions/installMagento.html:130 +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:109 +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:95 +msgid "Installation successful. Visit:" +msgstr "Инсталацията завърши успешно. Посети: " + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:3 +#, fuzzy +#| msgid "Install PrestaShop - CyberPanel" +msgid "Install Magento - CyberPanel" +msgstr "Инсталирай PrestaShop -CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:12 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:724 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:728 +#: websiteFunctions/templates/websiteFunctions/website.html:1029 +#: websiteFunctions/templates/websiteFunctions/website.html:1033 +#, fuzzy +#| msgid "Packages" +msgid "Install Magento" +msgstr "Пакети" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:13 +#, fuzzy +#| msgid "One-click PrestaShop Install!" +msgid "One-click Magento Install!" +msgstr "Инсталирай PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:51 +#, fuzzy +#| msgid "Username" +msgid "Admin Username" +msgstr "Потребителско Име" + +#: websiteFunctions/templates/websiteFunctions/installMagento.html:93 +msgid "" +"does not work on OpenLiteSpeed. It is highly recommended to use this installer " +"with LiteSpeed Enterprise only." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:3 +msgid "Install PrestaShop - CyberPanel" +msgstr "Инсталирай PrestaShop -CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:12 +msgid "Install PrestaShop" +msgstr "Инсталирай PrestaShop" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:13 +msgid "One-click PrestaShop Install!" +msgstr "Инсталирай PrestaShop!" + +#: websiteFunctions/templates/websiteFunctions/installPrestaShop.html:28 +msgid "Shop Name" +msgstr "Име на магазин" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:3 +msgid "Install WordPress - CyberPanel" +msgstr "Wordpress с LSCache" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:12 +msgid "Install WordPress" +msgstr "Инсталирай WordPress" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:13 +msgid "Install WordPress with LSCache." +msgstr "Wordpress с LSCache" + +#: websiteFunctions/templates/websiteFunctions/installWordPress.html:28 +msgid "Blog Title" +msgstr "Име на Блог" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:32 +msgid "Copy/Sync to Master" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:673 +#: websiteFunctions/templates/websiteFunctions/launchChild.html:678 +#: websiteFunctions/templates/websiteFunctions/website.html:990 +msgid "WP + LSCache" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/launchChild.html:729 +#: websiteFunctions/templates/websiteFunctions/website.html:1034 +msgid "Magento" +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:3 +msgid "Cron Management - CyberPanel" +msgstr "Cron Мениджър - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +#: websiteFunctions/templates/websiteFunctions/listCron.html:19 +msgid "Cron Management" +msgstr "Cron Мениджър" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:12 +msgid "Cron Docs" +msgstr "Cron документация" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:13 +msgid "Create, edit or delete your cron jobs from this page." +msgstr "Създай, редактирай или премахвайте cron задачи от тази страница." + +#: websiteFunctions/templates/websiteFunctions/listCron.html:37 +msgid "Add Cron" +msgstr "Добави Cron" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:46 +#: websiteFunctions/templates/websiteFunctions/listCron.html:95 +msgid "Minute" +msgstr "Минута" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:47 +#: websiteFunctions/templates/websiteFunctions/listCron.html:101 +msgid "Hour" +msgstr "Час" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:48 +msgid "Day of Month" +msgstr "Ден от месеца" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:49 +#: websiteFunctions/templates/websiteFunctions/listCron.html:113 +msgid "Month" +msgstr "Месец" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:50 +msgid "Day of Week" +msgstr "Ден от седмица" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:79 +msgid "Pre defined" +msgstr "Предварително дефинирано" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:82 +msgid "Every minute" +msgstr "Всяка минута" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:83 +msgid "Every 5 minutes" +msgstr "Всеки 5 минути" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:84 +msgid "Every 30 minutes" +msgstr "Всеки 30 минути" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:85 +msgid "Every hour" +msgstr "Всеки час" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:86 +msgid "Every day" +msgstr "Всеки ден" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:87 +msgid "Every week" +msgstr "Всяка седмица" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:88 +msgid "Every month" +msgstr "Всеки месец" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:89 +msgid "Every year" +msgstr "Всяка година" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:107 +msgid "Day of month" +msgstr "Ден от месеца" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:119 +msgid "Day of week" +msgstr "Ден от седмицата" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:135 +msgid "Save edits" +msgstr "Запази промените" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:142 +msgid "Add cron" +msgstr "Добави крон" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:152 +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:102 +msgid "Cannot fetch website details. Error message:" +msgstr "Информацията за страницата не са обновени, защото:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:156 +msgid "Unable to add/save Cron. Error message:" +msgstr "Cron задачата не е добавена/променена. Съобщение за грешка:" + +#: websiteFunctions/templates/websiteFunctions/listCron.html:159 +msgid "Cron job saved" +msgstr "Cron задачата е запазена" + +#: websiteFunctions/templates/websiteFunctions/listWebsites.html:3 +msgid "Websites Hosted - CyberPanel" +msgstr "Websites Hosted - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:3 +msgid "Modify Website - CyberPanel" +msgstr "Редактирай Страница - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:51 +msgid "Current Package:" +msgstr "Текущ Пакет" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:62 +msgid "Current Owner:" +msgstr "Текущ собственик:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:106 +msgid "Cannot modify website. Error message:" +msgstr "Страницата не може да бъде променена, защото:" + +#: websiteFunctions/templates/websiteFunctions/modifyWebsite.html:110 +msgid "Website Details Successfully fetched" +msgstr "Детайлите за страницата са изтеглени" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:3 +msgid "Git Management - CyberPanel" +msgstr "Git Мениджър - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:12 +msgid "Git Management" +msgstr "Git Мениджър" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:13 +msgid "Attach git to your websites." +msgstr "Прикачи Git за тази страница." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:21 +msgid "Attach Git" +msgstr "Прикачи Git" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:29 +msgid "Providers" +msgstr "Източници" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:36 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:161 +msgid "Deployment Key" +msgstr "Deployment ключ" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:65 +msgid "" +"Before attaching repo to your website, make sure to place your Development key in " +"your GIT repository." +msgstr "" +"Преди да прикачите хранилище за страницата Ви се уверете, че сте поставили Вашия " +"Development ключ във Вашето GIT хранилище." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:77 +msgid "Repository Name" +msgstr "Име на хранилището" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:86 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:262 +msgid "Branch" +msgstr "Разклонение" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:97 +msgid "Attach Now" +msgstr "Прикачи" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:121 +msgid "GIT Successfully attached, refreshing page in 3 seconds... Visit:" +msgstr "" +"GIT е успешно прикачен. Страницата ще се презареди след 3 секунди ... Посети:" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:213 +#: websiteFunctions/templates/websiteFunctions/setupGit.html:273 +msgid "Change Branch" +msgstr "Промени разклонение" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:222 +msgid "Detach Repo" +msgstr "Откачи хранилище" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:228 +msgid "Webhook URL" +msgstr "Webhook URL" + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:229 +msgid "" +"Add this URL to Webhooks section of your Git respository, if you've used hostname " +"SSL then replace IP with your hostname. Otherwise use IP and disable SSL check " +"while configuring webhook. This will initiate a pull from your resposity as soon " +"as you commit some changes." +msgstr "" +"Добави този URL адрес към Webhooks секцията на Вашето Git хранилище. Ако сте " +"използвали hostname SSL тогава заменете IP адреса с hostname. В противен случай " +"използвайте IP и забранете SSL проверката при конфигурацията на webhook." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:241 +msgid "Repo successfully detached, refreshing in 3 seconds.." +msgstr "Хранилището е успешно откачено. Страницата ще се презареди след 3 секунди.." + +#: websiteFunctions/templates/websiteFunctions/setupGit.html:287 +msgid "Branch successfully changed." +msgstr "Разклонението е успешно променено." + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:3 +msgid "Set up Staging Enviroment - CyberPanel" +msgstr "Git - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:12 +msgid "Set up Staging Enviroment" +msgstr "Подешавање Staging Окружења" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:20 +msgid "Set up staging enviroment for " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:13 +msgid "" +". Any domain that you will choose here will be created as child-domain for this " +"master site." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:31 +msgid "Domain that you will enter below will be created as child-domain to " +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:33 +msgid "." +msgstr "" + +#: websiteFunctions/templates/websiteFunctions/setupStaging.html:47 +msgid "Start Cloning" +msgstr "Копирај" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:3 +msgid "SSH and CageFS - CyberPanel" +msgstr "SSH и CageFS - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:12 +msgid "SSH Access" +msgstr "SSH Приступ" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid "Set up SSH access and enable/disable CageFS for " +msgstr "Подесите SSH приступ како би сте укључили/искључили CageFS за" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:13 +msgid " CageFS require CloudLinux OS." +msgstr " CageFS захтева CloudLinux OS." + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:20 +msgid "Set up SSH access for " +msgstr "Подеси SSH приступ за" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid "SSH user for " +msgstr "SSL корисник за" + +#: websiteFunctions/templates/websiteFunctions/sshAccess.html:29 +msgid " is " +msgstr "је" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:3 +msgid "Suspend/Unsuspend Website - CyberPanel" +msgstr "Суспендовање Сајта- CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:14 +msgid "This page can be used to suspend/unsuspend website." +msgstr "на овој страни можете суспендовати/поново активирати сајтове." + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:44 +msgid "Suspend" +msgstr "Суспендуј" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:45 +msgid "Un-Suspend" +msgstr "Укини Суспензију" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:65 +msgid "Cannot suspend website, Error message: " +msgstr "Страницата не е спряна, защото:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:69 +msgid "Cannot unsuspend website. Error message:" +msgstr "Страницата не е пусната, защото:" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Website " +msgstr "Страница" + +#: websiteFunctions/templates/websiteFunctions/suspendWebsite.html:73 +msgid "Successfully " +msgstr "Успешно" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:3 +msgid "Sync to Master - CyberPanel" +msgstr "DNS Функције - CyberPanel" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:12 +msgid "Sync your site to Master" +msgstr "Синхронизуј сајт са Главним" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid "Right now you can only sync your child domains to master domains." +msgstr "" +"У овом тренутку можете синхронизовати само child домене са примарним доменима." + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:13 +msgid " will be synced to " +msgstr "биће синхронизован са" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "Sync " +msgstr "Синхронизација" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:20 +msgid "to " +msgstr "да" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:30 +msgid "What to Sync" +msgstr "Шта синхронизовати" + +#: websiteFunctions/templates/websiteFunctions/syncMaster.html:63 +msgid "Start Syncing" +msgstr "Започни Синхронизацију" + +#: websiteFunctions/templates/websiteFunctions/website.html:29 +msgid "Clone/Staging" +msgstr "Копија/Staging" + +#: websiteFunctions/templates/websiteFunctions/website.html:30 +msgid "Set up SSH Access" +msgstr "Подешавање SSH приступа" + +#: websiteFunctions/templates/websiteFunctions/website.html:665 +msgid "It is not required to modify rules if you are using OpenLiteSpeed." +msgstr "Није неопходно мењати правила уколико користите OpenLiteSpeed." + +#, fuzzy +#~| msgid "Last Name" +#~ msgid "List" +#~ msgstr "Фанилия" + +#~ msgid "" +#~ "Could not fetch details, either LiteSpeed is not running or some error " +#~ "occurred, please see CyberPanel Main log file." +#~ msgstr "" +#~ "Детайлите не са извлечени. OpenLiteSpeed или не е стартиран или има критична " +#~ "грешка. Разгледайте главния Cyberpanel лог за повече информация." + +#, fuzzy +#~| msgid "Schedule Back up" +#~ msgid "Achedule Back up" +#~ msgstr "Планирано Архивиране " + +#, fuzzy +#~| msgid "Modify User" +#~ msgid "Modify" +#~ msgstr "Промени Потребител" + +#~ msgid "Start" +#~ msgstr "Стартирай" + +#~ msgid "Reload" +#~ msgstr "Презареди" + +#~ msgid "CPU Status" +#~ msgstr "CPU Статус" + +#~ msgid "Fullscreen" +#~ msgstr "Пълен Екран" + +#~ msgid "System Status" +#~ msgstr "Статус" + +#~ msgid "Update started..." +#~ msgstr "Начало на актуализация" + +#~ msgid "Update finished..." +#~ msgstr "Актуализацията приключи" + +#~ msgid "Account Type" +#~ msgstr "Вид на акаунт" + +#~ msgid "User Accounts Limit" +#~ msgstr "Лимити за Потребителски акаунти" + +#~ msgid "Only Numbers" +#~ msgstr "Само Числа" + +#~ msgid "Username should be lowercase alphanumeric." +#~ msgstr "Потребителскоро име трябва да бъде само с малки букви." + +#~ msgid "Must contain one number and one special character." +#~ msgstr "Трябва да съдържа поне един номер и специален символ." + +#~ msgid "Cannot create website. Error message:" +#~ msgstr "Страницата не е създадена, защото:" + +#~ msgid "Website with domain" +#~ msgstr "Страница с домейн" + +#~ msgid " is Successfully Created" +#~ msgstr "е Успешно Създаден" + +#~ msgid "Installation successful. To complete the setup visit:" +#~ msgstr "Инсталацията завърши успешно. " + +#, fuzzy +#~| msgid "Password" +#~ msgid "Admin Password" +#~ msgstr "Парола" + +#, fuzzy +#~| msgid "Database Name" +#~ msgid "Database prefix" +#~ msgstr "Име на База от Данни" + +#~ msgid "Daily" +#~ msgstr "Дневно" + +#~ msgid "Weekly" +#~ msgstr "Седмично" + +#~ msgid "HTTP Statistics" +#~ msgstr "HTTP Статистика" + +#~ msgid "Available/Max Connections" +#~ msgstr "Налични/Максимални Връзки" + +#~ msgid "Available/Max SSL Connections" +#~ msgstr "Налични/Максимални SSL Връзки" + +#~ msgid "Requests Processing" +#~ msgstr "Обработвани заявки" + +#~ msgid "Total Requests" +#~ msgstr "Всички Заявки" + +#~ msgid "IPV6" +#~ msgstr "IPv6" + +#~ msgid "Normal User" +#~ msgstr "Нормален Потребител" + +#~ msgid "Edit Virtual Host Main Configurations" +#~ msgstr "Редактирай Virtual Host Main Configurations" + +#~ msgid "Configuration saved. Restart LiteSpeed put them in effect." +#~ msgstr "" +#~ "Конфигурацията е запазена. Рестартирайте LiteSpeed, за да влезнат в сила " +#~ "промените." From 31e0131c151035c2dcd3530c0e87812d40c4713c Mon Sep 17 00:00:00 2001 From: dampelz <59340295+dampelz@users.noreply.github.com> Date: Wed, 30 Jun 2021 22:41:22 +0300 Subject: [PATCH 31/31] Added translation tag for some elements Added translation tag for some elements --- .../templates/websiteFunctions/listWebsites.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/websiteFunctions/templates/websiteFunctions/listWebsites.html b/websiteFunctions/templates/websiteFunctions/listWebsites.html index fe9ccd4c2..050674441 100755 --- a/websiteFunctions/templates/websiteFunctions/listWebsites.html +++ b/websiteFunctions/templates/websiteFunctions/listWebsites.html @@ -59,12 +59,12 @@

-- - File Manager + {% trans "File Manager" %} @@ -83,7 +83,7 @@ Issue SSL + style="text-transform: none">{% trans "Issue SSL" %}